:root {
    --paper: #f1ecdf;
    --paper-light: #f8f5ec;
    --paper-deep: #e2dac7;
    --ink: #111714;
    --forest: #1c2922;
    --moss: #415447;
    --rust: #a2573b;
    --rust-deep: #7d3f2d;
    --line: rgba(17, 23, 20, 0.16);
    --muted: #69716c;
    --white: #fffdfa;
    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --shell: min(1180px, calc(100vw - 48px));
    --ease: cubic-bezier(.2,.7,.25,1);
    --shadow: 0 32px 70px rgba(21, 28, 24, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper-light);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }
button { color: inherit; }
::selection { background: var(--rust); color: var(--white); }

.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;
    top: 10px; left: 10px;
    z-index: 9999;
    background: var(--ink);
    color: white;
    padding: 10px 14px;
    transform: translateY(-150%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--paper-light) 92%, transparent);
    border-bottom: 1px solid rgba(17,23,20,.08);
    backdrop-filter: blur(16px);
}
.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: max-content;
}
.brand img { width: 38px; height: 38px; }
.brand-wordmark {
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: .01em;
}
.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 13px;
    letter-spacing: .025em;
}
.primary-nav a { text-decoration: none; position: relative; }
.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: -6px;
    height: 1px;
    background: var(--rust);
    transition: right .25s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { right: 0; }
.nav-cta {
    border: 1px solid var(--forest);
    background: transparent;
    padding: 11px 16px;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-cta:hover { background: var(--forest); color: var(--white); }
.menu-toggle { display: none; }

.hero {
    background:
        linear-gradient(90deg, rgba(28,41,34,.045) 1px, transparent 1px) 0 0 / 84px 84px,
        var(--paper-light);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .93fr) minmax(500px, 1.07fr);
    gap: clamp(40px, 6vw, 92px);
    min-height: 720px;
    align-items: center;
    padding-block: clamp(64px, 8vw, 110px);
}
.hero-copy { max-width: 620px; position: relative; z-index: 2; }
.eyebrow {
    margin: 0 0 20px;
    color: var(--rust-deep);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
}
.hero .eyebrow { display: flex; align-items: center; gap: 14px; }
.eyebrow-line { display: inline-block; width: 52px; height: 1px; background: var(--rust); }
h1, h2, h3, p { text-wrap: pretty; }
.hero h1,
.section-heading h2,
.editorial-copy h2,
.section-heading--center h2,
.faq-intro h2,
.final-cta h2,
.legal-page h1,
.contact-page h1,
.not-found-page h1 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .94;
    margin: 0;
}
.hero h1 { font-size: clamp(57px, 5.9vw, 92px); max-width: 780px; }
.hero h1 em,
.section-heading h2 em,
.editorial-copy h2 em,
.section-heading--center h2 em,
.faq-intro h2 em,
.final-cta h2 em,
.contact-page h1 em,
.not-found-page h1 em {
    color: var(--rust);
    font-weight: 400;
}
.hero-lede {
    max-width: 570px;
    color: #505852;
    font-size: 17px;
    line-height: 1.75;
    margin: 30px 0 0;
}
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.button {
    border: 0;
    border-radius: 0;
    cursor: pointer;
    min-height: 52px;
    padding: 15px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.button:hover:not(:disabled) { transform: translateY(-2px); }
.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--rust);
    outline-offset: 4px;
}
.button--primary { background: var(--forest); color: var(--white); }
.button--primary:hover { background: #0e1813; }
.text-link {
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 6px;
}
.text-link span { margin-left: 6px; color: var(--rust); }
.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    margin-top: 34px;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.hero-notes span { position: relative; }
.hero-notes span:not(:last-child)::after {
    content: "";
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--rust);
    position: absolute;
    right: -12px; top: 7px;
}
.hero-art { position: relative; width: 100%; justify-self: end; }
.hero-art::before {
    content: "";
    position: absolute;
    inset: -24px 38px 56px -22px;
    border: 1px solid var(--line);
    z-index: 0;
}
.hero-art-frame {
    position: relative;
    z-index: 1;
    background: var(--paper-deep);
    box-shadow: var(--shadow);
    transform: rotate(1.2deg);
    overflow: hidden;
}
.hero-art-frame img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }
.hero-caption {
    position: absolute;
    z-index: 2;
    left: -38px;
    bottom: 26px;
    width: 250px;
    background: var(--forest);
    color: var(--white);
    padding: 20px 22px 22px;
    box-shadow: 0 18px 45px rgba(15,23,19,.2);
}
.hero-caption span {
    color: #d8c6b3;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .15em;
}
.hero-caption p { margin: 10px 0 0; font-family: var(--serif); font-size: 19px; line-height: 1.15; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

.trust-strip { background: var(--forest); color: #f0e8dc; border-bottom: 1px solid rgba(255,255,255,.08); }
.trust-grid {
    min-height: 72px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
}
.trust-grid span {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 9px;
    position: relative;
}
.trust-grid span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,.16);
    transform: translateY(-50%);
}

.section { padding-block: clamp(86px, 9vw, 140px); }
.section--patterns { background: var(--paper); }
.section-heading { margin-bottom: 58px; }
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.section-heading h2,
.editorial-copy h2,
.section-heading--center h2,
.faq-intro h2,
.final-cta h2 { font-size: clamp(45px, 5vw, 72px); }
.split-heading > p {
    max-width: 430px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0 0 4px;
}
.pattern-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: auto auto;
    gap: 28px;
}
.pattern-card {
    border-top: 1px solid var(--ink);
    padding-top: 14px;
}
.pattern-card--large { grid-row: span 2; }
.pattern-card--wide { display: none; }
.pattern-image {
    overflow: hidden;
    background: #dcd2bf;
}
.pattern-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .7s var(--ease);
}
.pattern-card--large .pattern-image img { aspect-ratio: 4 / 5.25; }
.pattern-card:hover .pattern-image img { transform: scale(1.012); }
.pattern-meta {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 18px 2px 0;
}
.pattern-meta > span { font-size: 10px; color: var(--rust); letter-spacing: .1em; }
.pattern-meta h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin: 0 0 5px; }
.pattern-meta p { color: var(--muted); font-size: 13px; margin: 0; max-width: 390px; }

.editorial { background: var(--paper-light); overflow: hidden; }
.editorial-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(54px, 8vw, 110px);
    align-items: center;
}
.editorial-visual { position: relative; }
.editorial-visual img { width: 100%; box-shadow: var(--shadow); }
.editorial-stamp {
    position: absolute;
    right: -28px;
    bottom: 38px;
    transform: rotate(-90deg) translateY(100%);
    transform-origin: bottom right;
    font-size: 9px;
    letter-spacing: .28em;
    color: var(--rust-deep);
}
.editorial-copy > p:not(.eyebrow) { color: var(--muted); font-size: 16px; line-height: 1.85; max-width: 510px; margin: 28px 0 0; }
.editorial-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 42px 0; border-top: 1px solid var(--line); padding-top: 22px; }
.editorial-facts div { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: baseline; }
.editorial-facts strong { font-family: var(--serif); font-size: 34px; font-weight: 400; color: var(--rust); }
.editorial-facts span { color: var(--muted); font-size: 11px; line-height: 1.4; }
.button--outline { border: 1px solid var(--forest); background: transparent; }
.button--outline:hover { background: var(--forest); color: var(--white); }

.how { background: var(--forest); color: var(--white); }
.section-heading--center { text-align: center; margin-inline: auto; }
.how .eyebrow { color: #d29f88; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 68px; border-top: 1px solid rgba(255,255,255,.18); }
.step { padding: 28px 40px 0 0; position: relative; }
.step:not(:last-child) { border-right: 1px solid rgba(255,255,255,.14); margin-right: 40px; }
.step-number { font-family: var(--serif); font-size: 54px; color: #d29f88; line-height: 1; }
.step-line { width: 42px; height: 1px; background: rgba(255,255,255,.5); margin: 24px 0 28px; }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 0 0 12px; }
.step p { color: rgba(255,255,255,.63); font-size: 13px; line-height: 1.75; margin: 0; max-width: 290px; }

.quote-section { background: #d6c7b4; border-bottom: 1px solid rgba(17,23,20,.12); }
.quote-grid { display: grid; grid-template-columns: .45fr 1.45fr .5fr; gap: 50px; align-items: start; }
.quote-kicker { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: var(--rust-deep); margin: 10px 0 0; }
blockquote { font-family: var(--serif); font-size: clamp(34px, 4vw, 58px); line-height: 1.05; letter-spacing: -.035em; margin: 0; }
.quote-note { border-top: 1px solid rgba(17,23,20,.22); padding-top: 14px; }
.quote-note span { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; color: var(--rust-deep); }
.quote-note p { font-size: 12px; color: #4f544f; margin: 10px 0 0; }

.faq { background: var(--paper-light); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro > p:last-child { color: var(--muted); line-height: 1.75; max-width: 420px; margin: 28px 0 0; font-size: 14px; }
.faq-list { border-top: 1px solid var(--ink); }
details { border-bottom: 1px solid var(--line); padding: 0; }
summary {
    cursor: pointer;
    list-style: none;
    padding: 24px 48px 24px 0;
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.25;
    position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
    content: "+";
    position: absolute;
    right: 2px; top: 23px;
    font-family: var(--sans);
    font-weight: 300;
    font-size: 22px;
    color: var(--rust);
}
details[open] summary::after { content: "−"; }
details p { color: var(--muted); max-width: 660px; margin: -2px 0 26px; font-size: 14px; line-height: 1.8; }

.final-cta { background: var(--rust-deep); color: var(--white); padding-block: clamp(70px, 8vw, 116px); }
.final-cta .eyebrow { color: #efc6b6; }
.final-cta h2 em { color: #f2cdbd; }
.final-cta-inner { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.button--light { background: var(--paper-light); color: var(--ink); min-width: 220px; }

.site-footer { background: #0f1512; color: #e9e3d9; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .55fr .8fr; gap: 50px; align-items: start; }
.brand--footer .brand-wordmark { color: #f2ede5; }
.footer-brand p { color: #9ca49f; max-width: 430px; font-size: 13px; line-height: 1.7; margin: 20px 0 0; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { text-decoration: none; color: #c6ccc8; font-size: 12px; }
.footer-contact { display: grid; gap: 8px; font-size: 12px; }
.footer-contact span { color: #848d87; }
.footer-contact a { color: #e9e3d9; text-decoration-color: #6f7a73; text-underline-offset: 4px; overflow-wrap: anywhere; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #6f7873; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }

/* Legal / contact */
.legal-page, .contact-page, .not-found-page { min-height: calc(100vh - 78px); background: var(--paper-light); }
.legal-shell { max-width: 980px; padding-block: 92px 120px; }
.legal-page h1, .contact-page h1, .not-found-page h1 { font-size: clamp(54px, 7vw, 90px); }
.legal-lede { font-family: var(--serif); font-size: 23px; line-height: 1.45; max-width: 760px; margin: 26px 0 64px; color: #465048; }
.legal-content { display: grid; grid-template-columns: repeat(2, 1fr); gap: 42px 64px; border-top: 1px solid var(--ink); padding-top: 30px; }
.legal-content section { border-top: 1px solid var(--line); padding-top: 16px; }
.legal-content h2 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 0 0 12px; }
.legal-content p { color: var(--muted); font-size: 14px; line-height: 1.8; margin: 0; }
.legal-content code { font-size: .9em; }
.contact-grid { display: grid; grid-template-columns: 1fr .82fr; gap: clamp(50px, 9vw, 120px); align-items: center; padding-block: clamp(72px, 9vw, 126px); }
.contact-copy > p:not(.eyebrow):not(.contact-note) { color: var(--muted); max-width: 530px; line-height: 1.8; margin: 28px 0; }
.contact-email { font-family: var(--serif); font-size: clamp(25px, 3vw, 38px); text-underline-offset: 7px; text-decoration-thickness: 1px; overflow-wrap: anywhere; }
.contact-note { font-size: 11px; color: var(--muted); max-width: 520px; border-top: 1px solid var(--line); padding-top: 16px; margin-top: 34px; }
.contact-art img { width: 100%; box-shadow: var(--shadow); }
.not-found-inner { padding-block: 120px; max-width: 820px; }
.error-code { display: block; font-family: var(--serif); color: var(--rust); font-size: 27px; margin-bottom: 36px; }
.not-found-inner > p:not(.eyebrow) { color: var(--muted); max-width: 500px; margin: 28px 0 36px; }

/* Modals */
.modal-shell {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s var(--ease), visibility .28s;
}
.modal-shell.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(9,13,11,.72); backdrop-filter: blur(8px); }
.modal {
    width: min(570px, calc(100vw - 36px));
    max-height: calc(100vh - 36px);
    overflow: auto;
    position: relative;
    z-index: 1;
    background: var(--paper-light);
    box-shadow: 0 40px 100px rgba(0,0,0,.3);
    border: 1px solid rgba(255,255,255,.25);
    padding: 52px 50px 44px;
    transform: translateY(16px) scale(.985);
    transition: transform .34s var(--ease);
    outline: none;
}
.modal-shell.is-open .modal { transform: none; }
.modal-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    padding: 0;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
}
.modal-close span { position: absolute; width: 15px; height: 1px; background: var(--ink); left: 10px; top: 17px; }
.modal-close span:first-child { transform: rotate(45deg); }
.modal-close span:last-child { transform: rotate(-45deg); }
.modal-icon {
    width: 62px; height: 62px;
    display: grid; place-items: center;
    border-radius: 50%;
    margin-bottom: 34px;
}
.modal-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.modal-icon--loading { background: #e3d6c1; color: var(--rust-deep); }
.modal-icon--ready { background: #dbe2da; color: var(--forest); }
.modal-icon--loading svg { animation: drafting 2.4s ease-in-out infinite; transform-origin: center; }
@keyframes drafting { 0%,100% { transform: translate(-1px,1px) rotate(-2deg); } 50% { transform: translate(2px,-2px) rotate(2deg); } }
.modal-label { margin: 0 0 11px; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--rust-deep); }
.modal h2 { font-family: var(--serif); font-size: clamp(38px, 5vw, 50px); line-height: .98; letter-spacing: -.035em; font-weight: 400; margin: 0; max-width: 430px; }
.modal-description, .summary-intro { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 18px 0 0; max-width: 430px; }
.progress-wrap { margin-top: 36px; }
.progress-track { height: 3px; background: #d9d1c3; overflow: hidden; }
.progress-bar { display: block; height: 100%; width: 0; background: var(--rust); transition: width .12s linear; }
.progress-wrap--complete .progress-bar { background: var(--forest); }
.progress-meta { display: flex; justify-content: space-between; gap: 16px; margin-top: 11px; color: var(--muted); font-size: 10px; letter-spacing: .04em; }
.button--modal { width: 100%; margin-top: 34px; background: #d7d1c5; color: #8e8c86; cursor: not-allowed; }
.button--modal.button--active { background: var(--forest); color: white; cursor: pointer; }
.modal--summary { width: min(620px, calc(100vw - 36px)); }
.summary-intro { margin-bottom: 28px; }
.summary-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--ink); }
.summary-list li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.summary-number { color: var(--rust); font-size: 9px; letter-spacing: .12em; padding-top: 5px; }
.summary-list p { margin: 0; font-size: 15px; line-height: 1.65; }
.windows-icon { display: inline-block; width: 25px; height: 25px; vertical-align: -7px; margin: 0 5px; }
.button--download { width: 100%; margin-top: 28px; background: #d8d2c6; color: #8d8982; cursor: not-allowed; opacity: .84; }

@media (max-width: 1050px) {
    :root { --shell: min(100% - 40px, 960px); }
    .primary-nav { gap: 18px; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; min-height: 660px; }
    .hero h1 { font-size: clamp(54px, 6.9vw, 76px); }
    .hero-caption { left: -18px; }
    .editorial-grid { gap: 60px; }
    .quote-grid { grid-template-columns: .4fr 1.4fr; }
    .quote-note { grid-column: 2; max-width: 280px; }
}

@media (max-width: 820px) {
    :root { --shell: calc(100vw - 34px); }
    .header-inner { min-height: 70px; }
    .brand-wordmark { font-size: 20px; }
    .menu-toggle {
        display: grid;
        place-content: center;
        gap: 4px;
        width: 42px; height: 42px;
        border: 1px solid var(--line);
        background: transparent;
        padding: 0;
    }
    .menu-toggle span:not(.sr-only) { width: 17px; height: 1px; background: var(--ink); }
    .primary-nav {
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: var(--paper-light);
        border-bottom: 1px solid var(--line);
        padding: 24px 17px 28px;
        display: grid;
        gap: 18px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .22s var(--ease);
    }
    .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .nav-cta { justify-self: start; margin-top: 4px; }
    .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 46px; padding-block: 56px 76px; }
    .hero-copy { max-width: 680px; }
    .hero h1 { font-size: clamp(52px, 11vw, 82px); }
    .hero-art { width: min(94%, 650px); justify-self: end; }
    .hero-art-frame img { aspect-ratio: 4 / 3.8; }
    .hero-caption { left: -7%; bottom: 18px; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); padding-block: 20px; row-gap: 20px; }
    .trust-grid span:nth-child(3)::after { display: none; }
    .split-heading { grid-template-columns: 1fr; gap: 22px; }
    .pattern-grid { grid-template-columns: 1fr 1fr; }
    .pattern-card--large { grid-row: auto; }
    .pattern-card--large .pattern-image img { aspect-ratio: 4 / 3; }
    .pattern-card--wide { display: block; }
    .editorial-grid { grid-template-columns: 1fr; }
    .editorial-visual { width: min(88%, 650px); }
    .steps { grid-template-columns: 1fr; border-top: none; }
    .step { border-top: 1px solid rgba(255,255,255,.18); padding: 24px 0 32px; }
    .step:not(:last-child) { border-right: 0; margin-right: 0; }
    .quote-grid { grid-template-columns: 1fr; gap: 24px; }
    .quote-note { grid-column: auto; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-intro { position: static; }
    .final-cta-inner { align-items: start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .legal-content { grid-template-columns: 1fr; gap: 26px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-art { width: min(82%, 560px); }
}

@media (max-width: 520px) {
    :root { --shell: calc(100vw - 28px); }
    body { font-size: 15px; }
    .header-inner { min-height: 66px; }
    .primary-nav { top: 66px; }
    .brand img { width: 34px; height: 34px; }
    .brand-wordmark { font-size: 18px; }
    .hero { background-size: 60px 60px; }
    .hero-grid { padding-block: 44px 62px; gap: 42px; }
    .hero h1 { font-size: clamp(48px, 15.2vw, 68px); line-height: .92; }
    .hero-lede { font-size: 15px; line-height: 1.68; margin-top: 24px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 28px; }
    .hero-notes { gap: 8px 0; display: grid; }
    .hero-notes span::after { display: none !important; }
    .hero-art { width: calc(100% - 8px); }
    .hero-art::before { inset: -14px 16px 36px -10px; }
    .hero-art-frame { transform: rotate(.6deg); }
    .hero-art-frame img { aspect-ratio: 1 / 1.12; }
    .hero-caption { width: 210px; left: -4px; bottom: -20px; padding: 16px 18px 18px; }
    .hero-caption p { font-size: 16px; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid span:nth-child(3)::after { display: block; }
    .trust-grid span:nth-child(even)::after { display: none; }
    .section { padding-block: 80px; }
    .section-heading h2, .editorial-copy h2, .section-heading--center h2, .faq-intro h2, .final-cta h2 { font-size: 44px; }
    .pattern-grid { grid-template-columns: 1fr; gap: 42px; }
    .pattern-meta { grid-template-columns: 38px 1fr; }
    .pattern-meta h3 { font-size: 27px; }
    .pattern-card--wide { display: block; }
    .editorial-visual { width: 100%; }
    .editorial-stamp { right: -14px; bottom: 24px; }
    .editorial-facts { grid-template-columns: 1fr; }
    .quote-section { padding-block: 72px; }
    blockquote { font-size: 38px; }
    summary { font-size: 21px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .legal-shell { padding-block: 70px 88px; }
    .legal-page h1, .contact-page h1, .not-found-page h1 { font-size: 50px; }
    .legal-lede { font-size: 20px; margin-bottom: 48px; }
    .contact-grid { padding-block: 70px; }
    .contact-art { width: 100%; }
    .contact-email { font-size: 25px; }
    .modal-shell { padding: 10px; align-items: end; }
    .modal {
        width: 100%;
        max-height: calc(100dvh - 20px);
        padding: 46px 22px 24px;
    }
    .modal--summary { width: 100%; }
    .modal h2 { font-size: 38px; }
    .modal-icon { width: 52px; height: 52px; margin-bottom: 26px; }
    .progress-wrap { margin-top: 28px; }
    .button--modal { margin-top: 28px; }
    .summary-list li { grid-template-columns: 36px 1fr; padding: 17px 0; }
    .summary-list p { font-size: 14px; }
}

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