/* ============================================================
   CONCEPT C — THE WORKING DRAWING
   The visual language of the drawing office ABC actually runs:
   title blocks, sheet registers, dimension callouts, corner
   ticks. Paper #FBFBF9, ink #171D22, line grey #9AA4AB, machine
   green #1F6B4A as the approval-stamp accent. Saira SemiCondensed
   / Saira / Spline Sans Mono. Headings are restrained; the
   photography and the figures carry the scale. Every hairline
   encodes a measurement, a table or a frame, nothing else.
   ============================================================ */

@font-face { font-family: 'Saira SemiCondensed'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/saira-semi-condensed-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Saira SemiCondensed'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/saira-semi-condensed-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Saira SemiCondensed'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/saira-semi-condensed-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Saira'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/saira-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Saira'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/saira-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Spline Sans Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/spline-sans-mono-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Spline Sans Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/spline-sans-mono-latin-500-normal.woff2') format('woff2'); }

:root {
  --paper: #FBFBF9;
  --tint: #F0F2EE;
  --ink: #171D22;
  --ink-2: #39434B;      /* body text */
  --line: #9AA4AB;       /* instrument grey, frames and dimension lines */
  --line-soft: #C9D0D4;
  --green: #1F6B4A;      /* machine green, the approval stamp */
  --green-2: #174F37;    /* pressed */
  --head: 'Saira SemiCondensed', 'Arial Narrow', sans-serif;
  --body: 'Saira', 'Segoe UI', sans-serif;
  --mono: 'Spline Sans Mono', 'Consolas', monospace;
  --wrap: 1200px;
  --pad: clamp(1rem, 4vw, 2rem);
  --sect: clamp(3.5rem, 8vw, 6rem);
}

*, *::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: .98rem; line-height: 1.7; color: var(--ink-2); 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(--green); outline-offset: 2px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--paper); padding: .75rem 1.25rem; z-index: 99; font-family: var(--mono); font-size: .78rem; }
.skip:focus-visible { left: 0; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

/* the sheet border: a fixed drawing frame around the viewport on wide screens */
@media (min-width: 1100px) {
  body::after { content: ""; position: fixed; inset: 10px; border: 1px solid var(--line-soft); pointer-events: none; z-index: 90; }
}

/* ---- type: restrained headings, mono annotation ---- */
h1, h2 { font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; line-height: 1.08; color: var(--ink); }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-family: var(--head); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.15; color: var(--ink); }
.annot { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--line); }
.annot b { color: var(--green); font-weight: 500; }
.lede { font-size: clamp(1.02rem, 1.7vw, 1.18rem); line-height: 1.7; max-width: 40em; color: var(--ink-2); }
p + p { margin-top: 1em; }

/* ---- buttons: the stamp ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6em; min-height: 46px; padding: .65rem 1.5rem; font-family: var(--head); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; text-decoration: none; border: 2px solid var(--green); cursor: pointer; background: var(--green); color: #fff; white-space: nowrap; }
.btn:hover { background: var(--green-2); border-color: var(--green-2); }
.btn-ghost { background: transparent; color: var(--green); }
.btn-ghost:hover { background: var(--tint); color: var(--green-2); }
.btn-ink { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ink:hover { background: var(--ink); color: var(--paper); }

/* ---- utility strip ---- */
.util { background: var(--ink); color: #B9C2C8; font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; }
.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; }
.util a:hover { color: #fff; text-decoration: underline; }
.util .u-247 b { color: #6FBF97; }
.util .u-addr { display: none; align-items: center; }
@media (min-width: 900px) { .util .u-addr { display: inline-flex; } }

/* ---- header: drawing border bar ---- */
.hdr { position: sticky; top: 0; z-index: 50; background: var(--paper); border-bottom: 2px solid var(--ink); }
.hdr .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand img { height: 38px; width: auto; max-width: none; }
.sheet-ref { display: none; font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--line); border-left: 1px solid var(--line-soft); padding-left: 1.25rem; white-space: nowrap; }
.sheet-ref b { color: var(--ink); font-weight: 500; }
@media (min-width: 1400px) { .sheet-ref { display: block; } }
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(.05rem, .8vw, .8rem); }
  nav.nav > ul > li { position: relative; }
  nav.nav > ul > li > a { display: inline-flex; align-items: center; min-height: 68px; padding: 0 .45rem; font-family: var(--head); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); text-decoration: none; white-space: nowrap; }
  nav.nav > ul > li > a:hover, nav.nav > ul > li > a[aria-current="true"] { color: var(--green); box-shadow: inset 0 -2px 0 var(--green); }
  .panel { position: absolute; left: 0; top: 100%; min-width: 300px; background: var(--paper); border: 1px solid var(--ink); display: none; }
  li:hover > .panel, li:focus-within > .panel { display: block; }
  .panel a { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: baseline; padding: .6rem 1rem; text-decoration: none; border-bottom: 1px solid var(--line-soft); }
  .panel a:last-child { border-bottom: 0; }
  .panel a:hover { background: var(--tint); }
  .panel .p-n { font-family: var(--mono); font-size: .65rem; color: var(--line); }
  .panel .p-name { font-family: var(--head); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink); }
  .panel a:hover .p-name { color: var(--green); }
}
@media (min-width: 980px) and (max-width: 1240px) {
  nav.nav > ul > li > a { font-size: .72rem; letter-spacing: .05em; padding: 0 .3rem; }
}
.hdr .hdr-cta { display: none; }
@media (min-width: 1240px) { .hdr .hdr-cta { display: inline-flex; min-height: 46px; padding: .45rem 1.1rem; } }

/* 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 .8rem; cursor: pointer; font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); border: 1px solid var(--ink); }
.m-nav > summary::-webkit-details-marker { display: none; }
.m-nav[open] > summary { background: var(--ink); color: var(--paper); }
.m-panel { position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 2px solid var(--ink); max-height: calc(100vh - 116px); 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: 46px; align-items: center; gap: .9rem; font-family: var(--head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line-soft); }
.m-panel .m-sub a { display: flex; min-height: 44px; align-items: center; padding-left: 1.5rem; font-size: .88rem; color: var(--ink-2); text-decoration: none; border-bottom: 1px solid var(--tint); }

/* ---- the title block ---- */
.tblock { display: grid; border: 2px solid var(--ink); background: var(--paper); }
.tblock > div { padding: .55rem .9rem; border-top: 1px solid var(--line-soft); }
.tblock > div:first-child { border-top: 0; }
.tblock .tb-cell-lab { font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--line); display: block; margin-bottom: .1rem; }
.tblock .tb-cell-val { font-family: var(--head); font-weight: 600; font-size: .92rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink); }
.tblock .tb-title { padding: 1rem .9rem; }
.tblock .tb-title h1, .tblock .tb-title .tb-h { font-size: clamp(1.9rem, 4.5vw, 3.2rem); line-height: 1.02; }
@media (min-width: 700px) {
  .tblock { grid-template-columns: repeat(4, auto); }
  .tblock .tb-title { grid-column: 1 / -1; }
  .tblock > div:not(.tb-title) { border-top: 1px solid var(--ink); border-left: 1px solid var(--line-soft); }
  .tblock > div:not(.tb-title):nth-child(2) { border-left: 0; }
}

/* ---- drawing frame for photography ---- */
.dframe { position: relative; }
.dframe .df-img { border: 1px solid var(--line); position: relative; }
.dframe .df-img img { width: 100%; object-fit: cover; }
/* corner registration ticks */
.dframe .df-img::before, .dframe .df-img::after,
.dframe .df-ticks::before, .dframe .df-ticks::after { content: ""; position: absolute; width: 14px; height: 14px; border-color: var(--ink); border-style: solid; }
.dframe .df-img::before { top: -7px; left: -7px; border-width: 0 0 1px 1px; transform: rotate(90deg); }
.dframe .df-img::after { top: -7px; right: -7px; border-width: 0 0 1px 1px; transform: rotate(180deg); }
.dframe .df-ticks::before { bottom: -7px; left: -7px; border-width: 0 0 1px 1px; }
.dframe .df-ticks::after { bottom: -7px; right: -7px; border-width: 0 0 1px 1px; transform: rotate(270deg); }
.dframe figcaption { display: flex; flex-wrap: wrap; gap: .3rem 1.5rem; padding-top: .6rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--line); }
.dframe figcaption b { color: var(--ink); font-weight: 500; }

/* ---- dimension table (principal dimensions) ---- */
.dims { border-top: 2px solid var(--ink); }
.dims > div { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: baseline; padding: .55rem .1rem; border-bottom: 1px solid var(--line-soft); position: relative; }
.dims dt { font-size: .8rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-2); }
.dims dd { margin: 0; font-family: var(--mono); font-weight: 500; font-size: .95rem; color: var(--ink); white-space: nowrap; }
/* dimension tick: a drawn line segment, not a text glyph */
.dims dd::before { content: ""; display: inline-block; width: 18px; height: 1px; background: var(--line-soft); vertical-align: middle; margin-right: .75rem; }
.dims.dims-lg dd { font-size: clamp(1.05rem, 2vw, 1.35rem); }

/* ---- hero: the general arrangement sheet ---- */
.heroC { padding-block: clamp(2rem, 5vw, 3.5rem) var(--sect); }
.heroC .ga { display: grid; gap: 2rem; }
@media (min-width: 1000px) { .heroC .ga { grid-template-columns: 8fr 4fr; align-items: end; } }
.heroC .dframe .df-img img { aspect-ratio: 16 / 9; }
@media (min-width: 1000px) { .heroC .dframe .df-img img { aspect-ratio: 21 / 10; } }
.heroC .ga-side { display: grid; gap: 1.75rem; }
.heroC .tblock .tb-title h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.heroC .hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.heroC .dims { margin-top: 2rem; }
@media (min-width: 1000px) {
  .heroC .dims { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 3rem; border-top: 0; margin-top: 2.5rem; }
  .heroC .dims > div { border-top: 0; }
}

/* ---- interior page head: title block row ---- */
.headC { padding-block: clamp(1.75rem, 4vw, 3rem) 0; }
.headC .tblock { margin-bottom: clamp(2rem, 5vw, 3rem); }
.headC .dframe { margin-bottom: 0; }
.headC .dframe .df-img img { aspect-ratio: 21 / 9; }
.headC .lede { margin: 1.5rem 0 0; }

/* ---- bands ---- */
.band { padding-block: var(--sect); }
.band--tint { background: var(--tint); border-block: 1px solid var(--line-soft); }
.band--ink { background: var(--ink); color: #B9C2C8; }
.band--ink h2, .band--ink h3 { color: var(--paper); }
.band-head { margin-bottom: clamp(2rem, 4vw, 3rem); display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; }
.band-head .annot { display: block; margin-bottom: .7rem; }
.band-head .bh-link { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--green); text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; }
.band-head .bh-link:hover { text-decoration: underline; }

/* ---- the sheet register (departments) ---- */
.sheets { width: 100%; border-collapse: collapse; border: 2px solid var(--ink); }
.sheets th { font-family: var(--mono); font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--line); text-align: left; padding: .6rem .9rem; border-bottom: 2px solid var(--ink); }
.sheets td { padding: 0; border-bottom: 1px solid var(--line-soft); }
.sheets tr:last-child td { border-bottom: 0; }
.sheets .sh-link { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 1.25rem; text-decoration: none; padding: .85rem .9rem; }
.sheets .sh-link:hover { background: var(--tint); }
.sheets .sh-link:hover .sh-name { color: var(--green); }
.sheets .sh-n { font-family: var(--mono); font-size: .78rem; color: var(--line); }
.sheets .sh-name { font-family: var(--head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: clamp(1rem, 2vw, 1.3rem); color: var(--ink); }
.sheets .sh-plant { font-family: var(--mono); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; color: var(--line); text-align: right; }
@media (max-width: 700px) { .sheets .sh-link { grid-template-columns: auto 1fr; } .sheets .sh-plant { grid-column: 2; text-align: left; } .sheets th:last-child { display: none; } }

/* ---- evidence stream / job traveller ---- */
.stages { border-left: 1px solid var(--line); margin-left: .4rem; padding-left: clamp(1.25rem, 4vw, 2.5rem); display: grid; gap: clamp(2.25rem, 5vw, 3.5rem); }
.stage { position: relative; display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .stage { grid-template-columns: minmax(0, 30ch) 1fr; gap: 2.5rem; } }
.stage::before { content: ""; position: absolute; left: calc(-1 * clamp(1.25rem, 4vw, 2.5rem) - 5px); top: .5rem; width: 9px; height: 9px; background: var(--green); }
.stage .st-n { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: .35rem; }
.stage h3 { margin-bottom: .5rem; }
.stage p { font-size: .93rem; }
.stage .dframe .df-img img { aspect-ratio: 16 / 9; }

/* ---- job cards (projects landing) ---- */
.jobcards { display: grid; gap: 1.75rem; }
@media (min-width: 900px) { .jobcards { grid-template-columns: repeat(2, 1fr); } }
.jobcard { border: 1px solid var(--ink); text-decoration: none; display: grid; grid-template-rows: auto 1fr; background: var(--paper); }
.jobcard:hover { background: var(--tint); }
.jobcard figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-bottom: 1px solid var(--ink); }
.jobcard .jc-body { padding: 1.25rem 1.4rem 1.5rem; }
.jobcard .annot { display: block; margin-bottom: .5rem; }
.jobcard h3 { margin-bottom: .85rem; }
.jobcard:hover h3 { color: var(--green); }
.jobcard .jc-fields { display: grid; gap: .25rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: var(--line); }
.jobcard .jc-fields b { color: var(--ink); font-weight: 500; }
.jobcard.lead { grid-column: 1 / -1; }
@media (min-width: 900px) { .jobcard.lead { grid-template-rows: none; grid-template-columns: 3fr 2fr; } .jobcard.lead figure img { height: 100%; aspect-ratio: auto; border-bottom: 0; border-right: 1px solid var(--ink); } }

/* ---- detail rows ---- */
.row { display: grid; gap: 2rem; align-items: start; }
.row + .row { margin-top: clamp(2.75rem, 6vw, 4.5rem); }
@media (min-width: 950px) { .row { grid-template-columns: 1fr 1fr; gap: 3.5rem; } .row.rev > figure { order: 2; } }
.row .dframe .df-img img { aspect-ratio: 4 / 3; }
.row h2 { margin-bottom: 1.1rem; }
.row h3 { margin-bottom: .9rem; }
.row p { margin-bottom: 1rem; max-width: 40em; }
.row .dims { margin-top: 1.5rem; }
.row ul.plain { padding-left: 1.1rem; margin: 0 0 1rem; }
.row ul.plain li { margin-bottom: .3rem; }

/* ---- doors ---- */
.doors { display: grid; gap: 1.75rem; }
@media (min-width: 900px) { .doors { grid-template-columns: repeat(3, 1fr); } }
.door { border: 1px solid var(--ink); text-decoration: none; display: block; background: var(--paper); }
.door:hover { background: var(--tint); }
.door figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-bottom: 1px solid var(--ink); }
.door .d-body { padding: 1.2rem 1.3rem 1.4rem; }
.door .annot { display: block; margin-bottom: .45rem; }
.door h3 { margin-bottom: .6rem; }
.door:hover h3 { color: var(--green); }
.door p { font-size: .9rem; margin-bottom: .75rem; }
.door .d-frag { font-family: var(--mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--green); }

/* ---- gallery ---- */
.gallery { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.gallery .dframe .df-img img { aspect-ratio: 3 / 2; }

/* ---- CTA band: the approval stamp ---- */
.cta-band { background: var(--ink); color: #B9C2C8; padding-block: clamp(3rem, 6vw, 4.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: var(--paper); margin-bottom: .6rem; }
.cta-band .c-sub { max-width: 44em; font-size: .95rem; }
.cta-band .c-act { display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.cta-band .c-phone { font-family: var(--mono); font-weight: 500; font-size: clamp(1.2rem, 2.4vw, 1.6rem); color: var(--paper); text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; }
.cta-band .c-phone:hover { color: #6FBF97; }
.cta-band .c-note { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }

/* ---- forms ---- */
.form { display: grid; gap: 1.15rem; max-width: 620px; }
.form label { display: block; font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-2); margin-bottom: .4rem; }
.form label b { color: var(--green); }
.form input, .form select, .form textarea { width: 100%; min-height: 46px; padding: .6rem .8rem; font-family: var(--body); font-size: 1rem; color: var(--ink); background: var(--paper); border: 1px solid var(--ink); 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(--green); outline-offset: 1px; }
.form .f-note { font-size: .8rem; color: var(--line); }
fieldset { border: 1px solid var(--line); padding: 1rem; margin: 0; }
legend { font-family: var(--mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-2); 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-2); margin: 0; }
.checks input { width: 1.1rem; height: 1.1rem; min-height: 0; }

/* ---- prose ---- */
.prose { max-width: 46em; }
.prose h2 { 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(--green); }

.art-meta { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .3rem 1.75rem; font-family: var(--mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; color: var(--line); }

/* ---- team: personnel schedule ---- */
.team { border: 2px solid var(--ink); }
.team > div { display: grid; grid-template-columns: 1fr; gap: .15rem 2rem; padding: .9rem 1.1rem; border-bottom: 1px solid var(--line-soft); }
.team > div:last-child { border-bottom: 0; }
@media (min-width: 700px) { .team > div { grid-template-columns: 2fr 2fr 3fr; align-items: baseline; } }
.team .t-name { font-family: var(--head); font-weight: 600; text-transform: uppercase; font-size: 1.1rem; color: var(--ink); }
.team .t-role { font-family: var(--mono); font-size: .68rem; color: var(--line); text-transform: uppercase; letter-spacing: .08em; }
.team .t-contact { font-family: var(--mono); font-size: .74rem; display: flex; flex-wrap: wrap; gap: .2rem 1.5rem; }
.team .t-contact a { text-decoration: none; color: var(--green); display: inline-flex; align-items: center; min-height: 44px; }
.team .t-contact a:hover { text-decoration: underline; }

/* ---- honest gap: the hold stamp ---- */
.gap-note { border: 2px dashed var(--line); padding: 1.2rem 1.4rem; font-size: .88rem; color: var(--ink-2); max-width: 46em; }
.gap-note b { display: block; font-family: var(--mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .4rem; color: #8A6D1A; }

/* ---- footer: the title block of the site ---- */
.ftr { background: var(--ink); color: #8E9AA2; }
.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: 32px; 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: .64rem; font-weight: 500; text-transform: uppercase; letter-spacing: .16em; color: var(--paper); 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: #8E9AA2; }
.ftr ul a:hover { color: var(--paper); text-decoration: underline; }
.ftr .f-contact { font-family: var(--mono); font-size: .76rem; line-height: 2; }
.ftr .f-contact a { color: var(--paper); display: inline-flex; min-height: 44px; align-items: center; }
.ftr .f-contact a:hover { text-decoration: underline; }
.ftr .f-base { border-top: 1px solid #39434B; padding-block: 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; font-family: var(--mono); font-size: .64rem; letter-spacing: .06em; }
.ftr .f-base a { color: #8E9AA2; display: inline-flex; align-items: center; min-height: 44px; }
.ftr .f-base a:hover { color: var(--paper); }

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

@media (prefers-reduced-motion: no-preference) {
  .btn, .sheets .sh-link, .jobcard, .door, .panel a, nav.nav a { transition: background-color .15s ease, color .15s ease; }
}

.err { padding-block: var(--sect); }
.err .mono-big { font-family: var(--mono); font-size: clamp(3rem, 10vw, 6rem); color: var(--line-soft); 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: 1px solid var(--line-soft); border-top: 2px solid var(--ink); padding: 1rem 1.1rem 1.25rem; background: var(--paper); }
.steps .annot { display: block; margin-bottom: .45rem; }
.steps h3 { margin-bottom: .5rem; }
.steps p { font-size: .9rem; }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary { cursor: pointer; min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--head); font-weight: 600; color: var(--ink); padding: .5rem .1rem; list-style: none; text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--green); }
.faq details[open] summary::after { content: "\2212"; }
.faq details > p { padding: 0 .1rem 1.25rem; max-width: 46em; }
