/* =====================================================================
   Veris AI — styles.css
   ---------------------------------------------------------------------
   To rebrand, edit the :root tokens below — that's the single source of
   truth for color, type, spacing, and shape. Nothing else needs touching.
   ===================================================================== */

:root {
  /* ---- Brand colors (derived from the Veris AI gold-on-near-black logo) ---- */
  --bg-base:        #0b0b0d;   /* page background (near-black) */
  --bg-surface:     #141318;   /* cards / elevated surfaces */
  --bg-elevated:    #1c1a13;   /* warmer raised surfaces */
  --text-primary:   #f6f2e9;   /* warm off-white */
  --text-secondary: #a8a094;   /* muted warm gray */
  --text-faint:     #9a948a;   /* captions / fine print (AA-contrast on the dark bg) */

  --gold-rgb:       200, 162, 76;          /* raw channels — change alongside --gold to rebrand */
  --gold:           #c8a24c;   /* primary accent */
  --gold-bright:    #e8ce8b;   /* highlight */
  --gold-deep:      #9a7b33;   /* shade */
  --gold-gradient:  linear-gradient(180deg, #f0dba0 0%, #c8a24c 55%, #9a7b33 100%);
  --gold-soft:      rgba(var(--gold-rgb), 0.08);
  --gold-glow:      rgba(var(--gold-rgb), 0.28);
  --on-gold:        #1a1408;   /* text on gold buttons */

  --border:         rgba(var(--gold-rgb), 0.18);
  --border-soft:    rgba(246, 242, 233, 0.08);

  /* ---- Typography ---- */
  --font-heading: 'Outfit', 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body:    'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;

  /* ---- Spacing (8px base) ---- */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  /* ---- Shape & motion ---- */
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --container: 1140px;
  --shadow:      0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 14px 40px rgba(var(--gold-rgb), 0.18);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 74px;
}

/* =====================================================================
   Base / reset
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px); /* keep anchored sections clear of the fixed header */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =====================================================================
   Layout helpers
   ===================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: clamp(4rem, 8vw, 7rem); position: relative; }

.section--tight { padding-block: clamp(3rem, 5vw, 4.5rem); }

.section-head { max-width: 64ch; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.section h2 {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
}

.lead {
  color: var(--text-secondary);
  font-size: 1.075rem;
  margin-top: 1.1rem;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--on-gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(var(--gold-rgb), 0.32); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--gold); background: var(--gold-soft); transform: translateY(-2px); }

/* =====================================================================
   Header / navigation
   ===================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 11, 13, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  background: rgba(11, 11, 13, 0.88);
  border-bottom-color: var(--border-soft);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.nav-logo { justify-self: start; display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-mark { height: 42px; width: auto; }
.brand-word {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a { color: var(--text-secondary); transition: color var(--transition); position: relative; }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { justify-self: end; display: inline-flex; align-items: center; gap: 0.75rem; }

/* Booking link shown only inside the collapsed mobile menu */
.nav-book-mobile { display: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px; height: 42px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3.5rem, 9vw, 7rem));
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {           /* faded Veris monogram watermark */
  content: "";
  position: absolute; inset: 0;
  background: url("../assets/logo-mark.png") no-repeat;
  background-position: center 9%;
  background-size: auto clamp(260px, 46vh, 460px);
  opacity: 0.07;
  z-index: -2;
}
.hero::after {            /* warm radial glow */
  content: "";
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: min(900px, 120%); height: 720px;
  background: radial-gradient(ellipse at center,
              var(--gold-glow) 0%, rgba(var(--gold-rgb), 0.06) 38%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--gold-soft);
}
.pill-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  line-height: 1.04;
  margin-top: 1.6rem;
  max-width: 16ch;
  margin-inline: auto;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-primary);
  max-width: 60ch;
  margin: 1.5rem auto 0;
  font-weight: 400;
}
.hero-support {
  color: var(--text-secondary);
  max-width: 58ch;
  margin: 1.1rem auto 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 2.2rem;
}

/* =====================================================================
   Capabilities strip
   ===================================================================== */
.capabilities {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.012);
}
.capabilities .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 2rem;
  padding-block: 1.5rem;
}
.capabilities li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.capabilities li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* =====================================================================
   Cards & grids
   ===================================================================== */
.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.7rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: var(--shadow); }

.card-icon {
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--gold-soft);
  color: var(--gold-bright);
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 22px; height: 22px; }

.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { color: var(--text-secondary); font-size: 0.97rem; }

.card-list { margin-top: 1rem; display: grid; gap: 0.5rem; }
.card-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* compact problem cards */
.mini-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.05rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.97rem;
  transition: border-color var(--transition), transform var(--transition);
}
.mini-card:hover { border-color: var(--border); transform: translateY(-2px); }
.mini-card .marker {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--gold-soft);
  border: 1px solid var(--border);
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mini-card .marker svg { width: 16px; height: 16px; }

/* =====================================================================
   Two-column feature rows (Solution / Marketing Intel / Founder)
   ===================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--media-right .split-media { order: 2; }

.check-list { display: grid; gap: 0.8rem; margin-top: 1.6rem; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-secondary);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.28em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: 0.5em;
  width: 5px; height: 9px;
  border: solid var(--gold-bright);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.media-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(var(--gold-rgb),0.06), rgba(11,11,13,0.4));
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: auto; border-radius: 12px; }

.founder-photo {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.mission { margin-top: 1.6rem; display: grid; gap: 0.4rem; }
.mission p { color: var(--text-secondary); }
.mission .mission-line {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 500;
}

/* =====================================================================
   Process
   ===================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  counter-reset: step;
}
.process-step {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.6rem;
  position: relative;
}
.process-step .step-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.7rem;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.process-step p { color: var(--text-secondary); font-size: 0.95rem; }

/* =====================================================================
   Who we help
   ===================================================================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.audience-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: border-color var(--transition), transform var(--transition);
}
.audience-card:hover { border-color: var(--border); transform: translateY(-3px); }
.audience-card .marker {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gold-soft);
  border: 1px solid var(--border);
  color: var(--gold-bright);
  display: inline-flex; align-items: center; justify-content: center;
}
.audience-card .marker svg { width: 20px; height: 20px; }

/* =====================================================================
   Featured / banded sections
   ===================================================================== */
.band {
  background:
    radial-gradient(900px 320px at 50% -10%, rgba(var(--gold-rgb),0.08), transparent 70%),
    var(--bg-surface);
  border-block: 1px solid var(--border-soft);
}

/* Future of business */
.future { text-align: center; }
.future .container { max-width: 760px; }
.future p { color: var(--text-secondary); font-size: 1.08rem; margin-top: 1.1rem; }

/* =====================================================================
   Final CTA
   ===================================================================== */
.cta-panel {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(var(--gold-rgb),0.12), transparent 70%),
    var(--bg-elevated);
  box-shadow: var(--shadow-gold);
}
.cta-panel h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); max-width: 20ch; margin-inline: auto; }
.cta-panel p { color: var(--text-secondary); max-width: 60ch; margin: 1.1rem auto 0; }
.cta-panel .hero-cta { margin-top: 2rem; }
.cta-note { color: var(--text-faint); font-size: 0.9rem; margin-top: 1.4rem !important; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-base);
  padding-block: clamp(3rem, 5vw, 4rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand img { width: 148px; height: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-secondary); font-size: 0.95rem; max-width: 36ch; }

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { color: var(--text-secondary); font-size: 0.95rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-bright); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text-faint);
  font-size: 0.88rem;
}

/* =====================================================================
   Discovery-call modal + form
   ===================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(5, 5, 7, 0.74);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: translateY(14px) scale(0.98);
  transition: transform var(--transition);
}
.modal-overlay.active .modal-content { transform: none; }
.modal-content h3 { font-size: 1.5rem; margin-top: 0.4rem; }
.modal-sub { color: var(--text-secondary); font-size: 0.95rem; margin: 0.5rem 0 1.5rem; }

.modal-close {
  position: absolute;
  top: 0.75rem; right: 0.9rem;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 1.5rem; line-height: 1;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}
.modal-close:hover { color: var(--gold-bright); border-color: var(--border); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  background: var(--bg-base);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.97rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group textarea { resize: vertical; min-height: 84px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-group input.invalid,
.form-group textarea.invalid { border-color: #e0726a; }

.btn.w-100 { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-message { margin-top: 1rem; text-align: center; font-size: 0.92rem; min-height: 1.2em; }
.form-message.success { color: #6fcf8e; }
.form-message.error { color: #e0726a; }

/* Privacy/consent note under the submit button */
.form-consent { margin-top: 0.9rem; text-align: center; font-size: 0.8rem; line-height: 1.55; color: var(--text-faint); }
.form-consent a { color: var(--text-secondary); text-decoration: underline; }
.form-consent a:hover { color: var(--gold-bright); }

/* Honeypot — kept out of view and out of the tab order */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* =====================================================================
   Scroll-reveal animation
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  /* Collapse nav to hamburger */
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    background: rgba(11, 11, 13, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-soft);
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 0.6rem 0; font-size: 1.05rem; width: 100%; }
  .nav-links a::after { display: none; }
  .nav-links .nav-book-mobile { display: block; color: var(--gold-bright); font-weight: 600; }
  .nav-cta .btn-primary { display: none; }       /* header CTA lives in the menu once collapsed */
  .nav-toggle { display: inline-flex; }

  /* Stack the two-column feature rows at the same point the nav collapses */
  .split { grid-template-columns: 1fr; }
  .split--media-right .split-media { order: -1; }
}

@media (max-width: 680px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding-inline: 1.15rem; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.7rem); }
  .capabilities .container { gap: 0.5rem 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
