:root {
    --slc-orange: #e36a26;
    --slc-teal: #01a0a5;
    --slc-gold: #d4af37;
    --slc-black: #111111;
    --slc-charcoal: #252525;
    --slc-muted: #64666a;
    --slc-line: rgba(17, 17, 17, 0.12);
    --slc-surface: #ffffff;
    --slc-soft: #f7f7f5;
    --slc-teal-dark: #037276;
    --slc-radius: 18px;
    --slc-shadow: 0 24px 55px rgba(17, 17, 17, 0.10);
    --slc-shadow-soft: 0 14px 34px rgba(17, 17, 17, 0.08);
    --slc-container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--slc-surface);
    color: var(--slc-black);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

a:hover { color: var(--slc-orange); }

p { margin: 0 0 1rem; color: var(--slc-muted); }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    color: var(--slc-black);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(3.25rem, 7.2vw, 6.9rem);
    max-width: 780px;
}

h2 { font-size: clamp(2.1rem, 4.2vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

.center-this-title{text-align: center !important;}

.container {
    width: min(calc(100% - 40px), var(--slc-container));
    margin-inline: auto;
}

.section { padding: clamp(64px, 8vw, 112px) 0; }

.section--work { padding-top: clamp(50px, 6vw, 88px); }

.section--teal {
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.24), transparent 28%), linear-gradient(135deg, #006b70 0%, var(--slc-teal) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section--teal::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0 44%, rgba(212, 175, 55, 0.38) 44.3% 45%, transparent 45.3%),
        repeating-linear-gradient(160deg, transparent 0 20px, rgba(255, 255, 255, 0.08) 21px 22px);
    opacity: 0.7;
    pointer-events: none;
}

.text-orange { color: var(--slc-orange); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--slc-orange);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--slc-gold);
}

.eyebrow--gold { color: var(--slc-gold); }

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    clip: auto;
    z-index: 99999;
    background: var(--slc-black);
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
}

.button,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 4px;
    border: 2px solid transparent;
    font-weight: 850;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
}

.button--orange,
.button--primary,
input[type="submit"] {
    background: var(--slc-orange);
    color: #fff;
    box-shadow: 0 14px 24px rgba(227, 106, 38, 0.24);
}

.button--orange:hover,
.button--primary:hover,
input[type="submit"]:hover {
    background: #c9541c;
    color: #fff;
}

.button--outline {
    background: #fff;
    border-color: var(--slc-teal);
    color: var(--slc-teal-dark);
}

.button--outline:hover {
    background: rgba(1, 160, 165, 0.08);
    color: var(--slc-teal-dark);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.site-header__inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-branding { flex: 0 0 auto; }

.site-branding img { max-height: 64px; width: auto; }

.site-branding__text {
    display: inline-flex;
    flex-direction: column;
    color: var(--slc-orange);
    font-weight: 950;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: 0.82;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.footer-brand .site-branding__text { font-size: 1.5rem; }

.main-navigation {
    margin-left: auto;
}

.main-navigation .menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-navigation a {
    display: inline-flex;
    align-items: center;
    color: var(--slc-black);
    font-weight: 750;
    font-size: 0.94rem;
    position: relative;
    min-height: 40px;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 2px;
    height: 2px;
    background: var(--slc-orange);
    transition: right 180ms ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    right: 0;
}

.main-navigation .menu-item--project-inquiry {
    display: none;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--slc-line);
    box-shadow: none;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px auto;
    background: var(--slc-black);
}

.hero {
    padding-top: clamp(54px, 7vw, 86px);
    background:
        radial-gradient(circle at 82% 19%, rgba(1, 160, 165, 0.12), transparent 24%),
        radial-gradient(circle at 88% 68%, rgba(212, 175, 55, 0.16), transparent 21%);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: clamp(40px, 6vw, 86px);
}

.hero__lead {
    max-width: 550px;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--slc-charcoal);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.hero__visual {
    position: relative;
    min-height: 590px;
    isolation: isolate;
}

.hero__visual::before {
    content: "";
    position: absolute;
    inset: 8% 0 2% 6%;
    z-index: -1;
    border-radius: 999px;
    background:
        radial-gradient(circle at 72% 30%, rgba(212, 175, 55, 0.18), transparent 34%),
        radial-gradient(circle at 26% 34%, rgba(1, 160, 165, 0.13), transparent 42%),
        linear-gradient(135deg, rgba(1, 160, 165, 0.06), rgba(227, 106, 38, 0.04));
    filter: blur(2px);
}

.mockup {
    position: absolute;
    border-radius: 18px;
    box-shadow: var(--slc-shadow);
}

/* Laptop */
.mockup--laptop {
    width: 82%;
    right: 0;
    top: 10px;
    padding: 0;
    border: 13px solid #1d2228;
    border-bottom-width: 16px;
    border-radius: 22px;
    background: #1d2228;
    transform: rotate(1deg);
    box-shadow:
        0 34px 70px rgba(17, 17, 17, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.mockup--laptop::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    bottom: -54px;
    height: 48px;
    background: linear-gradient(180deg, #e1e4e7 0%, #aeb5bb 58%, #7f878e 100%);
    border-radius: 0 0 24px 24px;
    transform: perspective(220px) rotateX(22deg);
    transform-origin: top center;
    z-index: -2;
    box-shadow: 0 18px 26px rgba(17, 17, 17, 0.18);
}

.mockup--laptop::after {
    content: "";
    position: absolute;
    left: 37%;
    right: 37%;
    bottom: -36px;
    height: 7px;
    background: rgba(17, 17, 17, 0.28);
    border-radius: 0 0 999px 999px;
    z-index: -1;
}

.mockup__bar {
    height: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 13px;
    background: #f5f5f5;
    border-radius: 10px 10px 0 0;
}

.mockup__bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--slc-orange);
}

.mockup__bar span:nth-child(2) { background: var(--slc-gold); }
.mockup__bar span:nth-child(3) { background: var(--slc-teal); }

.mockup__screen {
    position: relative;
    min-height: 275px;
    padding: 42px 36px 78px;
    overflow: hidden;
    color: #fff;
    border-radius: 0 0 10px 10px;
    background:
        linear-gradient(90deg, rgba(13, 19, 24, 0.96), rgba(13, 19, 24, 0.72)),
        linear-gradient(135deg, #111, #083b3e 56%, #0e6367);
}

.mockup__screen::after {
    content: "";
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 26px;
    height: 22px;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.16) 0 22px,
            transparent 22px 30px
        );
    opacity: 0.5;
    border-radius: 6px;
}

.mockup__brand {
    color: var(--slc-teal);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.mockup__screen h2 {
    max-width: 440px;
    color: #fff;
    font-size: clamp(2rem, 3vw, 3.05rem);
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.mockup__screen p {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.82);
}

.mockup__stats {
    display: none;
}

/* Folded apparel */
.mockup--shirt {
    left: 2%;
    bottom: 36px;
    width: 350px;
    min-height: 245px;
    padding: 112px 38px 34px;
    border-radius: 34px 34px 22px 22px;
    background:
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.08), transparent 18%),
        linear-gradient(145deg, #111111 0%, #1b1b1b 42%, #2b2b2b 100%);
    color: #fff;
    transform: rotate(-5deg);
    overflow: hidden;
    box-shadow:
        0 28px 58px rgba(17, 17, 17, 0.24),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.mockup--shirt::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    width: 118px;
    height: 74px;
    transform: translateX(-50%);
    background:
        radial-gradient(ellipse at center top, transparent 0 43%, #141414 44% 100%);
    border: 3px solid rgba(255, 255, 255, 0.10);
    border-top: 0;
    border-radius: 0 0 70px 70px;
}

.mockup--shirt::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(118deg, transparent 0 13%, rgba(255, 255, 255, 0.055) 13.4% 14.2%, transparent 14.6%),
        linear-gradient(242deg, transparent 0 13%, rgba(255, 255, 255, 0.045) 13.4% 14.2%, transparent 14.6%),
        linear-gradient(180deg, transparent 0 76%, rgba(255, 255, 255, 0.05) 76.5%, transparent 77%);
    pointer-events: none;
}

.mockup--shirt span,
.mockup--shirt small {
    position: relative;
    z-index: 1;
}

.mockup--shirt span {
    display: block;
    color: #fff;
    font-size: 2.25rem;
    line-height: 0.9;
    font-weight: 950;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.mockup--shirt small {
    display: block;
    margin-top: 12px;
    color: var(--slc-teal);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* Printed flyer */
.mockup--poster {
    right: -1%;
    bottom: 62px;
    width: 230px;
    min-height: 318px;
    padding: 34px 26px;
    border: 8px solid #ffffff;
    border-radius: 8px;
    background:
        linear-gradient(160deg, rgba(1, 160, 165, 0.74), transparent 42%),
        linear-gradient(135deg, #082527 0%, #101010 52%, #262626 100%);
    color: #fff;
    transform: rotate(7deg);
    box-shadow:
        0 30px 58px rgba(17, 17, 17, 0.22),
        0 0 0 1px rgba(17, 17, 17, 0.06);
}

.mockup--poster::before {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 40px;
    height: 54px;
    background:
        linear-gradient(#ffffff, #ffffff) 0 0 / 76% 6px no-repeat,
        linear-gradient(#ffffff, #ffffff) 0 17px / 58% 6px no-repeat,
        linear-gradient(var(--slc-orange), var(--slc-orange)) 0 42px / 42% 8px no-repeat;
    opacity: 0.9;
}

.mockup--poster::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 24px;
    width: 8px;
    height: calc(100% - 38px);
    background: rgba(17, 17, 17, 0.18);
    border-radius: 0 8px 8px 0;
}

.mockup--poster span {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--slc-gold);
    font-size: 2.08rem;
    line-height: 0.9;
    font-weight: 950;
    text-transform: uppercase;
}

.mockup--poster small {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 130px;
    margin-top: 18px;
    color: #fff;
    font-weight: 750;
    line-height: 1.2;
    text-transform: uppercase;
}

.proof-strip {
    border-block: 1px solid rgba(212, 175, 55, 0.65);
    background: #fff;
}

.proof-strip__grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    align-items: stretch;
}

.proof-strip__intro,
.proof-item {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 26px clamp(16px, 2vw, 28px);
    border-right: 1px solid var(--slc-line);
}

.proof-strip__intro strong,
.proof-item strong {
    display: block;
    color: var(--slc-black);
    text-transform: uppercase;
    font-size: 0.98rem;
    line-height: 1.15;
    font-weight: 900;
}

.proof-item p { margin: 4px 0 0; font-size: 0.86rem; line-height: 1.3; }

.proof-strip svg,
.mini-card svg,
.service-row svg,
.process-step svg,
.footer-cta svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.proof-strip__icon,
.proof-item span {
    display: inline-grid;
    place-items: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    color: var(--slc-teal);
    background: rgba(1, 160, 165, 0.09);
}

.proof-strip__icon { color: var(--slc-gold); background: rgba(212, 175, 55, 0.1); }

.section-heading {
    margin-bottom: 34px;
}

.section-heading--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-heading--center .eyebrow { margin-bottom: 10px; }

.section-heading--center .eyebrow::before { display: none; }

.section-heading--center > span,
.section-heading--center .eyebrow + span { display: none; }

.section-heading--compact { margin-bottom: 28px; }

.card-grid {
    display: grid;
    gap: 24px;
}

.card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.work-card,
.case-card,
.mini-card,
.post-card,
.contact-card,
.contact-sidebar,
.callout-card {
    background: #fff;
    border: 1px solid var(--slc-line);
    border-radius: 14px;
    box-shadow: var(--slc-shadow-soft);
}

.strategy-card {
    min-height: 328px;
}

.strategy-card__icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    color: var(--slc-teal);
    background: rgba(1, 160, 165, 0.09);
    border-radius: 999px;
}

.strategy-card__icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.strategy-card__icon--message {
    color: var(--slc-teal);
    background: rgba(1, 160, 165, 0.09);
}

.strategy-card__icon--audit {
    color: var(--slc-orange);
    background: rgba(227, 106, 38, 0.10);
}

.strategy-card__icon--roadmap {
    color: var(--slc-gold);
    background: rgba(212, 175, 55, 0.13);
}

.strategy-card h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.work-card { overflow: hidden; }

.work-card__image {
    min-height: 210px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.work-card__image::before,
.work-card__image::after {
    content: "";
    position: absolute;
    border-radius: 14px;
    opacity: 0.9;
}

.work-card__image::before {
    width: 70%;
    height: 58%;
    left: 14%;
    top: 18%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.work-card__image::after {
    width: 48%;
    height: 18%;
    left: 25%;
    top: 42%;
    background: rgba(1, 160, 165, 0.72);
}

.work-card__image span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 8px 11px;
    background: rgba(17, 17, 17, 0.76);
    color: #fff;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.work-card__image--screen { background: linear-gradient(135deg, #222, #075e63); }
.work-card__image--orange { background: radial-gradient(circle at 70% 50%, #ffb068, transparent 20%), linear-gradient(135deg, #2a1a10, var(--slc-orange)); }
.work-card__image--apparel { background: linear-gradient(135deg, #151515, #373737); }
.work-card__image--campaign { background: linear-gradient(135deg, #071c22, #222, #064e51); }

.work-card__image--apparel::before {
    width: 54%;
    height: 54%;
    left: 23%;
    top: 22%;
    background: #111;
    border-radius: 20px 20px 80px 80px;
}

.work-card__image--orange::before {
    background: rgba(255, 255, 255, 0.22);
}

.work-card__image--photo {
    display: block;
    min-height: unset;
    padding: 0;
    overflow: hidden;
    background: var(--slc-soft);
}

.work-card__image--photo::before,
.work-card__image--photo::after {
    display: none;
    content: none;
}

.work-card__image--photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    transition: transform 220ms ease;
}

.work-card__content,
.case-card > div:last-child,
.post-card__content {
    padding: 24px;
}

.work-card__type {
    margin-bottom: 8px;
    color: var(--slc-orange);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.work-card h3,
.case-card h2,
.post-card h2 { margin-bottom: 10px; font-size: 1.45rem; }

.work-card a,
.text-link {
    color: var(--slc-teal-dark);
    font-weight: 850;
}

.mini-card {
    min-height: 220px;
    padding: 30px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mini-card:hover {
    transform: translateY(-4px);
    border-color: rgba(1, 160, 165, 0.5);
    box-shadow: var(--slc-shadow);
    color: inherit;
}

.mini-card__icon,
.service-row__icon,
.process-step span {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    color: var(--slc-teal);
    background: rgba(1, 160, 165, 0.09);
    border-radius: 16px;
}

.mini-card:nth-child(2) .mini-card__icon,
.service-row:nth-child(2) .service-row__icon { color: var(--slc-orange); background: rgba(227, 106, 38, 0.10); }
.mini-card:nth-child(4) .mini-card__icon,
.service-row:nth-child(4) .service-row__icon { color: var(--slc-gold); background: rgba(212, 175, 55, 0.11); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 4rem);
}

.process-step {
    position: relative;
    padding: 34px 30px;
    border-top: 1px solid var(--slc-line);
}

.process-step strong {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-bottom: 18px;
    color: #fff;
    background: var(--slc-teal);
    border-radius: 999px;
    font-size: 0.82rem;
}

.process-step span { border-radius: 999px; }

.page-hero {
    background: linear-gradient(180deg, #fff, var(--slc-soft));
    border-bottom: 1px solid var(--slc-line);
}

.page-hero__inner { max-width: 900px; }

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
    gap: 50px;
    align-items: center;
}

.page-hero p { max-width: 720px; font-size: 1.1rem; color: var(--slc-charcoal); }

.page-content {
    max-width: 850px;
    padding: 58px 0 84px;
}

.wysiwyg > * + * { margin-top: 1.1em; }

.wysiwyg h2 { margin-top: 1.3em; }

.wysiwyg a { color: var(--slc-teal-dark); font-weight: 800; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.callout-card,
.contact-card,
.contact-sidebar {
    padding: clamp(26px, 4vw, 40px);
}

.callout-card h2,
.contact-card h2,
.contact-sidebar h2 { font-size: clamp(1.6rem, 2.4vw, 2.3rem); }

.services-stack { display: grid; gap: 22px; }

.service-row {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) minmax(240px, 0.65fr);
    align-items: center;
    gap: 28px;
    padding: clamp(24px, 4vw, 40px);
    background: #fff;
    border: 1px solid var(--slc-line);
    border-radius: 18px;
    box-shadow: var(--slc-shadow-soft);
    scroll-margin-top: 120px;
}

.service-row h2 { font-size: clamp(1.65rem, 3vw, 2.6rem); }

.service-row ul,
.check-list,
.footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-row li,
.check-list li {
    position: relative;
    padding-left: 22px;
    margin: 0 0 9px;
    color: var(--slc-charcoal);
    font-weight: 650;
}

.service-row li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.67em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--slc-orange);
}

.case-grid { align-items: stretch; }

.case-card { overflow: hidden; }

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.form-placeholder:empty::before {
    content: "Place your preferred form block or shortcode here.";
    display: block;
    padding: 28px;
    color: var(--slc-muted);
    background: var(--slc-soft);
    border: 1px dashed var(--slc-line);
    border-radius: 12px;
}

input,
textarea,
select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(17, 17, 17, 0.2);
    border-radius: 8px;
    font: inherit;
}

textarea { min-height: 140px; }

.timeline {
    display: grid;
    gap: 18px;
    max-width: 900px;
}

.timeline article {
    display: grid;
    grid-template-columns: 76px 220px 1fr;
    gap: 26px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--slc-line);
}

.timeline span {
    color: var(--slc-orange);
    font-weight: 950;
    letter-spacing: 0.08em;
}

.content-layout { padding-block: 72px; }

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.post-card { overflow: hidden; }
.post-card__image img { aspect-ratio: 1 / 1; object-fit: contain; width: 100%; }

.single-featured-image img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: var(--slc-shadow-soft);
}

.footer-cta { padding: clamp(42px, 6vw, 72px) 0; }

.footer-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
}

.footer-cta h2 { color: #fff; max-width: 680px; }
.footer-cta p { color: rgba(255, 255, 255, 0.86); max-width: 620px; }

.footer-cta__icon {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border: 2px solid rgba(255, 255, 255, 0.64);
    border-radius: 999px;
    color: #fff;
}

.footer-cta__icon svg { width: 46px; height: 46px; }

.site-footer__main {
    padding: 54px 0 28px;
    background: #101010;
    color: #fff;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.65fr 0.8fr;
    gap: 44px;
}

.site-footer p { color: rgba(255, 255, 255, 0.72); max-width: 420px; }

.footer-title {
    color: #fff;
    margin-bottom: 18px;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-menu li { margin-bottom: 10px; }
.footer-menu a { color: rgba(255, 255, 255, 0.76); }
.footer-menu a:hover { color: var(--slc-orange); }

.site-footer__bottom {
    padding-top: 34px;
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p { margin: 0; font-size: 0.88rem; }

.navigation.pagination,
.post-navigation {
    margin-top: 40px;
}

.comment-list { padding-left: 0; list-style: none; }

@media (max-width: 1100px) {
	.site-header__cta { display: none; }
	
	.main-navigation .menu-item--project-inquiry {
        display: block;
    }
	
	.main-navigation .menu-item--project-inquiry > a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: #e36a26;
        color: #fff;
        border-radius: 8px;
        padding: 0.95rem 1.35rem;
        font-weight: 800;
        text-decoration: none;
        box-shadow: 0 16px 35px rgba(227, 106, 38, 0.22);
    }

    .main-navigation .menu-item--project-inquiry > a:hover,
    .main-navigation .menu-item--project-inquiry > a:focus {
        background: #cf5d1f;
        color: #fff;
        transform: translateY(-1px);
    }
	
    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        width: 100%;
        max-width: 760px;
        min-height: 620px;
        margin-inline: auto;
        overflow: visible;
    }

    .mockup--laptop {
        width: min(82%, 640px);
        left: 50%;
        right: auto;
        top: 10px;
        transform: translateX(-50%) rotate(1deg);
        z-index: 2;
    }

    .mockup--laptop::before {
        z-index: -1;
    }

    .mockup--laptop::after {
        z-index: 0;
    }

    .mockup__bar,
    .mockup__screen {
        position: relative;
        z-index: 1;
    }

    .mockup--shirt {
        z-index: 3;
        left: 1%;
        bottom: 36px;
        width: 340px;
        min-height: 238px;
        padding: 110px 36px 30px;
    }

    .mockup--poster {
        z-index: 4;
        right: 1%;
        bottom: 62px;
        width: 220px;
        min-height: 306px;
    }

	.process-grid,
	.proof-strip__grid,
	.card-grid--4,
	.post-grid { grid-template-columns: repeat(2, minmax(0, 1fr));}
}

@media (max-width: 860px) {
    .site-header__inner { min-height: 78px; }

	.menu-toggle { display: inline-grid; place-items: center; margin-left: auto; }
    .main-navigation {
        position: fixed;
        inset: 78px 0 auto 0;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 220ms ease, opacity 220ms ease;
        background: #fff;
        border-bottom: 1px solid var(--slc-line);
        box-shadow: var(--slc-shadow-soft);
        margin-left: 0;
    }
    .main-navigation.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .main-navigation .menu {
        display: grid;
        gap: 0;
        padding: 18px 20px 28px;
    }
    .main-navigation a { min-height: 54px; font-size: 1.08rem; }
    h1 { font-size: clamp(3.1rem, 13vw, 5.1rem); }
	
	.main-navigation .menu-item--project-inquiry {
        margin-top: 0.85rem;
        padding-top: 0.35rem;
    }

    .main-navigation .menu-item--project-inquiry > a {
        width: fit-content;
        min-width: 0;
        max-width: 100%;
        padding: 0.85rem 1.25rem;
        border-radius: 999px;
        font-size: 1rem;
        line-height: 1;
        font-weight: 800;
        letter-spacing: -0.02em;
        background: #e36a26;
        color: #fff;
        box-shadow: 0 10px 24px rgba(227, 106, 38, 0.18);
    }

    .main-navigation .menu-item--project-inquiry > a:hover,
    .main-navigation .menu-item--project-inquiry > a:focus {
        background: #cf5d1f;
        color: #fff;
        transform: translateY(-1px);
    }

    .main-navigation .menu-item--project-inquiry > a::before,
    .main-navigation .menu-item--project-inquiry > a::after {
        display: none;
    }
	
    .hero__visual {
        width: 100%;
        max-width: 680px;
        min-height: 520px;
        margin-inline: auto;
        overflow: visible;
    }

    .mockup--laptop {
        width: min(92%, 620px);
        left: 50%;
        right: auto;
        top: 0;
        transform: translateX(-50%) rotate(0.5deg);
        border-width: 11px;
        border-bottom-width: 14px;
        border-radius: 20px;
    }

    .mockup--laptop::before {
        left: 8%;
        right: 8%;
        bottom: -42px;
        height: 40px;
        border-radius: 0 0 22px 22px;
        transform: perspective(260px) rotateX(20deg);
    }

    .mockup--laptop::after {
        left: 38%;
        right: 38%;
        bottom: -30px;
        height: 6px;
    }

    .mockup__screen {
        min-height: 245px;
        padding: 34px 28px 66px;
    }

    .mockup__brand {
        margin-bottom: 24px;
    }

    .mockup__screen h2 {
        max-width: 360px;
        font-size: clamp(1.75rem, 5.8vw, 2.5rem);
        line-height: 0.95;
    }

    .mockup__screen p {
        max-width: 300px;
        font-size: 0.94rem;
        line-height: 1.35;
    }

    .mockup__screen::after {
        left: 28px;
        right: 28px;
        bottom: 24px;
        height: 18px;
    }

    .mockup--shirt {
        width: 300px;
        min-height: 220px;
        left: 0;
        bottom: 20px;
        padding-top: 98px;
    }

    .mockup--poster {
        display: block;
        width: 186px;
        min-height: 266px;
        right: 0;
        bottom: 42px;
		padding: 34px 14px;
    }
	
	.mockup--poster::before {
		left: 16px;
		right: 6px;
	}
	
	.portfolio-gallery--brand {
    grid-template-columns: repeat(2, minmax(0, 1fr));
	}
    .proof-strip__grid,
    .process-grid,
    .page-hero__grid,
    .contact-grid,
    .site-footer__grid,
    .footer-cta__inner,
    .service-row,
    .timeline article { grid-template-columns: 1fr; }
    .footer-cta__inner { text-align: left; }
    .card-grid--3,
    .card-grid--2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.container { width: min(calc(100% - 28px), var(--slc-container)); }
    .section { padding: 58px 0; }
    .hero { padding-top: 44px; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .button { width: 100%; }
    .card-grid--4,
    .post-grid { grid-template-columns: 1fr; }
    .proof-strip__intro,
    .proof-item { border-right: 0; border-bottom: 1px solid var(--slc-line); }

    .hero__visual {
        min-height: 430px;
        max-width: 420px;
    }

    .mockup--laptop {
        width: 100%;
        left: 50%;
        right: auto;
        top: 0;
        transform: translateX(-50%);
        border-width: 9px;
        border-bottom-width: 12px;
        border-radius: 17px;
    }

    .mockup--laptop::before {
        left: 10%;
        right: 10%;
        bottom: -34px;
        height: 32px;
        border-radius: 0 0 18px 18px;
    }

    .mockup--laptop::after {
        bottom: -24px;
        height: 5px;
    }

    .mockup__bar {
        height: 24px;
    }

    .mockup__screen {
        min-height: 205px;
        padding: 26px 20px 50px;
    }

    .mockup__brand {
        margin-bottom: 18px;
        font-size: 0.62rem;
    }

    .mockup__screen h2 {
        max-width: 270px;
        font-size: clamp(1.45rem, 8vw, 2rem);
        line-height: 0.96;
    }

    .mockup__screen p {
        max-width: 230px;
        font-size: 0.82rem;
        line-height: 1.3;
    }

    .mockup__screen::after {
        left: 20px;
        right: 20px;
        bottom: 19px;
        height: 14px;
    }

    .mockup--shirt {
        width: 245px;
        min-height: 182px;
        left: -4px;
        bottom: 8px;
        padding: 80px 26px 22px;
        border-radius: 26px 26px 18px 18px;
    }

    .mockup--shirt::before {
        top: 13px;
        width: 92px;
        height: 58px;
    }

    .mockup--shirt span {
        font-size: 1.55rem;
    }

    .mockup--shirt small {
        font-size: 0.62rem;
        letter-spacing: 0.13em;
    }

    .mockup--poster {
        display: block;
        width: 138px;
        min-height: 198px;
        right: -4px;
        bottom: 34px;
        padding: 22px 16px;
        border-width: 6px;
    }

	.mockup--poster::before {
		left: 16px;
		right: 6px;
		bottom: 20px;
	}
	
    .mockup--poster span {
        font-size: 1.34rem;
    }

    .mockup--poster small {
        font-size: 0.62rem;
        line-height: 1.15;
    }
	
	.portfolio-gallery--brand {
    grid-template-columns: 1fr;
	}

	.portfolio-brand-block {
		padding: 42px 0;
	}
    .site-branding__text { font-size: 1.45rem; }
}

/* SLC v1.1 alignment updates from active Customsv3 theme */
h1,
h2,
h3,
.section-heading .eyebrow {
    font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
}

h1,
h2,
h3 {
    font-weight: 900;
    letter-spacing: -0.035em;
}

.site-branding__text {
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    color: var(--slc-orange);
}

.hero__lead {
    max-width: 640px;
}

.work-card__image--photo {
    display: block;
    min-height: unset;
    padding: 0;
    overflow: hidden;
    background: var(--slc-soft);
}

.work-card__image--photo img,
.case-card img,
.portfolio-gallery__item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 220ms ease;
}

.work-card:hover .work-card__image--photo img,
.case-card:hover img,
.portfolio-gallery__item:hover img {
    transform: scale(1.035);
}

.section--soft {
    background: linear-gradient(180deg, #fff 0%, var(--slc-soft) 100%);
}

.section--brand-presence {
    padding-top: 0;
}

.split-panel {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
    padding: clamp(28px, 5vw, 58px);
    background: #fff;
    border: 1px solid var(--slc-line);
    border-radius: 24px;
    box-shadow: var(--slc-shadow-soft);
}

.brand-diagram {
    position: relative;
    width: 440px;
    max-width: 100%;
    min-height: 330px;
    margin-inline: auto;
}

.diagram-circle {
    position: absolute;
    display: grid;
    place-items: center;
    width: 178px;
    height: 178px;
    border-radius: 999px;
    background: rgba(255,255,255,0.75);
    border: 2px solid currentColor;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-align: center;
}

.diagram-circle--strategy {
    top: 4px;
    left: 50%;
    right: auto;
    transform: translateX(-78%);
    color: var(--slc-teal);
}

.diagram-circle--design {
    top: 4px;
    left: 50%;
    right: auto;
    transform: translateX(-22%);
    color: var(--slc-orange);
}

.diagram-circle--execution {
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    color: var(--slc-gold);
}

.diagram-center {
    position: absolute;
    inset: 0;
    z-index: 3;
    margin: auto;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    color: var(--slc-gold);
    background: #fff;
    border: 1px solid var(--slc-line);
    border-radius: 999px;
    box-shadow: var(--slc-shadow-soft);
}

.diagram-center svg {
    width: 40px;
    height: 40px;
}

@media (max-width: 1200px) {
    .split-panel {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 38px;
    }

    .split-panel > div:not(.brand-diagram) {
        order: 1;
        width: 100%;
        max-width: 760px;
    }

    .brand-diagram {
        order: 2;
        width: min(100%, 440px);
        min-height: 330px;
        justify-self: center;
    }
}

@media (max-width: 640px) {
    .split-panel {
        padding: 26px 18px;
        border-radius: 18px;
        gap: 30px;
    }

    .brand-diagram {
        width: min(100%, 310px);
        min-height: 230px;
    }

    .diagram-circle {
        width: 126px;
        height: 126px;
        font-size: 0.64rem;
        letter-spacing: 0.06em;
    }

    .diagram-circle--strategy {
        top: 0;
        transform: translateX(-78%);
    }

    .diagram-circle--design {
        top: 0;
        transform: translateX(-22%);
    }

    .diagram-circle--execution {
        bottom: 2px;
        transform: translateX(-50%);
    }

    .diagram-center {
        width: 56px;
        height: 56px;
    }

    .diagram-center svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 380px) {
    .brand-diagram {
        width: min(100%, 280px);
        min-height: 210px;
    }

    .diagram-circle {
        width: 114px;
        height: 114px;
        font-size: 0.56rem;
    }

    .diagram-center {
        width: 50px;
        height: 50px;
    }

    .diagram-center svg {
        width: 23px;
        height: 23px;
    }
}

.pathway-card {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 14px;
    padding: clamp(28px, 4vw, 42px) clamp(22px, 3vw, 34px) 34px;
    min-height: 270px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--slc-line);
    border-top: 4px solid var(--slc-teal);
    border-radius: 18px;
    box-shadow: var(--slc-shadow-soft);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pathway-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--slc-shadow);
    color: inherit;
}

.pathway-card--apparel { border-top-color: var(--slc-orange); }
.pathway-card--direction { border-top-color: var(--slc-gold); }

.pathway-card__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 2px;
    color: var(--slc-teal);
    background: transparent;
    border-radius: 0;
}

.pathway-card--apparel .pathway-card__icon { color: var(--slc-orange); }
.pathway-card--direction .pathway-card__icon { color: var(--slc-gold); }
.pathway-card__icon svg { width: 44px; height: 44px; stroke-width: 1.8; }

.pathway-card h3 {
    max-width: 280px;
    margin-bottom: 0;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.08;
}

.pathway-card p {
    max-width: 280px;
    margin-bottom: 4px;
}

.pathway-card__arrow {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-top: auto;
    color: #fff;
    background: var(--slc-teal-dark);
    border-radius: 999px;
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease;
}

.pathway-card:hover .pathway-card__arrow {
    transform: translateX(3px);
    background: var(--slc-orange);
}

.service-row__icon,
.mini-card__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--slc-teal);
    background: rgba(1,160,165,0.09);
    border-radius: 999px;
}

.service-row__icon svg,
.mini-card__icon svg {
    width: 30px;
    height: 30px;
}

.portfolio-category {
    margin-top: clamp(34px, 5vw, 58px);
}

.portfolio-category:first-of-type {
    margin-top: 0;
}

.portfolio-category__heading {
    max-width: 760px;
    margin-bottom: 22px;
}

.portfolio-category__heading h3 {
    margin-bottom: 8px;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.portfolio-category__heading p {
    max-width: 680px;
    color: var(--slc-muted);
}

.portfolio-gallery--category {
    margin-top: 0;
}

.portfolio-gallery__item--detailed figcaption {
    padding: 18px 20px 22px;
}

.portfolio-gallery__item--detailed figcaption span {
    display: block;
    margin-bottom: 7px;
    color: var(--slc-orange);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.portfolio-gallery__item--detailed figcaption strong {
    display: block;
    margin-bottom: 8px;
    color: var(--slc-black);
    font-size: 1.08rem;
    font-weight: 850;
    line-height: 1.15;
}

.portfolio-gallery__item--detailed figcaption p {
    margin: 0;
	padding-bottom: 0;
    color: var(--slc-muted);
    font-size: 0.92rem;
	font-weight: normal;
    line-height: 1.45;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.portfolio-gallery--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-gallery__item {
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--slc-line);
    border-radius: 18px;
    box-shadow: var(--slc-shadow-soft);
}

.portfolio-gallery__item figcaption,
.portfolio-gallery__item h2 {
    padding-inline: 18px;
}

.portfolio-gallery__item figcaption {
    display: block;
    padding-block: 14px 18px;
    color: var(--slc-black);
    font-weight: 850;
	text-align: left;
}

.portfolio-gallery__item h2 {
    margin-top: 18px;
    font-size: 1.55rem;
}

.portfolio-gallery__item p {
    padding-bottom: 18px;
}

.portfolio-note {
    margin-top: 28px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--slc-muted);
}

/* Unified portfolio page */
.portfolio-page-intro {
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: clamp(42px, 6vw, 72px);
}

.portfolio-page-intro > p:not(.eyebrow) {
    max-width: 760px;
    margin-inline: auto;
}

.portfolio-brand-block {
    padding: clamp(34px, 5vw, 58px) 0;
    border-top: 1px solid var(--slc-line);
}

.portfolio-brand-block:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.portfolio-brand-block__heading {
    max-width: 820px;
    margin-bottom: 24px;
}

.portfolio-brand-block__heading h2 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.portfolio-brand-block__heading > p:not(.work-card__type) {
    max-width: 720px;
    color: var(--slc-muted);
    font-size: 1.05rem;
}

.portfolio-gallery--brand {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* SLC responsive gallery correction
   Keeps image-based portfolio/gallery grids collapsing like the homepage work grid. */
.portfolio-gallery,
.portfolio-gallery--six,
.portfolio-gallery--category,
.portfolio-gallery--brand {
    width: 100%;
}

.portfolio-gallery__item {
    min-width: 0;
}

.portfolio-gallery__item img {
    display: block;
    width: 100%;
}

@media (max-width: 1100px) {
    .portfolio-gallery,
    .portfolio-gallery--six,
    .portfolio-gallery--category,
    .portfolio-gallery--brand {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .portfolio-gallery,
    .portfolio-gallery--six,
    .portfolio-gallery--category,
    .portfolio-gallery--brand {
        grid-template-columns: 1fr;
    }
}

.portfolio-final-cta {
    margin-top: clamp(34px, 6vw, 72px);
}

.portfolio-final-cta h2 {
    max-width: 720px;
}

.portfolio-final-cta p {
    max-width: 680px;
}

.portfolio-final-cta .button {
    margin-top: 12px;
}

.quote-card {
    padding: clamp(28px, 4vw, 42px);
    background: linear-gradient(135deg, rgba(212,175,55,0.13), rgba(1,160,165,0.08));
    border-left: 5px solid var(--slc-gold);
    border-radius: 18px;
}

.quote-card p {
    margin: 0;
    color: var(--slc-black);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.18;
    font-weight: 750;
}

.footer-menu--dark a {
    color: var(--slc-black);
}

.fallback-contact {
    padding: 28px;
    background: var(--slc-soft);
    border: 1px dashed var(--slc-line);
    border-radius: 14px;
}

.form-placeholder .wpcf7 {
    margin-top: 24px;
}

.moretag {
    color: var(--slc-orange);
    font-weight: 850;
}

.pagination a,
.pagination span {
    display: inline-flex;
    margin: 4px;
    padding: 10px 14px;
    border: 1px solid var(--slc-line);
    border-radius: 8px;
}

.pagination .current {
    color: #fff;
    background: var(--slc-orange);
    border-color: var(--slc-orange);
}


/* SLC v1.2 refinement updates */
h1 {
    font-weight: 800;
    letter-spacing: -0.025em;
}

h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.022em;
}

.section-heading h2,
.page-hero h1,
.hero h1 {
    line-height: 1.02;
}

.work-card__image--photo img,
.case-card img,
.portfolio-gallery__item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-logo-link,
.footer-logo-link img {
    display: inline-block;
}

.footer-logo-link img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-brand .custom-logo-link img {
    max-width: 180px;
    max-height: 96px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-brand .site-branding__text {
    color: var(--slc-orange);
}

html {
    scroll-padding-top: 112px;
}

#start-project-options {
    scroll-margin-top: 112px;
}

.pathway-card svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* CF7 checkbox group container */
.wpcf7 .wpcf7-form-control.wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
  margin: 0.85rem 0 1.5rem;
}

/* Individual checkbox item */
.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin: 0;
}

/* The clickable label/card */
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 92px;
  padding: 1rem 0.85rem;

  border: 1px solid rgba(1, 160, 165, 0.22);
  border-radius: 14px;
  background: #ffffff;

  text-align: center;
  cursor: pointer;
}

/* Checkbox centered at top */
.wpcf7 .wpcf7-checkbox input[type="checkbox"] {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto 0.55rem;
  accent-color: #e36a26;
}

/* Text centered under checkbox */
.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label {
  display: block;
  width: 100%;
  color: #111111;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

/* Single article hero layout */
.single-post-hero {
    background: linear-gradient(180deg, #fff, var(--slc-soft));
    border-bottom: 1px solid var(--slc-line);
}

.single-post-hero__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(30px, 5vw, 72px);
}

.single-post-hero__image {
    overflow: hidden;
    background: var(--slc-soft);
    border: 1px solid var(--slc-line);
    border-radius: 22px;
    box-shadow: var(--slc-shadow-soft);
}

.single-post-hero__image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
}

.single-post-hero__content {
    max-width: 760px;
}

.single-post-hero__content h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2.85rem, 6vw, 5.8rem);
}

.single-post-hero__content > p:not(.eyebrow) {
    max-width: 680px;
    color: var(--slc-charcoal);
    font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

/* Fallback for posts without a featured image */
.single-post-hero--no-image .single-post-hero__grid {
    display: block;
    max-width: 900px;
}

.single-post-hero--no-image .single-post-hero__content {
    max-width: 900px;
}

/* Optional: tighten article body spacing after the hero */
.single-post-hero + .page-content,
.single-post-hero ~ .page-content {
    padding-top: clamp(46px, 6vw, 68px);
}

/* Mobile article hero */
@media (max-width: 860px) {
    .single-post-hero__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .single-post-hero__image {
        max-width: 560px;
    }

    .single-post-hero__content h1 {
        font-size: clamp(2.65rem, 11vw, 4.8rem);
    }
}

@media (max-width: 640px) {
    .single-post-hero__image img {
        aspect-ratio: 1 / 1;
    }
}

/* Single article tools */
.single-post-tools {
    padding-top: clamp(26px, 4vw, 40px);
}

.single-post-tools__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--slc-line);
}

.single-post-tools__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin: 0;
    color: var(--slc-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.single-post-tools__meta span {
    display: inline-flex;
    align-items: center;
}

.single-post-tools__meta span + span::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 16px;
    background: var(--slc-gold);
    border-radius: 999px;
}

.social-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
}

.social-share-link {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    background: #fff;
    border: 1px solid var(--slc-line);
    border-radius: 999px;
    box-shadow: none;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-share-link:hover {
    transform: translateY(-2px);
    border-color: rgba(1, 160, 165, 0.42);
    background: var(--slc-soft);
}

.social-share-link--button {
    min-height: 42px;
    color: inherit;
}

.social-share-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.social-share-link.is-copied {
    border-color: var(--slc-teal);
    background: rgba(1, 160, 165, 0.09);
}

@media (max-width: 760px) {
    .single-post-tools__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-share {
        justify-content: flex-start;
    }

    .single-post-tools__meta span + span::before {
        display: none;
    }
}

@media print {
    .site-header,
    .site-footer,
    .single-post-tools,
    .blog_navigation,
    .footer-cta {
        display: none !important;
    }

    .single-post-hero {
        border-bottom: 0;
        background: #fff;
    }

    .page-content {
        max-width: none;
        padding: 24px 0 0;
    }
}

/* Single article navigation */
.blog_navigation {
    padding-bottom: clamp(58px, 7vw, 88px);
}

.blog_navigation__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    padding-top: 28px;
    border-top: 1px solid var(--slc-line);
}

.blog_navigation a {
    color: var(--slc-teal-dark);
    font-weight: 850;
}

.blog_navigation a:hover {
    color: var(--slc-orange);
}

.blog_navigation__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.blog_navigation__link--previous {
    justify-self: start;
}

.blog_navigation__link--next {
    justify-self: end;
}

.blog_navigation__back {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 46px;
    padding: 0 20px;
    color: #fff !important;
    background: var(--slc-orange);
    border-radius: 4px;
    box-shadow: 0 14px 24px rgba(227, 106, 38, 0.18);
}

.blog_navigation__back:hover {
    color: #fff !important;
    background: #c9541c;
}

.blog_navigation__placeholder {
    display: block;
}

@media (max-width: 640px) {
    .blog_navigation__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 22px;
        padding-top: 32px;
    }

    .blog_navigation__link,
    .blog_navigation__back {
        justify-self: center;
        max-width: 100%;
    }

    .blog_navigation__link--previous,
    .blog_navigation__link--next {
        justify-self: center;
    }

    .blog_navigation__link {
        font-size: clamp(1rem, 5vw, 1.25rem);
        line-height: 1.2;
    }

    .blog_navigation__back {
        width: min(100%, 260px);
        min-height: 52px;
        padding: 0 22px;
        border-radius: 8px;
        font-size: clamp(1rem, 5vw, 1.2rem);
    }

    .blog_navigation__placeholder {
        display: none;
    }
}
/* Tasteful motion layer
--------------------------------------------- */
:root {
    --slc-ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
    --slc-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
    --slc-motion-short: 180ms;
    --slc-motion-medium: 520ms;
    --slc-motion-long: 760ms;
}

.site-header {
    transition: background var(--slc-motion-short) ease, box-shadow var(--slc-motion-short) ease, border-color var(--slc-motion-short) ease;
}

.site-header__inner,
.site-branding img,
.site-branding__text {
    transition: min-height var(--slc-motion-short) ease, max-height var(--slc-motion-short) ease, font-size var(--slc-motion-short) ease, transform var(--slc-motion-short) ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(17, 17, 17, 0.10);
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
}

.site-header.is-scrolled .site-header__inner {
    min-height: 76px;
}

.site-header.is-scrolled .site-branding img {
    max-height: 54px;
}

.site-header.is-scrolled .site-branding__text {
    transform: scale(0.94);
    transform-origin: left center;
}

.menu-toggle span:not(.screen-reader-text) {
    transition: opacity var(--slc-motion-short) ease, transform var(--slc-motion-short) ease, background var(--slc-motion-short) ease;
}

.menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.button,
.social-share-link,
.blog_navigation__back,
.work-card,
.case-card,
.mini-card,
.post-card,
.contact-card,
.contact-sidebar,
.callout-card,
.service-row,
.portfolio-gallery__item,
.pathway-card,
.strategy-card,
.quote-card {
    backface-visibility: hidden;
    transform: translateZ(0);
}

.button,
.social-share-link,
.blog_navigation__back {
    position: relative;
    overflow: hidden;
}

.button::after,
.blog_navigation__back::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.28) 46%, transparent 58% 100%);
    transform: translateX(-120%);
    transition: transform 650ms var(--slc-ease-standard);
    pointer-events: none;
}

.button:hover::after,
.blog_navigation__back:hover::after {
    transform: translateX(120%);
}

.button:focus-visible,
.main-navigation a:focus-visible,
.footer-menu a:focus-visible,
.text-link:focus-visible,
.work-card a:focus-visible,
.blog_navigation a:focus-visible,
.social-share-link:focus-visible {
    outline: 3px solid rgba(227, 106, 38, 0.42);
    outline-offset: 4px;
}

.work-card,
.case-card,
.post-card,
.contact-card,
.contact-sidebar,
.callout-card,
.service-row,
.portfolio-gallery__item,
.strategy-card,
.quote-card {
    transition: transform var(--slc-motion-short) ease, box-shadow var(--slc-motion-short) ease, border-color var(--slc-motion-short) ease;
}

.work-card:hover,
.case-card:hover,
.post-card:hover,
.contact-card:hover,
.contact-sidebar:hover,
.callout-card:hover,
.service-row:hover,
.portfolio-gallery__item:hover,
.strategy-card:hover,
.quote-card:hover {
    transform: translateY(-5px);
    border-color: rgba(1, 160, 165, 0.36);
    box-shadow: var(--slc-shadow);
}

.work-card__image--photo img,
.case-card img,
.portfolio-gallery__item img,
.post-card__image img,
.single-post-hero__image img {
    transition: transform 650ms var(--slc-ease-standard), filter 650ms var(--slc-ease-standard);
}

.work-card:hover .work-card__image--photo img,
.case-card:hover img,
.portfolio-gallery__item:hover img,
.post-card:hover .post-card__image img {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.02);
}

.mockup__screen > * {
    position: relative;
    z-index: 2;
}

.mockup__screen::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.10) 48%, transparent 60% 100%);
    transform: translateX(-120%);
    animation: slc-screen-sheen 7.5s ease-in-out 1.2s infinite;
    pointer-events: none;
}

.mockup__screen::after {
    z-index: 1;
}

.hero__visual::before {
    animation: slc-glow-breathe 8s ease-in-out infinite;
}

.diagram-center {
    animation: slc-soft-pulse 6s ease-in-out infinite;
}

.diagram-circle,
.proof-strip__icon,
.proof-item span,
.mini-card__icon,
.service-row__icon,
.process-step span,
.pathway-card__icon,
.strategy-card__icon,
.footer-cta__icon {
    transition: transform var(--slc-motion-short) ease, box-shadow var(--slc-motion-short) ease, background var(--slc-motion-short) ease;
}

.brand-diagram:hover .diagram-circle--strategy,
.brand-diagram:hover .diagram-circle--design,
.brand-diagram:hover .diagram-circle--execution,
.proof-strip__intro:hover .proof-strip__icon,
.proof-item:hover span,
.mini-card:hover .mini-card__icon,
.service-row:hover .service-row__icon,
.process-step:hover span,
.pathway-card:hover .pathway-card__icon,
.strategy-card:hover .strategy-card__icon,
.footer-cta:hover .footer-cta__icon {
    transform: translateY(-3px);
}

.slc-js-enabled .slc-animate {
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(0, 24px, 0);
    transition: opacity var(--slc-motion-long) var(--slc-ease-soft), transform var(--slc-motion-long) var(--slc-ease-soft), filter var(--slc-motion-long) var(--slc-ease-soft);
    transition-delay: var(--slc-reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.slc-js-enabled .hero__visual.slc-animate,
.slc-js-enabled .single-post-hero__image.slc-animate,
.slc-js-enabled .portfolio-gallery__item.slc-animate,
.slc-js-enabled .work-card.slc-animate,
.slc-js-enabled .post-card.slc-animate {
    transform: translate3d(0, 28px, 0) scale(0.985);
}

.slc-js-enabled .slc-animate.is-inview {
    opacity: 1;
    filter: blur(0);
    transform: none;
}

@keyframes slc-screen-sheen {
    0%, 42% { transform: translateX(-120%); }
    58%, 100% { transform: translateX(120%); }
}

@keyframes slc-glow-breathe {
    0%, 100% { opacity: 0.84; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.025); }
}

@keyframes slc-soft-pulse {
    0%, 100% { box-shadow: var(--slc-shadow-soft); }
    50% { box-shadow: 0 18px 42px rgba(212, 175, 55, 0.20); }
}

@media (max-width: 860px) {
    .main-navigation .menu > li {
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 260ms var(--slc-ease-standard), transform 260ms var(--slc-ease-standard);
    }

    .main-navigation.is-open .menu > li {
        opacity: 1;
        transform: translateY(0);
    }

    .main-navigation.is-open .menu > li:nth-child(1) { transition-delay: 40ms; }
    .main-navigation.is-open .menu > li:nth-child(2) { transition-delay: 75ms; }
    .main-navigation.is-open .menu > li:nth-child(3) { transition-delay: 110ms; }
    .main-navigation.is-open .menu > li:nth-child(4) { transition-delay: 145ms; }
    .main-navigation.is-open .menu > li:nth-child(5) { transition-delay: 180ms; }
    .main-navigation.is-open .menu > li:nth-child(6) { transition-delay: 215ms; }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .slc-js-enabled .slc-animate,
    .slc-js-enabled .hero__visual.slc-animate,
    .slc-js-enabled .single-post-hero__image.slc-animate,
    .slc-js-enabled .portfolio-gallery__item.slc-animate,
    .slc-js-enabled .work-card.slc-animate,
    .slc-js-enabled .post-card.slc-animate {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        transition: none !important;
    }
}

.slc-js-enabled .work-card.slc-animate.is-inview:hover,
.slc-js-enabled .case-card.slc-animate.is-inview:hover,
.slc-js-enabled .post-card.slc-animate.is-inview:hover,
.slc-js-enabled .contact-card.slc-animate.is-inview:hover,
.slc-js-enabled .contact-sidebar.slc-animate.is-inview:hover,
.slc-js-enabled .callout-card.slc-animate.is-inview:hover,
.slc-js-enabled .service-row.slc-animate.is-inview:hover,
.slc-js-enabled .portfolio-gallery__item.slc-animate.is-inview:hover,
.slc-js-enabled .strategy-card.slc-animate.is-inview:hover,
.slc-js-enabled .quote-card.slc-animate.is-inview:hover {
    transform: translateY(-5px);
}

.slc-js-enabled .mini-card.slc-animate.is-inview:hover,
.slc-js-enabled .pathway-card.slc-animate.is-inview:hover {
    transform: translateY(-4px);
}
