:root {
    --ink: #10201d;
    --forest: #0a2420;
    --forest-2: #12342f;
    --sage: #79938a;
    --sage-soft: #dce5df;
    --ivory: #f7f4ed;
    --paper: #fffdfa;
    --stone: #d9d2c4;
    --gold: #bd9c62;
    --gold-light: #d7c295;
    --white: #ffffff;
    --muted: #64716d;
    --danger: #8e3f32;
    --line: rgba(16, 32, 29, .14);
    --shadow: 0 24px 70px rgba(4, 24, 20, .10);
    --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
    --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --container: 1200px;
    --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold-light); color: var(--forest); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.container-narrow { width: min(calc(100% - 48px), 850px); margin-inline: auto; }
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.section-dark { color: var(--white); background: var(--forest); }
.section-paper { background: var(--paper); }
.section-line { border-block: 1px solid var(--line); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: var(--gold);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .2em;
    line-height: 1.2;
    text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 1px; background: currentColor; content: ""; }
.eyebrow-light { color: var(--gold-light); }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.08; }
h1, h2, h3 { font-family: var(--serif); }
h1 { font-size: clamp(3.2rem, 7vw, 6.6rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.4rem, 4.7vw, 4.5rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.65rem, 2.4vw, 2.25rem); letter-spacing: -.025em; }
h4 { font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
p { margin: 0 0 1.3em; }
.lede { color: #3e4c48; font-family: var(--serif); font-size: clamp(1.25rem, 2.1vw, 1.7rem); line-height: 1.5; }
.section-dark .lede { color: rgba(255, 255, 255, .72); }
.muted { color: var(--muted); }
.fine-print { color: var(--muted); font-size: .83rem; line-height: 1.55; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.text-link::after { content: "\2197"; font-size: 1.05em; }
.text-link.internal::after { content: "\2192"; }
.text-link:hover { color: var(--gold); }

.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; transform: translateY(-150%); background: var(--white); padding: 12px 18px; }
.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; }

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: 88px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    transition: background .3s ease, height .3s ease, box-shadow .3s ease;
}
.site-header.scrolled, .inner-page .site-header { height: 76px; color: var(--forest); background: rgba(247, 244, 237, .96); border-color: var(--line); box-shadow: 0 8px 35px rgba(5, 25, 21, .06); backdrop-filter: blur(18px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; width: 250px; height: 50px; align-items: center; flex: 0 0 auto; }
.brand img { display: block; width: 100%; height: auto; max-height: 50px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); transition: filter .3s ease; }
.site-header.scrolled .brand img, .inner-page .brand img { filter: none; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: .76rem; font-weight: 650; letter-spacing: .09em; text-transform: uppercase; }
.site-nav > a:not(.nav-cta) { position: relative; padding: 31px 0; }
.site-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 23px; left: 0; height: 1px; transform: scaleX(0); transform-origin: left; background: var(--gold); content: ""; transition: transform .25s ease; }
.site-nav > a:hover::after, .site-nav > a.active::after { transform: scaleX(1); }
.nav-cta { border: 1px solid rgba(255, 255, 255, .42); padding: 13px 18px; transition: .25s ease; }
.site-header.scrolled .nav-cta, .inner-page .nav-cta { border-color: var(--forest); }
.nav-cta:hover { color: var(--forest); background: var(--gold-light); border-color: var(--gold-light); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; color: inherit; background: transparent; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 1px; margin: 6px auto; background: currentColor; transition: .25s ease; }

.hero { position: relative; min-height: 820px; height: 100svh; color: var(--white); background: var(--forest); overflow: hidden; }
.hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3, 20, 17, .78) 0%, rgba(3, 20, 17, .43) 45%, rgba(3, 20, 17, .05) 76%), url('../img/veridia-hero.webp') center / cover no-repeat; content: ""; }
.hero::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 23, 20, .24), transparent 35%, rgba(5, 23, 20, .45)); content: ""; }
.hero .container { position: relative; z-index: 2; display: flex; align-items: center; min-height: inherit; padding-top: 96px; }
.hero-copy { width: min(730px, 68%); }
.hero-copy h1 { max-width: 690px; }
.hero-copy .hero-line { display: block; color: var(--gold-light); font-style: italic; }
.hero-copy > p:not(.eyebrow) { max-width: 590px; margin: 28px 0 40px; color: rgba(255,255,255,.76); font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-index { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; border-top: 1px solid rgba(255, 255, 255, .18); }
.hero-index-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-index-item { padding: 22px 28px 24px; border-left: 1px solid rgba(255, 255, 255, .15); }
.hero-index-item:last-child { border-right: 1px solid rgba(255, 255, 255, .15); }
.hero-index-item span { display: block; margin-bottom: 3px; color: var(--gold-light); font-size: .66rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero-index-item p { margin: 0; font-family: var(--serif); font-size: 1.05rem; }

.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; border: 1px solid transparent; padding: 13px 25px; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--forest); background: var(--gold-light); border-color: var(--gold-light); }
.btn-primary:hover { background: var(--white); border-color: var(--white); }
.btn-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .55); background: transparent; }
.btn-outline-light:hover { color: var(--forest); background: var(--white); }
.btn-dark { color: var(--white); background: var(--forest); border-color: var(--forest); }
.btn-dark:hover { background: var(--forest-2); border-color: var(--forest-2); }
.btn-outline { color: var(--forest); border-color: var(--forest); background: transparent; }
.btn-outline:hover { color: var(--white); background: var(--forest); }

.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.intro-copy h2 { max-width: 760px; margin-bottom: 36px; }
.intro-aside { padding-top: 72px; }
.intro-aside p { color: #53605d; }
.statements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 84px; background: var(--line); border: 1px solid var(--line); }
.statement { min-height: 240px; padding: 34px; background: var(--ivory); }
.statement-number { margin-bottom: 62px; color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.statement h3 { margin-bottom: 14px; font-size: 1.45rem; }
.statement p { margin: 0; color: var(--muted); font-size: .92rem; }

.channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 58px; }
.channel-card { position: relative; display: flex; min-height: 510px; flex-direction: column; justify-content: flex-end; overflow: hidden; border: 1px solid rgba(255,255,255,.16); padding: 46px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); }
.channel-card::before { position: absolute; top: -80px; right: -70px; width: 330px; height: 330px; border: 1px solid rgba(215,194,149,.25); border-radius: 50%; content: ""; }
.channel-card::after { position: absolute; top: 45px; right: 50px; width: 120px; height: 200px; border: 1px solid rgba(215,194,149,.2); content: ""; transform: rotate(25deg); }
.channel-card > * { position: relative; z-index: 1; }
.channel-card .channel-number { margin-bottom: auto; color: var(--gold-light); font-family: var(--serif); font-size: 1.15rem; }
.channel-card h3 { margin-bottom: 18px; font-size: clamp(2.2rem, 4vw, 3.6rem); }
.channel-card p { max-width: 500px; color: rgba(255,255,255,.7); }
.channel-card .text-link { align-self: flex-start; margin-top: 18px; }

.process-header { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 64px; }
.process-header h2 { max-width: 730px; }
.process-header p { max-width: 430px; color: var(--muted); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-item { padding: 36px 32px 12px 0; border-right: 1px solid var(--line); }
.process-item:not(:first-child) { padding-left: 32px; }
.process-item:last-child { border-right: 0; }
.process-item span { display: inline-grid; width: 44px; height: 44px; margin-bottom: 60px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: var(--serif); }
.process-item h3 { margin-bottom: 15px; font-size: 1.6rem; }
.process-item p { color: var(--muted); font-size: .92rem; }

.quote-band { padding: 92px 0; color: var(--forest); background: var(--gold-light); }
.quote-band-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; align-items: end; }
.quote-band h2 { max-width: 760px; }
.quote-band p { max-width: 440px; margin-bottom: 26px; }

.page-hero { padding: 190px 0 100px; border-bottom: 1px solid var(--line); background: var(--paper); }
.page-hero h1 { max-width: 920px; color: var(--forest); font-size: clamp(3rem, 6.5vw, 6rem); }
.page-hero .lede { max-width: 760px; margin-top: 32px; }
.breadcrumb { margin-bottom: 34px; color: var(--muted); font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 9px; color: var(--stone); }

.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.split-grid h2 { position: sticky; top: 120px; }
.prose h3 { margin: 2.2em 0 .7em; }
.prose h3:first-child { margin-top: 0; }
.prose p, .prose li { color: #4a5753; }
.prose a { border-bottom: 1px solid var(--gold); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose hr { margin: 56px 0; border: 0; border-top: 1px solid var(--line); }

.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 58px; background: var(--line); border: 1px solid var(--line); }
.principle { min-height: 300px; padding: 36px; background: var(--paper); }
.principle svg { width: 36px; height: 36px; margin-bottom: 70px; fill: none; stroke: var(--gold); stroke-width: 1.3; }
.principle h3 { margin-bottom: 14px; font-size: 1.55rem; }
.principle p { color: var(--muted); font-size: .92rem; }

.portfolio-list { border-top: 1px solid rgba(255,255,255,.2); }
.portfolio-row { display: grid; grid-template-columns: 1.25fr .75fr 48px; gap: 30px; align-items: center; min-height: 136px; border-bottom: 1px solid rgba(255,255,255,.2); }
.portfolio-row h3 { font-size: clamp(2rem, 4vw, 3.4rem); }
.portfolio-row p { margin: 0; color: rgba(255,255,255,.62); font-size: .9rem; }
.portfolio-row span { color: var(--gold-light); font-size: 1.5rem; text-align: right; }
.portfolio-note { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; margin-top: 60px; color: rgba(255,255,255,.68); }
.discreet-brands { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.discreet-brands span { border: 1px solid rgba(255,255,255,.22); padding: 9px 13px; color: rgba(255,255,255,.72); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 50px; }
.route-card { display: flex; min-height: 410px; flex-direction: column; border: 1px solid var(--line); padding: 42px; background: var(--paper); }
.route-card .route-tag { align-self: flex-start; margin-bottom: auto; border: 1px solid var(--stone); padding: 7px 11px; color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.route-card h2 { margin-bottom: 20px; font-size: clamp(2.1rem, 3.5vw, 3.25rem); }
.route-card p { color: var(--muted); }
.route-card .btn { align-self: flex-start; margin-top: 18px; }

.delivery-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; background: var(--paper); box-shadow: var(--shadow); }
.delivery-visual { position: relative; overflow: hidden; background: var(--forest); }
.delivery-visual::before, .delivery-visual::after { position: absolute; border: 1px solid rgba(215,194,149,.35); content: ""; }
.delivery-visual::before { width: 65%; height: 78%; top: 11%; left: 17%; transform: rotate(8deg); }
.delivery-visual::after { width: 40%; height: 52%; top: 24%; left: 30%; transform: rotate(-9deg); }
.delivery-mark { position: absolute; inset: 0; display: grid; place-items: center; color: var(--gold-light); }
.delivery-mark svg { width: 150px; height: 150px; fill: none; stroke: currentColor; stroke-width: .75; }
.delivery-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 7vw, 90px); }
.delivery-copy h2 { margin-bottom: 28px; }
.delivery-copy ul { margin: 12px 0 30px; padding: 0; list-style: none; }
.delivery-copy li { position: relative; margin-bottom: 11px; padding-left: 25px; color: var(--muted); }
.delivery-copy li::before { position: absolute; top: .68em; left: 0; width: 10px; height: 1px; background: var(--gold); content: ""; }

.form-shell { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 76px; align-items: start; }
.form-sidebar { position: sticky; top: 110px; }
.form-sidebar h2 { margin-bottom: 22px; font-size: 2.3rem; }
.form-sidebar p { color: var(--muted); font-size: .92rem; }
.form-steps { margin: 38px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.form-steps li { position: relative; margin-bottom: 18px; padding-left: 42px; color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; counter-increment: steps; }
.form-steps li::before { position: absolute; top: -2px; left: 0; display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid var(--stone); border-radius: 50%; color: var(--gold); content: counter(steps); font-family: var(--serif); font-size: .85rem; }
.application-form { border: 1px solid var(--line); padding: clamp(28px, 5vw, 58px); background: var(--paper); box-shadow: var(--shadow); }
.form-section { padding: 46px 0; border-bottom: 1px solid var(--line); }
.form-section:first-child { padding-top: 0; }
.form-section:last-of-type { border-bottom: 0; }
.form-section-header { margin-bottom: 30px; }
.form-section-header span { display: block; margin-bottom: 6px; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.form-section-header h3 { font-size: 1.9rem; }
.form-section-header p { margin: 10px 0 0; color: var(--muted); font-size: .88rem; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 23px; }
.field-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field { min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label, .field legend { display: block; margin-bottom: 8px; color: #30403c; font-size: .72rem; font-weight: 700; letter-spacing: .075em; text-transform: uppercase; }
.required { color: var(--danger); }
.field input, .field select, .field textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #cfcbbf;
    border-radius: 0;
    outline: 0;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--white);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(189,156,98,.13); }
.field small { display: block; margin-top: 6px; color: var(--muted); font-size: .73rem; }
.upload-field { border: 1px dashed #beb8a8; padding: 18px; background: #fbfaf6; }
.upload-field input { min-height: auto; border: 0; padding: 0; background: transparent; }
.checkbox-group { display: grid; gap: 15px; }
.checkbox, .field label.checkbox { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 12px; align-items: start; margin: 0; color: #40504c; font-size: .88rem; font-weight: 400; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.checkbox input, .field label.checkbox input { width: 18px; height: 18px; min-height: 0; margin: 2px 0 0; padding: 0; accent-color: var(--forest); }
.checkbox span { min-width: 0; }
.portfolio-options { gap: 18px; padding-top: 3px; }
.portfolio-options .checkbox, .field .portfolio-options label.checkbox { grid-template-columns: 22px minmax(0, 1fr); align-items: center; min-height: 30px; }
.portfolio-options .checkbox input, .field .portfolio-options label.checkbox input { width: 20px; height: 20px; min-height: 20px; margin: 0; }
.portfolio-options .checkbox span { font-weight: 650; }
.checkbox a { border-bottom: 1px solid var(--gold); }
.form-notice { margin-bottom: 25px; border-left: 2px solid var(--gold); padding: 15px 18px; color: #4a5753; background: #f4f0e7; font-size: .83rem; }
.form-alert { margin-bottom: 28px; border: 1px solid #c98b7e; padding: 15px 18px; color: #6f2f25; background: #fbefec; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 32px; }
.form-actions p { max-width: 430px; margin: 0; color: var(--muted); font-size: .75rem; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.contact-details h2 { margin-bottom: 30px; }
.contact-line { padding: 24px 0; border-top: 1px solid var(--line); }
.contact-line span { display: block; margin-bottom: 6px; color: var(--muted); font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-line a { font-family: var(--serif); font-size: 1.35rem; }
.contact-line a:hover { color: var(--gold); }

.success-card { max-width: 780px; margin: 0 auto; padding: clamp(38px, 7vw, 76px); border: 1px solid var(--line); text-align: center; background: var(--paper); box-shadow: var(--shadow); }
.success-icon { display: grid; width: 76px; height: 76px; margin: 0 auto 30px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: 2.4rem; }
.success-card h1 { margin-bottom: 22px; font-size: clamp(2.8rem, 6vw, 4.8rem); }
.success-card p { max-width: 570px; margin: 0 auto 30px; color: var(--muted); }
.success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.site-footer { padding: 78px 0 26px; color: rgba(255,255,255,.72); background: #061713; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .7fr 1.2fr .85fr; gap: 55px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand img { display: block; width: min(100%, 255px); height: auto; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.footer-label { margin-bottom: 20px; color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid a { margin-bottom: 11px; font-size: .86rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-note { max-width: 320px; margin-top: 7px; color: rgba(255,255,255,.45); font-size: .75rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 70px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.42); font-size: .72rem; }
.footer-bottom p { margin: 0; }
.whatsapp-float { position: fixed; z-index: 950; right: 24px; bottom: 24px; box-sizing: border-box; display: block; width: 56px; height: 56px; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--white); background: #163c35; box-shadow: 0 14px 38px rgba(0,0,0,.22); line-height: 0; transition: .25s ease; }
.whatsapp-float:hover { transform: translateY(-3px); background: #205346; }
.whatsapp-float svg { position: absolute; top: 50%; left: 50%; display: block; width: 27px; height: 27px; margin: 0; fill: currentColor; transform: translate(-50%, -50%); }

@media (max-width: 1020px) {
    .site-nav { gap: 22px; }
    .hero-index-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-index-item:nth-child(3), .hero-index-item:nth-child(4) { display: none; }
    .statements, .principles-grid { grid-template-columns: 1fr; }
    .statement { min-height: auto; }
    .statement-number { margin-bottom: 28px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-item:nth-child(2) { border-right: 0; }
    .process-item:nth-child(3), .process-item:nth-child(4) { border-top: 1px solid var(--line); }
    .process-item:nth-child(3) { padding-left: 0; }
    .form-shell { grid-template-columns: 1fr; gap: 42px; }
    .form-sidebar { position: static; }
    .form-steps { display: none; }
    .footer-grid { grid-template-columns: 1.2fr 1fr; }
}

@media (max-width: 960px) {
    .container, .container-narrow { width: min(calc(100% - 34px), var(--container)); }
    .section { padding: 82px 0; }
    .site-header, .site-header.scrolled, .inner-page .site-header { height: 72px; }
    .brand { width: 200px; height: 44px; }
    .brand img { max-height: 44px; }
    .nav-toggle { display: block; }
    .site-nav { position: fixed; inset: 72px 0 0; display: flex; align-items: stretch; flex-direction: column; gap: 0; transform: translateX(100%); padding: 35px 24px; color: var(--forest); background: var(--ivory); transition: transform .28s ease; }
    .site-nav.open { transform: translateX(0); }
    .site-nav > a:not(.nav-cta) { padding: 17px 6px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.5rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
    .site-nav > a:not(.nav-cta)::after { display: none; }
    .nav-cta { margin-top: 28px; padding: 16px 20px; text-align: center; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero { min-height: 760px; }
    .hero::before { background-position: 58% center; }
    .hero .container { align-items: flex-start; padding-top: 160px; }
    .hero-copy { width: 100%; }
    .hero-copy > p:not(.eyebrow) { max-width: 500px; }
    .intro-grid, .split-grid, .channel-grid, .quote-band-inner, .portfolio-note, .delivery-panel, .contact-grid { grid-template-columns: 1fr; }
    .intro-aside { padding-top: 0; }
    .channel-card { min-height: 430px; }
    .process-header { align-items: start; flex-direction: column; gap: 24px; }
    .quote-band-inner { gap: 35px; }
    .split-grid h2 { position: static; }
    .delivery-visual { min-height: 380px; }
    .portfolio-row { grid-template-columns: 1fr 40px; padding: 25px 0; }
    .portfolio-row p { grid-column: 1 / -1; grid-row: 2; }
    .route-grid { grid-template-columns: 1fr; }
    .route-card { min-height: 350px; }
    .field-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
    h2 { font-size: clamp(2.3rem, 12vw, 3.5rem); }
    .hero { min-height: 760px; height: 100svh; max-height: 880px; }
    .hero .container { padding-top: 134px; }
    .hero-copy > p:not(.eyebrow) { margin: 21px 0 29px; font-size: 1rem; }
    .hero-actions .btn { width: 100%; }
    .hero-index-item { padding: 17px 13px; }
    .hero-index-item p { font-size: .88rem; }
    .hero-index-item span { font-size: .57rem; }
    .page-hero { padding: 145px 0 76px; }
    .channel-card, .route-card { padding: 30px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-item, .process-item:not(:first-child), .process-item:nth-child(3) { padding: 28px 0; border-right: 0; border-top: 1px solid var(--line); }
    .process-item:first-child { border-top: 0; }
    .process-item span { margin-bottom: 28px; }
    .application-form { padding: 24px 20px; }
    .field-grid, .field-grid.three { grid-template-columns: 1fr; }
    .form-actions { align-items: stretch; flex-direction: column-reverse; }
    .form-actions .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-bottom { flex-direction: column; gap: 7px; }
    .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

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