:root {
    --ink: #111315;
    --ink-2: #2f3438;
    --muted: #6a7075;
    --line: #d8dbde;
    --line-dark: #373c40;
    --paper: #f5f5f3;
    --paper-2: #eceeec;
    --white: #ffffff;
    --silver: #9aa0a6;
    --dark: #111315;
    --dark-2: #1a1d20;
    --error: #8b2f2f;
    --error-bg: #fff1f1;
    --success: #255c3d;
    --success-bg: #edf7f1;
    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --shell: min(1180px, calc(100% - 32px));
    --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    min-width: 320px;
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: #22272b; color: #fff; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    transform: translateY(-140%);
    background: #fff;
    color: #111;
    padding: 10px 14px;
    border: 1px solid #111;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(17, 19, 21, .12);
    background: rgba(245, 245, 243, .9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled { background: rgba(245, 245, 243, .97); box-shadow: 0 8px 30px rgba(17, 19, 21, .05); }
.site-header__inner {
    width: var(--shell);
    min-height: var(--header-height);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    text-decoration: none;
}
.site-brand img { width: 42px; height: 42px; border-radius: 50%; }
.site-brand span { display: grid; line-height: 1.05; }
.site-brand strong { font-family: var(--serif); font-size: 21px; font-weight: 400; letter-spacing: .01em; }
.site-brand small { margin-top: 5px; color: var(--muted); font-size: 8px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }

.nav-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
}
.nav-toggle > span:not(.sr-only) { width: 18px; height: 1px; background: currentColor; transition: transform 180ms ease; }
.nav-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    padding: 24px 16px 40px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.primary-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.primary-nav a {
    display: flex;
    align-items: center;
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-2);
    font-size: 15px;
    text-decoration: none;
}
.primary-nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.primary-nav .nav-shop { margin-top: 18px; justify-content: center; border: 1px solid var(--ink); background: var(--ink); color: #fff; padding-inline: 16px; }

.eyebrow {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.eyebrow--light { color: #b9bec2; }
.section-number { margin: 0 0 10px; color: var(--silver); font-family: var(--serif); font-size: 18px; }

h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: 1.04; }
h1 { font-size: clamp(44px, 13vw, 82px); }
h2 { font-size: clamp(34px, 8vw, 58px); }
h3 { font-size: clamp(25px, 5vw, 36px); }
h1 em, h2 em { color: var(--muted); font-weight: 400; }
p { margin: 0; }

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border: 1px solid transparent;
    padding: 12px 18px;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .025em;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.button--dark:hover { background: #2a2e32; border-color: #2a2e32; }
.button--dark:disabled { opacity: .48; cursor: not-allowed; transform: none; }
.button--light { background: #fff; border-color: #fff; color: var(--ink); }
.button--light:hover { background: transparent; color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 12px; font-weight: 650; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.text-link--light { color: #fff; }

.hero { padding: 56px 0 70px; overflow: hidden; }
.hero__grid { display: grid; gap: 48px; }
.hero__copy { align-self: center; }
.hero__copy h1 { max-width: 720px; }
.hero__lead { max-width: 590px; margin-top: 24px; color: var(--ink-2); font-size: clamp(17px, 4.5vw, 21px); font-weight: 350; line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 30px; }
.hero__disciplines { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 44px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero__disciplines span:not(:last-child)::after { content: "·"; margin-left: 24px; color: var(--silver); }

.hero-collage { position: relative; min-height: 470px; }
.media-card { position: absolute; margin: 0; overflow: hidden; background: #dfe2e2; }
.media-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.02); transition: filter 500ms ease, transform 800ms cubic-bezier(.2,.7,.2,1); }
.media-card:hover img { filter: saturate(1); transform: scale(1.035); }
.media-card figcaption { position: absolute; left: 12px; bottom: 10px; background: rgba(245,245,243,.92); color: var(--ink); padding: 5px 8px; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero-collage__main { inset: 34px 0 72px 18%; }
.hero-collage__small { width: 38%; height: 152px; border: 8px solid var(--paper); }
.hero-collage__small--top { top: 0; left: 0; }
.hero-collage__small--bottom { right: -4px; bottom: 0; }
.hero-collage__note { position: absolute; z-index: 2; left: 0; bottom: 22px; max-width: 150px; color: var(--muted); font-family: var(--serif); font-size: 15px; line-height: 1.35; }

.section { padding: 72px 0; }
.section--rule { border-top: 1px solid var(--line); }
.section--soft { background: var(--paper-2); }
.section--ink { background: var(--dark); color: #fff; }
.section-heading { display: grid; gap: 26px; margin-bottom: 42px; }
.section-heading > div:last-child { max-width: 760px; }
.section-heading h2 + p { max-width: 590px; margin-top: 18px; color: var(--muted); font-size: 16px; }
.section-heading--light h2 + p { color: #b9bec2; }

.intro-grid { display: grid; gap: 26px; }
.intro-grid__content { max-width: 820px; }
.intro-grid__content blockquote { margin: 24px 0; padding: 0; border: 0; font-family: var(--serif); font-size: clamp(25px, 6vw, 42px); line-height: 1.2; }
.intro-grid__content > p { max-width: 680px; margin-bottom: 24px; color: var(--ink-2); font-size: 16px; }

.product-teaser-grid { display: grid; gap: 14px; }
.product-teaser { border: 1px solid var(--line); background: var(--white); }
.product-teaser a { display: grid; height: 100%; color: inherit; text-decoration: none; }
.product-teaser__media { min-height: 240px; overflow: hidden; background: #d9dcdd; }
.product-teaser__media img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; filter: grayscale(.22) saturate(.72); transition: transform 650ms ease, filter 350ms ease; }
.product-teaser:hover .product-teaser__media img { transform: scale(1.035); filter: grayscale(0) saturate(1); }
.product-teaser__body { padding: 22px; }
.product-teaser__body > span { color: var(--silver); font-family: var(--serif); }
.product-teaser__body h3 { margin-top: 30px; font-size: 30px; }
.product-teaser__body p { margin-top: 12px; color: var(--muted); }

.service-steps { display: grid; border-top: 1px solid var(--line-dark); }
.service-steps article { padding: 28px 0; border-bottom: 1px solid var(--line-dark); }
.service-steps span { color: #7d8388; font-family: var(--serif); }
.service-steps h3 { margin-top: 28px; color: #fff; }
.service-steps p { max-width: 420px; margin-top: 14px; color: #b9bec2; }
.services-preview__link { margin-top: 34px; }

.founder-preview__grid { display: grid; gap: 14px; margin-bottom: 28px; }
.founder-card { display: grid; grid-template-columns: 54px 1fr; gap: 18px; border-top: 1px solid var(--line); padding: 24px 0; }
.founder-card__number { color: var(--silver); font-family: var(--serif); font-size: 20px; }
.founder-card__title { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.founder-card h3 { margin-top: 7px; font-size: 30px; }
.founder-card h3 + p { max-width: 520px; margin-top: 14px; color: var(--muted); }

.audience-band { padding-top: 10px; }
.audience-band__inner { border-top: 1px solid var(--line); padding-top: 64px; }
.audience-band h2 { max-width: 760px; }
.audience-marquee { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.audience-marquee span { border: 1px solid var(--line); background: var(--white); padding: 9px 12px; color: var(--ink-2); font-size: 11px; }

.page-hero { padding: 62px 0 68px; border-bottom: 1px solid var(--line); }
.page-hero__grid { display: grid; gap: 34px; }
.page-hero h1 { max-width: 920px; font-size: clamp(43px, 10vw, 74px); }
.page-hero__aside { display: flex; flex-direction: column; justify-content: space-between; gap: 32px; border-left: 1px solid var(--line); padding-left: 22px; }
.page-hero__aside p { max-width: 430px; color: var(--muted); font-size: 16px; }
.page-hero__index { color: var(--silver); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.story-grid { display: grid; gap: 38px; }
.story-grid__mark { display: grid; place-items: center; min-height: 340px; background: var(--dark); }
.story-grid__mark img { width: min(220px, 60%); height: auto; }
.story-grid__copy { align-self: center; }
.story-grid__copy h2 { max-width: 690px; }
.story-grid__copy > p:not(.eyebrow) { max-width: 650px; margin-top: 22px; color: var(--ink-2); font-size: 16px; }

.principle-grid { display: grid; border-top: 1px solid var(--line); }
.principle-card { padding: 28px 0; border-bottom: 1px solid var(--line); }
.principle-card span { color: var(--silver); font-family: var(--serif); }
.principle-card h3 { margin-top: 26px; font-size: 30px; }
.principle-card p { margin-top: 14px; color: var(--muted); }

.company-facts { display: grid; gap: 32px; }
.company-facts dl { margin: 0; border-top: 1px solid #cfd2d2; }
.company-facts dl > div { display: grid; gap: 7px; padding: 18px 0; border-bottom: 1px solid #cfd2d2; }
.company-facts dt { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.company-facts dd { margin: 0; color: var(--ink-2); }

.simple-cta__inner { display: grid; gap: 28px; align-items: end; border-top: 1px solid var(--line); padding-top: 54px; }
.simple-cta h2 { max-width: 750px; }

.category-ledger { padding-top: 0; }
.category-row { display: grid; gap: 30px; padding: 64px 0; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-height) + 20px); }
.category-row__media { position: relative; min-height: 310px; overflow: hidden; background: #d9dcdd; }
.category-row__media img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; filter: saturate(.84); transition: transform 700ms ease; }
.category-row__media:hover img { transform: scale(1.035); }
.category-row__media span { position: absolute; top: 14px; left: 14px; display: grid; place-items: center; width: 40px; height: 40px; background: rgba(245,245,243,.94); font-family: var(--serif); }
.category-row__copy { align-self: center; }
.category-row__copy h2 { max-width: 530px; }
.category-row__copy > p:not(.eyebrow) { max-width: 560px; margin-top: 18px; color: var(--muted); font-size: 16px; }
.category-row__note { padding-top: 18px; border-top: 1px solid var(--line); font-size: 11px !important; }

.service-offer__grid { display: grid; border-top: 1px solid var(--line-dark); }
.service-offer__grid article { padding: 30px 0; border-bottom: 1px solid var(--line-dark); }
.service-offer__grid article > span { color: #8a9095; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.service-offer__grid h3 { margin-top: 24px; color: #fff; font-size: 31px; }
.service-offer__grid p { margin: 16px 0 20px; color: #b9bec2; }

.founder-profiles { padding-top: 20px; }
.founder-profile { display: grid; gap: 30px; padding: 56px 0; border-bottom: 1px solid var(--line); }
.founder-profile__identity > span { color: var(--silver); font-family: var(--serif); font-size: 22px; }
.founder-profile__identity > p { margin-top: 34px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.founder-profile__identity h2 { margin-top: 8px; }
.founder-profile__bio { align-self: end; }
.founder-profile__bio p { max-width: 660px; color: var(--ink-2); font-size: 17px; line-height: 1.85; }

.leadership-principles__grid { display: grid; gap: 24px; }
.leadership-principles__grid > div { border-top: 1px solid #cfd2d2; padding-top: 22px; }
.leadership-principles__grid span { color: var(--silver); font-family: var(--serif); }
.leadership-principles__grid h3 { margin-top: 28px; font-size: 29px; }
.leadership-principles__grid p { margin-top: 14px; color: var(--muted); }

.contact-layout__grid { display: grid; gap: 42px; }
.contact-details { align-self: start; }
.contact-details h2 { margin-bottom: 30px; }
.contact-details dl { margin: 0; border-top: 1px solid var(--line); }
.contact-details dl > div { padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-details dt { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-details dd { margin: 6px 0 0; color: var(--ink-2); }
.contact-details__note { margin-top: 24px; color: var(--muted); font-size: 12px; }

.contact-form-panel { background: var(--white); border: 1px solid var(--line); padding: 24px; }
.contact-form-panel__head h2 { font-size: clamp(31px, 7vw, 48px); }
.contact-form-panel__head > p:last-child { margin-top: 14px; color: var(--muted); }
.contact-form { display: grid; gap: 18px; margin-top: 28px; }
.form-row { display: grid; gap: 18px; }
.field label { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 7px; color: var(--ink-2); font-size: 11px; font-weight: 650; }
.field-optional { color: var(--silver); font-size: 9px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid #c8ccd0;
    border-radius: 0;
    outline: none;
    background: #fbfbfa;
    color: var(--ink);
    padding: 12px 13px;
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.field input, .field select { min-height: 48px; }
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #72787e; box-shadow: 0 0 0 3px rgba(114,120,126,.12); background: #fff; }
.field [aria-invalid="true"] { border-color: var(--error); }
.field-error { margin-top: 6px; color: var(--error); font-size: 10px; }
.field-error--consent { margin-top: -10px; }
.consent-row { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; color: var(--muted); font-size: 11px; }
.consent-row input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--ink); }
.form-submit-row { display: grid; gap: 14px; align-items: center; }
.recaptcha-note { color: var(--muted); font-size: 9px; line-height: 1.55; }
.form-notice { margin: 22px 0 0; border: 1px solid transparent; padding: 11px 13px; font-size: 12px; }
.form-notice--success { background: var(--success-bg); color: var(--success); }
.form-notice--error { background: var(--error-bg); color: var(--error); }
.form-notice--neutral { background: var(--paper-2); color: var(--ink-2); }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; white-space: nowrap !important; }

.legal-copy__grid { display: grid; gap: 36px; }
.legal-copy aside { color: var(--muted); font-size: 11px; }
.legal-copy article { max-width: 780px; }
.legal-copy article h2 { margin: 46px 0 14px; font-size: 29px; }
.legal-copy article h2:first-child { margin-top: 0; }
.legal-copy article p { color: var(--ink-2); font-size: 16px; }

.site-footer { background: var(--dark); color: #fff; }
.site-footer__lead { width: var(--shell); margin-inline: auto; display: grid; gap: 30px; padding: 62px 0; border-bottom: 1px solid var(--line-dark); }
.site-footer__lead h2 { max-width: 760px; color: #fff; }
.footer-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.site-footer__grid { width: var(--shell); margin-inline: auto; display: grid; gap: 34px; padding: 48px 0; }
.site-footer__grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 8px; }
.site-footer__grid a { color: #d6d8da; text-decoration: none; font-size: 12px; }
.site-footer__grid p { color: #aeb3b7; font-size: 12px; }
.footer-brand img { width: 54px; height: 54px; border-radius: 50%; }
.footer-brand p { max-width: 230px; margin-top: 16px; font-family: var(--serif); font-size: 19px; color: #fff; }
.footer-label { margin-bottom: 8px; color: #7e858a !important; font-size: 8px !important; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.site-footer__bottom { width: var(--shell); margin-inline: auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 18px 0 24px; border-top: 1px solid var(--line-dark); color: #7e858a; font-size: 10px; }
.site-footer__bottom a { color: #b6bbbe; text-decoration: none; }

/* Content remains visible when JavaScript is unavailable. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal--delay { transition-delay: 100ms; }

.no-js .site-header__inner { flex-wrap: wrap; padding-block: 12px; }
.no-js .nav-toggle { display: none; }
.no-js .primary-nav {
    position: static;
    width: 100%;
    visibility: visible;
    opacity: 1;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
    background: transparent;
    padding: 4px 0 0;
}
.no-js .primary-nav a { min-height: 38px; border: 0; font-size: 11px; }
.no-js .primary-nav .nav-shop { min-height: 38px; margin: 0; padding-inline: 12px; }

@media (min-width: 620px) {
    :root { --shell: min(1180px, calc(100% - 56px)); }
    .hero { padding-top: 72px; }
    .hero-collage { min-height: 560px; }
    .hero-collage__small { height: 190px; }
    .product-teaser-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-teaser--wide { grid-column: 1 / -1; }
    .product-teaser--wide a { grid-template-columns: 1.3fr .7fr; }
    .product-teaser--wide .product-teaser__media img { min-height: 350px; }
    .form-row--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .form-submit-row { grid-template-columns: auto 1fr; }
    .form-submit-row .button { min-width: 180px; }
    .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 860px) {
    :root { --header-height: 82px; }
    .nav-toggle { display: none; }
    .primary-nav {
        position: static;
        inset: auto;
        visibility: visible;
        opacity: 1;
        transform: none;
        flex-direction: row;
        align-items: center;
        gap: 25px;
        background: transparent;
        padding: 0;
    }
    .primary-nav a { min-height: auto; border: 0; font-size: 11px; }
    .primary-nav .nav-shop { min-height: 42px; margin: 0 0 0 4px; padding: 0 15px; }
    .hero { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; padding: 76px 0; }
    .hero__grid { grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr); align-items: center; gap: 64px; }
    .hero-collage { min-height: 610px; }
    .hero-collage__main { inset: 42px 0 88px 20%; }
    .hero-collage__small { width: 38%; height: 210px; }
    .section { padding: 100px 0; }
    .section-heading { grid-template-columns: minmax(150px, .28fr) minmax(0, 1fr); gap: 52px; margin-bottom: 62px; }
    .intro-grid { grid-template-columns: minmax(150px, .28fr) minmax(0, 1fr); gap: 52px; }
    .product-teaser-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 1fr; }
    .product-teaser { grid-column: span 4; }
    .product-teaser--wide { grid-column: span 8; }
    .product-teaser--wide a { grid-template-columns: 1.25fr .75fr; }
    .product-teaser:nth-child(4), .product-teaser:nth-child(5) { grid-column: span 6; }
    .service-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--line-dark); }
    .service-steps article { min-height: 360px; padding: 34px 30px; border-right: 1px solid var(--line-dark); border-bottom: 0; }
    .service-steps article:first-child { padding-left: 0; }
    .service-steps article:last-child { border-right: 0; }
    .founder-preview__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
    .page-hero { padding: 92px 0 96px; }
    .page-hero__grid { grid-template-columns: minmax(0, 1fr) 330px; gap: 90px; align-items: stretch; }
    .story-grid { grid-template-columns: .8fr 1.2fr; gap: 70px; }
    .story-grid__mark { min-height: 560px; }
    .principle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
    .principle-card { min-height: 340px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 0; }
    .principle-card:first-child { padding-left: 0; }
    .principle-card:last-child { border-right: 0; }
    .company-facts { grid-template-columns: .75fr 1.25fr; gap: 80px; }
    .company-facts dl > div { grid-template-columns: 190px 1fr; gap: 24px; }
    .simple-cta__inner { grid-template-columns: 1fr auto; gap: 60px; }
    .category-row { grid-template-columns: 1.05fr .95fr; gap: 76px; min-height: 620px; align-items: center; }
    .category-row--reverse .category-row__media { order: 2; }
    .category-row__media, .category-row__media img { min-height: 480px; }
    .service-offer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-offer__grid article { min-height: 340px; padding: 34px; border-right: 1px solid var(--line-dark); }
    .service-offer__grid article:nth-child(odd) { padding-left: 0; }
    .service-offer__grid article:nth-child(even) { border-right: 0; }
    .founder-profile { grid-template-columns: .85fr 1.15fr; gap: 86px; padding: 90px 0; }
    .leadership-principles__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px; }
    .contact-layout__grid { grid-template-columns: .65fr 1.35fr; gap: 80px; }
    .contact-details { position: sticky; top: calc(var(--header-height) + 26px); }
    .contact-form-panel { padding: 40px; }
    .legal-copy__grid { grid-template-columns: 180px 1fr; gap: 70px; }
    .site-footer__lead { grid-template-columns: 1fr auto; align-items: end; }
    .site-footer__grid { grid-template-columns: 1.15fr .75fr 1.2fr .9fr; gap: 48px; }
}

@media (min-width: 1120px) {
    .hero__grid { gap: 90px; }
    .hero-collage { min-height: 660px; }
    .product-teaser__body { padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; }
    .js .reveal { opacity: 1; transform: none; }
}
