:root {
    --ink: #2f2930;
    --ink-soft: #51474e;
    --muted: #74686f;
    --paper: #fbf8f5;
    --surface: #fffdfb;
    --surface-deep: #f3ece8;
    --line: #e8ddd8;
    --rose: #9f5264;
    --rose-deep: #7c3f4f;
    --rose-soft: #efd7dc;
    --peach: #e7c0b0;
    --lavender: #c9b9d7;
    --sage: #a8b4a5;
    --blue: #a9bcc7;
    --gold: #d4b47f;
    --terracotta: #c98269;
    --plum: #76536f;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(61, 44, 51, 0.1);
    --shadow-small: 0 12px 32px rgba(61, 44, 51, 0.08);
    --radius-sm: 14px;
    --radius-md: 26px;
    --radius-lg: 44px;
    --shell: min(1200px, calc(100% - 48px));
    --header-height: 86px;
    --serif: Georgia, Cambria, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 15%, rgba(231, 192, 176, 0.18), transparent 28rem),
        radial-gradient(circle at 92% 82%, rgba(201, 185, 215, 0.15), transparent 30rem);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, blockquote { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

h1, h2 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.06;
}

h1 { font-size: clamp(3rem, 6.2vw, 6.1rem); }
h2 { font-size: clamp(2.25rem, 4.2vw, 4.15rem); }
h3 { line-height: 1.25; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(78px, 9vw, 132px); }
.section-heading { margin-bottom: clamp(44px, 5vw, 74px); }
.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-heading > p { color: var(--muted); }

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 60px;
    align-items: end;
}

.split-heading > p { margin-bottom: 0; }
.centered-heading { max-width: 820px; margin-inline: auto; text-align: center; }
.centered-heading h2 { margin-inline: auto; }

.eyebrow {
    margin-bottom: 18px;
    color: var(--rose-deep);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow-light { color: rgba(255, 255, 255, 0.75); }

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border: 1px solid var(--rose-deep);
    border-radius: 999px;
    color: var(--white);
    background: var(--rose-deep);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); background: #673441; box-shadow: 0 12px 28px rgba(124, 63, 79, 0.2); }
.button-small { min-height: 46px; padding: 12px 19px; font-size: 0.84rem; }
.button-light { border-color: var(--white); color: var(--rose-deep); background: var(--white); }
.button-light:hover { color: var(--rose-deep); background: #fff8f4; }

.text-link, .card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rose-deep);
    font-weight: 750;
    text-decoration: none;
}

.text-link span, .card-link span { transition: transform 180ms ease; }
.text-link:hover span, .card-link:hover span { transform: translateX(4px); }

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(232, 221, 216, 0.84);
    background: rgba(251, 248, 245, 0.92);
    backdrop-filter: blur(18px);
}

.header-inner { display: flex; min-height: var(--header-height); align-items: center; gap: 34px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 12px; text-decoration: none; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; letter-spacing: -0.04em; }
.brand-copy small { margin-top: 6px; color: var(--muted); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }

.brand-mark { position: relative; display: inline-block; width: 38px; height: 42px; }
.brand-mark i { position: absolute; display: block; width: 17px; height: 25px; border-radius: 100% 0 100% 0; background: var(--rose); transform-origin: bottom right; }
.brand-mark i:nth-child(1) { left: 9px; top: 1px; transform: rotate(-42deg); }
.brand-mark i:nth-child(2) { left: 3px; top: 13px; transform: rotate(-82deg); background: var(--peach); }
.brand-mark i:nth-child(3) { right: 1px; top: 12px; transform: rotate(4deg); background: var(--sage); }

.primary-nav { margin-left: auto; }
.nav-list, .submenu { padding: 0; margin: 0; list-style: none; }
.nav-list { display: flex; align-items: center; gap: 5px; }
.nav-list > li > a { display: block; padding: 11px 12px; border-radius: 999px; font-size: 0.83rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.nav-list a:hover, .nav-list a.is-active { color: var(--rose-deep); background: rgba(159, 82, 100, 0.08); }
.nav-parent { position: relative; }

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    display: grid;
    width: min(620px, 85vw);
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.submenu a { display: block; padding: 11px 13px; border-radius: 10px; color: var(--ink-soft); font-size: 0.85rem; font-weight: 650; text-decoration: none; }
.nav-parent:hover .submenu, .nav-parent:focus-within .submenu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.nav-toggle { display: none; }

/* Home hero */
.hero-section { position: relative; overflow: hidden; padding-block: clamp(62px, 8vw, 118px) clamp(30px, 4vw, 56px); }
.hero-section::after { position: absolute; right: -12vw; bottom: -22vw; z-index: -1; width: 52vw; aspect-ratio: 1; border-radius: 50%; background: rgba(231, 192, 176, 0.18); content: ""; filter: blur(10px); }
.hero-grid { display: grid; width: min(1320px, calc(100% - 48px)); grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(50px, 6vw, 84px); align-items: start; }
.hero-copy h1 { max-width: 780px; margin-bottom: 30px; font-size: clamp(3.2rem, 5vw, 5.1rem); }
.hero-lead { max-width: 680px; margin-bottom: 36px; color: var(--ink-soft); font-size: clamp(1.08rem, 1.5vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; }

.hero-art { position: relative; min-height: 0; aspect-ratio: 1; margin: 0; }
.hero-orbit { position: absolute; border: 1px solid rgba(124, 63, 79, 0.18); border-radius: 50%; }
.orbit-one { inset: -3% 4% 2% -4%; }
.orbit-two { inset: 4% -3% -4% 7%; border-color: rgba(118, 83, 111, 0.17); }
.portrait-card { position: absolute; inset: 0; overflow: hidden; border: 8px solid rgba(255, 255, 255, .72); border-radius: clamp(28px, 4vw, 58px) 20px clamp(36px, 5vw, 72px) 20px; background: #b87f78; box-shadow: var(--shadow); }
.portrait-image { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-statement-band { overflow: hidden; width: 100%; padding-block: clamp(25px, 3vw, 38px); border-top: 1px solid rgba(255, 255, 255, .13); border-bottom: 1px solid rgba(255, 255, 255, .13); color: var(--white); background: var(--rose-deep); }
.hero-statement-track { display: flex; width: max-content; animation: hero-statement-scroll 34s linear infinite; will-change: transform; }
.hero-statement-band:hover .hero-statement-track { animation-play-state: paused; }
.hero-statement-group { display: flex; flex: 0 0 auto; align-items: center; padding-right: clamp(28px, 4vw, 64px); margin: 0; white-space: nowrap; }
.hero-statement-quote { color: rgba(255, 255, 255, .94); font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.5rem); letter-spacing: -.035em; line-height: 1.05; }
.hero-statement-group strong { color: var(--peach); font-size: clamp(.82rem, 1.15vw, 1.02rem); font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.hero-statement-separator { margin-inline: clamp(24px, 3vw, 48px); color: rgba(255, 255, 255, .48); font-size: clamp(.72rem, 1vw, .95rem); }

@keyframes hero-statement-scroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

/* Cards and content */
.section-services { padding-top: clamp(68px, 7vw, 98px); background: var(--surface-deep); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; display: flex; min-height: 0; overflow: hidden; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); transition: transform 200ms ease, box-shadow 200ms ease; }
.service-card::after { position: absolute; right: -38px; bottom: -55px; width: 145px; aspect-ratio: 1; border-radius: 50%; background: var(--card-accent, var(--rose-soft)); content: ""; opacity: 0.5; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-small); }
.service-card-media { position: relative; z-index: 1; display: block; overflow: hidden; width: calc(100% + 56px); aspect-ratio: 14 / 9; margin: -28px -28px 24px; background: var(--surface-deep); }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.service-card:hover .service-card-media img { transform: scale(1.025); }
.service-card h3 { position: relative; z-index: 1; margin: 24px 0 16px; font-family: var(--serif); font-size: 1.62rem; font-weight: 500; }
.service-card h3 a { text-decoration: none; }
.service-card p { position: relative; z-index: 1; flex: 1; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.service-card .card-link { position: relative; z-index: 2; align-self: flex-start; margin-top: 8px; font-size: 0.82rem; }
.service-index { position: relative; z-index: 1; color: var(--rose-deep); font-family: var(--serif); font-size: 1rem; }
.service-card-lavender { --card-accent: var(--lavender); }
.service-card-peach { --card-accent: var(--peach); }
.service-card-sage { --card-accent: var(--sage); }
.service-card-blue { --card-accent: var(--blue); }
.service-card-gold { --card-accent: var(--gold); }
.service-card-terracotta { --card-accent: var(--terracotta); }
.service-card-plum { --card-accent: var(--plum); }

.philosophy-grid { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); gap: clamp(60px, 10vw, 140px); align-items: center; }
.philosophy-art { position: relative; overflow: hidden; min-height: 550px; margin: 0; border-radius: 44% 56% 38% 62% / 40% 34% 66% 60%; background: var(--surface-deep); box-shadow: var(--shadow); }
.philosophy-art::after { position: absolute; inset: 0; background: linear-gradient(155deg, rgba(255,255,255,.08), transparent 48%, rgba(47,41,48,.18)); content: ""; pointer-events: none; }
.philosophy-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.philosophy-art span { position: absolute; z-index: 1; padding: 8px 14px; border: 1px solid rgba(255,255,255,.7); border-radius: 999px; background: rgba(255,255,255,.54); font-size: .74rem; font-weight: 750; letter-spacing: .08em; backdrop-filter: blur(10px); }
.philosophy-art span:nth-of-type(1) { top: 22%; left: 16%; }
.philosophy-art span:nth-of-type(2) { top: 48%; right: 10%; }
.philosophy-art span:nth-of-type(3) { bottom: 18%; left: 28%; }
.philosophy-copy h2 { margin-bottom: 30px; }
.philosophy-copy p:not(.eyebrow) { max-width: 700px; color: var(--ink-soft); }
.philosophy-copy .text-link { margin-top: 12px; }

.steps-section { border-top: 1px solid var(--line); background: var(--surface); }
.steps-list { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; margin: 0; list-style: none; counter-reset: steps; }
.steps-list li { padding: 15px clamp(26px, 4vw, 60px) 10px; border-right: 1px solid var(--line); text-align: center; }
.steps-list li:last-child { border-right: 0; }
.steps-list span { display: grid; width: 48px; height: 48px; margin: 0 auto 26px; border-radius: 50%; place-items: center; color: var(--rose-deep); background: var(--rose-soft); font-family: var(--serif); }
.steps-list h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.steps-list p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.company-callout { color: var(--white); background: var(--plum); }
.company-callout-inner { display: grid; grid-template-areas: "media heading copy"; grid-template-columns: minmax(230px, .62fr) minmax(0, 1.18fr) minmax(260px, .72fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.company-callout-heading { grid-area: heading; }
.company-callout-copy { grid-area: copy; }
.company-callout-media { overflow: hidden; aspect-ratio: 4 / 5; grid-area: media; margin: 0; border: 5px solid rgba(255,255,255,.12); border-radius: 46% 54% 42% 58% / 40% 36% 64% 60%; background: rgba(255,255,255,.08); }
.company-callout-media img { width: 100%; height: 100%; object-fit: cover; }
.company-callout h2 { max-width: 760px; margin-bottom: 0; }
.company-callout p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.company-callout .button { margin-top: 20px; }

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-height) + 40px); }
.faq-intro h2 { font-size: clamp(2.3rem, 3.6vw, 3.7rem); }
.faq-intro p:not(.eyebrow) { color: var(--muted); }
.accordion-list details { border-bottom: 1px solid var(--line); }
.accordion-list summary { position: relative; padding: 24px 50px 24px 0; font-weight: 750; line-height: 1.4; list-style: none; cursor: pointer; }
.accordion-list summary::-webkit-details-marker { display: none; }
.accordion-list summary::after { position: absolute; top: 20px; right: 3px; display: grid; width: 32px; height: 32px; border-radius: 50%; place-items: center; background: var(--surface-deep); content: "+"; font-size: 1.2rem; font-weight: 400; transition: transform 180ms ease; }
.accordion-list details[open] summary::after { transform: rotate(45deg); }
.accordion-list details p { max-width: 780px; padding: 0 50px 24px 0; margin-bottom: 0; color: var(--muted); }

.phone-cta { padding-block: clamp(62px, 7vw, 96px); color: var(--white); background: linear-gradient(115deg, var(--rose-deep), #925166 55%, #7b5574); }
.phone-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.phone-cta h2 { max-width: 780px; margin-bottom: 0; font-size: clamp(2.2rem, 4vw, 4rem); }

/* Page hero */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(70px, 9vw, 120px); border-bottom: 1px solid var(--line); background: linear-gradient(135deg, var(--paper), #f3e9e5); }
.page-hero-shell { position: relative; z-index: 1; }
.page-hero-has-media { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr); gap: clamp(48px, 7vw, 92px); align-items: center; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { max-width: 1000px; margin: 0 0 25px; font-size: clamp(3rem, 5.8vw, 5.7rem); }
.page-hero-has-media h1 { font-size: clamp(2.8rem, 4.7vw, 4.8rem); }
.page-hero-lead { max-width: 820px; margin-bottom: 0; color: var(--ink-soft); font-size: clamp(1.08rem, 1.55vw, 1.3rem); }
.page-hero-media { position: relative; z-index: 1; overflow: hidden; aspect-ratio: 7 / 5; margin: 0; border: 8px solid rgba(255, 255, 255, .62); border-radius: 44% 56% 39% 61% / 48% 38% 62% 52%; background: var(--surface-deep); box-shadow: var(--shadow); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-shape { position: absolute; right: -6vw; bottom: -18vw; width: min(48vw, 660px); aspect-ratio: 1; border: 1px solid rgba(124,63,79,.15); border-radius: 52% 48% 33% 67% / 47% 32% 68% 53%; transform: rotate(22deg); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; color: var(--muted); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumbs a { text-decoration: none; }

/* About */
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.story-visual { position: relative; overflow: visible; min-height: 540px; margin: 0; }
.story-visual img { position: absolute; inset: 0 12% 7% 0; width: 88%; height: 93%; border-radius: 45% 55% 35% 65% / 38% 45% 55% 62%; object-fit: cover; box-shadow: var(--shadow); }
.story-visual figcaption { position: absolute; right: 0; bottom: 0; display: grid; width: 180px; height: 180px; border: 10px solid var(--paper); border-radius: 50%; place-items: center; color: var(--rose-deep); background: var(--gold); font-family: var(--serif); font-size: 1.25rem; line-height: 1.05; text-align: center; }
.prose-block h2 { margin-bottom: 30px; }
.prose-block p:not(.eyebrow) { color: var(--ink-soft); }
.values-section { background: var(--surface-deep); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.values-grid article { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.values-grid span { color: var(--rose); font-family: var(--serif); }
.values-grid h3 { margin: 55px 0 14px; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
.values-grid p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.space-section { padding-top: 20px; }
.space-inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: clamp(35px, 5vw, 70px); align-items: center; padding: 18px clamp(30px, 5vw, 68px) 18px 18px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #f0dedd, #e6d9e7); }
.space-media { overflow: hidden; align-self: stretch; min-height: 480px; margin: 0; border-radius: calc(var(--radius-lg) - 10px); background: var(--surface-deep); }
.space-media img { width: 100%; height: 100%; object-fit: cover; }
.space-gallery { display: grid; min-height: 0; align-self: center; grid-template-columns: repeat(2, minmax(0, 305px)); justify-content: center; gap: 10px; }
.space-gallery figure { overflow: hidden; min-height: 0; aspect-ratio: 305 / 584; margin: 0; border-radius: 18px; background: var(--surface-deep); }
.space-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.space-gallery figure:hover img { transform: scale(1.025); }
.space-inner h2 { max-width: 700px; }
.space-inner p:not(.eyebrow) { max-width: 680px; color: var(--ink-soft); }
.space-address { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(47,41,48,.15); }
.space-address span { display: inline-block; margin-right: 10px; color: var(--rose-deep); font-family: var(--serif); font-size: 3rem; line-height: .95; }
.space-address strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.space-address p { margin: 10px 0 0; }

/* Services overview and detail */
.service-list-large { display: grid; }
.service-row { display: grid; grid-template-columns: 58px minmax(120px, 165px) minmax(0, 1fr) 50px; gap: 25px; align-items: center; padding: 22px 24px; border-top: 1px solid var(--line); text-decoration: none; transition: background 180ms ease, padding 180ms ease; }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row:hover { padding-inline: 34px; background: rgba(255,255,255,.72); }
.service-row-number { color: var(--rose); font-family: var(--serif); font-size: 1.1rem; }
.service-row-media { overflow: hidden; aspect-ratio: 14 / 9; border-radius: 16px; background: var(--surface-deep); }
.service-row-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.service-row:hover .service-row-media img { transform: scale(1.04); }
.service-row-copy { display: grid; gap: 8px; }
.service-row-copy strong { font-family: var(--serif); font-size: clamp(1.55rem, 2.7vw, 2.6rem); font-weight: 500; line-height: 1.1; }
.service-row-copy small { max-width: 780px; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.service-row-arrow { display: grid; width: 45px; height: 45px; border-radius: 50%; place-items: center; background: var(--surface-deep); }
.framework-section { color: var(--white); background: var(--ink); }
.framework-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 140px); }
.framework-grid .eyebrow { color: var(--peach); }
.framework-grid h2 { margin-bottom: 0; }
.framework-copy { color: rgba(255,255,255,.72); }
.framework-media { overflow: hidden; aspect-ratio: 350 / 166; grid-column: 1 / -1; margin: 12px 0 0; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.06); }
.framework-media img { width: 100%; height: 100%; object-fit: cover; }
.corporate-teaser { background: var(--surface); }
.corporate-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: clamp(40px, 6vw, 75px); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.corporate-teaser h2 { margin: 18px 0 0; font-size: clamp(2.1rem, 3.8vw, 3.7rem); }
.corporate-teaser p { color: var(--muted); }
.feature-label { display: inline-flex; padding: 7px 12px; border-radius: 999px; color: var(--rose-deep); background: var(--rose-soft); font-size: .72rem; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }

.service-detail-grid { display: grid; grid-template-columns: minmax(290px, .7fr) minmax(0, 1.3fr); gap: clamp(60px, 10vw, 140px); align-items: start; }
.service-aside { position: sticky; top: calc(var(--header-height) + 40px); padding: 34px; border-radius: var(--radius-md); background: var(--surface-deep); }
.service-aside::before { display: block; width: 62px; height: 62px; margin-bottom: 45px; border-radius: 43% 57% 62% 38% / 48% 42% 58% 52%; background: var(--detail-accent, var(--rose-soft)); content: ""; }
.service-detail-lavender { --detail-accent: var(--lavender); }
.service-detail-peach { --detail-accent: var(--peach); }
.service-detail-sage { --detail-accent: var(--sage); }
.service-detail-blue { --detail-accent: var(--blue); }
.service-detail-gold { --detail-accent: var(--gold); }
.service-detail-terracotta { --detail-accent: var(--terracotta); }
.service-detail-plum { --detail-accent: var(--plum); }
.aside-kicker { color: var(--rose-deep); font-size: .72rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.service-aside p { margin: 16px 0 28px; color: var(--ink-soft); }
.service-main section + section { margin-top: clamp(70px, 8vw, 110px); }
.service-main h2 { max-width: 720px; margin-bottom: 35px; font-size: clamp(2.2rem, 3.9vw, 3.8rem); }
.expert-callout { position: relative; overflow: hidden; padding: clamp(34px, 5vw, 56px); border-radius: var(--radius-md); color: var(--white); background: var(--ink); }
.expert-callout::after { position: absolute; right: -70px; bottom: -95px; width: 230px; aspect-ratio: 1; border-radius: 48% 52% 63% 37% / 42% 48% 52% 58%; background: var(--detail-accent, var(--blue)); content: ""; opacity: .2; }
.expert-callout > * { position: relative; z-index: 1; }
.expert-callout .eyebrow { color: var(--peach); }
.service-main .expert-callout h2 { margin-bottom: 8px; font-size: clamp(2.3rem, 4.8vw, 4.5rem); }
.expert-callout .expert-role { margin-bottom: 28px; color: var(--peach); font-weight: 700; }
.expert-callout p:last-child { max-width: 740px; margin-bottom: 0; color: rgba(255,255,255,.74); }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0; margin: 0; list-style: none; }
.check-list li { position: relative; padding: 22px 22px 22px 55px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); color: var(--ink-soft); }
.check-list li::before { position: absolute; top: 24px; left: 22px; display: grid; width: 22px; height: 22px; border-radius: 50%; place-items: center; color: var(--white); background: var(--rose); content: "✓"; font-size: .7rem; }
.numbered-process { padding: 0; margin: 0; list-style: none; }
.numbered-process li { display: grid; grid-template-columns: 62px 1fr; gap: 22px; align-items: start; padding-block: 24px; border-top: 1px solid var(--line); }
.numbered-process li:last-child { border-bottom: 1px solid var(--line); }
.numbered-process span { color: var(--rose); font-family: var(--serif); font-size: 1.3rem; }
.numbered-process p { margin-bottom: 0; color: var(--ink-soft); }
.scope-note { margin-top: clamp(65px, 8vw, 100px); padding: 30px; border-left: 4px solid var(--rose); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--surface-deep); }
.scope-note strong { display: block; margin-bottom: 10px; }
.scope-note p { margin-bottom: 0; color: var(--muted); }
.related-services { padding-top: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-grid a { display: grid; overflow: hidden; min-height: 300px; grid-template-columns: minmax(0, 1fr) auto; align-items: end; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); font-family: var(--serif); font-size: 1.35rem; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease; }
.related-grid a:hover { transform: translateY(-4px); box-shadow: var(--shadow-small); }
.related-media { overflow: hidden; aspect-ratio: 14 / 9; grid-column: 1 / -1; align-self: start; background: var(--surface-deep); }
.related-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.related-grid a:hover .related-media img { transform: scale(1.035); }
.related-title { padding: 22px 10px 24px 24px; }
.related-grid i { padding: 22px 24px 24px 10px; font-family: var(--sans); font-style: normal; }

/* Companies */
.companies-intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(60px, 10vw, 140px); align-items: start; }
.company-statement span { display: block; margin-bottom: 22px; color: var(--rose-deep); font-weight: 750; }
.company-statement h2 { margin-bottom: 0; }
.company-services { background: var(--surface-deep); }
.company-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.company-service-grid article { min-height: 300px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.company-service-grid article > span { color: var(--rose); font-family: var(--serif); }
.company-service-grid h3 { margin: 70px 0 15px; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.company-service-grid p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.company-service-grid .company-service-contact { display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); background: var(--plum); }
.company-service-contact p { color: rgba(255,255,255,.7); }
.company-service-contact h3 { margin: 5px 0 28px; font-size: 2.6rem; }
.company-process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 140px); align-items: start; }
.company-process-grid > div { position: sticky; top: calc(var(--header-height) + 40px); }
.company-process-grid ol { padding: 0; margin: 0; list-style: none; }
.company-process-grid li { display: grid; grid-template-columns: 55px 1fr; gap: 25px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.company-process-grid li:first-child { border-top: 1px solid var(--line); }
.company-process-grid li > span { color: var(--rose); font-family: var(--serif); font-size: 1.3rem; }
.company-process-grid h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.company-process-grid p { margin-bottom: 0; color: var(--muted); }
.company-process-media { overflow: hidden; aspect-ratio: 4 / 5; margin: 34px 0 0; border-radius: var(--radius-md); background: var(--surface-deep); box-shadow: var(--shadow-small); }
.company-process-media img { width: 100%; height: 100%; object-fit: cover; }
.confidentiality-section { padding-top: 0; }
.confidentiality-inner { display: grid; grid-template-columns: minmax(220px, 320px) 1fr; gap: clamp(38px, 6vw, 78px); align-items: center; padding: clamp(30px, 5vw, 62px); border-radius: var(--radius-lg); color: var(--white); background: var(--ink); }
.confidentiality-media { overflow: hidden; aspect-ratio: 4 / 5; margin: 0; border: 1px solid rgba(255,255,255,.15); border-radius: 42% 58% 45% 55% / 38% 44% 56% 62%; background: rgba(255,255,255,.06); }
.confidentiality-media img { width: 100%; height: 100%; object-fit: cover; }
.confidentiality-inner h2 { max-width: 820px; }
.confidentiality-inner p:not(.eyebrow) { max-width: 850px; margin-bottom: 0; color: rgba(255,255,255,.7); }

/* FAQ, contact, legal */
.faq-page-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(60px, 9vw, 120px); align-items: start; }
.faq-page-grid > aside { position: sticky; top: calc(var(--header-height) + 40px); }
.faq-page-grid > aside h2 { font-size: clamp(2.1rem, 3.5vw, 3.5rem); }
.faq-page-grid > aside p:not(.eyebrow) { color: var(--muted); }
.crisis-note { padding-top: 0; }
.crisis-note-inner { display: grid; grid-template-columns: 180px 1fr; gap: 35px; padding: 28px 32px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.crisis-note-inner p { margin-bottom: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; align-items: stretch; }
.phone-panel { padding: clamp(38px, 6vw, 78px); border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(145deg, var(--rose-deep), #a46172); scroll-margin-top: calc(var(--header-height) + 30px); }
.phone-panel:focus { outline: none; }
.phone-panel h2 { max-width: 620px; }
.contact-phone { margin: 50px 0 28px; font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 4.8rem); line-height: 1; }
.phone-panel > p:last-child { max-width: 650px; margin-bottom: 0; color: rgba(255,255,255,.74); }
.mobile-phone-hint { display: none; color: rgba(255,255,255,.75); font-size: .82rem; }
.contact-details { display: grid; gap: 18px; }
.contact-details article { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 4vw, 50px); border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.contact-label { margin-bottom: 28px; color: var(--rose-deep); font-size: .72rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.contact-details h2 { margin-bottom: 24px; font-size: clamp(1.55rem, 2.5vw, 2.45rem); line-height: 1.2; }
.contact-details h2 a { overflow-wrap: anywhere; text-decoration: none; }
.contact-details p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.expectation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.expectation-grid article { padding: 32px; border-top: 1px solid var(--line); }
.expectation-grid span { color: var(--rose); font-family: var(--serif); }
.expectation-grid h3 { margin: 48px 0 12px; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.expectation-grid p { margin-bottom: 0; color: var(--muted); }
.contact-expectations-media { overflow: hidden; aspect-ratio: 350 / 166; margin: 0 0 clamp(45px, 6vw, 75px); border-radius: var(--radius-md); background: var(--surface-deep); box-shadow: var(--shadow-small); }
.contact-expectations-media img { width: 100%; height: 100%; object-fit: cover; }

.phone-mobile { display: none; }
.phone-desktop { display: inline; }
.phone-number { white-space: nowrap; }

.legal-page { padding-top: 70px; }
.legal-content { max-width: 860px; }
.legal-content h2 { margin: 55px 0 16px; font-family: var(--serif); font-size: 2rem; }
.legal-content p { color: var(--ink-soft); }
.legal-draft-note { padding: 24px; border: 1px solid #d8b47a; border-radius: var(--radius-sm); background: #fff6e7; }
.not-found-section { display: grid; min-height: 70vh; padding-block: 90px; place-items: center; text-align: center; }
.not-found-inner { max-width: 830px; }
.not-found-inner > span { display: block; color: var(--rose-soft); font-family: var(--serif); font-size: clamp(7rem, 20vw, 15rem); line-height: .8; }
.not-found-inner h1 { margin: 30px 0 20px; font-size: clamp(2.8rem, 5vw, 5rem); }
.not-found-inner > p:not(.eyebrow) { color: var(--muted); }
.not-found-inner > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; align-items: center; margin-top: 35px; }

/* Footer */
.site-footer { color: rgba(255,255,255,.78); background: #292329; }
.footer-main { display: grid; grid-template-columns: 1.5fr .65fr 1fr; gap: 70px; padding-block: 80px 65px; }
.brand-footer { color: var(--white); }
.brand-footer .brand-copy small { color: rgba(255,255,255,.55); }
.footer-brand > p { max-width: 380px; margin: 25px 0 0; color: rgba(255,255,255,.6); }
.footer-column h2 { margin-bottom: 22px; color: var(--white); font-family: var(--sans); font-size: .75rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.footer-column ul { padding: 0; margin: 0; list-style: none; }
.footer-column li + li { margin-top: 10px; }
.footer-column a { text-decoration: none; }
.footer-column a:hover { color: var(--white); }
.footer-column address { margin-bottom: 14px; font-style: normal; }
.footer-column p { margin: 0 0 8px; }
.footer-column .phone-desktop { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }
.footer-bottom p { margin-bottom: 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 25px; }
.footer-legal a { text-decoration: none; }

@media (max-width: 1120px) {
    :root { --shell: min(100% - 40px, 1000px); }
    .header-inner { gap: 18px; }
    .header-cta { display: none; }
    .nav-list > li > a { padding-inline: 9px; }
    .hero-grid { width: var(--shell); grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 45px; }
    .service-grid { grid-template-columns: repeat(3, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .company-service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
    :root { --header-height: 74px; }
    body { font-size: 16px; }
    .nav-toggle { display: grid; width: 44px; height: 44px; margin-left: auto; padding: 10px; border: 1px solid var(--line); border-radius: 50%; place-items: center; background: var(--surface); cursor: pointer; }
    .nav-toggle > span:not(.sr-only) { display: block; width: 19px; height: 2px; margin: 2px 0; border-radius: 2px; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }
    .nav-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
    .primary-nav { position: fixed; top: var(--header-height); right: 0; left: 0; max-height: calc(100vh - var(--header-height)); overflow: auto; padding: 18px 20px 30px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-small); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity 180ms ease, transform 180ms ease; }
    .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .nav-list { display: grid; align-items: stretch; }
    .nav-list > li > a { padding: 13px 12px; font-size: .95rem; }
    .submenu { position: static; display: grid; width: auto; grid-template-columns: 1fr; padding: 7px 0 8px 14px; border: 0; background: transparent; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
    .nav-parent:hover .submenu, .nav-parent:focus-within .submenu { transform: none; }
    .submenu a { font-size: .88rem; }
    .hero-grid, .philosophy-grid, .story-grid, .framework-grid, .service-detail-grid, .companies-intro-grid, .company-process-grid, .faq-page-grid, .contact-grid, .page-hero-has-media { grid-template-columns: 1fr; }
    .story-visual { width: min(100%, 520px); min-height: 650px; margin-inline: auto; }
    .hero-copy { max-width: 760px; }
    .hero-art { width: min(100%, 720px); min-height: 0; aspect-ratio: 1; margin-inline: auto; }
    .split-heading { grid-template-columns: 1fr; gap: 25px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .philosophy-art { min-height: 470px; }
    .company-callout-inner, .space-inner, .corporate-teaser-inner { grid-template-columns: 1fr; gap: 36px; }
    .company-callout-inner { grid-template-areas: "heading" "media" "copy"; }
    .company-callout-media { width: min(100%, 520px); }
    .framework-media { aspect-ratio: 16 / 10; }
    .page-hero-media { width: min(100%, 720px); aspect-ratio: 16 / 10; }
    .space-inner { padding: 18px 18px 38px; }
    .space-copy { padding-inline: 18px; }
    .space-media { min-height: 0; aspect-ratio: 3 / 2; }
    .space-gallery { min-height: 0; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-intro, .service-aside, .faq-page-grid > aside, .company-process-grid > div { position: static; }
    .company-process-media { width: min(100%, 620px); aspect-ratio: 4 / 3; }
    .steps-list { grid-template-columns: 1fr; gap: 35px; }
    .steps-list li { padding: 10px 30px 35px; border-right: 0; border-bottom: 1px solid var(--line); }
    .steps-list li:last-child { border-bottom: 0; }
    .phone-cta-inner { align-items: flex-start; flex-direction: column; }
    .space-address { padding: 24px 0 0; border-top: 1px solid rgba(47,41,48,.15); border-left: 0; }
    .service-aside { position: static; }
    .confidentiality-inner { grid-template-columns: minmax(190px, 240px) 1fr; gap: 30px; }
    .contact-expectations-media { aspect-ratio: 16 / 10; }
    .footer-main { grid-template-columns: 1.3fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    :root { --shell: calc(100% - 28px); --radius-lg: 30px; }
    h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
    h2 { font-size: clamp(2.05rem, 10vw, 3.2rem); }
    .section { padding-block: 72px; }
    .brand-copy strong { font-size: 1.35rem; }
    .brand-copy small { font-size: .57rem; }
    .brand-mark { width: 34px; height: 38px; }
    .hero-section { padding-top: 45px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .portrait-card { border-width: 5px; border-radius: 34px 14px 42px 14px; }
    .service-grid, .values-grid, .company-service-grid, .check-list, .related-grid, .expectation-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 300px; }
    .philosophy-art { min-height: 360px; }
    .company-callout { border-radius: 0; }
    .phone-cta .button { width: 100%; }
    .page-hero { padding-top: 52px; }
    .breadcrumbs { margin-bottom: 28px; }
    .story-visual { min-height: 410px; }
    .story-visual figcaption { width: 130px; height: 130px; font-size: 1rem; }
    .space-inner { padding: 12px 12px 32px; }
    .space-copy { padding-inline: 12px; }
    .space-gallery { gap: 7px; }
    .space-gallery figure { border-radius: 13px; }
    .corporate-teaser-inner { padding: 32px 25px; }
    .page-hero-media { border-width: 5px; }
    .service-row { grid-template-columns: 34px 82px minmax(0, 1fr) 34px; gap: 10px; padding-inline: 5px; }
    .service-row:hover { padding-inline: 5px; }
    .service-row-copy small { display: none; }
    .service-row-arrow { width: 34px; height: 34px; }
    .service-aside { padding: 27px; }
    .confidentiality-inner { grid-template-columns: 1fr; padding: 34px 25px; }
    .confidentiality-media { width: min(100%, 360px); }
    .crisis-note-inner { grid-template-columns: 1fr; gap: 8px; }
    .phone-panel { padding: 40px 27px; }
    .contact-phone { font-size: clamp(2rem, 10vw, 3.3rem); }
    .phone-desktop { display: none; }
    .phone-mobile { display: inline; color: inherit; text-decoration: none; }
    .mobile-phone-hint { display: block; }
    .footer-main { grid-template-columns: 1fr; gap: 40px; padding-block: 60px 45px; }
    .footer-brand { grid-column: auto; }
    .footer-column .phone-mobile { color: var(--white); }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
    .hero-statement-band { overflow-x: auto; scrollbar-width: none; }
    .hero-statement-band::-webkit-scrollbar { display: none; }
    .hero-statement-track { animation: none !important; transform: none; }
    .hero-statement-group:nth-child(2) { display: none; }
}

@media print {
    .site-header, .site-footer, .phone-cta, .button, .nav-toggle, .hero-statement-band { display: none !important; }
    body { color: #000; background: #fff; }
    .section { padding-block: 30px; }
}
