/* ============================================================
   CONCEPT B — ENGINEERED NAVY: THE FLOOR
   The approved v2 token system (navy #000060, ink, #1E90FF
   accent, Anton / Barlow / Barlow Condensed, machined chamfer)
   recomposed as an evidence system: one lead subject at poster
   scale per screen, a compact register attached to it.
   ============================================================ */

@font-face { font-family: 'Anton'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/anton-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/barlow-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/barlow-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/barlow-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/barlow-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/barlow-condensed-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/barlow-condensed-latin-700-normal.woff2') format('woff2'); }

:root {
  --navy: #000060;
  --navy-deep: #000048;
  --ink: #0B0B22;
  --accent: #1E90FF;
  --accent-deep: #0F6FD6;
  --paper: #FFFFFF;
  --tint: #F5F6F8;
  --text: #33334D;
  --mute: #6B6B85;
  --mute-2: #9A9AB8;
  --focus: #00B4D8;
  --rule: #E1E3EA;
  --rule-navy: #26267A;
  --display: 'Anton', 'Arial Narrow', sans-serif;
  --body: 'Barlow', 'Segoe UI', sans-serif;
  --cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --wrap: 1280px;
  --pad: clamp(1rem, 4vw, 2rem);
  --sect: clamp(4rem, 9vw, 8rem);
  --ch: 28px; /* chamfer, small */
  --ch-lg: 56px; /* chamfer, hero plane */
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; font-family: var(--body); font-size: 1.02rem; line-height: 1.65; color: var(--text); background: var(--paper); overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, p, figure, dl, ol, ul { margin: 0; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: .75rem 1.25rem; z-index: 99; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.skip:focus-visible { left: 0; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

/* ---- type ---- */
h1, h2, .display { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .02em; line-height: 1.02; color: var(--navy); }
h1 { font-size: clamp(2.9rem, 8vw, 6.25rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.25rem); }
h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .025em; font-size: clamp(1.35rem, 2.4vw, 1.9rem); line-height: 1.05; color: var(--navy); }
.eyebrow { font-family: var(--body); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--accent-deep); }
.lede { font-size: clamp(1.05rem, 1.9vw, 1.3rem); line-height: 1.6; max-width: 38em; }
.num { font-family: var(--cond); font-weight: 700; }
p + p { margin-top: 1em; }

/* ---- chamfer helpers ---- */
.chamfer { clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--ch)), calc(100% - var(--ch)) 100%, 0 100%); }
.chamfer-tl { clip-path: polygon(var(--ch) 0, 100% 0, 100% 100%, 0 100%, 0 var(--ch)); }
.frame { position: relative; }
.frame img { clip-path: polygon(0 0, calc(100% - var(--ch)) 0, 100% var(--ch), 100% 100%, var(--ch) 100%, 0 calc(100% - var(--ch))); width: 100%; object-fit: cover; }

/* ---- buttons: chamfered ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6em; min-height: 48px; padding: .75rem 1.9rem; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; text-decoration: none; cursor: pointer; border: 0; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%); white-space: nowrap; }
.btn::after { content: "\2192"; font-weight: 600; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }
.btn-rev { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px #fff; }
.btn-rev:hover { background: rgba(255,255,255,.14); }
.btn.no-arrow::after { content: none; }

/* ---- utility strip ---- */
.util { background: var(--navy-deep); color: #C9C9E8; font-size: .78rem; font-weight: 500; letter-spacing: .05em; }
.util .wrap { display: flex; justify-content: space-between; align-items: stretch; gap: 1rem; min-height: 44px; }
.util a { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; text-transform: uppercase; }
.util a:hover { color: #fff; text-decoration: underline; }
.util .u-247 { color: #fff; }
.util .u-247 b { color: var(--accent); }
.util .u-addr { display: none; color: var(--mute-2); align-items: center; text-transform: uppercase; }
@media (min-width: 900px) { .util .u-addr { display: inline-flex; } }

/* ---- header: solid navy, transparent over hero when JS present ---- */
.hdr { position: sticky; top: 0; z-index: 50; background: var(--navy); }
body.has-hero .hdr { position: fixed; left: 0; right: 0; background: transparent; }
body.has-hero .hdr.scrolled { background: var(--navy); }
body.has-hero { padding-top: 0; }
.hdr .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand img { height: 42px; width: auto; max-width: none; }
nav.nav { display: none; }
@media (min-width: 1000px) {
  nav.nav { display: block; }
  nav.nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: clamp(.1rem, .9vw, .9rem); }
  nav.nav > ul > li { position: relative; }
  nav.nav > ul > li > a { display: inline-flex; align-items: center; min-height: 76px; padding: 0 .5rem; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; text-decoration: none; box-shadow: inset 0 -3px 0 transparent; white-space: nowrap; }
  nav.nav > ul > li > a:hover, nav.nav > ul > li > a[aria-current="true"] { box-shadow: inset 0 -3px 0 var(--accent); }
  .panel { position: absolute; left: 50%; transform: translateX(-50%); top: 100%; min-width: 420px; background: var(--navy); border-top: 3px solid var(--accent); display: none; padding: .4rem 0; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%); }
  li:hover > .panel, li:focus-within > .panel { display: block; }
  .panel a { display: flex; justify-content: space-between; align-items: baseline; gap: 2rem; padding: .6rem 1.4rem .6rem 1.25rem; text-decoration: none; }
  .panel a:hover { background: var(--navy-deep); }
  .panel .p-name { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; white-space: nowrap; }
  .panel .p-frag { font-family: var(--cond); font-weight: 600; font-size: .78rem; letter-spacing: .04em; color: var(--mute-2); text-align: right; text-transform: uppercase; }
}
@media (min-width: 1000px) and (max-width: 1250px) {
  nav.nav > ul > li > a { font-size: .72rem; letter-spacing: .06em; padding: 0 .35rem; }
}
.hdr .hdr-cta { display: none; }
@media (min-width: 1280px) { .hdr .hdr-cta { display: inline-flex; } }

/* mobile nav */
.m-nav { display: block; position: relative; }
@media (min-width: 1000px) { .m-nav { display: none; } }
.m-nav > summary { list-style: none; display: inline-flex; align-items: center; gap: .6rem; min-height: 44px; min-width: 44px; padding: .5rem .9rem; cursor: pointer; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.5); }
.m-nav > summary::-webkit-details-marker { display: none; }
.m-nav[open] > summary { background: #fff; color: var(--navy); box-shadow: inset 0 0 0 2px #fff; }
.m-panel { position: fixed; left: 0; right: 0; top: 120px; bottom: 0; background: var(--navy); overflow-y: auto; padding: 1rem var(--pad) 3rem; z-index: 60; }
.m-panel ul { list-style: none; margin: 0; padding: 0; }
.m-panel .m-sect > a { display: flex; min-height: 48px; align-items: center; font-family: var(--display); font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; color: #fff; text-decoration: none; border-bottom: 1px solid var(--rule-navy); }
.m-panel .m-sub a { display: flex; min-height: 44px; align-items: center; padding-left: 1.25rem; font-size: .9rem; color: #C9C9E8; text-decoration: none; border-bottom: 1px solid rgba(38,38,122,.5); }

/* ---- two-plane hero ---- */
.heroB { position: relative; min-height: min(88vh, 860px); display: flex; align-items: flex-end; background: var(--navy-deep); }
.heroB .h-img { position: absolute; inset: 0; }
.heroB .h-img img { width: 100%; height: 100%; object-fit: cover; }
.heroB .h-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,72,.42) 0%, rgba(0,0,72,.18) 40%, rgba(0,0,72,.82) 100%); }
.heroB .wrap { position: relative; width: 100%; padding-block: clamp(6rem, 12vh, 9rem) clamp(2.5rem, 6vh, 4rem); display: grid; gap: 2rem; }
@media (min-width: 1000px) { .heroB .wrap { grid-template-columns: minmax(0, 46%) 1fr; align-items: end; } }
.plane { background: rgba(0,0,72,.92); color: #fff; padding: clamp(1.75rem, 4vw, 3rem); clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--ch-lg)), calc(100% - var(--ch-lg)) 100%, 0 100%); }
.plane .eyebrow { color: var(--accent); display: block; margin-bottom: 1.25rem; }
.plane h1 { color: #fff; margin-bottom: 1.5rem; }
.plane .lede { color: #D9D9F2; margin-bottom: 1.75rem; }
.plane-facts { display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem; border-top: 1px solid var(--rule-navy); padding-top: 1.5rem; margin-bottom: 2rem; }
.plane-facts .pf { display: grid; gap: .1rem; }
.plane-facts .pf-val { font-family: var(--cond); font-weight: 700; font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1; color: #fff; }
.plane-facts .pf-lab { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--mute-2); }
.cta-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.h-inset { justify-self: end; align-self: end; max-width: 380px; display: none; }
@media (min-width: 1000px) { .h-inset { display: block; } }
.h-inset img { clip-path: polygon(0 0, calc(100% - var(--ch)) 0, 100% var(--ch), 100% 100%, var(--ch) 100%, 0 calc(100% - var(--ch))); }
.h-inset figcaption { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: #D9D9F2; margin-top: .6rem; }

/* interior hero */
.heroI { position: relative; background: var(--navy-deep); color: #fff; }
.heroI .h-img { position: absolute; inset: 0; }
.heroI .h-img img { width: 100%; height: 100%; object-fit: cover; }
.heroI .h-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,72,.55) 0%, rgba(0,0,72,.35) 55%, rgba(0,0,72,.92) 100%); }
.heroI .wrap { position: relative; padding-block: clamp(7rem, 16vh, 11rem) clamp(2rem, 5vh, 3rem); display: grid; gap: 1.5rem; }
@media (min-width: 1000px) { .heroI .wrap { grid-template-columns: 1fr auto; align-items: end; } }
.heroI .eyebrow { color: var(--accent); display: block; margin-bottom: 1rem; }
.heroI h1 { color: #fff; }
.heroI .hi-facts { display: flex; flex-wrap: wrap; gap: 1rem 2.25rem; }
.heroI .hi-facts .pf-val { font-family: var(--cond); font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1; }
.heroI .hi-facts .pf-lab { font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; color: var(--mute-2); }

/* ---- bands ---- */
.band { padding-block: var(--sect); }
.band--tint { background: var(--tint); }
.band--navy { background: var(--navy); color: #D9D9F2; }
.band--navy h2, .band--navy h3 { color: #fff; }
.band-head { margin-bottom: clamp(2.25rem, 5vw, 3.75rem); display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; }
.band-head .eyebrow { display: block; margin-bottom: .9rem; }
.band-head .bh-link { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-deep); text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; }
.band-head .bh-link::after { content: " \2192"; margin-left: .4em; }
.band-head .bh-link:hover { text-decoration: underline; }
.band--navy .bh-link { color: var(--accent); }

/* ---- master-detail gateway ---- */
.md { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) { .md { grid-template-columns: 7fr 5fr; align-items: start; } }
.md-active figure img { clip-path: polygon(0 0, calc(100% - var(--ch-lg)) 0, 100% var(--ch-lg), 100% 100%, var(--ch-lg) 100%, 0 calc(100% - var(--ch-lg))); aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.md-active figcaption { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--mute); margin-top: .7rem; }
.md-active h3 { margin: 1.5rem 0 1rem; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.md-active p { margin-bottom: 1.25rem; max-width: 36em; }
.md-index { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--navy); }
.md-index > li { border-bottom: 1px solid var(--rule); }
.md-index a { display: grid; grid-template-columns: auto 1fr; gap: .1rem 1.25rem; padding: 1rem .25rem; text-decoration: none; position: relative; }
.md-index a:hover { background: var(--tint); }
.md-index a:hover::before, .md-index li.active a::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); }
.md-index .mi-n { font-family: var(--cond); font-weight: 700; font-size: .95rem; color: var(--accent-deep); align-self: center; min-width: 2ch; }
.md-index .mi-name { font-family: var(--display); font-size: clamp(1.05rem, 1.8vw, 1.35rem); text-transform: uppercase; letter-spacing: .03em; color: var(--navy); }
.md-index .mi-frag { grid-column: 2; font-family: var(--cond); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--mute); }

/* ---- spec grid ---- */
.spec { border-top: 2px solid var(--navy); }
.spec > div { display: grid; grid-template-columns: minmax(9rem, 15rem) 1fr; gap: 1rem; padding: .7rem .25rem; border-bottom: 1px solid var(--rule); }
.spec dt { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--mute); align-self: baseline; }
.spec dd { margin: 0; font-family: var(--cond); font-weight: 600; font-size: 1.05rem; letter-spacing: .02em; color: var(--ink); text-transform: uppercase; }
.band--navy .spec { border-top-color: var(--accent); }
.band--navy .spec > div { border-bottom-color: var(--rule-navy); }
.band--navy .spec dt { color: var(--mute-2); }
.band--navy .spec dd { color: #fff; }
@media (max-width: 560px) { .spec > div { grid-template-columns: 1fr; gap: .1rem; } }

/* ---- plant register band ---- */
.plant { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) { .plant { grid-template-columns: 5fr 7fr; align-items: start; } }
.plant-list { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--accent); }
.plant-list > li { border-bottom: 1px solid var(--rule-navy); }
.plant-list .pl-row { display: grid; grid-template-columns: 1fr auto; gap: .15rem 1.5rem; padding: .9rem .25rem; }
.plant-list .pl-name { font-weight: 700; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; color: #fff; }
.plant-list .pl-spec { font-family: var(--cond); font-weight: 600; font-size: .95rem; letter-spacing: .03em; color: var(--mute-2); text-transform: uppercase; text-align: right; }
.plant-photo figure img { clip-path: polygon(0 0, calc(100% - var(--ch-lg)) 0, 100% var(--ch-lg), 100% 100%, var(--ch-lg) 100%, 0 calc(100% - var(--ch-lg))); width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.plant-photo figcaption { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--mute-2); margin-top: .7rem; }

/* ---- project dossier ---- */
.dossier { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) { .dossier { grid-template-columns: 7fr 5fr; align-items: start; } }
.dossier .d-fig img { clip-path: polygon(0 0, calc(100% - var(--ch-lg)) 0, 100% var(--ch-lg), 100% 100%, var(--ch-lg) 100%, 0 calc(100% - var(--ch-lg))); width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.dossier .d-fig figcaption { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--mute); margin-top: .7rem; }
.dossier .d-meta .eyebrow { display: block; margin-bottom: 1rem; }
.dossier .d-meta h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 1.25rem; }
.dossier .d-meta p { margin-bottom: 1.5rem; }
.supporting { list-style: none; margin: clamp(2.5rem, 5vw, 4rem) 0 0; padding: 0; border-top: 2px solid var(--navy); }
.supporting > li { border-bottom: 1px solid var(--rule); }
.supporting a { display: grid; grid-template-columns: auto 1fr; gap: .2rem 1.5rem; align-items: baseline; padding: 1rem .25rem; text-decoration: none; }
.supporting a:hover { background: var(--tint); }
.supporting .s-n { font-family: var(--cond); font-weight: 700; color: var(--accent-deep); align-self: center; }
.supporting .s-title { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.05rem, 2vw, 1.4rem); letter-spacing: .03em; color: var(--navy); }
.supporting .s-fields { grid-column: 2; display: flex; flex-wrap: wrap; gap: .2rem 1.75rem; font-family: var(--cond); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--mute); }

/* ---- zig rows ---- */
.row { display: grid; gap: 2rem; align-items: center; }
.row + .row { margin-top: clamp(3rem, 7vw, 5.5rem); }
@media (min-width: 1000px) { .row { grid-template-columns: 1fr 1fr; gap: 4rem; } .row.rev > figure { order: 2; } }
.row figure img { clip-path: polygon(0 0, calc(100% - var(--ch)) 0, 100% var(--ch), 100% 100%, var(--ch) 100%, 0 calc(100% - var(--ch))); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.row figure figcaption { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--mute); margin-top: .6rem; }
.row h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 1.25rem; }
.row h3 { margin-bottom: 1rem; }
.row p { margin-bottom: 1.1rem; max-width: 38em; }
.row .spec { margin-top: 1.5rem; }
.row ul.plain { padding-left: 1.15rem; margin: 0 0 1rem; }
.row ul.plain li { margin-bottom: .35rem; }

/* ---- doors (three ways in) ---- */
.doors { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .doors { grid-template-columns: repeat(3, 1fr); } }
.door { display: block; text-decoration: none; background: var(--paper); }
.door figure img { clip-path: polygon(0 0, calc(100% - var(--ch)) 0, 100% var(--ch), 100% 100%, var(--ch) 100%, 0 calc(100% - var(--ch))); aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.door h3 { margin: 1.1rem 0 .5rem; }
.door p { font-size: .95rem; margin-bottom: .6rem; }
.door .d-frag { font-family: var(--cond); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-deep); }
.door .d-frag::after { content: " \2192"; }
@media (prefers-reduced-motion: no-preference) {
  .door figure img, .md-active figure img { transition: transform .3s ease; }
  .door:hover figure img { transform: scale(1.04); }
}

/* ---- gallery ---- */
.gallery { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.gallery figure img { clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px)); aspect-ratio: 3 / 2; width: 100%; object-fit: cover; }
.gallery figcaption { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--mute); margin-top: .5rem; }

/* ---- CTA band ---- */
.cta-band { background: var(--navy); color: #D9D9F2; padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.cta-band .wrap { display: grid; gap: 2rem; }
@media (min-width: 900px) { .cta-band .wrap { grid-template-columns: 1fr auto; align-items: center; } }
.cta-band h2 { color: #fff; margin-bottom: .75rem; }
.cta-band .c-sub { max-width: 42em; }
.cta-band .c-act { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.cta-band .c-phone { font-family: var(--cond); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; letter-spacing: .03em; }
.cta-band .c-phone:hover { color: var(--accent); }
.cta-band .c-note { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--mute-2); }

/* ---- forms ---- */
.form { display: grid; gap: 1.2rem; max-width: 640px; }
.form label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--mute); margin-bottom: .4rem; }
.form label b { color: var(--accent-deep); }
.form input, .form select, .form textarea { width: 100%; min-height: 48px; padding: .7rem .85rem; font-family: var(--body); font-size: 1rem; color: var(--ink); background: var(--paper); border: 1px solid var(--mute-2); border-radius: 2px; }
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus-visible, .form select:focus-visible, .form textarea:focus-visible { outline: 2px solid var(--focus); outline-offset: 1px; border-color: var(--accent); }
.form .f-note { font-size: .82rem; color: var(--mute); }
fieldset { border: 1px solid var(--rule); padding: 1rem; margin: 0; border-radius: 2px; }
legend { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--mute); padding-inline: .35rem; }
.checks { display: grid; gap: .25rem; }
.checks label { display: flex; align-items: center; gap: .6rem; min-height: 44px; font-size: .95rem; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--text); margin: 0; }
.checks input { width: 1.15rem; height: 1.15rem; min-height: 0; }

/* ---- prose ---- */
.prose { max-width: 46em; }
.prose h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin: 2.25rem 0 1rem; }
.prose p { margin-bottom: 1.1em; }
.prose ul { margin: 0 0 1.1em; padding-left: 1.2rem; }
.prose a { color: var(--accent-deep); }

.art-meta { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .3rem 1.75rem; font-family: var(--cond); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--mute-2); }

/* ---- team ---- */
.team { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); } }
.team > div { border-top: 2px solid var(--navy); padding-top: 1rem; }
.team .t-name { font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; color: var(--navy); }
.team .t-role { font-size: .8rem; font-weight: 700; color: var(--mute); text-transform: uppercase; letter-spacing: .1em; margin: .2rem 0 .6rem; }
.team .t-contact { display: flex; flex-wrap: wrap; gap: .2rem 1.5rem; font-family: var(--cond); font-weight: 600; font-size: .95rem; }
.team .t-contact a { text-decoration: none; color: var(--accent-deep); display: inline-flex; align-items: center; min-height: 44px; }
.team .t-contact a:hover { text-decoration: underline; }

/* ---- honest gap ---- */
.gap-note { border: 1px dashed var(--mute-2); padding: 1.25rem 1.5rem; font-size: .92rem; color: var(--mute); max-width: 46em; border-radius: 2px; }
.gap-note b { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .4rem; color: var(--navy); }
.band--navy .gap-note { color: var(--mute-2); }
.band--navy .gap-note b { color: #fff; }

/* ---- footer ---- */
.ftr { background: var(--navy-deep); color: var(--mute-2); }
.ftr a { text-decoration: none; }
.ftr .f-main { display: grid; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 5rem); }
@media (min-width: 900px) { .ftr .f-main { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.ftr img { height: 36px; width: auto; max-width: none; margin-bottom: 1.25rem; }
.ftr .f-pos { font-size: .9rem; max-width: 26em; color: #C9C9E8; }
.ftr h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: #fff; margin-bottom: 1rem; }
.ftr ul { list-style: none; margin: 0; padding: 0; }
.ftr ul a { display: inline-flex; align-items: center; min-height: 44px; font-size: .88rem; color: var(--mute-2); }
.ftr ul a:hover { color: #fff; text-decoration: underline; }
.ftr .f-contact { font-size: .9rem; line-height: 2; }
.ftr .f-contact a { color: #fff; display: inline-flex; min-height: 44px; align-items: center; }
.ftr .f-contact a:hover { text-decoration: underline; }
.ftr .f-base { border-top: 1px solid var(--rule-navy); padding-block: 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; font-size: .78rem; }
.ftr .f-base a { color: var(--mute-2); display: inline-flex; align-items: center; min-height: 44px; }
.ftr .f-base a:hover { color: #fff; }

/* ---- contact ---- */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 980px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; clip-path: polygon(0 0, calc(100% - var(--ch)) 0, 100% var(--ch), 100% 100%, var(--ch) 100%, 0 calc(100% - var(--ch))); }

/* motion discipline */
@media (prefers-reduced-motion: no-preference) {
  .btn, .md-index a, .supporting a, .panel a, nav.nav a, .hdr { transition: background-color .18s ease, color .18s ease, box-shadow .18s ease; }
}
@media (prefers-reduced-motion: reduce) {
  .door figure img { transition: none !important; transform: none !important; }
}

.err { padding-block: var(--sect); }
.err .mono-big { font-family: var(--display); font-size: clamp(4rem, 14vw, 9rem); color: var(--tint); -webkit-text-stroke: 2px var(--navy); line-height: 1; }

/* ---- steps, timeline, faq ---- */
.steps { display: grid; gap: 1.75rem; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps > div { border-top: 3px solid var(--accent); padding-top: 1rem; }
.steps .s-n { font-family: var(--cond); font-weight: 700; font-size: 1.1rem; color: var(--accent-deep); display: block; margin-bottom: .4rem; }
.steps h3 { margin-bottom: .5rem; }
.steps p { font-size: .95rem; }
.band--navy .steps > div { border-top-color: var(--accent); }
.band--navy .steps p { color: #C9C9E8; }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary { cursor: pointer; min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 700; color: var(--navy); padding: .5rem .25rem; list-style: none; text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-weight: 600; }
.faq details[open] summary::after { content: "\2212"; }
.faq details > p { padding: 0 .25rem 1.25rem; max-width: 46em; }
