/* ============================================================
   CONCEPT A — SLATE REGISTER
   Official brand palette: deep slate #2B3F4A, balanced slate
   #63788A, soft slate #D9E0E7, white. Functional accent:
   induction orange #C7500F (the one warm colour the workshop
   itself produces). Type: Big Shoulders Display / IBM Plex Sans
   / IBM Plex Mono. Geometry: the rule and the index. Hairline
   rules only ever encode table structure or caption ledgers.
   ============================================================ */

@font-face { font-family: 'Big Shoulders Display'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/big-shoulders-display-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Big Shoulders Display'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/big-shoulders-display-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/ibm-plex-sans-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/ibm-plex-sans-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/ibm-plex-sans-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2'); }

:root {
  --deep: #2B3F4A;
  --deep-2: #22323B;      /* documented shade of deep, hover surfaces */
  --mid: #63788A;
  --soft: #D9E0E7;
  --soft-2: #EBEFF3;      /* documented tint of soft, band fill */
  --paper: #FFFFFF;
  --accent: #C7500F;      /* induction orange, CTAs and active states */
  --accent-2: #A84109;    /* pressed */
  --accent-3: #E0631F;    /* non-text markers only */
  --ink: #1E2A31;         /* body text, a shade of deep */
  --rule: #C4CDD6;        /* hairline, derived from soft */
  --rule-deep: #3E5461;   /* hairline on deep */
  --display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --body: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', 'Consolas', monospace;
  --wrap: 1240px;
  --pad: clamp(1rem, 4vw, 2rem);
  --sect: clamp(3.5rem, 8vw, 6.5rem);
}

/* ---- reset ---- */
*, *::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: 1rem; line-height: 1.65; color: var(--ink); 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(--accent); outline-offset: 2px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--deep); color: #fff; padding: .75rem 1.25rem; z-index: 99; font-family: var(--mono); font-size: .8rem; }
.skip:focus-visible { left: 0; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

/* ---- type scale ---- */
.display, h1, h2 { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .025em; line-height: .95; color: var(--deep); }
h1 { font-size: clamp(2.75rem, 7.5vw, 5.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: clamp(1.3rem, 2.4vw, 1.75rem); line-height: 1.05; color: var(--deep); }
.eyebrow { font-family: var(--mono); font-size: .75rem; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; color: var(--mid); }
.eyebrow b { color: var(--accent); font-weight: 500; }
.lede { font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.6; color: var(--ink); max-width: 38em; }
.mono, .num { font-family: var(--mono); }
p + p { margin-top: 1em; }

/* ---- buttons: square, 44px min ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6em; min-height: 47px; padding: .7rem 1.6rem; font-family: var(--body); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .09em; text-decoration: none; border: 1px solid transparent; cursor: pointer; white-space: nowrap; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-2); }
.btn-ghost { border-color: var(--deep); color: var(--deep); background: transparent; }
.btn-ghost:hover { background: var(--soft-2); }
.btn-rev { border-color: #fff; color: #fff; background: transparent; }
.btn-rev:hover { background: rgba(255,255,255,.12); }

/* ---- utility strip ---- */
.util { background: var(--deep); color: #E8EDF2; font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; }
.util .wrap { display: flex; align-items: stretch; justify-content: space-between; gap: 1rem; min-height: 44px; }
.util a { text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; padding-inline: .25rem; }
.util a:hover { color: #fff; text-decoration: underline; }
.util .u-addr { display: none; align-items: center; color: #B9C4CE; }
.util .u-247 b { color: var(--accent-3); font-weight: 500; }
@media (min-width: 900px) { .util .u-addr { display: inline-flex; } }

/* ---- header ---- */
.hdr { position: sticky; top: 0; z-index: 50; background: var(--paper); border-bottom: 1px solid var(--rule); }
.hdr .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand img { width: auto; height: 40px; max-width: none; }
nav.nav { display: none; }
@media (min-width: 980px) {
  nav.nav { display: block; }
  nav.nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: clamp(.1rem, 1vw, 1rem); }
  nav.nav > ul > li { position: relative; }
  nav.nav > ul > li > a { display: inline-flex; align-items: center; min-height: 72px; padding: 0 .45rem; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--deep); text-decoration: none; border-bottom: 3px solid transparent; white-space: nowrap; }
  nav.nav > ul > li > a:hover, nav.nav > ul > li > a[aria-current="true"] { border-bottom-color: var(--accent-3); }
  /* index sheet dropdowns */
  .panel { position: absolute; left: 50%; transform: translateX(-50%); top: 100%; min-width: 380px; background: var(--paper); border: 1px solid var(--rule); border-top: 3px solid var(--deep); padding: .5rem 0; display: none; }
  li:hover > .panel, li:focus-within > .panel { display: block; }
  .panel a { display: flex; justify-content: space-between; gap: 1.5rem; align-items: baseline; padding: .55rem 1.25rem; text-decoration: none; border-bottom: 1px solid var(--soft-2); }
  .panel a:last-child { border-bottom: 0; }
  .panel a:hover { background: var(--soft-2); }
  .panel .p-name { font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--deep); white-space: nowrap; }
  .panel .p-frag { font-family: var(--mono); font-size: .68rem; color: var(--mid); text-align: right; }
}
/* nav density in the 1080 to 1460 band: tighter tracking, no overflow */
@media (min-width: 980px) and (max-width: 1240px) {
  nav.nav > ul > li > a { font-size: .72rem; letter-spacing: .05em; padding: 0 .35rem; }
  .hdr .hdr-cta { padding: .55rem 1rem; }
}
.hdr .hdr-cta { display: none; }
@media (min-width: 1240px) { .hdr .hdr-cta { display: inline-flex; } }

/* mobile nav */
.m-nav { display: block; }
@media (min-width: 980px) { .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 .75rem; cursor: pointer; font-family: var(--mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--deep); border: 1px solid var(--rule); }
.m-nav > summary::-webkit-details-marker { display: none; }
.m-nav[open] > summary { background: var(--deep); color: #fff; border-color: var(--deep); }
.m-panel { position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 2px solid var(--deep); max-height: calc(100vh - 120px); overflow-y: auto; padding: .5rem var(--pad) 1.5rem; }
.m-panel ul { list-style: none; margin: 0; padding: 0; }
.m-panel .m-sect > a { display: flex; min-height: 44px; align-items: center; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; color: var(--deep); text-decoration: none; border-bottom: 1px solid var(--rule); }
.m-panel .m-sub a { display: flex; min-height: 44px; align-items: center; padding-left: 1.25rem; font-size: .85rem; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--soft-2); }

/* ---- hero: the split ledger ---- */
.hero { padding-block: var(--sect); border-bottom: 1px solid var(--rule); }
.hero .wrap { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .hero .wrap { grid-template-columns: 7fr 5fr; align-items: start; } }
.hero-copy .eyebrow { margin-bottom: 1.25rem; }
.hero-copy h1 { margin-bottom: 1.25rem; }
.hero-copy .lede { margin-bottom: 2rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* exhibits: ruled frame + mono caption ledger */
.exhibit { border: 1px solid var(--rule); background: var(--paper); }
.exhibit img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.exhibit.wide img { aspect-ratio: 21 / 9; }
.exhibit figcaption { border-top: 1px solid var(--rule); padding: .6rem .9rem; display: flex; flex-wrap: wrap; gap: .35rem 1.5rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: var(--mid); }
.exhibit figcaption b { color: var(--deep); font-weight: 500; }

/* register extract: ruled fact table */
.reg { width: 100%; border-collapse: collapse; }
.reg caption { text-align: left; font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--mid); padding-bottom: .5rem; }
.reg td { border-top: 1px solid var(--rule); padding: .65rem .25rem; vertical-align: baseline; }
.reg tr:last-child td { border-bottom: 1px solid var(--rule); }
.reg .r-val { font-family: var(--mono); font-weight: 500; font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: var(--deep); white-space: nowrap; padding-right: 1.25rem; }
.reg .r-lab { font-size: .85rem; color: var(--mid); width: 99%; }
.hero-reg { margin-top: 2.25rem; }

/* ---- bands ---- */
.band { padding-block: var(--sect); }
.band--soft { background: var(--soft-2); border-block: 1px solid var(--rule); }
.band--deep { background: var(--deep); color: #E8EDF2; }
.band--deep h2, .band--deep h3 { color: #fff; }
.band-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; }
.band-head .eyebrow { display: block; margin-bottom: .75rem; }
.band-head .bh-link { font-family: var(--mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; }
.band-head .bh-link:hover { text-decoration: underline; }

/* ---- THE INDEX: department register ---- */
.index-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.index-list > li { border-bottom: 1px solid var(--rule); }
.index-list a { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: .5rem 1.5rem; padding: 1.1rem .25rem; text-decoration: none; position: relative; }
.index-list a:hover { background: var(--soft-2); }
.index-list a:hover::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent-3); }
.idx { font-family: var(--mono); font-size: .8rem; color: var(--accent); font-weight: 500; align-self: center; }
.index-list .i-name { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: clamp(1.35rem, 3vw, 2.1rem); line-height: 1; color: var(--deep); }
.index-list .i-frag { font-family: var(--mono); font-size: .72rem; color: var(--mid); text-align: right; max-width: 340px; }
.index-list .i-frag::after { content: " \2192"; color: var(--accent); }
@media (max-width: 640px) { .index-list a { grid-template-columns: auto 1fr; } .index-list .i-frag { grid-column: 2; text-align: left; max-width: none; } }

/* selected exhibit under the index */
.feature { display: grid; gap: 2rem; margin-top: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 900px) { .feature { grid-template-columns: 6fr 5fr; align-items: start; } }
.feature .f-copy h3 { margin-bottom: 1rem; }
.feature .f-copy p { margin-bottom: 1.25rem; max-width: 34em; }

/* spec list (operating envelope) */
.spec { border-top: 1px solid var(--rule); }
.spec > div { display: grid; grid-template-columns: minmax(9rem, 14rem) 1fr; gap: 1rem; padding: .6rem .25rem; border-bottom: 1px solid var(--rule); }
.spec dt { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--mid); align-self: baseline; }
.spec dd { margin: 0; font-family: var(--mono); font-size: .85rem; color: var(--deep); }
.band--deep .spec > div { border-color: var(--rule-deep); }
.band--deep .spec dt { color: #9FB1BF; }
.band--deep .spec dd { color: #fff; }
@media (max-width: 560px) { .spec > div { grid-template-columns: 1fr; gap: .1rem; } }

/* ---- three-door and generic content grids (no equal-card walls: doors are ruled columns) ---- */
.doors { display: grid; border: 1px solid var(--rule); border-bottom: 0; }
@media (min-width: 900px) { .doors { grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--rule); border-right: 0; } }
.door { border-bottom: 1px solid var(--rule); padding: 1.75rem; text-decoration: none; display: block; }
@media (min-width: 900px) { .door { border-bottom: 0; border-right: 1px solid var(--rule); } }
.door:hover { background: var(--soft-2); }
.door .idx { display: block; margin-bottom: 1rem; }
.door h3 { margin-bottom: .75rem; }
.door p { font-size: .92rem; color: var(--ink); margin-bottom: 1rem; }
.door .d-frag { font-family: var(--mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); }

/* ---- job register (projects) ---- */
.lead-job { display: grid; gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 900px) { .lead-job { grid-template-columns: 7fr 5fr; align-items: start; } }
.lead-job .lj-copy .eyebrow { margin-bottom: 1rem; }
.lead-job .lj-copy h3 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 1.25rem; }
.lead-job .lj-copy p { margin-bottom: 1.5rem; max-width: 36em; }
.jobs { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.jobs > li { border-bottom: 1px solid var(--rule); }
.jobs a { display: grid; gap: .35rem 2rem; padding: 1.15rem .25rem; text-decoration: none; grid-template-columns: auto 1fr; align-items: baseline; position: relative; }
.jobs a:hover { background: var(--soft-2); }
.jobs a:hover::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent-3); }
.jobs .j-id { font-family: var(--mono); font-size: .75rem; color: var(--accent); }
.jobs .j-title { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: clamp(1.1rem, 2vw, 1.5rem); letter-spacing: .03em; color: var(--deep); }
.jobs .j-fields { grid-column: 2; display: flex; flex-wrap: wrap; gap: .25rem 1.75rem; font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--mid); }
.jobs .j-fields b { color: var(--deep); font-weight: 500; }

/* ---- zig rows for detail pages ---- */
.row { display: grid; gap: 2rem; align-items: start; }
.row + .row { margin-top: clamp(2.75rem, 6vw, 4.5rem); }
@media (min-width: 900px) { .row { grid-template-columns: 1fr 1fr; gap: 3.5rem; } .row.rev > figure { order: 2; } }
.row h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); 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.1rem; margin: 0 0 1rem; }
.row ul.plain li { margin-bottom: .35rem; }

/* ---- gallery: exhibits grid ---- */
.gallery { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.gallery .exhibit img { aspect-ratio: 3 / 2; }

/* ---- CTA band ---- */
.cta-band { background: var(--deep); color: #E8EDF2; padding-block: clamp(3rem, 6vw, 5rem); }
.cta-band .wrap { display: grid; gap: 1.75rem; }
@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 { color: #B9C4CE; max-width: 42em; }
.cta-band .c-act { display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.cta-band .c-phone { font-family: var(--mono); font-size: clamp(1.3rem, 2.6vw, 1.8rem); color: #fff; text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; }
.cta-band .c-phone:hover { color: var(--accent-3); }
.cta-band .c-note { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: #9FB1BF; }

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

/* ---- prose (articles, legal) ---- */
.prose { max-width: 46em; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); 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); }

/* ---- article header ---- */
.art-head { padding-block: var(--sect) 2rem; }
.art-head .eyebrow { margin-bottom: 1rem; }
.art-head h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); max-width: 18em; }
.art-meta { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .3rem 1.75rem; font-family: var(--mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--mid); }

/* ---- interior document header ---- */
.doc-head { background: var(--deep); color: #E8EDF2; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.doc-head .eyebrow { color: #9FB1BF; margin-bottom: 1rem; }
.doc-head .eyebrow b { color: var(--accent-3); }
.doc-head h1 { color: #fff; }
.doc-head .lede { color: #D3DCE3; margin-top: 1.25rem; }
.doc-head .wrap { display: grid; gap: 1.5rem; }
@media (min-width: 980px) { .doc-head .wrap { grid-template-columns: 1fr auto; align-items: end; } .doc-head .dh-meta { text-align: right; } }
.dh-meta { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: #9FB1BF; display: grid; gap: .3rem; }
.dh-meta b { color: #fff; font-weight: 500; }

/* ---- placeholder (honest gap) ---- */
.gap-note { border: 1px dashed var(--mid); padding: 1.25rem 1.5rem; font-size: .9rem; color: var(--mid); max-width: 46em; }
.gap-note b { display: block; font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .4rem; color: var(--deep); }

/* ---- team register ---- */
.team { border-top: 1px solid var(--rule); }
.team > div { display: grid; grid-template-columns: 1fr; gap: .2rem 2rem; padding: 1rem .25rem; border-bottom: 1px solid var(--rule); }
@media (min-width: 700px) { .team > div { grid-template-columns: 2fr 2fr 3fr; align-items: baseline; } }
.team .t-name { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 1.3rem; color: var(--deep); }
.team .t-role { font-size: .85rem; color: var(--mid); text-transform: uppercase; letter-spacing: .06em; }
.team .t-contact { font-family: var(--mono); font-size: .78rem; display: flex; flex-wrap: wrap; gap: .2rem 1.5rem; }
.team .t-contact a { text-decoration: none; color: var(--deep); display: inline-flex; align-items: center; min-height: 44px; }
.team .t-contact a:hover { color: var(--accent); text-decoration: underline; }

/* ---- footer ---- */
.ftr { background: var(--deep); color: #B9C4CE; margin-top: 0; }
.ftr a { text-decoration: none; }
.ftr .f-main { display: grid; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
@media (min-width: 900px) { .ftr .f-main { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.ftr img { height: 34px; width: auto; max-width: none; margin-bottom: 1.25rem; }
.ftr .f-pos { font-size: .85rem; max-width: 26em; }
.ftr h4 { font-family: var(--mono); font-size: .68rem; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; 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: .85rem; color: #B9C4CE; }
.ftr ul a:hover { color: #fff; text-decoration: underline; }
.ftr .f-contact { font-family: var(--mono); font-size: .78rem; 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-deep); padding-block: 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; font-family: var(--mono); font-size: .68rem; letter-spacing: .05em; }
.ftr .f-base a { color: #B9C4CE; display: inline-flex; align-items: center; min-height: 44px; }
.ftr .f-base a:hover { color: #fff; }

/* ---- motion ---- */
@media (prefers-reduced-motion: no-preference) {
  .btn, .index-list a, .jobs a, .door, .panel a, nav.nav a { transition: background-color .15s ease, color .15s ease, border-color .15s ease; }
}

/* ---- contact split ---- */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 980px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.c-details .spec { margin-top: 1.5rem; }
.map-frame { border: 1px solid var(--rule); }
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; }

/* 404 */
.err { padding-block: var(--sect); text-align: left; }
.err .mono-big { font-family: var(--mono); font-size: clamp(3rem, 10vw, 6rem); color: var(--soft); font-weight: 500; line-height: 1; }

/* ---- steps, timeline, faq ---- */
.steps { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps > div { border-top: 2px solid var(--deep); padding-top: 1rem; }
.steps .idx { display: block; margin-bottom: .5rem; }
.steps h3 { margin-bottom: .5rem; }
.steps p { font-size: .92rem; }
.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: 600; color: var(--deep); padding: .5rem .25rem; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--accent); }
.faq details[open] summary::after { content: "\2212"; }
.faq details > p { padding: 0 .25rem 1.25rem; max-width: 46em; }
