/* ==========================================================================
   Catering Leads Pro - design system
   Ink + cool paper + one accent (deep green). Sharp corners throughout.
   Type: Space Grotesk (display) / Archivo (body).
   ========================================================================== */

:root {
  --ink: #14161a;
  --ink-soft: #2b2f36;
  --muted: #5c6470;
  --muted-light: #626b77;
  --line: #dfe2e6;
  --line-soft: #ebedef;
  --paper: #f5f6f7;
  --surface: #ffffff;
  --accent: #0f6b4f;
  --accent-dark: #0a5540;
  --accent-wash: #eaf3ef;
  --warn-wash: #fdf6e7;

  --max: 1200px;
  --gut: 24px;

  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.88rem);
  --step-0: clamp(1rem, 0.97rem + 0.15vw, 1.06rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2: clamp(1.5rem, 1.34rem + 0.8vw, 2rem);
  --step-3: clamp(1.9rem, 1.6rem + 1.5vw, 2.8rem);
  --step-4: clamp(2.4rem, 1.8rem + 2.8vw, 4rem);

  --display: "Space Grotesk", "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
  --body: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); letter-spacing: -0.015em; }
h4 { font-size: var(--step-0); letter-spacing: -0.01em; }

p { margin: 0 0 1rem; max-width: 68ch; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 700; }

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

section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
.section--paper { background: var(--paper); }
.section--surface { background: var(--surface); }
.section--ink { background: var(--ink); color: #eef0f2; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #b9bfc7; }

.overline {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}
.section--ink .overline { color: #6ab894; }

.lede { font-size: var(--step-1); line-height: 1.45; color: var(--muted); max-width: 60ch; }
.section--ink .lede { color: #b9bfc7; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 246, 247, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}
.site-header.is-scrolled { background: rgba(245, 246, 247, 0.98); box-shadow: 0 10px 24px rgba(20, 22, 26, 0.09); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand svg { flex: none; }
.brand-text { font-family: var(--display); font-weight: 700; font-size: 1rem; letter-spacing: -0.02em; line-height: 1.1; }
.brand-text span { display: block; font-size: 0.63rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; white-space: nowrap;
}
.nav a:hover { color: var(--accent); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  width: 42px; height: 42px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--display); font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.5rem; border: 1px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.12s ease, background-color 0.18s ease, border-color 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ink:hover { background: #000; color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.section--ink .btn--ghost { color: #fff; border-color: #3a3f47; }
.section--ink .btn--ghost:hover { border-color: #fff; color: #fff; }
.btn--sm { padding: 0.6rem 1.05rem; font-size: 0.86rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem); background: var(--surface); border-bottom: 1px solid var(--line); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(15, 107, 79, 0.10) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero::after {
  content: ""; position: absolute; right: -70px; bottom: -90px; width: 420px; height: 420px;
  pointer-events: none; opacity: 0.07;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath d='M4 15h16M16 10l5 5-5 5' stroke='%230f6b4f' stroke-width='2' fill='none'/%3E%3Crect x='25' y='7' width='3' height='16' fill='%230f6b4f'/%3E%3C/svg%3E") center/contain no-repeat;
}
.hero .hero-grid { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: 1rem; }
.hero .lede { margin-bottom: 1.6rem; }

.hero-terms {
  display: flex; flex-wrap: wrap; gap: 0 1.4rem; margin: 1.4rem 0 0;
  padding: 0; list-style: none; font-size: 0.9rem; color: var(--muted);
}
.hero-terms li { display: flex; align-items: center; gap: 0.4rem; padding: 0.25rem 0; }
.hero-terms svg { flex: none; color: var(--accent); }

/* proof card in hero */
.proof-card { background: var(--paper); border: 1px solid var(--line); padding: 1.5rem; }
.proof-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; padding-bottom: 0.9rem; border-bottom: 1px solid var(--line); }
.proof-card__label { font-family: var(--display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.proof-card__period { font-size: 0.78rem; color: var(--muted-light); }
.proof-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1rem; margin-bottom: 1rem; }
.metric__value { font-family: var(--display); font-size: 2.25rem; font-weight: 700; line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.metric__label { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; line-height: 1.35; }
.proof-card__note { font-size: 0.75rem; line-height: 1.5; color: var(--muted-light); margin: 0; padding-top: 0.9rem; border-top: 1px solid var(--line); }

/* ---------- trust strip ---------- */
.strip { background: var(--ink); color: #fff; padding: 1.5rem 0; }
.strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem 2rem; }
.strip-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: #d3d8de; }
.strip-item svg { flex: none; color: #6ab894; }
.strip-item strong { color: #fff; font-weight: 600; }

/* ---------- generic blocks ---------- */
.block-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3rem); border-left: 3px solid var(--accent); padding-left: 1.25rem; }
.section--ink .block-head { border-left-color: #6ab894; }
.block-head p { color: var(--muted); font-size: var(--step-1); line-height: 1.5; }
.section--ink .block-head p { color: #b9bfc7; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.split--wide-left { grid-template-columns: 1.25fr 0.75fr; }
.split--wide-right { grid-template-columns: 0.8fr 1.2fr; }

/* ---------- pricing / offer ---------- */
.offer { border: 1px solid var(--line); background: var(--surface); }
.offer__main { padding: clamp(1.75rem, 3.5vw, 2.75rem); border-bottom: 1px solid var(--line); }
.offer__rate { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.75rem; }
.offer__rate b { font-family: var(--display); font-size: clamp(3rem, 7vw, 4.5rem); font-weight: 700; line-height: 0.9; letter-spacing: -0.04em; }
.offer__rate span { font-size: var(--step-1); color: var(--muted); }
.offer__list { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.offer__list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.95rem; }
.offer__list svg { flex: none; margin-top: 3px; color: var(--accent); }
.offer__example { padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.75rem, 3.5vw, 2.75rem); background: var(--accent-wash); }
.offer__example p { margin: 0; font-size: 0.95rem; }
.offer__example b { font-family: var(--display); }

.math { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem; margin: 0 0 0.75rem; }
.math__cell { display: flex; flex-direction: column; }
.math__num { font-family: var(--display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.math__cap { font-size: 0.75rem; color: var(--muted); }
.math__op { font-family: var(--display); font-size: 1.1rem; color: var(--muted-light); }

/* ---------- steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step; display: grid; grid-template-columns: 76px 1fr;
  gap: 1.25rem; padding: 1.5rem 0; border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display); font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 700;
  line-height: 1; color: var(--accent); letter-spacing: -0.03em;
}
.steps h3 { margin-bottom: 0.35rem; }
.steps p { margin: 0; color: var(--muted); }

/* ---------- proof gallery ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.proof-item { border: 1px solid var(--line); border-top: 3px solid var(--accent); background: var(--surface); display: flex; flex-direction: column; }
.proof-item--wide { grid-column: 1 / -1; }
.proof-item figure { margin: 0; background: #fff; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.proof-item img { width: 100%; }
.proof-item figcaption { padding: 1.1rem 1.25rem; }
.proof-item figcaption h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.proof-item figcaption p { font-size: 0.86rem; color: var(--muted); margin: 0; }
.proof-tag {
  display: inline-block; font-family: var(--display); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); padding: 0.2rem 0.5rem; margin-bottom: 0.6rem;
}

.disclosure {
  border-left: 3px solid var(--accent); background: var(--surface);
  padding: 1.1rem 1.35rem; margin: 2rem 0 0; font-size: 0.88rem; color: var(--muted);
}
.disclosure p { margin: 0 0 0.5rem; max-width: none; }
.disclosure p:last-child { margin: 0; }
.disclosure strong { color: var(--ink); }

/* ---------- comparison table ---------- */
.cmp { width: 100%; border-collapse: collapse; font-size: 0.93rem; background: var(--surface); border: 1px solid var(--line); }
.cmp th, .cmp td { padding: 0.95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.cmp thead th { font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); background: var(--paper); border-bottom: 1px solid var(--line); }
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp td:first-child { font-weight: 600; }
.cmp .yes { color: var(--accent); font-weight: 600; }
.cmp .no { color: var(--muted); }

/* ---------- segments ---------- */
.seg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.seg {
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem;
  background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--accent); padding: 1.75rem;
  text-decoration: none; color: var(--ink);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.seg:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.seg--feature { grid-column: 1 / -1; flex-direction: row; align-items: center; }
.seg--feature > div:first-child { flex: 1; }
.seg h3 { margin-bottom: 0.4rem; }
.seg p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.seg__go { font-family: var(--display); font-size: 0.88rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 0.4rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 1.25rem 2.5rem 1.25rem 0; position: relative;
  font-family: var(--display); font-weight: 600; font-size: 1.02rem;
  letter-spacing: -0.01em; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { margin: 0 0 1.25rem; color: var(--muted); }

/* ---------- CTA / calendly ---------- */
.cta-band { background: var(--ink); color: #fff; }
.cta-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #b9bfc7; }
.booking {
  background: var(--surface); border: 1px solid #2b2f36; min-height: 420px;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.booking__placeholder { text-align: center; max-width: 340px; }
.booking__placeholder h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--ink); }
.booking__placeholder p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.calendly-inline-widget { width: 100%; min-height: 640px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #9aa2ac; padding: 3.5rem 0 2rem; border-top: 1px solid #262b31; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.site-footer h4 { color: #fff; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.site-footer a { color: #9aa2ac; text-decoration: none; font-size: 0.92rem; }
.site-footer a:hover { color: #fff; }
.site-footer p { font-size: 0.9rem; color: #9aa2ac; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text span { color: #7a828c; }
.footer-bottom {
  border-top: 1px solid #262b31; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between;
  font-size: 0.84rem; color: #7a828c;
}
.footer-bottom p { margin: 0; font-size: 0.84rem; color: #7a828c; }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: none;
  background: var(--surface); border-top: 1px solid var(--line);
  padding: 0.7rem var(--gut); box-shadow: 0 -6px 20px rgba(20, 22, 26, 0.08);
}
.sticky-cta .btn { width: 100%; }

/* ---------- qualification form ---------- */
.qual-form { background: var(--surface); border: 1px solid var(--line); padding: clamp(1.5rem, 3.5vw, 2.5rem); }
.qual-form fieldset { border: 0; padding: 0; margin: 0 0 2rem; }
.qual-form legend { font-family: var(--display); font-weight: 700; font-size: 1.05rem; padding: 0 0 1rem; width: 100%; border-bottom: 1px solid var(--line); margin-bottom: 1.25rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; }
.form-field { display: grid; gap: 0.4rem; margin-bottom: 1.25rem; min-width: 0; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); }
.form-field .req { color: var(--accent); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 0.75rem 0.9rem; border: 1px solid var(--line); background: var(--surface);
  width: 100%;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c6470' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 3px solid var(--accent); outline-offset: 1px; border-color: var(--accent);
}
.form-hint { font-size: 0.8rem; color: var(--muted-light); }
.form-consent { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.86rem; color: var(--muted); margin: 0.5rem 0 1.5rem; }
.form-consent input { margin-top: 3px; flex: none; }
.form-consent a { color: inherit; text-decoration: underline; }
.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { display: none; padding: 1rem 1.25rem; border-left: 3px solid var(--accent); background: var(--accent-wash); font-size: 0.92rem; margin-bottom: 1.5rem; }
.form-status.is-error { border-color: #b3261e; background: #fdece9; color: #7a1c14; }
.form-status.is-visible { display: block; }
.qual-form.is-submitted .qual-form__fields,
.qual-form.is-submitted .qual-form__submit { display: none; }
.qual-form__submit { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
/* When the form is embedded in the dark CTA band, stack it under the heading
   so the 22 fields get full width instead of a cramped column. */
.cta-grid:has(.qual-form) { grid-template-columns: 1fr; }
.cta-band .qual-form { width: 100%; }
/* The form is a white card; keep its own text dark even when the surrounding
   section sets light-on-dark colours. */
.qual-form, .cta-band .qual-form { color: var(--ink); }
.qual-form legend, .cta-band .qual-form legend { color: var(--ink); }
.qual-form .form-hint, .cta-band .qual-form p.form-hint { color: var(--muted-light); }
.qual-form .form-consent, .cta-band .qual-form .form-consent { color: var(--muted); }
.qual-form .form-status, .cta-band .qual-form .form-status { color: var(--ink); }
.cta-band .qual-form .form-status.is-error { color: #7a1c14; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- legal / long-form ---------- */
.prose h2 { font-size: var(--step-2); margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; }
.prose ul, .prose ol { color: var(--muted); padding-left: 1.2rem; }
.prose li { margin-bottom: 0.5rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.92rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 0.7rem 0.9rem; text-align: left; }
.prose th { background: var(--paper); font-family: var(--display); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }

.pagehead { background: var(--surface); border-bottom: 1px solid var(--line); padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem); }
.crumbs { font-size: 0.82rem; color: var(--muted-light); margin-bottom: 1rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }

/* ---------- reveal ---------- */
.reveal { opacity: 1; transform: none; }
.reveal.is-pending { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* Grouped/list content cascades in once its container scrolls into view.
   The container itself has no hidden state; only its direct children do. */
.stagger > * {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.stagger.is-in > * { opacity: 1; transform: none; }
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 70ms; }
.stagger > *:nth-child(3) { transition-delay: 140ms; }
.stagger > *:nth-child(4) { transition-delay: 210ms; }
.stagger > *:nth-child(5) { transition-delay: 280ms; }
.stagger > *:nth-child(6) { transition-delay: 350ms; }
.stagger > *:nth-child(n+7) { transition-delay: 420ms; }

/* Accessible navigation and content defaults; the existing brand stays light. */
.header-cta { display: none; }
.nav a.btn--primary { color: #fff; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; }
.skip-link { position: absolute; top: -100px; left: 1rem; z-index: 70; background: var(--surface); padding: 1rem; }
.skip-link:focus { top: 0.5rem; }
.wrap > *, .split > *, .hero-grid > * { min-width: 0; }
.hero h1 { font-size: clamp(2.2rem, 3.1vw, 2.8rem); }
.proof-card__note, .proof-card__period, .metric__label { font-size: 0.875rem; }
.proof-item figure a { display: block; }
.proof-item img { max-height: 440px; object-fit: contain; }
.proof-item--wide { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.proof-item--wide figure { border-bottom: 0; border-right: 1px solid var(--line); }
.proof-item figcaption { line-height: 1.6; }
.booking { min-height: 260px; }
.table-scroll { overflow-x: auto; }
.table-scroll table { min-width: 580px; }
.prose p { color: var(--muted); }
.prose h2:first-child { margin-top: 0; }
.site-footer a, .site-footer p { overflow-wrap: anywhere; }
.footer-brand .brand-text span, .footer-bottom p { color: #a0a7b1; }
.contact-email { overflow-wrap: anywhere; }
.pagehead .btn-row { margin-top: 1.5rem; }
.proof-link { margin-top: 1rem; display: inline-block; }

@media (min-width: 769px) and (max-width: 1100px) {
  .nav { gap: 0.85rem; }
  .nav a { font-size: 0.82rem; }
  .brand-text { font-size: 0.9rem; }
  .header-inner { gap: 0.75rem; }
}

/* ---------- colour and texture variety ---------- */
.section--wash { background: var(--accent-wash); }
.section--wash .offer__example { background: var(--surface); }

.cta-band, .site-footer {
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.section--ink .proof-item { color: var(--ink); border-color: #2b2f36; border-top-color: #6ab894; }
.section--ink .proof-item h3 { color: var(--ink); }
.section--ink .proof-item figcaption p { color: var(--muted); }
.section--ink .proof-item .proof-tag { color: var(--muted); border-color: var(--line); }
.section--ink .disclosure { background: transparent; border-left-color: #6ab894; color: #b9bfc7; }
.section--ink .disclosure strong { color: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .split, .split--wide-left, .split--wide-right, .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; inset: 68px 0 auto 0; background: var(--surface);
    flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem var(--gut) 1.25rem;
    border-bottom: 1px solid var(--line); display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); }
  .nav .btn { margin-top: 0.85rem; }
  .nav-toggle { display: inline-flex; }
  .nav-toggle { width: 44px; height: 44px; flex: none; }
  .nav .btn--primary { padding: 0.85rem 1rem; }
  .proof-item--wide { display: flex; }
  .proof-item--wide figure { border-right: 0; }
  html:not(.js) .header-inner { height: auto; flex-wrap: wrap; padding-top: 1rem; }
  html:not(.js) .nav { position: static; display: flex; width: 100%; }
  html:not(.js) .nav-toggle { display: none; }
  .header-cta { display: none; }
  .proof-grid, .seg-grid { grid-template-columns: 1fr; }
  .seg--feature { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-cta { display: block; }
  body { padding-bottom: 68px; }
  .proof-metrics { grid-template-columns: repeat(2, 1fr); }
  .cmp { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 480px) {
  .hero-terms { flex-direction: column; gap: 0; }
  .strip-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

html:not(.js) .stagger > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; transition-delay: 0ms !important; }
  .reveal, .reveal.is-pending { opacity: 1; transform: none; }
  .stagger > * { opacity: 1; transform: none; }
}
