/* ── Tokens ───────────────────────────────────────────────────────────── */
:root {
  --cream: #FBF6EC;
  --ink: #1A1A1A;
  --tangerine: #E8542B;
  --stone: #8B8275;
  --hairline: rgba(26,26,26,0.12);
  --hairline-light: rgba(251,246,236,0.15);
  --gutter: clamp(20px, 5vw, 28px);
  --max: 1200px;
  --max-narrow: 880px;
  --radius: 999px;
  --tap: 44px;
}

/* ── Reset & base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Helvetica Neue', Inter, system-ui, -apple-system, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--tangerine); color: var(--cream); }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }

/* ── Nav (shared across all pages) ────────────────────────────────────── */
nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--gutter);
  max-width: var(--max); margin: 0 auto;
  gap: clamp(20px, 3vw, 48px);
}
.brand {
  display: flex; align-items: center; gap: 14px;
  min-height: var(--tap);
  justify-self: center;
  grid-column: 2;
}
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--tangerine);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { font-size: 20px; font-weight: 800; letter-spacing: -0.4px; white-space: nowrap; }
.brand-text .dot { color: var(--tangerine); }

.nav-links {
  display: flex; gap: 32px;
  font-size: 13px; font-weight: 500;
  flex-wrap: nowrap;
}
.nav-links.nav-left { justify-self: end; grid-column: 1; }
.nav-links.nav-right { justify-self: start; grid-column: 3; }
.nav-links a { padding: 12px 0; transition: color 0.15s; position: relative; white-space: nowrap; }
.nav-links a:hover { color: var(--tangerine); }
.nav-links a.active { color: var(--tangerine); }

.nav-toggle {
  display: none;
  background: transparent; border: 0;
  width: var(--tap); height: var(--tap);
  align-items: center; justify-content: center;
  color: var(--ink);
  justify-self: start;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 1100px) {
  .nav-links { gap: 24px; font-size: 12px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; grid-column: 1; }
  body.menu-open { overflow: hidden; }
  body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark svg { width: 19px; height: 19px; }
  .brand-text { font-size: 17px; }
  /* On mobile: hamburger left, logo center, empty right slot */
  nav { grid-template-columns: var(--tap) 1fr var(--tap); }
  .brand { grid-column: 2; }
  nav::after { content: ""; display: block; grid-column: 3; }
}

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 100;
  display: flex; flex-direction: column;
  padding: 92px var(--gutter) 40px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.mobile-menu .close {
  position: absolute; top: 22px; right: var(--gutter);
  background: transparent; border: 0;
  width: var(--tap); height: var(--tap);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.mobile-menu .close svg { width: 24px; height: 24px; }
.mobile-menu a {
  font-size: 32px; font-weight: 800; letter-spacing: -0.7px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .menu-cta {
  margin-top: auto;
  background: var(--ink); color: var(--cream);
  padding: 18px; border-radius: var(--radius);
  font-size: 15px; font-weight: 500;
  text-align: center;
  border-bottom: 0;
}

/* ── Hero patterns ────────────────────────────────────────────────────── */
.hero {
  padding: clamp(48px, 9vw, 96px) var(--gutter) clamp(56px, 9vw, 96px);
  max-width: var(--max); margin: 0 auto;
  text-align: center;
}
.hero .eyebrow {
  font-size: 12px; letter-spacing: 4px;
  color: var(--tangerine); font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 800; letter-spacing: -2px;
  line-height: 1;
  max-width: 920px;
  margin: 0 auto;
}
.hero h1 .accent { color: var(--tangerine); }
.hero-sub {
  margin: clamp(20px, 3vw, 28px) auto 0;
  font-size: clamp(16px, 2vw, 20px);
  max-width: 680px;
  color: var(--ink); font-weight: 300;
  line-height: 1.6;
}
.hero-actions {
  margin-top: clamp(32px, 4vw, 40px);
  display: flex; gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--tangerine); color: var(--cream);
  padding: 14px 26px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  transition: transform 0.15s;
  display: inline-flex; align-items: center; min-height: var(--tap);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary {
  color: var(--ink);
  padding: 14px 6px;
  font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--ink);
  min-height: var(--tap);
  display: inline-flex; align-items: center;
}
.btn-inverse {
  background: var(--cream); color: var(--ink);
  padding: 14px 26px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center;
  min-height: var(--tap);
  margin-top: 20px;
  transition: transform 0.15s;
}
.btn-inverse:hover { transform: translateY(-1px); }
.btn-ghost-dark {
  color: var(--cream);
  padding: 14px 26px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  border: 1px solid rgba(251,246,236,0.4);
  display: inline-flex; align-items: center;
  min-height: var(--tap);
  transition: background 0.15s, color 0.15s;
}
.btn-ghost-dark:hover { background: var(--cream); color: var(--ink); }

/* ── Sections (default light) ─────────────────────────────────────────── */
.section {
  padding: clamp(72px, 11vw, 112px) var(--gutter);
  max-width: var(--max); margin: 0 auto;
  text-align: center;
}
.section-eyebrow {
  font-size: 12px; letter-spacing: 4px;
  color: var(--tangerine); font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section h2 {
  font-size: clamp(32px, 5.2vw, 52px);
  font-weight: 800; letter-spacing: -1.2px;
  line-height: 1.05;
  max-width: 760px;
  margin: 0 auto 20px;
}
.section h2 .accent { color: var(--tangerine); }
.section-sub {
  font-size: clamp(16px, 1.9vw, 18px);
  color: var(--stone);
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 56px);
  line-height: 1.65;
}

/* ── Services grid ────────────────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  text-align: left;
  margin: 0 auto;
  max-width: 1000px;
}
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }
.service {
  background: var(--cream);
  padding: clamp(32px, 5vw, 40px) clamp(28px, 4vw, 36px);
}
.service-num {
  font-size: 11px; letter-spacing: 2px;
  color: var(--tangerine); font-weight: 500;
  margin-bottom: 14px;
}
.service h3 {
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 12px; line-height: 1.2;
}
.service p { font-size: 15px; color: var(--ink); font-weight: 300; line-height: 1.6; }
.service .price { margin-top: 16px; font-size: 12px; color: var(--stone); letter-spacing: 0.3px; }

/* ── Approach (ink section) ───────────────────────────────────────────── */
.approach {
  background: var(--ink); color: var(--cream);
  border-radius: clamp(18px, 3vw, 28px);
  padding: clamp(56px, 9vw, 96px) clamp(28px, 5vw, 64px);
  max-width: calc(var(--max) - 32px);
  margin: clamp(28px, 5vw, 56px) auto;
  text-align: center;
}
.approach .section-eyebrow { color: var(--tangerine); }
.approach h2 { color: var(--cream); }
.approach .section-sub { color: rgba(251,246,236,0.7); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 32px);
  margin-top: clamp(40px, 6vw, 56px);
  text-align: left;
  max-width: 1000px;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; gap: 24px; } }
.step .num { font-size: 11px; letter-spacing: 2px; color: var(--tangerine); font-weight: 500; margin-bottom: 14px; }
.step h4 { font-size: 20px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 10px; }
.step p { font-size: 14px; color: rgba(251,246,236,0.7); line-height: 1.6; font-weight: 300; }

/* ── Who we sign ──────────────────────────────────────────────────────── */
.signs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 72px);
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 700px) { .signs-grid { grid-template-columns: 1fr; gap: 48px; } }
.signs-head { font-size: 12px; letter-spacing: 2px; margin-bottom: 22px; text-transform: uppercase; font-weight: 500; }
.signs-head.yes { color: var(--tangerine); }
.signs-head.no { color: var(--stone); }
.signs-list { list-style: none; }
.signs-list li {
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
  font-size: 16px;
  display: flex; gap: 14px; align-items: flex-start;
  line-height: 1.55;
}
.signs-list li:first-child { border-top: none; padding-top: 0; }
.signs-list .marker { color: var(--tangerine); font-weight: 800; flex-shrink: 0; width: 20px; }
.signs-list.no .marker { color: var(--stone); }

/* ── For brands (tangerine) ───────────────────────────────────────────── */
.brands-section {
  background: var(--tangerine); color: var(--cream);
  padding: clamp(72px, 11vw, 112px) var(--gutter);
  text-align: center;
}
.brands-inner {
  max-width: var(--max-narrow); margin: 0 auto;
}
.brands-section .section-eyebrow { color: var(--cream); opacity: 0.85; }
.brands-section h2 { color: var(--cream); }
.brands-section p {
  color: rgba(251,246,236,0.95);
  font-size: clamp(16px, 1.9vw, 18px);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 24px;
}

/* ── Journal ──────────────────────────────────────────────────────────── */
.journal { text-align: center; padding: clamp(72px, 11vw, 112px) var(--gutter); }
.journal h2 { margin: 0 auto 20px; }
.journal p { color: var(--stone); max-width: 520px; margin: 0 auto 36px; font-size: 16px; line-height: 1.6; }
.journal-form {
  max-width: 460px; margin: 0 auto;
  display: flex; gap: 8px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  flex-wrap: nowrap;
}
.journal-form input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: 0;
  font-size: 16px;
  padding: 10px 0;
  color: var(--ink); font-family: inherit;
  min-height: var(--tap);
}
.journal-form input::placeholder { color: var(--stone); }
.journal-form button {
  background: var(--tangerine); color: var(--cream);
  border: 0; padding: 10px 20px; border-radius: var(--radius);
  font-size: 13px; font-weight: 500; font-family: inherit;
  min-height: var(--tap); white-space: nowrap;
}

/* ── Contact (ink) ────────────────────────────────────────────────────── */
.contact {
  background: var(--ink); color: var(--cream);
  padding: clamp(80px, 12vw, 128px) var(--gutter);
  text-align: center;
}
.contact-inner { max-width: var(--max-narrow); margin: 0 auto; }
.contact .section-eyebrow { color: var(--tangerine); }
.contact h1, .contact h2 { color: var(--cream); font-size: clamp(40px, 8vw, 72px); line-height: 1; font-weight: 800; letter-spacing: -1.5px; }
.contact h1 .accent, .contact h2 .accent { color: var(--tangerine); }
.contact .lead {
  color: rgba(251,246,236,0.75);
  font-size: clamp(16px, 2vw, 19px);
  margin: 20px auto 0;
  max-width: 560px;
  line-height: 1.6;
}
.contact-cols {
  margin-top: clamp(48px, 7vw, 64px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  text-align: left;
}
@media (max-width: 700px) { .contact-cols { grid-template-columns: 1fr; text-align: center; } }
.contact-col h4 { font-size: 11px; letter-spacing: 2px; color: var(--tangerine); font-weight: 500; margin-bottom: 14px; text-transform: uppercase; }
.contact-col a {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--cream);
  display: inline-block;
  padding: 6px 0;
  word-break: break-word;
  transition: color 0.15s;
  min-height: var(--tap);
}
.contact-col a:hover { color: var(--tangerine); }
.contact-col p { color: rgba(251,246,236,0.55); font-size: 14px; margin-top: 6px; line-height: 1.5; }

/* ── Roster application form ──────────────────────────────────────────── */
.apply-section { background: var(--cream); }
.apply-section h2 { margin-bottom: 14px; }
.apply-section .section-sub { margin-bottom: clamp(40px, 5vw, 56px); }

.apply-form {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  display: flex; flex-direction: column;
  gap: clamp(20px, 2.5vw, 28px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.2vw, 24px);
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { width: 100%; }
.form-field label,
.form-field .label-static {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.form-field .req { color: var(--tangerine); margin-left: 2px; }
.form-field .hint {
  font-size: 13px;
  color: var(--stone);
  font-weight: 300;
  margin-top: -4px;
  margin-bottom: 4px;
  line-height: 1.4;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(26,26,26,0.18);
  border-radius: 8px;
  padding: 14px 16px;
  min-height: 50px;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}
.form-field textarea {
  resize: vertical;
  line-height: 1.55;
  min-height: 110px;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: rgba(26,26,26,0.35); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--tangerine);
  box-shadow: 0 0 0 3px rgba(232,84,43,0.12);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(26,26,26,0.35); }

.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid {
  border-color: var(--tangerine);
  background-color: rgba(232,84,43,0.04);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-top: 4px;
}
@media (max-width: 640px) {
  .checkbox-grid { grid-template-columns: 1fr; }
}
.checkbox {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 400;
  cursor: pointer;
  padding: 8px 0;
  min-height: var(--tap);
  text-transform: none;
  letter-spacing: 0;
}
.checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--tangerine);
  flex-shrink: 0;
  cursor: pointer;
}

/* Honeypot — visually + screen-reader hidden, but not display:none (bots skip those) */
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-consent {
  font-size: 13px !important;
  color: var(--stone) !important;
  line-height: 1.55;
  font-weight: 300;
  margin: 0 !important;
}
.form-consent a { color: var(--tangerine); text-decoration: underline; text-underline-offset: 3px; }

.form-actions {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 18px;
  margin-top: 8px;
}
#apply-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-status {
  font-size: 14px;
  color: var(--stone);
  font-weight: 400;
}
.form-status.success { color: #1f7a3a; font-weight: 500; }
.form-status.error { color: var(--tangerine); font-weight: 500; }

.apply-success {
  background: rgba(232,84,43,0.06);
  border: 1px solid rgba(232,84,43,0.2);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 40px);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.apply-success h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  color: var(--ink);
}
.apply-success p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 300;
  opacity: 0.85;
}

/* ── Lead capture popup ───────────────────────────────────────────────── */
.tcp-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(26, 26, 26, 0.7);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.tcp-popup-overlay.is-open { opacity: 1; }

.tcp-popup {
  background: var(--cream);
  border-radius: 14px;
  padding: clamp(32px, 5vw, 48px) clamp(28px, 4vw, 44px);
  max-width: 460px; width: 100%;
  position: relative;
  text-align: center;
  transform: translateY(12px);
  transition: transform 0.25s ease;
  box-shadow: 0 24px 60px -10px rgba(26, 26, 26, 0.35);
}
.tcp-popup-overlay.is-open .tcp-popup { transform: translateY(0); }

.tcp-popup-close {
  position: absolute; top: 14px; right: 14px;
  background: transparent; border: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--stone);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.tcp-popup-close:hover { background: rgba(26,26,26,0.06); color: var(--ink); }
.tcp-popup-close svg { width: 18px; height: 18px; }

.tcp-popup-mark {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
}
.tcp-popup-mark svg { width: 100%; height: 100%; }

.tcp-popup-eyebrow {
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500;
  color: var(--tangerine);
  margin-bottom: 12px;
}

.tcp-popup-title {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800; letter-spacing: -0.6px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}
.tcp-popup-title .accent { color: var(--tangerine); }

.tcp-popup-sub {
  font-size: 14px; line-height: 1.55;
  color: var(--ink); opacity: 0.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.tcp-popup-form { text-align: left; }

.tcp-popup-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.tcp-popup-field label {
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 600;
  color: var(--ink);
}
.tcp-popup-field input {
  font-family: inherit; font-size: 15px; font-weight: 400;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(26,26,26,0.18);
  border-radius: 8px;
  padding: 12px 14px; min-height: 46px;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none; appearance: none;
}
.tcp-popup-field input:focus {
  outline: none;
  border-color: var(--tangerine);
  box-shadow: 0 0 0 3px rgba(232, 84, 43, 0.12);
}

.tcp-hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.tcp-popup-submit {
  display: block; width: 100%;
  background: var(--ink); color: var(--cream);
  border: 0; border-radius: 999px;
  padding: 14px 20px;
  font-size: 14px; font-weight: 500; font-family: inherit;
  min-height: 48px;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 8px;
}
.tcp-popup-submit:hover:not(:disabled) { background: var(--tangerine); }
.tcp-popup-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.tcp-popup-status {
  font-size: 13px; line-height: 1.5;
  margin: 10px 0 0; min-height: 0;
  text-align: center;
  font-weight: 400;
  color: var(--stone);
}
.tcp-popup-status.error { color: var(--tangerine); font-weight: 500; }

.tcp-popup-consent {
  font-size: 11px; line-height: 1.5;
  color: var(--stone);
  margin: 14px 0 0;
  text-align: center;
  font-weight: 300;
}
.tcp-popup-consent a { color: var(--tangerine); text-decoration: underline; text-underline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .tcp-popup-overlay,
  .tcp-popup { transition: none; }
}

/* ── Footer ───────────────────────────────────────────────────────────── */
footer {
  background: var(--ink); color: rgba(251,246,236,0.5);
  padding: 28px var(--gutter);
  border-top: 1px solid rgba(251,246,236,0.1);
  font-size: 13px;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { padding: 8px 0; transition: color 0.15s; }
.footer-links a:hover { color: var(--tangerine); }
.footer-copy { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.footer-copy a { color: rgba(251,246,236,0.7); transition: color 0.15s; padding: 4px 0; }
.footer-copy a:hover { color: var(--tangerine); }

/* ── Legal pages (privacy, terms, accessibility) ──────────────────────── */
.legal-hero { padding-bottom: clamp(28px, 4vw, 36px); }
.legal-hero h1 { font-size: clamp(44px, 8vw, 88px); }
.legal-hero .hero-sub { max-width: 640px; }

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding-top: clamp(12px, 2vw, 24px);
  padding-bottom: clamp(64px, 8vw, 96px);
  text-align: left;
}
.legal p, .legal li {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: var(--ink);
  font-weight: 300;
}
.legal p { margin-bottom: 18px; }
.legal h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 44px 0 16px;
  color: var(--ink);
}
.legal h3 {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--ink);
}
.legal ul { padding-left: 22px; margin-bottom: 22px; }
.legal li { margin-bottom: 10px; }
.legal li::marker { color: var(--tangerine); }
.legal strong { font-weight: 700; color: var(--ink); }
.legal a { color: var(--tangerine); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal a:hover { text-decoration-thickness: 2px; }
.legal code {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: rgba(26,26,26,0.05);
  padding: 1px 6px;
  border-radius: 4px;
}
.legal-meta {
  font-size: 12px !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone) !important;
  font-weight: 500 !important;
  margin-bottom: 32px !important;
}
.legal-disclaimer {
  margin-top: 56px;
  padding: 20px 24px;
  background: rgba(232, 84, 43, 0.06);
  border-left: 3px solid var(--tangerine);
  font-size: 14px !important;
  color: var(--ink);
  line-height: 1.6;
}

/* ── Accessibility ────────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--tangerine); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ── Page intro variant (denser, less padding) ────────────────────────── */
.page-intro { padding: clamp(40px, 7vw, 80px) var(--gutter) clamp(40px, 6vw, 64px); }

/* ── Stat callouts (for service / approach detail) ────────────────────── */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
@media (max-width: 600px) { .stat-row { grid-template-columns: 1fr; gap: 28px; } }
.stat { padding: 8px 0; }
.stat .big { font-size: clamp(40px, 6vw, 60px); font-weight: 800; letter-spacing: -2px; color: var(--tangerine); line-height: 1; }
.stat .label { font-size: 11px; letter-spacing: 2px; color: var(--stone); font-weight: 500; margin-top: 10px; text-transform: uppercase; }
