:root {
    --paper: #fbfaf6;
    --paper-soft: #f3f0e9;
    --surface: #ffffff;
    --ink: #1c211e;
    --muted: #747a72;
    --jade: #1f6b5a;
    --jade-soft: #dce9e4;
    --copper: #ad7b5c;
    --blue: #263943;
    --line: rgba(28, 33, 30, 0.12);
    --line-soft: rgba(28, 33, 30, 0.075);
    --shadow: 0 24px 70px rgba(28, 33, 30, 0.08);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
}

body.nav-open {
    overflow: hidden;
}

body.is-preloading {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 16px clamp(20px, 4.5vw, 64px);
    background: rgba(251, 250, 246, 0.86);
    border-bottom: 1px solid var(--line-soft);
    backdrop-filter: blur(20px);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header {
    position: fixed;
    width: 100%;
    color: var(--paper);
    background: linear-gradient(180deg, rgba(18, 21, 19, 0.34), rgba(18, 21, 19, 0));
    border-bottom-color: rgba(251, 250, 246, 0.14);
    backdrop-filter: none;
    transition: background 220ms ease, border-color 220ms ease, color 220ms ease, backdrop-filter 220ms ease;
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header.is-scrolled,
body:where([data-page="home"], [data-page="services"], [data-page="approach"]).nav-open .site-header {
    color: var(--ink);
    background: rgba(251, 250, 246, 0.92);
    border-bottom-color: var(--line-soft);
    backdrop-filter: blur(20px);
}

.brand {
    font-family: var(--serif);
    font-size: clamp(1.24rem, 1.8vw, 1.55rem);
    color: var(--ink);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    width: 176px;
    height: 26px;
    color: var(--ink);
}

.brand-logo::before {
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background: currentColor;
    mask: url("../img/jades-full.svg") center / contain no-repeat;
    -webkit-mask: url("../img/jades-full.svg") center / contain no-repeat;
}

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

.entry-preloader {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 28px;
    color: var(--ink);
    pointer-events: none;
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    transition: opacity 940ms cubic-bezier(0.22, 1, 0.36, 1), visibility 940ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.show-entry-preloader .entry-preloader {
    visibility: visible;
    opacity: 1;
}

.entry-preloader[hidden],
.entry-preloader.is-hidden {
    visibility: hidden;
    opacity: 0;
}

.entry-preloader__mark {
    width: min(254px, 68vw);
    height: 38px;
    color: var(--ink);
    opacity: 0;
    transform: translateY(12px) scale(0.982);
    animation: preloaderBreath 1560ms cubic-bezier(0.2, 0.82, 0.18, 1) forwards;
}

@keyframes preloaderBreath {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.982);
    }

    42% {
        opacity: 1;
        transform: translateY(-4px) scale(1.012);
    }

    64% {
        opacity: 1;
        transform: translateY(2px) scale(0.998);
    }

    82% {
        opacity: 1;
        transform: translateY(-1px) scale(1.003);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header:not(.is-scrolled) .brand {
    color: var(--paper);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]).nav-open .site-header .brand {
    color: var(--ink);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.9vw, 40px);
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header:not(.is-scrolled) .site-nav {
    color: rgba(251, 250, 246, 0.82);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]).nav-open .site-header .site-nav {
    color: var(--muted);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header:not(.is-scrolled) .site-nav a:hover,
body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header:not(.is-scrolled) .site-nav a.active {
    color: var(--paper);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]).nav-open .site-header .site-nav a:hover,
body:where([data-page="home"], [data-page="services"], [data-page="approach"]).nav-open .site-header .site-nav a.active {
    color: var(--ink);
}

.site-nav a {
    position: relative;
    padding: 6px 0;
    transition: color 180ms ease;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background: var(--jade);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header:not(.is-scrolled) .site-nav a::after {
    background: var(--paper);
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    transform: scaleX(1);
}

.language-switch {
    display: inline-flex;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.language-switch button {
    min-width: 40px;
    min-height: 32px;
    padding: 0 10px;
    color: var(--muted);
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.language-switch button[aria-pressed="true"] {
    color: var(--paper);
    background: var(--ink);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header:not(.is-scrolled) .language-switch {
    border-color: rgba(251, 250, 246, 0.34);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header:not(.is-scrolled) .language-switch button {
    color: rgba(251, 250, 246, 0.78);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header:not(.is-scrolled) .language-switch button[aria-pressed="true"] {
    color: var(--ink);
    background: var(--paper);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]).nav-open .site-header .language-switch {
    border-color: var(--line);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]).nav-open .site-header .language-switch button {
    color: var(--muted);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]).nav-open .site-header .language-switch button[aria-pressed="true"] {
    color: var(--paper);
    background: var(--ink);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: var(--ink);
    transition: transform 180ms ease;
}

.nav-toggle:focus {
    outline: 1px solid transparent;
}

.nav-toggle:focus-visible,
.button:focus-visible,
.music-toggle:focus-visible,
.home-conversation-fab:focus-visible,
.home-conversation-menu a:focus-visible,
.site-nav a:focus-visible,
.language-switch button:focus-visible {
    outline: 1px solid var(--jade);
    outline-offset: 4px;
}

.music-toggle {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 34px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

body > .music-toggle {
    display: none;
}

.music-toggle:hover {
    color: var(--jade);
    background: rgba(31, 107, 90, 0.06);
    transform: translateY(-2px);
}

.music-toggle span {
    display: block;
    width: 2px;
    height: 14px;
    background: currentColor;
    opacity: 0.7;
    transform-origin: bottom;
}

.music-toggle span:nth-child(2) {
    height: 18px;
}

.music-toggle[aria-pressed="true"] {
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header:not(.is-scrolled) .music-toggle {
    color: rgba(251, 250, 246, 0.84);
    border-color: rgba(251, 250, 246, 0.34);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header:not(.is-scrolled) .music-toggle:hover {
    color: var(--paper);
    background: rgba(251, 250, 246, 0.08);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header:not(.is-scrolled) .music-toggle[aria-pressed="true"] {
    color: var(--ink);
    background: var(--paper);
    border-color: var(--paper);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]).nav-open .site-header .music-toggle {
    color: var(--ink);
    border-color: var(--line);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]).nav-open .site-header .music-toggle[aria-pressed="true"] {
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
}

.music-toggle[aria-pressed="true"] span {
    opacity: 0.95;
    animation: musicPulse 1200ms ease-in-out infinite;
}

.music-toggle[aria-pressed="true"] span:nth-child(2) {
    animation-delay: 160ms;
}

.music-toggle[aria-pressed="true"] span:nth-child(3) {
    animation-delay: 320ms;
}

@keyframes musicPulse {
    0%,
    100% {
        transform: scaleY(0.46);
    }

    45% {
        transform: scaleY(1);
    }
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header:not(.is-scrolled) .nav-toggle {
    border-color: rgba(251, 250, 246, 0.34);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]) .site-header:not(.is-scrolled) .nav-toggle span {
    background: var(--paper);
}

body:where([data-page="home"], [data-page="services"], [data-page="approach"]).nav-open .site-header .nav-toggle span {
    background: var(--ink);
}

main {
    overflow: hidden;
}

main > section:not(.video-hero):not(.team-cta) {
    position: relative;
    z-index: 1;
    background: var(--paper);
}

.hero,
.page-hero,
.contact-hero,
.intro-section,
.split-section,
.pathways,
.portrait-section,
.service-list,
.approach-grid,
.principles,
.cta-panel,
.image-band,
.statement,
.proof-strip,
.quote-section,
.timeline,
.contact-note,
.contact-form-section,
.legal-content {
    width: min(100% - 40px, 1440px);
    margin-right: auto;
    margin-left: auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(34px, 6vw, 90px);
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: clamp(58px, 9vw, 118px) 0 clamp(44px, 6vw, 86px);
}

.video-hero {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100svh;
    overflow: hidden;
    padding: 0;
    color: var(--paper);
    isolation: isolate;
    z-index: 0;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}

.video-hero::before,
.video-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
}

.video-hero::after {
    background: rgba(251, 250, 246, 0.07);
    mix-blend-mode: screen;
}

.video-hero::before {
    background: linear-gradient(180deg, rgba(15, 19, 17, 0.12) 0%, rgba(15, 19, 17, 0.04) 42%, rgba(15, 19, 17, 0.32) 100%),
    linear-gradient(90deg, rgba(15, 19, 17, 0.2), rgba(15, 19, 17, 0.04));
}

.video-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #24261f url("../img/atencion-al-cliente-poster.jpg") center / cover no-repeat;
    background-attachment: fixed;
}

.video-layer img,
.video-layer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
    transform-origin: center center;
}

.video-layer video.is-disabled {
    opacity: 0;
}

.scroll-hint {
    position: absolute;
    right: 50%;
    bottom: clamp(28px, 5vw, 52px);
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    color: rgba(251, 250, 246, 0.74);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    transform: translateX(50%);
    transition: color 180ms ease;
}

.scroll-hint::after {
    display: block;
    width: 1px;
    height: 34px;
    content: "";
    background: currentColor;
    opacity: 0.72;
    transform-origin: top;
    animation: scrollHintPulse 1600ms ease-in-out infinite;
}

.scroll-hint:hover {
    color: var(--paper);
}

@keyframes scrollHintPulse {
    0%,
    100% {
        transform: scaleY(0.38);
    }

    48% {
        transform: scaleY(1);
    }
}

.hero h1,
.page-hero h1,
.contact-hero h1 {
    max-width: 880px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.9rem, 4.5vw, 5.7rem);
    font-weight: 400;
    line-height: 0.98;
}

.hero-text,
.page-hero p:last-child,
.contact-hero p:not(.eyebrow) {
    max-width: 670px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.5;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--copper);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
    justify-content: flex-end;
}

.intro-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.74fr);
    gap: clamp(36px, 7vw, 106px);
    align-items: end;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(88px, 12vw, 164px) 0 clamp(72px, 9vw, 124px);
    border-bottom: 1px solid var(--line-soft);
}

.intro-watermark {
    position: absolute;
    top: 48%;
    right: clamp(-170px, -8vw, -72px);
    z-index: 0;
    width: clamp(360px, 42vw, 650px);
    height: auto;
    pointer-events: none;
    opacity: 0.035;
    transform: translateY(-50%);
    mix-blend-mode: normal;
}

.intro-section > :not(.intro-watermark) {
    position: relative;
    z-index: 1;
}

.intro-section h1 {
    max-width: 920px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 4.5vw, 6.2rem);
    font-weight: 400;
    line-height: 0.98;
    text-wrap: balance;
}

.intro-copy {
    align-self: end;
}

.intro-section .hero-text {
    max-width: 610px;
    margin-top: 0;
    font-size: clamp(1.02rem, 1.32vw, 1.18rem);
    line-height: 1.74;
}

.intro-section .hero-actions {
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button.primary {
    color: var(--paper);
    background: var(--jade);
    border-color: var(--jade);
}

.button.ghost {
    min-height: 54px;
    padding: 0 34px;
    color: var(--ink);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: transparent;
    border-color: rgba(28, 33, 30, 0.24);
    border-radius: 0;
}

.button.text {
    color: var(--ink);
}

.button.large {
    min-height: 56px;
    padding: 0 28px;
}

.button:hover {
    transform: translateY(-2px);
}

.home-conversation-fab-wrap {
    position: fixed;
    right: clamp(18px, 3vw, 42px);
    bottom: clamp(18px, 3vw, 42px);
    z-index: 40;
    width: 58px;
    height: 58px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(0.96);
    transition: opacity 220ms ease, transform 220ms ease;
}

body.is-fab-visible .home-conversation-fab-wrap {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.home-conversation-fab {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: var(--paper);
    background: var(--jade);
    border: 1px solid rgba(246, 243, 238, 0.26);
    border-radius: 999px;
    box-shadow: 0 14px 36px rgba(28, 33, 30, 0.18);
    cursor: pointer;
    pointer-events: auto;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.home-conversation-fab svg {
    width: 24px;
    height: 24px;
}

.home-conversation-fab:hover {
    background: var(--ink);
    box-shadow: 0 16px 42px rgba(28, 33, 30, 0.24);
    transform: translateY(-3px) scale(1);
}

.home-conversation-menu {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    display: grid;
    gap: 14px;
    width: min(360px, calc(100vw - 36px));
    padding: 18px;
    background: rgba(246, 243, 238, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(28, 33, 30, 0.13);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(14px);
}

.home-conversation-fab:hover + .home-conversation-menu,
.home-conversation-fab-wrap.is-menu-open .home-conversation-menu,
.home-conversation-menu:hover,
.home-conversation-menu:focus-within {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.home-conversation-menu a {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    min-height: 66px;
    padding: 0;
    color: var(--ink);
    transition: color 180ms ease, transform 180ms ease;
}

.home-conversation-menu a::after {
    content: none;
}

.home-conversation-menu a:hover {
    color: var(--jade);
    transform: translateX(-2px);
}

.home-conversation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--jade);
    background: var(--jade-soft);
    border: 1px solid rgba(31, 107, 90, 0.1);
    border-radius: 14px;
}

.home-conversation-icon svg {
    width: 25px;
    height: 25px;
}

.home-conversation-text {
    display: grid;
    gap: 4px;
}

.home-conversation-text strong {
    color: var(--ink);
    font-family: var(--sans);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.18;
    text-transform: none;
}

.home-conversation-text small {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

.home-conversation-text em {
    color: var(--copper);
    font-size: 0.84rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.35;
}

body:not([data-page="home"]) .home-conversation-fab-wrap {
    display: none;
}

.hero-media {
    height: min(68vh, 720px);
    min-height: 430px;
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.statement {
    padding: clamp(74px, 10vw, 136px) 0 clamp(68px, 9vw, 118px);
}

.statement p,
.quote-section blockquote,
.contact-note p {
    max-width: 1000px;
    margin: 0 auto;
    font-family: var(--serif);
    font-size: clamp(2.1rem, 4.6vw, 3.5rem);
    font-weight: 400;
    line-height: 1.08;
    text-align: center;
}

.statement [data-scroll-reveal] {
    color: var(--ink);
}

.scroll-reveal-word {
    color: rgba(28, 33, 30, var(--word-alpha, 0.18));
    transition: color 80ms linear;
}

@media (prefers-reduced-motion: reduce) {
    .entry-preloader,
    .scroll-hint::after,
    .music-toggle[aria-pressed="true"] span,
    .scroll-reveal-word {
        transition: none;
        animation: none;
    }

    .entry-preloader__mark {
        animation: none;
    }

    .entry-preloader__mark {
        opacity: 1;
        transform: none;
    }

    .scroll-reveal-word {
        color: var(--ink);
    }

    .scroll-hint::after {
        transform: scaleY(1);
    }

    .video-layer img,
    .video-layer video {
        transform: none;
    }
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: clamp(36px, 5vw, 62px) 0 clamp(40px, 5.6vw, 68px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.proof-strip article {
    padding: 0 clamp(20px, 2.8vw, 36px);
    border-right: 1px solid var(--line-soft);
}

.proof-strip article:first-child {
    padding-left: 0;
}

.proof-strip article:last-child {
    padding-right: 0;
    border-right: 0;
}

.proof-strip span {
    display: block;
    max-width: 12ch;
    margin-bottom: 16px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(1.42rem, 2vw, 2.15rem);
    font-weight: 400;
    line-height: 1.08;
}

.proof-strip p {
    max-width: 220px;
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.62;
}

.split-section {
    display: grid;
    grid-template-columns: 0.88fr 1fr;
    gap: clamp(28px, 6vw, 88px);
    padding: clamp(84px, 10vw, 146px) 0;
}

h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 3.8vw, 4.3rem);
    font-weight: 400;
    line-height: 1.06;
}

.rich-text {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
}

.rich-text p {
    margin: 0 0 22px;
}

.preserve-line-breaks {
    white-space: pre-line;
}

.link-arrow {
    display: inline-flex;
    margin-top: 8px;
    color: var(--jade);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.link-arrow::after {
    content: "→";
    margin-left: 10px;
}

.pathways {
    padding: clamp(94px, 12vw, 166px) 0 clamp(92px, 12vw, 152px);
    border-top: 1px solid var(--line);
}

.section-heading {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: clamp(22px, 5vw, 80px);
    align-items: end;
    margin-bottom: clamp(54px, 7vw, 76px);
}

.pathways .section-heading {
    display: block;
    margin-bottom: clamp(42px, 6vw, 72px);
}

.pathways .section-heading h2 {
    max-width: 820px;
}

.pathways-showcase {
    display: grid;
    grid-template-columns: minmax(300px, 0.58fr) minmax(420px, 1fr);
    gap: clamp(20px, 2.6vw, 34px);
    align-items: stretch;
}

.pathways-showcase.is-media-right {
    grid-template-columns: minmax(560px, 0.95fr) minmax(360px, 0.62fr);
}

.pathways-showcase-media {
    position: relative;
    min-height: clamp(500px, 64vh, 680px);
    overflow: hidden;
    border-radius: 8px;
    background: transparent;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 220ms ease, transform 220ms ease;
}

.pathways-showcase-media.is-empty {
    display: none;
    pointer-events: none;
}

.pathways-showcase.is-media-left .pathways-showcase-media.is-active {
    grid-column: 1;
}

.pathways-showcase.is-media-left .pathways-showcase-content {
    grid-column: 2;
}

.pathways-showcase.is-media-right .pathways-showcase-content {
    grid-column: 1;
    padding-left: clamp(34px, 4vw, 82px);
}

.pathways-showcase.is-media-right .pathways-showcase-copy {
    max-width: 860px;
}

.pathways-showcase.is-media-right .pathways-showcase-copy p:not(.pathways-showcase-kicker) {
    max-width: 820px;
}

.pathways-showcase.is-media-right .pathways-showcase-media.is-active {
    grid-column: 2;
}

.pathways-showcase-media img,
.pathways-showcase-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) contrast(0.9) brightness(1.1);
    opacity: 1;
    transition: opacity 220ms ease;
}

.pathways-showcase-media img.is-entering,
.pathways-showcase-media video.is-entering {
    opacity: 0;
}

.pathways-showcase-count {
    position: absolute;
    top: clamp(32px, 4.2vw, 62px);
    left: clamp(34px, 4.2vw, 66px);
    z-index: 1;
    color: var(--paper);
    font-family: var(--serif);
    font-size: clamp(3.45rem, 5vw, 5.75rem);
    line-height: 1;
    text-shadow: 0 2px 18px rgba(18, 21, 19, 0.38), 0 1px 3px rgba(18, 21, 19, 0.32);
}

.pathways-showcase-count small {
    margin-left: 10px;
    font-family: var(--sans);
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    opacity: 0.72;
    text-shadow: 0 1px 8px rgba(18, 21, 19, 0.34);
}

.pathways-showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: clamp(500px, 64vh, 680px);
    min-width: 0;
    padding: clamp(22px, 3vw, 44px) 0 0;
}

.pathways-showcase.is-transitioning .pathways-showcase-media.is-active {
    opacity: 0;
    transform: translateY(8px);
}

.pathways-showcase-copy {
    max-width: 690px;
}

.pathways-showcase-kicker {
    margin: 0;
    color: rgba(28, 33, 30, 0.42);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pathways-showcase-copy h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 5.4vw, 4rem);
    font-weight: 400;
    line-height: 0.96;
}

.pathways-showcase-copy p:not(.pathways-showcase-kicker) {
    max-width: 680px;
    margin: clamp(8px, 4vw, 16px) 0 0;
    color: rgba(28, 33, 30, 0.68);
    font-family: var(--serif);
    font-size: clamp(0.5rem, 1.5vw, 1.2rem);
    line-height: 1.55;
    text-align: justify;
    white-space: pre-line;
}

.pathways-showcase-link {
    width: auto;
    margin-top: clamp(34px, 4vw, 58px);
}

.pathways-showcase-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 3.2vw, 54px);
    margin-top: clamp(44px, 6.4vw, 82px);
}

.pathways-showcase-tabs button {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    min-width: 0;
    min-height: 58px;
    padding: 0 0 10px;
    color: rgba(28, 33, 30, 0.5);
    font: inherit;
    text-align: left;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.pathways-showcase-tabs button > span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(28, 33, 30, 0.13);
    transition: background 180ms ease, transform 180ms ease;
}

.pathways-showcase-tabs strong {
    overflow: hidden;
    font-size: 0.75rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 180ms ease, transform 180ms ease;
}

.pathways-showcase-tabs button:hover,
.pathways-showcase-tabs button:focus-visible,
.pathways-showcase-tabs button.is-active {
    color: var(--ink);
}

.pathways-showcase-tabs button:hover > span,
.pathways-showcase-tabs button:focus-visible > span {
    background: rgba(28, 33, 30, 0.32);
}

.pathways-showcase-tabs button:hover strong,
.pathways-showcase-tabs button:focus-visible strong {
    transform: translateY(-1px);
}

.pathways-showcase-tabs button.is-active > span {
    background: var(--ink);
    transform: scaleY(1.5);
}

.pathways-mobile-cards {
    display: none;
}

.pathways-card-rail {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.pathways-card-rail::-webkit-scrollbar {
    display: none;
}

.pathways-mobile-card {
    position: relative;
    display: flex;
    min-width: min(78vw, 340px);
    min-height: min(136vw, 545px);
    flex: 0 0 min(78vw, 340px);
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
    color: var(--paper);
    border-radius: 7px;
    scroll-snap-align: start;
}

.pathways-mobile-card::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background:
        linear-gradient(180deg, rgba(22, 24, 22, 0.04) 0%, rgba(22, 24, 22, 0.18) 46%, rgba(22, 24, 22, 0.72) 100%),
        linear-gradient(90deg, rgba(22, 24, 22, 0.12), rgba(22, 24, 22, 0.02));
}

.pathways-mobile-card img,
.pathways-mobile-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(0.94) brightness(1.02);
}

.pathways-mobile-card span,
.pathways-mobile-card h3 {
    position: relative;
    z-index: 2;
}

.pathways-mobile-card span {
    margin-bottom: 14px;
    color: rgba(251, 250, 246, 0.78);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pathways-mobile-card small {
    font-size: inherit;
}

.pathways-mobile-card h3 {
    max-width: 94%;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 9vw, 3rem);
    font-weight: 400;
    line-height: 1.04;
    text-wrap: balance;
}

.pathways-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.pathways-mobile-dots span {
    display: block;
    width: 28px;
    height: 2px;
    background: rgba(28, 33, 30, 0.18);
}

.pathways-mobile-dots span.is-active {
    background: var(--ink);
}

.service-list,
.principles,
.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: transparent;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-item,
.principles article,
.timeline-item {
    min-height: 280px;
    padding: clamp(26px, 3vw, 40px);
    background: transparent;
    border-right: 1px solid var(--line-soft);
    transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.service-item:last-child,
.principles article:last-child,
.timeline-item:last-child {
    border-right: 0;
}

.service-item:nth-child(3n),
.principles article:nth-child(3n),
.timeline-item:nth-child(3n) {
    border-right: 0;
}

.service-item span,
.principles span,
.timeline span {
    display: block;
    margin-bottom: 56px;
    color: var(--copper);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-item h2,
.principles h2,
.timeline h2 {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: clamp(1.46rem, 1.8vw, 2.05rem);
    font-weight: 400;
    line-height: 1.14;
}

.service-item p,
.principles p,
.timeline p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.72;
}

.image-band {
    position: relative;
    min-height: 560px;
    margin-bottom: clamp(80px, 10vw, 132px);
    overflow: hidden;
    color: white;
    background: #242b25 url("../img/chef-plating-poster.jpg") center / cover no-repeat;
}

.image-band::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(28, 33, 30, 0.62), rgba(28, 33, 30, 0.16));
}

.image-band img,
.image-band video {
    position: absolute;
    inset: 0;
    filter: saturate(0.88) contrast(0.92) brightness(1.05);
}

.image-band div {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: clamp(44px, 7vw, 84px);
}

.image-band .eyebrow {
    color: rgba(251, 250, 246, 0.76);
}

.video-band {
    min-height: clamp(560px, 78vh, 820px);
}

.video-band::after {
    background: linear-gradient(90deg, rgba(28, 33, 30, 0.68), rgba(28, 33, 30, 0.24)),
    linear-gradient(180deg, rgba(28, 33, 30, 0.04), rgba(28, 33, 30, 0.58));
}

.video-band div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: inherit;
}

.ambient-video.is-disabled {
    display: none;
}

.page-hero {
    padding: clamp(86px, 12vw, 160px) 0 clamp(58px, 8vw, 104px);
}

.legal-hero {
    padding-bottom: clamp(34px, 5vw, 62px);
}

.legal-content {
    max-width: 920px;
    padding: 0 0 clamp(82px, 10vw, 132px);
}

.legal-content article {
    display: grid;
    grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
    gap: clamp(22px, 4vw, 54px);
    padding: clamp(28px, 4vw, 42px) 0;
    border-top: 1px solid var(--line);
}

.legal-content article:last-child {
    border-bottom: 1px solid var(--line);
}

.legal-content h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 1.8vw, 1.9rem);
    font-weight: 400;
    line-height: 1.16;
}

.legal-content p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.78;
}

.legal-content a {
    color: var(--jade);
}

.team-hero {
    display: grid;
    width: min(calc(100% - 48px), 1440px);
    min-height: calc(100svh - 72px);
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.68fr);
    gap: clamp(36px, 4.6vw, 72px);
    align-items: center;
    padding-top: clamp(36px, 4vw, 58px);
    padding-bottom: clamp(36px, 4vw, 58px);
}

.team-hero-copy {
    max-width: 1060px;
    min-width: 0;
}

.team-hero h1 {
    max-width: 820px;
    font-size: clamp(2.9rem, 4.1vw, 5rem);
}

.team-hero p:last-child {
    max-width: 740px;
    line-height: 1.68;
}

.team-scroll-hint {
    bottom: clamp(14px, 1.8vw, 26px);
    color: rgba(31, 107, 90, 0.72);
}

.team-scroll-hint:hover {
    color: var(--jade);
}

.team-hero-media,
.team-feature figure,
.team-grid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--paper-soft);
}

.team-hero-media {
    aspect-ratio: 4 / 3;
    min-height: 0;
    box-shadow: 0 18px 52px rgba(28, 33, 30, 0.07), 0 2px 10px rgba(28, 33, 30, 0.04);
}

.team-hero-media figcaption,
.team-feature-portrait figcaption {
    position: absolute;
    right: clamp(18px, 2.2vw, 30px);
    bottom: clamp(18px, 2.2vw, 30px);
    left: clamp(18px, 2.2vw, 30px);
    z-index: 2;
    display: grid;
    gap: 6px;
    color: var(--paper);
    text-shadow: 0 2px 16px rgba(18, 21, 19, 0.42);
}

.team-hero-media figcaption span,
.team-feature-portrait figcaption span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.78;
}

.team-hero-media figcaption strong,
.team-feature-portrait figcaption strong {
    max-width: 320px;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2vw, 2.1rem);
    font-weight: 400;
    line-height: 1.08;
}

.team-hero-media::after,
.team-feature figure::after,
.team-grid figure::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(251, 250, 246, 0.02), rgba(28, 33, 30, 0.16));
    pointer-events: none;
}

.team-hero-media::after {
    background: linear-gradient(180deg, rgba(251, 250, 246, 0.01) 0%, rgba(28, 33, 30, 0.04) 52%, rgba(28, 33, 30, 0.58) 100%);
}

.team-hero-media img,
.team-feature img,
.team-grid img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(0.94) brightness(1.05);
}

.team-feature {
    display: grid;
    grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.74fr);
    gap: clamp(46px, 7vw, 104px);
    align-items: stretch;
    justify-content: center;
    padding: clamp(70px, 7vw, 94px) 0;
    border-top: 1px solid var(--line);
    scroll-margin-top: 90px;
}

.team-feature figure {
    min-height: clamp(400px, 38vw, 540px);
    background: linear-gradient(145deg, var(--paper-soft), #ffffff);
}

.team-feature article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(24px, 4vw, 58px) 0;
    border-top: 1px solid rgba(173, 123, 92, 0.42);
    border-bottom: 1px solid var(--line-soft);
}

.team-feature h2,
.team-grid h2,
.team-grid h3,
.team-cta h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 5.6rem);
    font-weight: 400;
    line-height: 0.98;
}

.team-feature article > p:not(.eyebrow),
.team-grid article p:not(.eyebrow) {
    max-width: 620px;
    margin: clamp(22px, 3vw, 34px) 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.25vw, 1.14rem);
    line-height: 1.78;
}

.team-feature article > p:not(.eyebrow) {
    max-width: 780px;
    font-size: clamp(1.04rem, 1.32vw, 1.2rem);
}

.team-feature-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    max-width: 740px;
    margin: clamp(34px, 4.5vw, 56px) 0 0;
    padding: 0;
    background: var(--line-soft);
}

.team-feature-meta div {
    min-width: 0;
    padding: clamp(18px, 2.4vw, 28px);
    background: rgba(255, 255, 255, 0.34);
}

.team-feature-meta dt {
    margin: 0 0 10px;
    color: var(--copper);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.team-feature-meta dd {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(1.22rem, 1.7vw, 1.72rem);
    line-height: 1.16;
}

.team-feature-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: clamp(34px, 4.5vw, 54px);
}

.team-feature-notes span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    color: var(--jade);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(31, 107, 90, 0.22);
}

.team-grid {
    display: grid;
    width: min(calc(100% - 48px), 1280px);
    grid-template-columns: 1fr;
    gap: 0;
    padding: clamp(58px, 6vw, 86px) 0 clamp(64px, 7vw, 96px);
    border-top: 1px solid var(--line);
}

.team-grid-heading {
    max-width: 820px;
    margin-bottom: clamp(40px, 5vw, 68px);
}

.team-grid-heading h2 {
    max-width: 820px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 3.2vw, 3.8rem);
    font-weight: 400;
    line-height: 1.02;
}

.team-grid article {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
    grid-template-areas: "media copy";
    gap: clamp(42px, 7vw, 96px);
    align-items: center;
    min-width: 0;
    padding: clamp(46px, 5vw, 72px) 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line-soft);
    border-radius: 0;
}

.team-grid article.is-reversed {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.08fr);
    grid-template-areas: "copy media";
}

.team-grid article:last-child {
    border-bottom: 1px solid var(--line-soft);
}

.team-grid article > div {
    grid-area: copy;
    width: 100%;
    max-width: 500px;
    min-width: 0;
    justify-self: center;
}

.team-grid figure {
    grid-area: media;
    width: 100%;
    max-height: 520px;
    aspect-ratio: 4 / 3;
}

.team-grid article:first-of-type figure img {
    object-position: center 28%;
}

.team-feature-portrait img {
    object-position: center 18%;
}

.team-grid h3 {
    max-width: 500px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    font-weight: 400;
    line-height: 1.03;
}

.team-grid article p:not(.eyebrow) {
    max-width: 500px;
    margin-top: clamp(18px, 2vw, 26px);
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.72;
}

.team-cta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(56px, 8vw, 106px) clamp(30px, 5vw, 76px);
    margin-bottom: clamp(48px, 7vw, 92px);
    color: var(--paper);
    background: linear-gradient(135deg, var(--ink), #263943);
    border-top: 1px solid var(--line);
    border-radius: 8px;
}

.team-cta .eyebrow {
    color: rgba(251, 250, 246, 0.66);
}

.team-cta h2 {
    max-width: 790px;
    color: var(--paper);
    font-size: clamp(2rem, 4vw, 4.8rem);
}

.team-cta .button {
    flex: 0 0 auto;
    color: var(--paper);
    border-color: rgba(251, 250, 246, 0.42);
}

.portrait-section,
.approach-grid,
.contact-hero {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
    gap: clamp(34px, 7vw, 98px);
    align-items: center;
    padding: clamp(58px, 8vw, 112px) 0;
    border-top: 1px solid var(--line);
}

.portrait-section figure,
.approach-grid figure {
    height: clamp(420px, 58vw, 720px);
    margin: 0;
    overflow: hidden;
    border-radius: 2px;
}

.timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(50px, 8vw, 96px);
    margin-bottom: clamp(60px, 9vw, 120px);
}

.quote-section {
    padding: clamp(86px, 12vw, 152px) 0;
    border-top: 1px solid var(--line);
}

.service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: clamp(60px, 8vw, 112px);
}

.services-list {
    margin-bottom: clamp(34px, 5vw, 64px);
}

.cta-panel {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 34px;
    padding: clamp(46px, 7vw, 80px);
    margin-bottom: clamp(70px, 9vw, 124px);
    background: var(--ink);
    color: var(--paper);
}

.cta-panel h2 {
    max-width: 760px;
}

.cta-panel .eyebrow {
    color: rgba(251, 250, 246, 0.7);
}

.approach-grid {
    grid-template-columns: 1fr minmax(300px, 0.9fr);
}

.approach-copy p:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.8;
}

.principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: clamp(50px, 8vw, 100px) auto;
}

.contact-hero {
    grid-template-columns: minmax(0, 1fr) minmax(42vw, 0.95fr);
    gap: 0;
    align-items: stretch;
    width: 100%;
    min-height: calc(100svh - 72px);
    padding: 0;
    border-top: 0;
}

.contact-copy {
    display: grid;
    align-content: center;
    width: min(100% - 80px, 760px);
    min-height: inherit;
    margin: 0 auto;
    padding-top: 24px;
    padding-bottom: 32px;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 660px;
}

.contact-media {
    min-height: inherit;
    margin: 0;
    overflow: hidden;
}

.contact-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: clamp(28px, 4vw, 44px);
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-details a {
    color: var(--jade);
    word-break: break-word;
}

.contact-form {
    display: grid;
    grid-template-columns: minmax(0, 520px);
    gap: 24px;
    align-items: start;
    margin-top: clamp(46px, 5vw, 74px);
    padding-top: 0;
}

.contact-form label {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.contact-form label span {
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.contact-form input {
    width: 100%;
    min-height: 48px;
    padding: 0 0 13px;
    border: 0;
    border-bottom: 1px solid rgba(28, 33, 30, 0.2);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    transition: border-color 180ms ease;
}

.contact-form input::placeholder {
    color: rgba(28, 33, 30, 0.34);
}

.contact-form input:focus {
    border-bottom-color: var(--jade);
}

.contact-form .button {
    justify-self: start;
    width: auto;
    min-width: 220px;
    white-space: nowrap;
}

.contact-form-section {
    display: none;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding: 38px clamp(20px, 4vw, 58px) 48px;
    border-top: 1px solid var(--line-soft);
}

.site-footer p {
    margin: 10px 0 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    color: var(--muted);
}

[data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms ease, transform 700ms ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .nav-open .nav-toggle span:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    .nav-open .nav-toggle span:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        display: grid;
        align-content: start;
        gap: 0;
        min-height: calc(100svh - 72px);
        padding: 20px;
        background: var(--paper);
        border-bottom: 1px solid var(--line-soft);
        transform: translateY(-120%);
        transition: transform 220ms ease;
    }

    .nav-open .site-nav {
        transform: translateY(0);
    }

    .site-nav a {
        padding: 18px 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .language-switch {
        justify-self: start;
        margin-top: 18px;
    }

    .music-toggle {
        justify-self: start;
        margin-top: 12px;
    }

    .hero,
    .intro-section,
    .portrait-section,
    .approach-grid,
    .team-hero,
    .team-feature,
    .team-grid,
    .contact-hero,
    .split-section,
    .section-heading {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .team-hero {
        min-height: auto;
        align-items: start;
    }

    .team-scroll-hint {
        display: none;
    }

    .video-hero {
        width: 100%;
        min-height: 100svh;
        margin-right: 0;
        margin-left: 0;
        padding: 0;
    }

    .hero-media {
        height: 56vh;
        min-height: 360px;
    }

    .service-list,
    .principles,
    .timeline,
    .proof-strip {
        grid-template-columns: 1fr 1fr;
    }

    .service-item,
    .principles article,
    .timeline-item,
    .proof-strip article {
        border-right: 1px solid var(--line-soft);
    }

    .service-item:nth-child(2n),
    .principles article:nth-child(2n),
    .timeline-item:nth-child(2n),
    .proof-strip article:nth-child(2n) {
        border-right: 0;
    }

    .pathways-showcase {
        grid-template-columns: 1fr;
        gap: clamp(34px, 6vw, 58px);
    }

    .pathways-showcase-media,
    .pathways-showcase-content {
        min-height: auto;
    }

    .pathways-showcase-media {
        order: 0;
        aspect-ratio: 4 / 3;
    }

    .pathways-showcase-media.is-empty {
        display: none;
    }

    .pathways-showcase-content {
        order: 1;
        padding-top: 0;
    }

    .pathways-showcase-kicker {
        margin-bottom: 34px;
    }

    .pathways-showcase-tabs {
        margin-top: 58px;
    }

    .proof-strip {
        row-gap: 34px;
    }

    .proof-strip article:nth-child(odd) {
        padding-left: 0;
    }

    .proof-strip article:nth-child(even) {
        padding-right: 0;
    }

    .cta-panel,
    .team-cta,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .team-feature {
        gap: clamp(26px, 5vw, 48px);
    }

    .team-feature article {
        padding: clamp(26px, 4vw, 42px) 0 0;
        border-bottom: 0;
    }

    .team-hero-media,
    .team-feature figure {
        aspect-ratio: 4 / 3;
        min-height: auto;
    }

    .team-grid {
        gap: 0;
    }

    .team-grid article,
    .team-grid article.is-reversed {
        grid-template-columns: 1fr;
        grid-template-areas:
            "media"
            "copy";
        gap: clamp(24px, 4vw, 34px);
        padding: clamp(38px, 6vw, 52px) 0;
    }

    .team-grid article > div {
        max-width: 680px;
        justify-self: start;
    }

    .contact-hero {
        width: 100%;
        min-height: auto;
    }

    .contact-copy {
        width: min(100% - 40px, 760px);
        min-height: auto;
        padding: clamp(92px, 14vw, 132px) 0 clamp(54px, 8vw, 82px);
    }

    .contact-media {
        min-height: 58vh;
    }

    .contact-media img {
        min-height: 58vh;
    }
}

@media (max-width: 728px) {
    .pathways {
        overflow: hidden;
        padding-top: clamp(68px, 16vw, 104px);
    }

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

    .pathways .section-heading h2 {
        font-size: clamp(2.2rem, 11vw, 3.35rem);
        line-height: 1.02;
    }

    .pathways-showcase {
        display: none;
    }

    .pathways-mobile-cards {
        display: block;
        width: 100vw;
        margin-left: calc((100vw - 100%) / -2);
    }

    .pathways-card-rail {
        padding: 0 calc((100vw - min(100% - 28px, 1180px)) / 2);
        scroll-padding-left: calc((100vw - min(100% - 28px, 1180px)) / 2);
    }
}

@media (max-width: 620px) {
    .hero,
    .page-hero,
    .contact-hero,
    .intro-section,
    .split-section,
    .pathways,
    .portrait-section,
    .service-list,
    .approach-grid,
    .principles,
    .cta-panel,
    .image-band,
    .statement,
    .proof-strip,
    .quote-section,
    .timeline,
    .team-hero,
    .team-feature,
    .team-grid,
    .team-cta,
    .contact-note,
    .contact-form-section,
    .legal-content {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        min-height: 68px;
        padding: 15px 14px;
    }

    .site-nav {
        top: 68px;
        min-height: calc(100svh - 68px);
    }

    .brand {
        font-size: 1.16rem;
    }

    .brand-logo {
        width: 152px;
        height: 22px;
    }

    .hero h1,
    .page-hero h1,
    .contact-hero h1 {
        font-size: clamp(2.7rem, 15vw, 4.15rem);
        line-height: 1;
    }

    .intro-section h1 {
        font-size: clamp(2.82rem, 13.5vw, 4.35rem);
        line-height: 1;
    }

    .team-feature h2,
    .team-grid h2,
    .team-grid h3,
    .team-cta h2 {
        font-size: clamp(2.2rem, 12vw, 3.45rem);
        line-height: 1;
    }

    .team-hero {
        padding-top: 46px;
        gap: 30px;
    }

    .team-hero h1 {
        font-size: clamp(2.15rem, 10.75vw, 3rem);
    }

    .team-hero-media {
        aspect-ratio: 1 / 0.92;
    }

    .team-feature {
        padding: 58px 0;
    }

    .team-feature article {
        padding: 0;
        border-top: 0;
    }

    .team-feature figure {
        aspect-ratio: 1 / 0.98;
    }

    .team-hero-media figcaption,
    .team-feature-portrait figcaption {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .team-hero-media figcaption strong,
    .team-feature-portrait figcaption strong {
        max-width: 280px;
        font-size: 1.34rem;
    }

    .team-feature-meta {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .team-feature-meta div {
        padding: 20px;
    }

    .team-feature-meta dd {
        font-size: 1.28rem;
    }

    .team-feature-notes span {
        min-height: 34px;
        max-width: 100%;
        font-size: 0.68rem;
        line-height: 1.25;
        text-align: center;
    }

    .team-grid article {
        padding: 34px 0;
        background: transparent;
        border-radius: 0;
        border-width: 1px 0 0;
    }

    .team-grid article:last-child {
        border-bottom-width: 1px;
    }

    .team-grid figure {
        aspect-ratio: 1.1 / 1;
    }

    .team-grid-heading {
        margin-bottom: 28px;
    }

    .team-grid-heading h2 {
        font-size: clamp(2.05rem, 10vw, 3rem);
    }

    .team-grid h3 {
        font-size: clamp(2rem, 9.6vw, 3rem);
    }

    .team-cta {
        padding: 34px 24px;
        margin-bottom: 54px;
    }

    .video-hero {
        width: 100%;
        min-height: 96svh;
        margin-right: 0;
        margin-left: 0;
        padding: 0;
    }

    .scroll-hint {
        bottom: 26px;
        font-size: 0.62rem;
    }

    .scroll-hint::after {
        height: 28px;
    }

    .video-hero::before {
        background: linear-gradient(180deg, rgba(15, 19, 17, 0.18) 0%, rgba(15, 19, 17, 0.08) 35%, rgba(15, 19, 17, 0.44) 100%),
        linear-gradient(90deg, rgba(15, 19, 17, 0.28), rgba(15, 19, 17, 0.06));
    }

    .video-layer img,
    .video-layer video {
        object-position: 62% center;
    }

    .hero-text,
    .page-hero p:last-child,
    .contact-hero p:not(.eyebrow) {
        margin-top: 22px;
        font-size: 0.98rem;
        line-height: 1.68;
    }

    .intro-section {
        padding: 64px 0 68px;
    }

    .legal-content article {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 28px 0;
    }

    .legal-content h2 {
        font-size: 1.42rem;
    }

    .intro-watermark {
        top: 45%;
        right: -96px;
        width: 300px;
        opacity: 0.09;
    }

    .intro-section .hero-text {
        margin-top: 0;
        font-size: 1rem;
        line-height: 1.7;
    }

    .eyebrow {
        margin-bottom: 16px;
        font-size: 0.66rem;
    }

    .hero-actions {
        gap: 12px;
        margin-top: 28px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
        min-height: 46px;
    }

    .home-conversation-fab-wrap {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }

    .home-conversation-fab {
        width: 52px;
        height: 52px;
    }

    .home-conversation-fab svg {
        width: 22px;
        height: 22px;
    }

    .home-conversation-menu {
        width: min(318px, calc(100vw - 36px));
        gap: 13px;
        padding: 16px;
    }

    .home-conversation-menu a {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 12px;
        min-height: 62px;
    }

    .home-conversation-icon {
        width: 46px;
        height: 46px;
        border-radius: 13px;
    }

    .home-conversation-icon svg {
        width: 23px;
        height: 23px;
    }

    .home-conversation-text strong {
        font-size: 0.94rem;
    }

    .home-conversation-text small,
    .home-conversation-text em {
        font-size: 0.82rem;
    }

    .service-list,
    .principles,
    .timeline,
    .proof-strip {
        grid-template-columns: 1fr;
    }

    .service-item,
    .principles article,
    .timeline-item {
        min-height: 230px;
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .proof-strip {
        gap: 0;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .proof-strip article,
    .proof-strip article:nth-child(odd),
    .proof-strip article:nth-child(even) {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .proof-strip article:first-child {
        padding-top: 0;
    }

    .service-item:last-child,
    .principles article:last-child,
    .timeline-item:last-child,
    .proof-strip article:last-child {
        border-bottom: 0;
    }

    .pathways-showcase-media {
        aspect-ratio: 1 / 1.12;
        border-radius: 7px;
    }

    .pathways-showcase-count {
        top: 28px;
        left: 28px;
        font-size: clamp(3rem, 16vw, 4.8rem);
    }

    .pathways-showcase-copy h3 {
        font-size: clamp(3rem, 16vw, 4.8rem);
    }

    .pathways-showcase-copy p:not(.pathways-showcase-kicker) {
        font-size: 1.08rem;
        line-height: 1.62;
    }

    .pathways-showcase-tabs {
        grid-template-columns: 1fr 1fr;
        gap: 22px 18px;
    }

    .pathways-showcase-tabs strong {
        font-size: 0.72rem;
    }

    .proof-strip article:last-child {
        padding-bottom: 0;
    }

    .proof-strip span {
        max-width: none;
        margin-bottom: 10px;
    }

    .proof-strip p {
        max-width: 100%;
    }

    .image-band {
        min-height: 520px;
    }

    .image-band div,
    .cta-panel {
        padding: 28px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form .button {
        width: 100%;
    }

    .contact-copy {
        width: min(100% - 28px, 760px);
        padding-top: 92px;
    }

    .contact-details {
        flex-direction: column;
        gap: 10px;
    }

    .contact-media,
    .contact-media img {
        min-height: 48vh;
    }
}
