/* ==========================================================================
   FirstMinuteReply — Design Tokens
   ========================================================================== */
:root {
  --cream: #FAF7F2;
  --cream-deep: #F1E8D9;
  --charcoal: #1a1a2e;
  --charcoal-alt: #232338;
  --ink-muted: #5B5A6C;
  --ink-faint: #8B899C;
  --orange: #E8531A;
  --orange-dark: #C4430F;
  --orange-tint: #FCE3D6;
  --line: #E3D9C8;
  --white: #FFFFFF;
  --success: #3F6B2C;
  --success-bg: #E7EFDF;
  --error: #B3261E;
  --error-bg: #FBE6E3;

  --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.07);
  --shadow-md: 0 10px 28px rgba(26, 26, 46, 0.09);
  --shadow-lg: 0 24px 56px rgba(26, 26, 46, 0.16);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;

  --container: 1140px;

  --font-display: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'Cascadia Code', 'Roboto Mono', Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 700; }

/* Visible focus states everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 640px) { .container { padding-inline: 2rem; } }
@media (min-width: 1080px) { .container { padding-inline: 2.5rem; } }

section { padding: 5rem 0; }
@media (min-width: 860px) { section { padding: 7rem 0; } }

.section--alt { background: var(--cream-deep); }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--dark .eyebrow { color: var(--orange); }

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

h2.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.section-lede {
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.65;
}
.section--dark .section-lede { color: rgba(250, 247, 242, 0.72); }

.mark { color: var(--orange); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--cream); }
.section--dark .btn-secondary { color: var(--cream); border-color: rgba(250, 247, 242, 0.5); }
.section--dark .btn-secondary:hover { background: var(--cream); color: var(--charcoal); }
.btn-sm { padding: 0.6rem 1.35rem; font-size: 0.9rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  transition: height 0.25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.site-header.is-scrolled .nav-inner { height: 62px; }

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  transition: font-size 0.25s var(--ease);
  flex-shrink: 0;
}
.site-header.is-scrolled .logo { font-size: 1.12rem; }
.logo span { color: var(--orange); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.1rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.nav-links a { color: var(--ink-muted); transition: color 0.15s var(--ease); }
.nav-links a:hover { color: var(--charcoal); }

.nav-cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  margin-inline: auto;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0 1.5rem;
}
.mobile-menu a.mobile-link {
  padding: 0.85rem 0;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
}
.mobile-menu .btn { margin-top: 1.1rem; }

@media (min-width: 920px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
@media (min-width: 860px) { .hero { padding-top: 4.5rem; padding-bottom: 5rem; } }

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}

.hero-copy .eyebrow { margin-bottom: 1.4rem; }
.hero-title {
  font-size: clamp(2.35rem, 5.4vw, 4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.hero-title .mark { position: relative; white-space: nowrap; }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-muted);
  max-width: 46ch;
  margin-bottom: 2.1rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
  font-weight: 600;
}
.trust-row li { display: flex; align-items: center; gap: 0.5rem; }
.trust-row svg { flex-shrink: 0; color: var(--orange); }

.hero-visual { position: relative; }
.hero-visual .photo { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.ring-card {
  position: absolute;
  left: -1rem;
  bottom: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 230px;
}
@media (min-width: 640px) { .ring-card { left: -1.75rem; bottom: -1.75rem; padding: 1.3rem 1.5rem; } }

.ring-wrap { position: relative; width: 58px; height: 58px; flex-shrink: 0; }
.ring-wrap svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: var(--orange-tint); stroke-width: 8; }
.ring-progress {
  fill: none;
  stroke: var(--orange);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
}
@media (prefers-reduced-motion: no-preference) {
  .ring-progress { animation: ring-sweep 3.2s var(--ease) infinite; }
}
@media (prefers-reduced-motion: reduce) {
  .ring-progress { stroke-dashoffset: 30; }
}
@keyframes ring-sweep {
  0% { stroke-dashoffset: 150.8; }
  55% { stroke-dashoffset: 8; }
  75% { stroke-dashoffset: 8; }
  100% { stroke-dashoffset: 150.8; }
}
.ring-label-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--charcoal);
}
.ring-copy .ring-title { font-weight: 700; font-size: 0.92rem; margin-bottom: 0.15rem; }
.ring-copy .ring-sub { font-size: 0.8rem; color: var(--ink-muted); }

/* ==========================================================================
   Photo placeholder component
   ========================================================================== */
.photo {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, var(--cream-deep) 0px, var(--cream-deep) 12px, #ECE1CD 12px, #ECE1CD 24px);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--empty img { display: none; }
.photo--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #C9B994;
}
.photo--empty::before {
  content: '\1F4F7  ' attr(data-label);
  white-space: pre-wrap;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.5;
  color: #8A7A54;
  padding: 1.5rem;
  max-width: 280px;
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }
  .reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
  .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
  .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
  .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.23s; }
  .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.3s; }
  .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.37s; }
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.steps {
  display: grid;
  gap: 2.5rem;
  counter-reset: step;
}
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.step-card { position: relative; }
.step-photo { aspect-ratio: 5 / 4; margin-bottom: 1.5rem; }
.step-num {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.step-title { font-size: 1.3rem; margin-bottom: 0.6rem; }
.step-text { color: var(--ink-muted); }

.step-arrow {
  display: none;
  position: absolute;
  top: 30%;
  right: -1.65rem;
  color: var(--orange);
  z-index: 3;
}
@media (min-width: 860px) { .step-arrow { display: block; } }

/* ==========================================================================
   The Math / ROI
   ========================================================================== */
.stat-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 700px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }

.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  color: var(--orange);
  letter-spacing: -0.02em;
}
.stat-label { margin-top: 0.5rem; color: var(--ink-muted); font-size: 0.95rem; line-height: 1.5; }

.math-example {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) { .math-example { grid-template-columns: 1.1fr 0.9fr; padding: 3rem; gap: 3rem; } }
.math-example h3 { font-size: 1.5rem; margin-bottom: 0.9rem; }
.math-example p { color: rgba(250, 247, 242, 0.72); margin-bottom: 1rem; }
.math-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.14);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
}
.math-total {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.4rem;
  border-left: 2px solid rgba(232, 83, 26, 0.4);
  padding-left: 2rem;
}
@media (max-width: 859px) { .math-total { border-left: none; border-top: 2px solid rgba(232,83,26,0.4); padding-left: 0; padding-top: 1.5rem; } }
.math-total .stat-num { font-size: clamp(2.4rem, 5vw, 3.2rem); }
.math-total .stat-label { color: rgba(250, 247, 242, 0.65); }
.math-fineprint { font-size: 0.82rem; color: rgba(250,247,242,0.5); margin-top: 1rem; }

/* ==========================================================================
   Differentiators
   ========================================================================== */
.diff-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }

.diff-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.diff-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.diff-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--orange-tint);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.diff-card h3 { font-size: 1.15rem; margin-bottom: 0.55rem; }
.diff-card p { color: var(--ink-muted); font-size: 0.96rem; }

/* ==========================================================================
   Guarantee
   ========================================================================== */
.guarantee {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) { .guarantee { grid-template-columns: 0.85fr 1.15fr; } }

.guarantee-badge {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 2px dashed var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  text-align: center;
  padding: 1.5rem;
}
.guarantee-badge-inner {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}
.guarantee-badge-inner strong { font-family: var(--font-display); font-size: 1.9rem; }
.guarantee-badge-inner span { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; }

.guarantee-list { margin-top: 1.5rem; display: grid; gap: 0.9rem; }
.guarantee-list li { display: flex; gap: 0.7rem; color: var(--ink-muted); }
.guarantee-list svg { flex-shrink: 0; color: var(--orange); margin-top: 0.2rem; }

/* ==========================================================================
   Origin story
   ========================================================================== */
.origin {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) { .origin { grid-template-columns: 0.85fr 1.15fr; } }
.origin-photo { aspect-ratio: 1 / 1; border-radius: var(--radius-lg); }
.origin-copy p { color: var(--ink-muted); margin-bottom: 1.1rem; font-size: 1.03rem; }
.origin-copy p:last-of-type { margin-bottom: 0; }
.origin-signoff { font-family: var(--font-display); font-size: 1.15rem; margin-top: 1.5rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 1rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.35rem 1.6rem;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange-tint);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--orange); color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer p { padding: 0 1.6rem 1.5rem; color: var(--ink-muted); }
@media (prefers-reduced-motion: reduce) {
  .faq-answer { transition: none; }
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }

.contact-photo { aspect-ratio: 4 / 3; margin-bottom: 2rem; }
.contact-info { display: grid; gap: 1.3rem; }
.contact-info-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-info-item svg { color: var(--orange); flex-shrink: 0; margin-top: 0.2rem; }
.contact-info-item strong { display: block; font-size: 0.95rem; }
.contact-info-item a, .contact-info-item span.value { color: var(--ink-muted); }
.contact-info-item a:hover { color: var(--orange-dark); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) { .contact-form-card { padding: 2.5rem; } }

.form-row { display: grid; gap: 1.2rem; margin-bottom: 1.2rem; }
@media (min-width: 560px) { .form-row--split { grid-template-columns: 1fr 1fr; } }

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.field .req { color: var(--orange); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color 0.15s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
}
.field textarea { resize: vertical; min-height: 110px; }

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

.consent-text {
  font-size: 0.8rem;
  color: var(--ink-faint);
  line-height: 1.55;
  margin-top: 1rem;
}
.consent-text a { color: var(--orange-dark); text-decoration: underline; }

.form-msg {
  margin-top: 1.1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}
.form-msg.is-visible { display: block; }
.form-msg--success { background: var(--success-bg); color: var(--success); }
.form-msg--error { background: var(--error-bg); color: var(--error); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(250, 247, 242, 0.75);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.3fr 0.85fr 0.85fr; } }
.footer-brand .logo { color: var(--cream); margin-bottom: 0.9rem; display: inline-block; }
.footer-brand p { max-width: 34ch; font-size: 0.94rem; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.65rem; font-size: 0.94rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.14);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
}
.footer-legal-links { display: flex; gap: 1.3rem; }
.footer-legal-links a:hover { color: var(--orange); }

/* ==========================================================================
   Legal pages (privacy / terms)
   ========================================================================== */
.legal-hero { padding: 3.5rem 0 1rem; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 0.6rem; }
.legal-hero .updated { color: var(--ink-muted); font-family: var(--font-mono); font-size: 0.85rem; }
.legal-body { padding-top: 1rem; padding-bottom: 5rem; max-width: 760px; }
.legal-body h2 { font-size: 1.35rem; margin-top: 2.4rem; margin-bottom: 0.9rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: var(--charcoal); margin-bottom: 1rem; }
.legal-body ul { margin: 0 0 1rem 1.3rem; list-style: disc; color: var(--charcoal); }
.legal-body li { margin-bottom: 0.5rem; }
.legal-body .callout {
  background: var(--orange-tint);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
  font-weight: 700;
}
.legal-body a { color: var(--orange-dark); text-decoration: underline; }
.back-home { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--orange-dark); margin-bottom: 1.5rem; }

/* ==========================================================================
   Misc
   ========================================================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
