@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ---- Variables ---- */
:root {
  --black: #000;
  --ink:   #0A0A0A;
  --red:   #BD0000;
  --red-h: #D40000;
  --white: #fff;
  --silver: #9A9A9A;
  --paper: #EDEBE7;
  --stroke: #242424;
  --stroke-p: #D0CBC4;
  --f: 'Montserrat', system-ui, sans-serif;
  --mono: ui-monospace, 'SF Mono', monospace;
  --max: 1400px;
  --g: clamp(24px, 5vw, 80px);
  --nav-h: 64px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f); background: var(--ink); color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: color .15s; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--f); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--g); }
.section { padding: 110px 0; }
.section-sm { padding: 72px 0; }
.bg-paper { background: var(--paper); color: var(--black); }
.bg-black { background: var(--black); }

/* ---- NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: var(--black);
  border-bottom: 1.5px solid var(--red);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--g);
  height: 100%; display: flex; align-items: center; justify-content: center; gap: 36px;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo svg { display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--white);
  padding: 8px 0; position: relative; white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 100%;
  height: 2px; background: var(--red);
  transition: right .25s ease;
}
.nav-link:hover { color: var(--red); }
.nav-link:hover::after { right: 0; }
.nav-link.active { color: var(--red); }
.nav-link.active::after { right: 0; }
.nav-cta {
  margin-left: auto; flex-shrink: 0;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 12px 22px;
  background: var(--red); color: var(--white);
  border-radius: 3px; transition: background .15s; white-space: nowrap;
}
.nav-cta:hover { background: var(--red-h); color: var(--white); }
.nav-toggle {
  display: none; background: transparent; border: 0;
  color: white; font-size: 26px; cursor: pointer; margin-left: auto; line-height: 1;
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 0; position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--black); padding: 16px var(--g) 24px;
    border-bottom: 1px solid var(--red);
  }
  .nav.open .nav-link { padding: 12px 0; border-bottom: 1px solid var(--stroke); width: 100%; }
  .nav.open .nav-cta {
    display: block; position: absolute;
    top: calc(var(--nav-h) + 290px); left: var(--g);
  }
}

/* ---- EYEBROW ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red); margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--red); flex-shrink: 0; }
.sec-num {
  display: block; font-family: var(--mono);
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red); margin-bottom: 16px;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh; background: var(--ink);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding-bottom: 80px; padding-top: 80px;
}
.hero-inner { position: relative; z-index: 3; }

/* Brand diagonal lines — hero background mark */
.hero-mark {
  position: absolute;
  top: -5%; right: 8%;
  width: 38%; height: 110%;
  z-index: 1; pointer-events: none; opacity: .55;
}
.hero-mark svg { width: 100%; height: 100%; }

/* Mosaic panels (home only) */
.hero-mosaic {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 44%; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: 10px; padding: 10px 0 10px 10px;
}
.hm-tile { position: relative; overflow: hidden; }
.hm-tile:first-child { grid-row: 1 / 3; }
.pm1 { background: linear-gradient(140deg,#1a0000,#000); }
.pm1::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(108deg,transparent 0 18%,rgba(189,0,0,.3) 18% 18.3%,transparent 18.3% 36%);
}
.pm2 { background: radial-gradient(circle at 65% 75%,rgba(189,0,0,.45) 0%,transparent 55%),#0A0A0A; }
.pm2::after { content: ''; position: absolute; inset: 18% 22%; border: 1px solid rgba(189,0,0,.35); }
.pm3 { background: #070707; }
.pm3::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(to bottom,transparent 0 46px,rgba(189,0,0,.13) 46px 47px);
}
@media (max-width: 1100px) { .hero-mosaic { display: none; } }

/* Hero logo (home) */
.hero-logo { width: min(480px, 68vw); margin-bottom: 36px; display: block; }
.hero-logo svg { width: 100%; height: auto; }

/* Hero headline */
.hero-h {
  font-size: clamp(52px, 8vw, 116px);
  font-weight: 900; text-transform: uppercase;
  line-height: .93; letter-spacing: -.025em; margin-bottom: 28px;
}
.hero-h .red { color: var(--red); }

/* Hero body */
.hero-body {
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.65;
  color: var(--silver); max-width: 50ch; font-weight: 400;
}

/* Minimal hero (news) */
.hero--minimal { min-height: 78vh; }

/* ---- MARQUEE ---- */
.marquee {
  overflow: hidden; border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke); padding: 16px 0; background: var(--black);
}
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: marquee 38s linear infinite; will-change: transform;
}
.marquee-item {
  font-size: clamp(26px, 3.5vw, 48px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.02em;
  display: inline-flex; align-items: center; gap: 56px; flex-shrink: 0;
}
.marquee-item.outline { color: transparent; -webkit-text-stroke: 1.5px var(--white); }
.m-dot { width: 11px; height: 11px; background: var(--red); display: inline-block; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- BIG INTRO (manifesto) ---- */
.big-intro { display: grid; grid-template-columns: 220px 1fr; gap: 80px; align-items: start; }
.big-intro-label { position: sticky; top: calc(var(--nav-h) + 32px); }
.big-intro-body p {
  font-size: clamp(17px, 1.7vw, 22px); line-height: 1.6;
  color: var(--white); font-weight: 400; margin-bottom: 1.1em;
}
.big-intro-body p:last-child { color: var(--silver); }
@media (max-width: 800px) {
  .big-intro { grid-template-columns: 1fr; gap: 28px; }
  .big-intro-label { position: static; }
}

/* Triple-line decoration */
.decor-triple { display: flex; flex-direction: column; gap: 5px; margin-top: 24px; }
.decor-triple span { display: block; height: 2px; background: var(--red); }
.decor-triple span:nth-child(1) { width: 56px; }
.decor-triple span:nth-child(2) { width: 44px; }
.decor-triple span:nth-child(3) { width: 68px; }

/* ---- SERVICE SUMMARY CARDS ---- */
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--stroke);
  border: 1px solid var(--stroke);
}
.svc-card {
  background: var(--ink); padding: 44px 36px;
  display: flex; flex-direction: column; gap: 0;
  transition: background .2s; position: relative;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 36px; right: 36px;
  height: 2px; background: var(--red);
  transform: scaleX(.28); transform-origin: left;
  transition: transform .28s ease;
}
.svc-card:hover { background: #111; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card-num { font-family: var(--mono); font-size: 11px; color: var(--red); letter-spacing: .22em; text-transform: uppercase; margin-bottom: 20px; }
.svc-card h3 { font-size: 24px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; line-height: 1.1; margin-bottom: 14px; }
.svc-card > p { font-size: 14px; line-height: 1.65; color: var(--silver); margin-bottom: 20px; flex: 1; }
.svc-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.svc-card li { font-size: 13px; color: #6a6a6a; padding-left: 20px; position: relative; line-height: 1.5; }
.svc-card li::before { content: ''; position: absolute; left: 0; top: 9px; width: 11px; height: 1.5px; background: var(--red); }
.svc-link {
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--white); display: inline-flex; align-items: center; gap: 8px;
  padding-top: 20px; border-top: 1px solid var(--stroke); margin-top: auto;
  transition: gap .15s, color .15s;
}
.svc-link::after { content: '→'; }
.svc-card:hover .svc-link { color: var(--red); gap: 12px; }
@media (max-width: 800px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---- QUOTE + INLINE VALUES ---- */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 800px) { .split-2 { grid-template-columns: 1fr; gap: 52px; } }

.quote { font-size: clamp(22px, 2.6vw, 38px); font-weight: 700; line-height: 1.2; letter-spacing: -.01em; max-width: 22ch; }
.quote-mark { color: var(--red); font-size: 1.4em; line-height: 0; vertical-align: -.2em; margin-right: 4px; }
.quote-attr {
  margin-top: 24px; font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 12px;
}
.quote-attr::before { content: ''; width: 26px; height: 1.5px; background: var(--red); }

.vals { display: flex; flex-direction: column; }
.val-item { display: flex; align-items: baseline; gap: 20px; padding: 16px 0; border-top: 1px solid var(--stroke); }
.val-item:last-child { border-bottom: 1px solid var(--stroke); }
.val-num { font-family: var(--mono); font-size: 11px; color: var(--red); letter-spacing: .22em; flex-shrink: 0; width: 22px; }
.val-name { font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: -.005em; }

/* ---- ABOUT: INTRO COLS ---- */
.about-intro-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.about-intro-cols p { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.7; color: var(--silver); font-weight: 400; }
@media (max-width: 700px) { .about-intro-cols { grid-template-columns: 1fr; } }

/* ---- ABOUT: MISSION / VISION ---- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 56px; }
.mv-item .mv-label { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .22em; color: var(--red); text-transform: uppercase; display: block; margin-bottom: 20px; }
.mv-item p { font-size: clamp(18px, 1.9vw, 26px); line-height: 1.6; color: var(--silver); font-weight: 400; }
@media (max-width: 700px) { .mv-grid { grid-template-columns: 1fr; } }

/* ---- ABOUT: FULL VALUES LIST ---- */
.values-list { display: flex; flex-direction: column; margin-top: 52px; }
.value-row { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 32px 0; border-top: 1px solid var(--stroke); }
.value-row:last-child { border-bottom: 1px solid var(--stroke); }
.value-num { font-family: var(--mono); font-size: 11px; color: var(--red); letter-spacing: .22em; padding-top: 4px; }
.value-content h4 { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 10px; }
.value-content p { font-size: 15px; line-height: 1.65; color: var(--silver); max-width: 68ch; font-weight: 400; }

/* ---- FOUNDERS ---- */
.founders-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.founder-card { background: var(--white); border-radius: 4px; overflow: hidden; border: 1px solid var(--stroke-p); border-top: 3px solid var(--red); transition: transform .2s; }
.founder-card:hover { transform: translateY(-5px); }
.founder-portrait { aspect-ratio: 1/1; position: relative; overflow: hidden; }
.founder-initials { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 24px; font-size: 72px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -.03em; }
.fp-bw { background: linear-gradient(180deg,#1a1a1a 0%,#8A0000 100%); }
.fp-ls { background: linear-gradient(180deg,#1a0000 0%,#BD0000 100%); }
.fp-rw { background: linear-gradient(180deg,#1a1230 0%,#8A0020 100%); }
.founder-body { padding: 20px 24px 26px; }
.founder-role { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 6px; }
.founder-name { font-size: 22px; font-weight: 800; color: var(--black); text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 18px; }
.founder-link { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 6px; transition: gap .15s; }
.founder-link:hover { color: var(--red); gap: 10px; }
.founder-link::after { content: '↗ →'; }
@media (max-width: 800px) { .founders-grid { grid-template-columns: 1fr; } }

/* ---- PROCESS STEPS ---- */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--stroke); }
.process-step { padding: 52px 36px; border-right: 1px solid var(--stroke); }
.process-step:last-child { border-right: 0; }
.process-num { font-size: 68px; font-weight: 900; color: var(--red); line-height: 1; letter-spacing: -.03em; margin-bottom: 28px; }
.process-step h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px; }
.process-step p { font-size: 14px; line-height: 1.65; color: var(--silver); font-weight: 400; }
@media (max-width: 800px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(3), .process-step:nth-child(4) { border-top: 1px solid var(--stroke); }
  .process-step:nth-child(4) { border-right: 0; }
}

/* ---- SERVICE CATALOG TABS ---- */
.catalog-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 52px; }
.catalog-header h2 { font-size: clamp(30px, 3.8vw, 54px); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; line-height: 1; color: var(--black); margin-top: 12px; }
.catalog-header p { font-size: 15px; line-height: 1.65; color: #666; max-width: 36ch; padding-top: 6px; font-weight: 400; }
@media (max-width: 800px) { .catalog-header { grid-template-columns: 1fr; gap: 20px; } }

.tabs { display: flex; border-bottom: 2px solid var(--stroke-p); margin-bottom: 0; }
.tab-btn {
  font-family: var(--f); font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; padding: 14px 22px; background: transparent; border: 0;
  cursor: pointer; color: #888; position: relative; transition: color .15s;
}
.tab-btn::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 100%; height: 2px; background: var(--red); transition: right .22s ease; }
.tab-btn:hover { color: var(--black); }
.tab-btn.active { color: var(--black); }
.tab-btn.active::after { right: 0; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.svc-row { border-top: 1px solid var(--stroke-p); padding: 28px 0; }
.svc-row:last-child { border-bottom: 1px solid var(--stroke-p); }
.svc-row h4 { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--black); margin-bottom: 8px; }
.svc-row p { font-size: 14px; line-height: 1.65; color: #666; max-width: 58ch; font-weight: 400; }
.svc-row ul { font-size: 14px; line-height: 1.65; color: #666; max-width: 58ch; font-weight: 400; padding-left: 18px; margin: 0; }

/* ---- ARTICLE LIST ---- */
.news-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 0; flex-wrap: wrap; }
.filter-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 16px; border: 1.5px solid var(--stroke); border-radius: 999px;
  background: transparent; color: var(--silver); cursor: pointer; transition: all .15s;
}
.filter-pill:hover { border-color: var(--red); color: var(--white); }
.filter-pill.active { background: var(--red); border-color: var(--red); color: var(--white); }

.article-row {
  display: grid; grid-template-columns: 200px 1fr 200px;
  gap: 40px; align-items: baseline;
  padding: 36px 0; border-top: 1px solid var(--stroke);
  color: var(--white); transition: padding-left .15s;
  cursor: pointer;
}
.article-row:last-child { border-bottom: 1px solid var(--stroke); }
.article-row:hover { padding-left: 14px; }
.article-row:hover .article-title { color: var(--red); }
.article-byline { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); line-height: 1.6; }
.article-title { font-size: clamp(18px, 2vw, 26px); font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; line-height: 1.1; margin-bottom: 10px; transition: color .15s; }
.article-desc { font-size: 14px; line-height: 1.65; color: var(--silver); max-width: 58ch; font-weight: 400; }
.article-meta { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #555; text-align: right; line-height: 2; }
@media (max-width: 800px) { .article-row { grid-template-columns: 1fr; gap: 10px; } .article-meta { text-align: left; } }

/* ---- CONTACT FORM ---- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 100px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 60px; } }

.form-field { margin-bottom: 32px; }
.form-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: transparent; border: 0;
  border-bottom: 1px solid var(--stroke); color: var(--white);
  font-family: var(--f); font-size: 16px; font-weight: 400;
  padding: 10px 0; outline: 0; transition: border-color .15s; -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-bottom-color: var(--red); }
.form-input::placeholder, .form-textarea::placeholder { color: #3a3a3a; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select option { background: #111; }
.check-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.check-pill input[type="checkbox"] { display: none; }
.check-pill span {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 14px; border: 1.5px solid var(--stroke); border-radius: 999px;
  color: var(--silver); cursor: pointer; display: inline-block; transition: all .15s;
}
.check-pill:hover span { border-color: var(--red); color: var(--white); }
.check-pill input:checked + span { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-submit {
  font-family: var(--f); font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; padding: 18px 40px; background: var(--red);
  color: var(--white); border: 0; border-radius: 3px; cursor: pointer; transition: background .15s; margin-top: 8px;
}
.btn-submit:hover { background: var(--red-h); }

.contact-info h3 { font-size: clamp(28px, 3vw, 40px); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; margin-bottom: 36px; }
.ci-item { padding: 20px 0; border-top: 1px solid var(--stroke); }
.ci-item:last-child { border-bottom: 1px solid var(--stroke); }
.ci-key { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 6px; }
.ci-val { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.ci-val a { color: var(--white); }
.ci-val a:hover { color: var(--red); }

/* ---- CTA BAND ---- */
.cta-band { background: var(--red); padding: 100px 0; position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(40px, 5.5vw, 80px); font-weight: 900; text-transform: uppercase; letter-spacing: -.03em; line-height: .95; color: var(--white); max-width: 18ch; margin-bottom: 32px; }
.cta-band p { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.85); max-width: 54ch; margin-bottom: 40px; font-weight: 400; }
.btn-dark { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: 18px 36px; background: var(--black); color: var(--white); border-radius: 3px; transition: background .15s; }
.btn-dark:hover { background: #222; color: var(--white); }

/* ---- FOOTER ---- */
.footer { background: var(--black); border-top: 1.5px solid var(--red); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--stroke); align-items: start; }
.footer-logo { display: block; margin-bottom: 20px; }
.footer-motto { font-size: 14px; line-height: 1.65; color: var(--silver); max-width: 28ch; font-weight: 400; }
.footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--silver); font-weight: 400; }
.footer-col a:hover { color: var(--white); }
.footer-sub { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 11px; font-family: var(--mono); letter-spacing: .1em; text-transform: uppercase; color: #444; }
.footer-sub .red { color: var(--red); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- SEC HEADER ---- */
.sec-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.sec-title h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; line-height: 1; margin-top: 12px; }
