/* ==========================================================================
   STEEL STRUXURES LLC
   Near-black, white, one accent (deep orange #C85000, used sparingly).
   Heavy sans headlines, all-caps condensed labels, square corners everywhere.
   ========================================================================== */

:root {
  --ink: #111111;          /* near-black ground */
  --ink-2: #1a1a1a;        /* raised dark surface */
  --ink-3: #242424;        /* hairlines on dark */
  --white: #ffffff;
  --paper: #f4f4f2;        /* light section ground */
  --paper-2: #e6e6e3;      /* hairlines on light */
  --mute: #9a9a9a;         /* secondary text on dark */
  --mute-2: #5a5a5a;       /* secondary text on light */
  --accent: #C85000;       /* deep orange - CTAs and markers only */
  --accent-p: #A34100;     /* pressed */

  --f-head: 'Inter Tight', 'Arial Black', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-label: 'Barlow Condensed', 'Arial Narrow', sans-serif;

  --wrap: 1320px;
  --gut: clamp(16px, 4vw, 48px);
  --sec: clamp(88px, 11vw, 152px);
  --nav-h: 76px;
}

:root { color-scheme: dark; }
.light { color-scheme: light; }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: var(--nav-h); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0; background: var(--ink); color: var(--white);
  font: 400 17px/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--accent); color: #fff; padding: 10px 16px; font-weight: 700; text-decoration: none; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }

/* ---------------------------------------------------------------- type */
h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 900; line-height: .98; letter-spacing: -.025em; margin: 0; }
h2 { font-size: clamp(40px, 5.6vw, 76px); }
h3 { font-size: 24px; letter-spacing: -.015em; line-height: 1.1; font-weight: 800; }
p { margin: 0; }

.label {
  font: 600 15px/1 var(--f-label); letter-spacing: .18em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px; color: var(--mute);
}
.label::before { content: ''; width: 28px; height: 3px; background: var(--accent); }
.light .label { color: var(--mute-2); }

.lede { font-size: clamp(17px, 1.4vw, 20px); color: #c9c9c9; max-width: 58ch; }
.light .lede { color: var(--mute-2); }

/* ---------------------------------------------------------------- buttons */
.btn {
  --bg: var(--accent); --fg: #fff; --bd: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 56px; padding: 0 30px; border: 2px solid var(--bd); border-radius: 0;
  background: var(--bg); color: var(--fg);
  font: 700 15px/1 var(--f-label); letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .18s, border-color .18s, color .18s;
}
.btn svg { width: 18px; height: 18px; transition: transform .18s; }
.btn:hover { --bg: var(--accent-p); --bd: var(--accent-p); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--ghost { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.55); }
.btn--ghost:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.light .btn--ghost { --fg: var(--ink); --bd: var(--ink); }
.light .btn--ghost:hover { --bg: var(--ink); --fg: #fff; }
.btn--xl { min-height: 68px; padding: 0 40px; font-size: 17px; }

/* ---------------------------------------------------------------- nav */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100; height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--ink); border-bottom: 1px solid var(--ink-3);
}
/* review copy only: a strip that says what is placeholder */
.review-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap;
  padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom, 0px)); background: #fff; color: var(--ink);
  border-top: 3px solid var(--accent); font-size: 14px; line-height: 1.4;
}
.review-bar b { font: 700 13px/1 var(--f-label); letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.has-review body { padding-bottom: 64px; }
.nav .wrap { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand svg { width: 36px; height: 36px; flex: none; }
.brand b { font: 900 19px/1 var(--f-head); letter-spacing: -.01em; text-transform: uppercase; }
.brand small { display: block; font: 600 11px/1 var(--f-label); letter-spacing: .28em; color: var(--mute); margin-top: 4px; }
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font: 600 15px/1 var(--f-label); letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: #d8d8d8; padding: 8px 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: #fff; border-bottom-color: var(--accent); }
.nav-phone { font: 700 16px/1 var(--f-label); letter-spacing: .06em; text-decoration: none; color: #fff; }
.nav .btn { min-height: 46px; padding: 0 22px; }
.nav-toggle { display: none; width: 46px; height: 46px; background: none; border: 1px solid var(--ink-3); cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px auto; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 0; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--ink); border-bottom: 1px solid var(--ink-3); padding: 8px var(--gut) 24px;
  }
  .nav.open .nav-links a { display: block; padding: 18px 0; border-bottom: 1px solid var(--ink-3); font-size: 18px; }
}
@media (max-width: 480px) {
  .nav .wrap { gap: 12px; }
  .brand small { display: none; }
  .brand b { font-size: 16px; }
  .nav .btn { padding: 0 14px; font-size: 13px; letter-spacing: .1em; }
}

/* ---------------------------------------------------------------- section chrome */
.section { padding: var(--sec) 0; position: relative; }
.light { background: var(--paper); color: var(--ink); }
/* the divider: a heavy rule with a measured tick row, like a steel tape */
.rule {
  height: 18px; position: relative; border-top: 3px solid var(--ink);
  background: repeating-linear-gradient(90deg, var(--ink) 0 1px, transparent 1px 24px) top left / 100% 8px no-repeat;
}
.rule::after { content: ''; position: absolute; left: 0; top: -3px; width: 96px; height: 3px; background: var(--accent); }
.dark .rule, .rule--dark { border-top-color: #fff; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.35) 0 1px, transparent 1px 24px); }
.sec-head { display: grid; grid-template-columns: 1fr auto; gap: 24px 48px; align-items: end; margin: 40px 0 64px; }
.sec-head .label { grid-column: 1 / -1; }
.sec-head .lede { max-width: 46ch; }
@media (max-width: 860px) { .sec-head { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- hero (scroll scrub) */
.hero { position: relative; height: 300vh; background: var(--ink); }
/* lvh: the stage keeps one height while a phone's toolbar slides in and out */
.hero-stage { position: sticky; top: 0; height: 100vh; height: 100lvh; overflow: hidden; }
.hero-media, .hero-media video, .hero-media .poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media .poster { background: #1b1b1b center / cover no-repeat; transition: opacity .6s; }
.hero-media video { opacity: 0; transition: opacity .6s; }
.hero.video-ready .hero-media video { opacity: 1; }
.hero.video-ready .hero-media .poster { opacity: 0; }
/* scrim: dark centre band for legibility, plus a floor fade into the page */
.hero-stage::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(10,10,10,.62) 0%, rgba(10,10,10,.28) 60%, rgba(10,10,10,0) 100%),
    linear-gradient(180deg, rgba(17,17,17,.55) 0%, rgba(17,17,17,0) 22%, rgba(17,17,17,0) 72%, rgba(17,17,17,.85) 100%);
}
.hero-copy {
  position: absolute; inset: var(--nav-h) 0 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 0 var(--gut) 40px;
}
.hero-copy .label { color: #fff; }
.hero-copy .label::after { content: ''; width: 28px; height: 3px; background: var(--accent); }
.hero h1 {
  font-size: clamp(52px, 9.4vw, 148px); line-height: .9; letter-spacing: -.04em; margin: 26px 0 26px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 span { display: block; }
.hero-sub { font-size: clamp(17px, 1.6vw, 21px); max-width: 44ch; color: #eaeaea; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.hero-beat {
  font: 800 clamp(22px, 2.6vw, 34px)/1.1 var(--f-head); letter-spacing: -.02em; margin-top: 34px;
  opacity: 0; transform: translateY(14px);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 30px; opacity: 0; transform: translateY(14px); visibility: hidden; }
.hero-meter { position: absolute; left: var(--gut); right: var(--gut); bottom: 26px; z-index: 2; display: flex; align-items: center; gap: 16px; font: 600 13px/1 var(--f-label); letter-spacing: .2em; text-transform: uppercase; color: #cfcfcf; }
.hero-meter .bar { flex: 1; height: 3px; background: rgba(255,255,255,.2); position: relative; overflow: hidden; }
.hero-meter .bar i { position: absolute; inset: 0; background: var(--accent); transform-origin: left; transform: scaleX(0); }
/* phones: same scrub, tighter type so the pinned copy fits a short screen */
@media (max-width: 600px) {
  .hero-copy { justify-content: center; padding-bottom: 12vh; }
  .hero h1 { font-size: clamp(46px, 14.5vw, 64px); margin: 18px 0 16px; }
  .hero-sub { font-size: 16px; max-width: 30ch; }
  .hero-beat { font-size: 22px; margin-top: 22px; }
  .hero-cta { margin-top: 20px; gap: 10px; width: 100%; max-width: 360px; }
  .hero-cta .btn { flex: 1 1 0; min-height: 54px; padding: 0 12px; font-size: 14px; letter-spacing: .1em; }
  .hero-cta .btn svg { display: none; }
  .hero-meter { top: calc(var(--nav-h) + 14px); bottom: auto; font-size: 11px; }
}
/* static mode: reduced motion, or no video */
.hero.static { height: auto; }
.hero.static .hero-stage { position: relative; height: auto; min-height: 100vh; min-height: 100svh; }
.hero.static .hero-copy { position: relative; inset: auto; min-height: 100vh; min-height: 100svh; padding-top: calc(var(--nav-h) + 48px); padding-bottom: 56px; }
.hero.static .hero-beat, .hero.static .hero-cta { opacity: 1; transform: none; visibility: visible; }
.hero.static .hero-meter { display: none; }

/* ---------------------------------------------------------------- projects */
.projects { display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px 32px; }
.pcard { display: block; text-decoration: none; color: inherit; }
.pcard .ph { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-2); }
.pcard img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(.92); transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.pcard:hover img { transform: scale(1.035); }
.pcard .tag {
  position: absolute; left: 0; top: 0; background: var(--ink); color: #fff; padding: 10px 14px;
  font: 700 13px/1 var(--f-label); letter-spacing: .2em; text-transform: uppercase;
}
.pcard .meta { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-top: 20px; border-bottom: 1px solid var(--ink-3); padding-bottom: 18px; }
.pcard h3 { font-size: clamp(24px, 2.3vw, 32px); font-weight: 900; }
.pcard .where { font: 600 15px/1.3 var(--f-label); letter-spacing: .12em; text-transform: uppercase; color: var(--mute); text-align: right; white-space: nowrap; }
.pcard .go { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; font: 700 14px/1 var(--f-label); letter-spacing: .16em; text-transform: uppercase; }
.pcard .go svg { width: 16px; height: 16px; color: var(--accent); transition: transform .18s; }
.pcard:hover .go svg { transform: translateX(4px); }
.pcard:hover h3 { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 6px; }
@media (max-width: 760px) {
  .projects { grid-template-columns: 1fr; gap: 48px; }
  .pcard .meta { flex-direction: column; gap: 8px; }
  .pcard .where { text-align: left; white-space: normal; }
}

/* fade-in on scroll (project cards only, per the brief) */
.js .fade { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .fade.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .fade { opacity: 1; transform: none; transition: none; } }

/* ---------------------------------------------------------------- services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--paper-2); border-left: 1px solid var(--paper-2); }
.svc {
  border-right: 1px solid var(--paper-2); border-bottom: 1px solid var(--paper-2);
  padding: 44px 40px 48px; background: #fff; transition: background-color .22s, color .22s;
}
.svc svg { width: 52px; height: 52px; color: var(--accent); margin-bottom: 30px; transition: color .22s; }
.svc .num { font: 700 14px/1 var(--f-label); letter-spacing: .2em; color: var(--mute-2); float: right; transition: color .22s; }
.svc h3 { margin-bottom: 14px; }
.svc p { color: var(--mute-2); font-size: 16px; transition: color .22s; }
.svc:hover { background: var(--accent); color: #fff; }
.svc:hover svg, .svc:hover .num, .svc:hover p { color: #fff; }
.svc-foot { text-align: center; max-width: 640px; margin: 72px auto 0; }
.svc-foot p { font-size: 19px; color: var(--mute-2); margin-bottom: 28px; }
@media (max-width: 1000px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services { grid-template-columns: 1fr; } .svc { padding: 36px 26px 40px; } }

/* ---------------------------------------------------------------- process timeline */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(7, 1fr); position: relative; }
.timeline::before { /* the connecting line */
  content: ''; position: absolute; left: 0; right: 0; top: 27px; height: 3px; background: var(--accent);
}
.step { position: relative; padding-right: 22px; }
.step .n {
  position: relative; z-index: 1; width: 57px; height: 57px; display: grid; place-items: center;
  background: var(--ink); border: 3px solid var(--accent); color: var(--accent);
  font: 900 22px/1 var(--f-head); letter-spacing: -.02em;
}
.step:last-child .n { background: var(--accent); color: #fff; }
.step h3 { font-size: 20px; margin: 28px 0 12px; }
.step p { font-size: 15px; color: var(--mute); line-height: 1.55; }
@media (max-width: 1180px) and (min-width: 761px) {
  /* still horizontal: the track scrolls sideways */
  .timeline-scroll { overflow-x: auto; scroll-snap-type: x mandatory; margin: 0 calc(var(--gut) * -1); padding: 0 var(--gut) 18px; scrollbar-color: var(--accent) var(--ink-3); }
  .timeline { grid-template-columns: repeat(7, 250px); }
  .step { scroll-snap-align: start; }
}
@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { left: 27px; right: auto; top: 0; bottom: 0; width: 3px; height: auto; }
  .step { display: grid; grid-template-columns: 57px 1fr; gap: 0 22px; padding: 0 0 40px; }
  .step:last-child { padding-bottom: 0; }
  .step h3 { margin: 14px 0 8px; }
  .step .n { grid-row: span 2; }
}

/* ---------------------------------------------------------------- company / team */
.company { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.company-photo { position: relative; }
.company-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: contrast(1.1) saturate(.85); }
.company-photo::after { content: ''; position: absolute; right: -14px; bottom: -14px; width: 38%; height: 38%; border-right: 6px solid var(--accent); border-bottom: 6px solid var(--accent); pointer-events: none; }
.company h2 { margin: 22px 0 24px; }
.company .lede { margin-bottom: 36px; }
.crew { list-style: none; padding: 0; margin: 0 0 40px; border-top: 1px solid var(--paper-2); }
.crew li { display: grid; grid-template-columns: 170px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--paper-2); font-size: 16px; color: var(--mute-2); }
.crew b { font: 700 15px/1.4 var(--f-label); letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
@media (max-width: 900px) { .company { grid-template-columns: 1fr; } .company-photo::after { right: 0; } }
@media (max-width: 520px) { .crew li { grid-template-columns: 1fr; gap: 4px; } }

/* ---------------------------------------------------------------- testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 3px solid #fff; }
.quote { padding: 44px 36px 8px 0; margin: 0; }
.quote + .quote { padding-left: 36px; border-left: 1px solid var(--ink-3); }
.quote svg { width: 34px; height: 34px; color: var(--accent); margin-bottom: 22px; }
.quote p { font: 700 clamp(19px, 1.6vw, 23px)/1.4 var(--f-head); letter-spacing: -.01em; }
.quote footer { margin-top: 26px; font: 600 14px/1.4 var(--f-label); letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.quote footer b { color: #fff; display: block; }
.sample-note { margin-top: 40px; font: 500 13px/1.4 var(--f-label); letter-spacing: .14em; text-transform: uppercase; color: #6d6d6d; }
@media (max-width: 900px) {
  .quotes { grid-template-columns: 1fr; }
  .quote, .quote + .quote { padding: 36px 0; border-left: 0; border-bottom: 1px solid var(--ink-3); }
}

/* ---------------------------------------------------------------- quote form */
.quote-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font: 700 14px/1 var(--f-label); letter-spacing: .16em; text-transform: uppercase; color: var(--ink); }
.field label i { color: var(--accent); font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 56px; padding: 14px 16px; border: 2px solid #cfcfcb; border-radius: 0;
  background: #fff; color: var(--ink); font-size: 17px; transition: border-color .15s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 18px; padding-right: 48px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #9a9a96; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field .err { display: none; font-size: 14px; color: #B03A00; font-weight: 600; }
.field.bad input, .field.bad select, .field.bad textarea { border-color: #B03A00; }
.field.bad .err { display: block; }
.form .submit { grid-column: 1 / -1; margin-top: 10px; }
.form .submit .btn { width: 100%; min-height: 76px; font-size: 19px; }
.form .fine { grid-column: 1 / -1; font-size: 14px; color: var(--mute-2); }
.form-done { display: none; border: 3px solid var(--ink); padding: 44px 40px; background: #fff; }
.form-done h3 { font-size: 34px; font-weight: 900; margin-bottom: 14px; }
.form-done p { color: var(--mute-2); }
.sent .form { display: none; }
.sent .form-done { display: block; }
.trust { display: grid; gap: 0; background: var(--ink); color: #fff; }
.trust .t { padding: 34px 36px; border-bottom: 1px solid var(--ink-3); }
.trust .big { font: 900 clamp(56px, 6vw, 84px)/.9 var(--f-head); letter-spacing: -.04em; }
.trust .big sup { color: var(--accent); font-size: .5em; vertical-align: top; position: relative; top: .1em; margin-left: 2px; }
.trust .cap { margin-top: 12px; font: 600 15px/1.3 var(--f-label); letter-spacing: .18em; text-transform: uppercase; color: var(--mute); }
.badge { display: flex; align-items: center; gap: 18px; padding: 30px 36px; }
.badge .seal { flex: none; width: 76px; height: 76px; border: 3px solid var(--accent); display: grid; place-items: center; outline: 1px solid var(--accent); outline-offset: 4px; }
.badge .seal svg { width: 38px; height: 38px; color: var(--accent); }
.badge b { display: block; font: 900 22px/1.05 var(--f-head); text-transform: uppercase; letter-spacing: -.01em; }
.badge span { font: 600 14px/1.3 var(--f-label); letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.trust .call { padding: 30px 36px 36px; border-top: 1px solid var(--ink-3); }
.trust .call a { font: 900 28px/1 var(--f-head); text-decoration: none; letter-spacing: -.02em; }
.trust .call a:hover { color: var(--accent); }
@media (max-width: 980px) { .quote-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .form { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- footer */
.footer { background: #0b0b0b; padding: 72px 0 36px; border-top: 1px solid var(--ink-3); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { font: 700 14px/1 var(--f-label); letter-spacing: .2em; text-transform: uppercase; color: var(--mute); margin-bottom: 20px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { text-decoration: none; color: #d6d6d6; }
.footer a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--accent); }
.footer .brand { margin-bottom: 20px; }
.footer p { color: var(--mute); font-size: 15px; max-width: 34ch; }
.footer-base { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--ink-3); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #777; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- CTA band (shared) */
.cta-band { background: var(--accent); color: #fff; padding: clamp(64px, 8vw, 110px) 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(38px, 5vw, 68px); max-width: 16ch; }
.cta-band p { margin-top: 16px; font-size: 19px; max-width: 46ch; color: #ffe9dc; }
.cta-band .btn { --bg: var(--ink); --bd: var(--ink); }
.cta-band .btn:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }
