/* ============================================================
   GreenEdge Solutions — Design System
   SDVOSB · Management Consulting & Logistics
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette (from client Colors.png) */
  --cream:      #F4E7C5;
  --blue:       #468CF5;
  --lavender:   #E9E5FB;
  --warm-gray:  #797773;

  /* Derived neutrals (warm) */
  --ink:        #14161B;
  --ink-2:      #2B2E36;
  --paper:      #FCFBF7;
  --paper-2:    #F6F1E6;
  --cream-soft: #FAF2DC;

  /* Derived blues */
  --blue-600:   #2E6FD8;
  --blue-deep:  #112F5C;
  --blue-ink:   #0A2240;

  /* Functional */
  --accent:       var(--blue);
  --accent-strong:var(--blue-600);
  --line:         rgba(20, 22, 27, 0.10);
  --line-strong:  rgba(20, 22, 27, 0.18);
  --line-light:   rgba(255, 255, 255, 0.14);

  /* Type */
  --font-display: "Space Grotesk", "Archivo", sans-serif;
  --font-body:    "IBM Plex Sans", system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --nav-h: 74px;
}

/* Accent emphasis variants (driven by Tweaks) */
:root[data-accent="blue"]     { --accent: #2E6FD8; --accent-strong: #1F58BC; }
:root[data-accent="balanced"] { --accent: #468CF5; --accent-strong: #2E6FD8; }
:root[data-accent="cream"]    { --accent: #9A7B2E; --accent-strong: #7E6320; }

/* Font variants (driven by Tweaks) */
:root[data-font="archivo"] { --font-display: "Archivo", sans-serif; }
:root[data-font="sora"]    { --font-display: "Sora", sans-serif; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent-strong);
}
.eyebrow.on-dark { color: #8FB8FF; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.lede { font-size: 19px; color: var(--ink-2); max-width: 60ch; text-wrap: pretty; }
.muted { color: var(--warm-gray); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-strong); }
.btn--ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--on-dark { background: #fff; color: var(--ink); }
.btn--on-dark:hover { background: var(--cream); }
.btn--ghost-dark { background: transparent; border-color: var(--line-light); color: #fff; }
.btn--ghost-dark:hover { border-color: #fff; }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- Top navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--ink);
  display: grid; place-items: center;
  position: relative; overflow: hidden; flex: none;
}
.brand__mark::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, transparent 46%, var(--cream) 46% 54%, transparent 54%),
    linear-gradient(135deg, transparent 62%, var(--blue) 62% 70%, transparent 70%);
}
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.brand__name span { color: var(--accent-strong); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav__link:hover { color: var(--ink); background: rgba(20,22,27,.05); }
.nav__link.is-active { color: var(--accent-strong); background: color-mix(in srgb, var(--accent) 12%, transparent); }
.nav__cta { margin-left: 10px; }
.nav__burger { display: none; }

/* ---------- Page routing ---------- */
.page { display: none; animation: fade .4s ease; }
.page.is-active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Home: shared hero scaffolding ---------- */
.hero-variant { display: none; }
:root[data-home="a"] .hero-a,
:root[data-home="b"] .hero-b,
:root[data-home="c"] .hero-c { display: block; }

/* HERO A — Federal Authority (dark blue) */
.hero-a {
  background: radial-gradient(120% 130% at 80% 0%, var(--blue-deep) 0%, var(--blue-ink) 58%, #07182e 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-a__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
  padding: 92px 0 100px;
}
.hero-a h1 { font-size: clamp(40px, 6vw, 66px); color: #fff; }
.hero-a h1 em { font-style: normal; color: var(--cream); }
.hero-a__lede { color: #C9D6EA; font-size: 19px; margin-top: 22px; max-width: 48ch; text-wrap: pretty; }
.hero-a__cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-a__badges { display: flex; gap: 22px; margin-top: 44px; flex-wrap: wrap; }
.hero-a__badge { display: flex; flex-direction: column; gap: 2px; }
.hero-a__badge b { font-family: var(--font-display); font-size: 26px; }
.hero-a__badge span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #8FB8FF; }

/* credential card */
.cred-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(4px);
}
.cred-card__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.14); }
.cred-card__top span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #8FB8FF; }
.cred-dot { width: 8px; height: 8px; border-radius: 50%; background: #57d98a; box-shadow: 0 0 0 4px rgba(87,217,138,.18); }
.cred-row { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.cred-row:last-child { border-bottom: 0; }
.cred-row dt { font-size: 13px; color: #9FB2CC; }
.cred-row dd { margin: 0; font-family: var(--font-mono); font-size: 14px; color: #fff; }

/* HERO B — Editorial Clean (cream/paper) */
.hero-b { background: var(--paper); }
.hero-b__inner { padding: 104px 0 80px; }
.hero-b__top { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.hero-b__rule { flex: 1; height: 1px; background: var(--line); }
.hero-b h1 { font-size: clamp(44px, 8vw, 104px); letter-spacing: -0.035em; max-width: 14ch; }
.hero-b h1 em { font-style: normal; color: var(--accent-strong); }
.hero-b__row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: end; }
.hero-b__lede { font-size: 21px; color: var(--ink-2); max-width: 42ch; text-wrap: pretty; }
.hero-b__meta { display: flex; flex-direction: column; gap: 18px; }
.hero-b__metaitem { display: flex; gap: 14px; align-items: baseline; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.hero-b__metaitem b { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: var(--accent-strong); white-space: nowrap; }
.hero-b__metaitem span { font-size: 15px; color: var(--ink-2); }
.hero-b__cta { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

/* HERO C — Systematic Grid (tech-forward) */
.hero-c {
  background:
    linear-gradient(var(--paper-2), var(--paper-2)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 40px);
  background-blend-mode: normal;
  position: relative;
}
.hero-c::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(20,22,27,.045) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(20,22,27,.045) 0 1px, transparent 1px 44px);
  pointer-events: none;
}
.hero-c__inner { position: relative; padding: 84px 0 76px; }
.hero-c__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip {
  font-family: var(--font-mono); font-size: 12px;
  padding: 7px 13px; border-radius: 6px;
  background: #fff; border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; gap: 8px;
}
.chip b { color: var(--accent-strong); font-weight: 600; }
.chip .cred-dot { width: 7px; height: 7px; background: #2bb673; box-shadow: 0 0 0 3px rgba(43,182,115,.16); }
.hero-c h1 { font-size: clamp(40px, 6.5vw, 78px); max-width: 16ch; }
.hero-c h1 em { font-style: normal; color: var(--accent-strong); }
.hero-c__lede { font-size: 19px; color: var(--ink-2); max-width: 52ch; margin-top: 24px; text-wrap: pretty; }
.hero-c__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-c__matrix { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; background: #fff; }
.hero-c__cell { padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-c__cell:nth-child(4n) { border-right: 0; }
.hero-c__cell b { display: block; font-family: var(--font-display); font-size: 30px; letter-spacing: -.02em; }
.hero-c__cell span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--warm-gray); }

/* ---------- Generic section header ---------- */
.sec-head { max-width: 64ch; margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 14px; }
.sec-head p { margin-top: 16px; }

/* ---------- Capabilities ---------- */
.caps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cap {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.cap:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: 0 18px 40px -28px rgba(17,47,92,.4); }
.cap__num { font-family: var(--font-mono); font-size: 13px; color: var(--accent-strong); letter-spacing: .1em; }
.cap h3 { font-size: 25px; margin: 16px 0 12px; }
.cap p { color: var(--ink-2); }
.cap__list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.cap__list li { font-family: var(--font-mono); font-size: 12px; padding: 6px 11px; border-radius: 6px; background: var(--paper-2); color: var(--ink-2); }

/* ---------- Approach / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { padding-top: 24px; border-top: 2px solid var(--ink); }
.step b { font-family: var(--font-mono); font-size: 13px; color: var(--accent-strong); }
.step h3 { font-size: 21px; margin: 14px 0 10px; }
.step p { color: var(--ink-2); font-size: 16px; }

/* ---------- Stat band ---------- */
.band { background: var(--ink); color: #fff; }
.band--cream { background: var(--cream); color: var(--ink); }
.band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.band__item b { display: block; font-family: var(--font-display); font-size: clamp(34px, 4vw, 50px); letter-spacing: -.02em; }
.band__item span { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }

/* ---------- Rolling ticker (the "wheel" separator) ---------- */
.band--ticker { padding: 0; overflow: hidden; }
.ticker { display: flex; width: max-content; }
.ticker__track {
  display: flex; align-items: center; flex: 0 0 auto;
  padding: 28px 0;
  animation: ticker-roll 42s linear infinite;
  will-change: transform;
}
.band--ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker-roll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.ticker__item {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.ticker__star { color: var(--cream); margin: 0 28px; font-size: 12px; transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: radial-gradient(120% 160% at 10% 0%, var(--blue-deep), var(--blue-ink));
  color: #fff; border-radius: var(--radius); padding: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(28px, 3.4vw, 40px); max-width: 18ch; }
.cta-band p { color: #C9D6EA; margin-top: 12px; }

/* ---------- Team ---------- */
.page-head { background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 72px 0 60px; }
.page-head h1 { font-size: clamp(36px, 5vw, 58px); margin-top: 14px; }
.page-head p { margin-top: 16px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-grid--four { grid-template-columns: repeat(4, 1fr); }
.member { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease; cursor: pointer; }
.member:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -32px rgba(17,47,92,.5); }
.member:hover .member__photo img { filter: brightness(1.06); }
.member.is-swapping { opacity: 0; transform: translateY(4px); }
.member__photo { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--lavender); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.member__role-tag { position: absolute; left: 14px; top: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; background: rgba(10,34,64,.82); color: #fff; padding: 6px 11px; border-radius: 6px; backdrop-filter: blur(4px); }
.member__body { padding: 22px 22px 26px; }
.member__body h3 { font-size: 22px; }
.member__role { color: var(--accent-strong); font-weight: 600; font-size: 14px; margin-top: 4px; }
.member__bio { color: var(--ink-2); font-size: 15px; margin-top: 14px; }
.lead-feature { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; background: var(--ink); color: #fff; border-radius: var(--radius); overflow: hidden; transition: opacity .22s ease, transform .22s ease; }
.lead-feature.is-swapping { opacity: 0; transform: scale(0.985); }
.lead-feature__photo { aspect-ratio: 1/1; }
.lead-feature__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.lead-feature__body { padding: 44px 48px 44px 8px; }
.lead-feature__body h2 { font-size: clamp(28px, 3.4vw, 42px); color: #fff; }
.lead-feature__body .member__role { color: var(--cream); font-size: 16px; margin-top: 6px; }
.lead-feature__body p { color: #C9D6EA; margin-top: 20px; max-width: 52ch; }

/* ---------- Projects ---------- */
.notice {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--lavender); border: 1px solid color-mix(in srgb, var(--blue) 25%, transparent);
  border-radius: var(--radius-sm); padding: 16px 18px; font-size: 14.5px; color: var(--ink-2);
  margin-bottom: 40px;
}
.notice b { color: var(--ink); }
.notice .dotmark { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); margin-top: 7px; flex: none; }
.proj-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.proj { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; display: flex; flex-direction: column; transition: border-color .2s ease, transform .2s ease, box-shadow .2s; }
.proj:hover { transform: translateY(-3px); box-shadow: 0 20px 46px -30px rgba(17,47,92,.45); border-color: var(--line-strong); }
.proj__img { aspect-ratio: 16/9; position: relative; overflow: hidden; background:
  repeating-linear-gradient(135deg, var(--paper-2) 0 14px, #efe8d6 14px 28px); }
.proj__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); transition: transform .5s ease; }
.proj:hover .proj__img img { transform: scale(1.04); }
.proj__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,34,64,.05) 35%, rgba(10,34,64,.45)); }
.proj__img-label { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--warm-gray); }
.proj__tag { position: absolute; left: 16px; top: 16px; z-index: 2; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; background: #fff; border: 1px solid var(--line-strong); padding: 6px 11px; border-radius: 6px; }
.proj__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.proj__body h3 { font-size: 22px; }
.proj__client { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; color: var(--accent-strong); text-transform: uppercase; }
.proj__body p { color: var(--ink-2); font-size: 15px; }
.proj__stats { display: flex; gap: 28px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.proj__stats div b { display: block; font-family: var(--font-display); font-size: 24px; }
.proj__stats div span { font-size: 12px; color: var(--warm-gray); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.cinfo { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.cinfo__icon { width: 64px; height: 64px; border-radius: 14px; background: var(--paper-2); display: grid; place-items: center; flex: none; font-family: var(--font-mono); font-size: 30px; line-height: 1; color: var(--accent-strong); }
.cinfo h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--warm-gray); font-weight: 500; }
.cinfo p { font-size: 17px; margin-top: 5px; }
.cinfo a:hover { color: var(--accent-strong); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--ink-2); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: 15px;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); background: var(--paper);
  color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__note { font-size: 13px; color: var(--warm-gray); margin-top: 8px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success .ok { width: 56px; height: 56px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 15%, transparent); color: var(--accent-strong); display: grid; place-items: center; margin: 0 auto 18px; font-size: 26px; }
.form.sent .form-body { display: none; }

/* ---------- Home feature image band ---------- */
.img-feature { position: relative; height: 440px; overflow: hidden; background: var(--blue-ink); }
.img-feature img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.02) brightness(.82); }
.img-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,34,64,.9) 0%, rgba(10,34,64,.55) 50%, rgba(17,47,92,.3) 100%); }
.img-feature__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; z-index: 2; }
.img-feature__overlay h2 { font-size: clamp(30px, 4.4vw, 52px); color: #fff; max-width: 16ch; margin-top: 14px; }
.img-feature__overlay p.lede { color: #C9D6EA; margin-top: 16px; }
@media (max-width: 680px) { .img-feature { height: 360px; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #C9D0DA; padding: 64px 0 36px; margin-top: 0; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { margin-top: 16px; font-size: 14px; color: #97A0AD; max-width: 34ch; }
.footer h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #6E7785; margin: 0 0 16px; font-weight: 500; }
.footer__col a, .footer__col p { display: block; font-size: 14.5px; color: #C9D0DA; padding: 5px 0; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { font-size: 13px; color: #6E7785; }
.footer__sdvosb { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); border: 1px solid rgba(244,231,197,.3); padding: 7px 13px; border-radius: 7px; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-a__grid, .hero-b__row, .contact-grid, .lead-feature { grid-template-columns: 1fr; }
  .lead-feature__photo { aspect-ratio: 16/10; }
  .lead-feature__body { padding: 36px; }
  .caps, .proj-grid { grid-template-columns: 1fr; }
  .steps, .team-grid, .team-grid--four { grid-template-columns: 1fr 1fr; }
  .band__grid { grid-template-columns: 1fr 1fr; }
  .hero-c__matrix { grid-template-columns: 1fr 1fr; }
  .hero-c__cell:nth-child(4n) { border-right: 1px solid var(--line); }
  .hero-c__cell:nth-child(2n) { border-right: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 14px 20px 18px;
  }
  .nav__links.is-open .nav__cta { margin: 8px 0 0; text-align: center; justify-content: center; }
  .nav__burger { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
  .nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
  .steps, .team-grid, .team-grid--four, .band__grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .cta-band, .form { padding: 32px 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
}
