/* =============================================================
   McCloskey.ai, marketing site
   "Ink Navy & Cream" direction (locked 2026-05-28).
   Hand-coded, no framework. Mobile-first.

   Look: warm cream + ink navy + one subtle navy accent.
   Type: Schibsted Grotesk (display) · Manrope (body) · JetBrains Mono (labels).
   Palette is monochrome so it gets out of the way and lets the
   real photos lead. Tweak hue from the :root tokens below.
   ============================================================= */

:root {
  /* "Ink Navy & Cream": a soft unintimidating navy on warm cream,
     paired with our SANS type. */
  --ink:        #1e3050;   /* deep ink-navy, body + headings */
  --ink-soft:   #5d6a82;   /* muted slate, secondary       */
  --paper:      #fbfaf6;   /* warm cream background          */
  --paper-2:    #f3f1ea;   /* warm panel                     */
  --card:       #ffffff;
  --accent:     #1e3050;   /* ink-navy, primary             */
  --accent-deep:#14213e;   /* darker navy for small text (high contrast on cream) */
  --accent-soft:#aebccf;   /* light slate-blue for on-dark text */
  --accent-tint:#e6ebf2;   /* pale navy tint                 */
  --dark:       #1e3050;   /* navy dark sections             */
  --line:       #e3e0d6;   /* warm hairline                  */

  --btn-bg:     #1e3050;   /* primary button = ink-navy      */
  --btn-bg-h:   #14213e;

  --radius:   14px;
  --radius-sm:9px;
  --maxw:     1140px;
  --gutter:   clamp(20px, 5vw, 44px);

  /* layered, tinted, single-light-source shadows */
  --shadow:    0 1px 2px rgba(20,20,20,.05), 0 4px 12px rgba(20,20,20,.05);
  --shadow-md: 0 1px 2px rgba(20,20,20,.04), 0 8px 20px rgba(20,20,20,.06);
  --shadow-lg: 0 1px 2px rgba(20,20,20,.04), 0 10px 28px rgba(20,20,20,.07), 0 26px 50px rgba(20,20,20,.08);

  --display: "Schibsted Grotesk", ui-sans-serif, system-ui, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --body:    "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);

  --h1: clamp(2.6rem, 1.6rem + 4.4vw, 4.6rem);
  --h2: clamp(1.85rem, 1.3rem + 2.3vw, 2.9rem);
  --h3: clamp(1.15rem, 1.05rem + .5vw, 1.4rem);
  --lead: clamp(1.08rem, 1.02rem + .4vw, 1.3rem);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 .4em;
}
h2 { font-size: var(--h2); letter-spacing: -0.025em; }
h3 { font-size: var(--h3); line-height: 1.15; letter-spacing: -0.02em; }
p  { margin: 0 0 1rem; }
img { max-width: 100%; display: block; }
a  { color: inherit; }
strong { font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.nowrap { white-space: nowrap; }

/* ---------- kicker (small label) ---------- */
.kicker {
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 1.1rem;
}
.kicker--invert { color: var(--accent-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--body); font-weight: 650; text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; border-radius: 999px;
  padding: .72em 1.5em; white-space: nowrap; font-size: 1rem;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}
.btn-primary { background: var(--btn-bg); color: #fff; box-shadow: 0 4px 14px rgba(20,20,20,.16); }
.btn-primary:hover { background: var(--btn-bg-h); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(20,20,20,.22); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); border-color: color-mix(in srgb, var(--ink) 24%, transparent); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.btn-sm { padding: .5em 1.1em; font-size: .92rem; }
.btn-lg { padding: .85em 1.8em; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* primary CTA: premium push treatment (hero, featured pricing, enquiry submit) */
.btn-primary--push {
  background: linear-gradient(135deg, var(--btn-bg) 0%, #2a3d62 60%, var(--btn-bg) 100%);
  position: relative; overflow: hidden; isolation: isolate;
}
.btn-primary--push::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.32) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: cta-shimmer 4.5s ease-in-out infinite;
  animation-delay: 1s;
  pointer-events: none; z-index: 1;
}
.btn-primary--push:hover {
  background: linear-gradient(135deg, var(--btn-bg-h) 0%, #324a78 60%, var(--btn-bg-h) 100%);
}
@keyframes cta-shimmer {
  0%, 60%, 100% { transform: translateX(-100%); }
  75% { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary--push::after { animation: none; display: none; }
}

.textlink { font-weight: 650; text-decoration: none; color: var(--accent-deep); border-bottom: 2px solid var(--accent-tint); padding-bottom: 2px; transition: border-color .15s; }
.textlink:hover { border-color: var(--accent); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 66px; }
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.03em; text-decoration: none; }
.brand-mark { border-radius: 7px; }
.nav { display: none; margin-left: auto; gap: 1.7rem; }
.nav a { text-decoration: none; color: var(--ink-soft); font-weight: 550; font-size: .95rem; transition: color .15s; }
.nav a:hover { color: var(--ink); }
.header-cta { margin-left: 1rem; }

.nav-toggle { margin-left: auto; display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.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-nav { display: flex; flex-direction: column; gap: .2rem; padding: .5rem var(--gutter) 1.2rem; border-bottom: 1px solid var(--line); background: var(--paper); }
/* prevent first-paint flash before JS initialises (HTML [hidden] is overridden by author display: flex above) */
.mobile-nav[hidden] { display: none; }
.mobile-nav a { text-decoration: none; color: var(--ink); font-weight: 600; padding: .65rem 0; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-of-type { border: 0; }
.mobile-nav .btn { margin-top: .6rem; }

/* ---------- section rhythm ---------- */
section { padding: clamp(64px, 8vw, 120px) 0; }
/* anchor links land below the sticky header instead of being hidden under it */
section[id] { scroll-margin-top: 80px; }
/* section heads breathe horizontally; long H2s wrap naturally instead of stacking poster-style */
.section-head { max-width: 52ch; margin-bottom: clamp(34px, 5vw, 60px); }
.section-head h2 { max-width: 30ch; margin-bottom: .5rem; }
.section-lead { font-family: var(--body); font-size: var(--lead); color: var(--ink-soft); margin: 0; max-width: 48ch; }

/* ---------- hero ---------- */
.hero { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(40px, 5vw, 72px); }
.hero-inner { display: grid; gap: clamp(2rem, 5vw, 3.2rem); align-items: center; }
.hero-copy { max-width: 38rem; }
.hero-title { font-size: var(--h1); max-width: 16ch; margin-bottom: 1.2rem; }
.hero-sub { font-size: var(--lead); color: var(--ink-soft); max-width: 52ch; margin-bottom: 2rem; }
.hero-bullets { list-style: none; margin: 0 0 2rem; padding: 0; max-width: 46ch; }
.hero-bullets li { font-size: var(--lead); color: var(--ink-soft); padding-left: 1.4rem; position: relative; margin-bottom: .55rem; line-height: 1.4; }
.hero-bullets li::before { content: ""; position: absolute; left: 0; top: .65em; width: 14px; height: 2px; background: var(--accent); border-radius: 2px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; }

/* hero photo: a real human, teaching */
.hero-visual { margin: 0; }
.hero-photo { width: 100%; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.hero-photo img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.hero-photo-cap { font-family: var(--mono); font-size: .78rem; color: var(--ink-soft); margin: .8rem 0 0; padding-left: .9rem; border-left: 3px solid var(--accent); }

/* ---------- visual-teacher strip ---------- */
.strip { padding: clamp(10px, 2vw, 26px) 0 clamp(44px, 6vw, 76px); }
/* a small horizontal "conveyor belt" of real landscape photos */
.teach-strip {
  display: flex; gap: .7rem; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding-bottom: .6rem;
}
.teach-strip figure { margin: 0; flex: 0 0 auto; scroll-snap-align: start; }
/* center the row once the three photos fit; keep left-aligned scroll on narrow phones */
@media (min-width: 640px) { .teach-strip { justify-content: center; } }
.teach-strip img {
  height: clamp(132px, 17vw, 188px); width: auto; aspect-ratio: 3 / 2;
  object-fit: cover; border-radius: var(--radius-sm); display: block;
}

/* ---------- how a day runs (agenda card) ---------- */
.day-grid { display: grid; gap: clamp(2rem, 4vw, 3.4rem); align-items: center; }
.agenda-label { font-family: var(--mono); font-size: .76rem; letter-spacing: .04em; color: var(--ink-soft); margin: 0 0 .7rem; }
.agenda {
  list-style: none; margin: 0;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: .4rem clamp(1.2rem, 3vw, 1.8rem);
}
.agenda-item { display: grid; grid-template-columns: 62px 1fr; gap: .2rem 1.2rem; padding: 1.05rem 0; border-top: 1px solid var(--line); align-items: start; }
.agenda-item:first-child { border-top: 0; }
.agenda-time { font-family: var(--mono); font-size: .8rem; color: var(--accent-deep); padding-top: .2rem; }
.agenda-body h3 { margin: 0 0 .25rem; font-size: 1.05rem; }
.agenda-body p { margin: 0; color: var(--ink-soft); font-size: .93rem; max-width: 52ch; }
.agenda-item--break .agenda-body h3 { font-weight: 600; color: var(--ink-soft); }
.day-note { font-family: var(--mono); font-size: .76rem; color: var(--ink-soft); margin: 1.1rem 0 0; }
.day-who { margin: 2rem 0 0; font-size: var(--lead); color: var(--ink-soft); max-width: 60ch; }
.day-who strong { color: var(--ink); }
.day-cta { margin: 2.2rem 0 0; }

/* ---------- pricing ---------- */
.pricing { background: var(--paper-2); }
.price-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.price-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.price-card h3 { margin: 0 0 .5rem; }
.price-amt { font-family: var(--display); font-size: 1.7rem; font-weight: 800; letter-spacing: -.03em; margin: 0; }
.price-meta { font-family: var(--mono); font-size: .74rem; color: var(--ink-soft); margin: .25rem 0 1.1rem; text-transform: lowercase; letter-spacing: .03em; }
.price-desc { color: var(--ink-soft); font-size: .96rem; flex: 1; margin-bottom: 1.5rem; }
/* tick-bullet feature list for pricing cards — matches the Learn-card pattern so the page reads as one voice */
.price-features { list-style: none; margin: 0 0 1.5rem; padding: 0; flex: 1; }
.price-features li {
  font-size: .95rem; color: var(--ink);
  padding-left: 1.7rem; position: relative;
  margin-bottom: .55rem; line-height: 1.45;
}
.price-features li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 800; font-size: 1.05rem;
  font-family: var(--body);
}
.price-card--featured { border-color: var(--accent); border-width: 1.5px; box-shadow: 0 14px 40px rgba(30,48,80,.18); }
.price-badge { position: absolute; top: -11px; left: 1.5rem; font-family: var(--body); background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .35em .9em; border-radius: 999px; }

/* ---------- about / why me (second half of the trust block, extends proofband bg) ---------- */
.proof { background: var(--paper-2); }
.proof-grid { display: grid; gap: 2rem; align-items: center; margin-bottom: clamp(42px, 6vw, 68px); }
.proof-headshot { width: 100%; max-width: 340px; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.proof-story h2 { font-size: var(--h2); max-width: 18ch; }
.proof-bullets { list-style: none; margin: 1.4rem 0 1.6rem; padding: 0; max-width: 54ch; }
.proof-bullets li { position: relative; padding-left: 1.6rem; font-size: var(--lead); margin-bottom: .65rem; line-height: 1.45; color: var(--ink); }
.proof-bullets li::before { content: ""; position: absolute; left: 0; top: .68em; width: 14px; height: 2px; background: var(--accent); border-radius: 2px; }
.proof-bullets strong { color: var(--ink); font-weight: 700; }

/* video (16:9 responsive, click-to-load facade; no third-party until played) */
.proof-video-row { margin-bottom: clamp(42px, 6vw, 68px); }
.proof-video-row .proof-video { margin: 0 auto; max-width: 760px; }
.proof-video { margin: 0; }
.video { position: relative; aspect-ratio: 16 / 9; width: 100%; background: var(--dark); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.video > iframe, .video > video, .video > img { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; object-fit: cover; }
.video-facade { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; background-color: var(--paper-2); background-size: cover; background-position: center; display: grid; place-items: center; }
.video-facade::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,20,.05), rgba(20,20,20,.4)); }
.video-play { position: relative; width: 64px; height: 64px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; box-shadow: 0 6px 20px rgba(20,20,20,.35); transition: transform .2s var(--ease), background .2s var(--ease); }
.video-facade:hover .video-play { transform: scale(1.06); background: var(--accent-deep); }
.video-play::after { content: ""; width: 0; height: 0; margin-left: 4px; border-style: solid; border-width: 10px 0 10px 17px; border-color: transparent transparent transparent #fff; }
.video-caption { font-family: var(--mono); font-size: .78rem; color: var(--ink-soft); margin: .7rem 0 0; padding-left: .9rem; border-left: 3px solid var(--accent); text-align: left; }
/* smaller secondary line under the main video caption — context for older footage */
.video-caption-aside { display: block; margin-top: .35rem; font-size: .7rem; opacity: .72; }
@media (prefers-reduced-motion: reduce) { .video-facade:hover .video-play { transform: none; } }

/* ---------- stats (used inside proofband) ---------- */
.stats { list-style: none; margin: 0; padding: 1.9rem 1.6rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; background: var(--dark); color: #e6ebf2; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-md); }
.stats li { display: flex; flex-direction: column; gap: .3rem; }
.stat-num { font-family: var(--display); font-size: clamp(2.1rem, 1.4rem + 2.2vw, 3rem); font-weight: 800; letter-spacing: -.03em; color: #ffffff; }
.stat-label { font-family: var(--mono); font-size: .74rem; color: #aebccf; text-transform: lowercase; letter-spacing: .03em; }

/* ---------- proof band (evidence, up front) ---------- */
.proofband { background: var(--paper-2); }
.proofband-top { margin-bottom: clamp(36px, 5vw, 56px); }
.proofband-head { max-width: 30ch; margin-bottom: clamp(24px, 4vw, 36px); }
.proofband-head h2 { margin-bottom: .5rem; }

/* reviews grid (static; the human voices that close the loop) */
.reviews-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); max-width: 1080px; margin: 0 auto; }
.rev {
  margin: 0; position: relative;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.rev::before {
  content: "\201C";
  position: absolute; top: .35rem; left: 1rem;
  font-family: var(--display); font-weight: 800;
  font-size: 3.6rem; line-height: 1; color: var(--accent);
  opacity: .16; pointer-events: none;
}
.rev:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.rev blockquote {
  position: relative;
  margin: 0 0 1rem;
  font-family: var(--display); font-weight: 500;
  font-size: 1rem; line-height: 1.45; letter-spacing: -.01em;
  flex: 1; color: var(--ink);
}
.rev figcaption {
  font-family: var(--mono); color: var(--ink-soft);
  font-size: .75rem;
  border-top: 1px solid var(--line);
  padding-top: .8rem;
}
.reviews-foot { text-align: center; margin: 1.4rem auto 0; color: var(--ink-soft); max-width: 60ch; }

/* ---------- what you'll learn (cards lead: gradient bg, top stripe, circular num badge, tick bullets) ---------- */
.learn-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.learn-item {
  position: relative;
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--card) 38%, var(--card) 100%);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  /* navy-tinted layered shadow gives cards real presence on the cream background */
  box-shadow: 0 4px 14px rgba(20,20,20,.06), 0 18px 38px rgba(30,48,80,.10);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.learn-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(20,20,20,.08), 0 26px 50px rgba(30,48,80,.14);
}

/* circular numbered badge (replaces the tiny mono "01") */
.learn-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--display); font-size: 1rem; font-weight: 700;
  margin: 0 0 1.4rem; letter-spacing: 0;
}

.learn-item h3 { margin: 0 0 .4rem; font-size: clamp(1.55rem, 1.2rem + .85vw, 2rem); letter-spacing: -.028em; line-height: 1.04; }
.learn-tagline { margin: 0 0 1.4rem; color: var(--ink); font-size: 1.05rem; font-weight: 600; font-family: var(--display); letter-spacing: -.01em; line-height: 1.22; }

/* ticked bullets: each line is a verb-led action your team will take */
.learn-item-builds { list-style: none; margin: 0; padding: 0; }
.learn-item-builds li {
  font-size: .96rem; color: var(--ink);
  padding-left: 1.7rem; position: relative;
  margin-bottom: .55rem; line-height: 1.45;
}
.learn-item-builds li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 800; font-size: 1.05rem;
  font-family: var(--body);
}
@media (prefers-reduced-motion: reduce) { .learn-item:hover { transform: none; } }

/* ---------- faq ---------- */
.faq { background: var(--paper-2); }
.faq-inner { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.2rem 0; font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--body); font-size: 1.5rem; font-weight: 300; color: var(--accent); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 0 1.3rem; color: var(--ink-soft); max-width: 64ch; }

/* ---------- cta / form ---------- */
.cta { background: var(--dark); color: #e6ebf2; }
.cta-inner { display: grid; gap: 2.4rem; align-items: start; }
.cta-copy h2 { font-size: var(--h2); color: #ffffff; max-width: 16ch; }
.cta-copy p { color: #c2cad8; font-size: var(--lead); max-width: 42ch; }
.cta-bookbtn { margin-top: .6rem; }
.enquiry-form { background: var(--card); color: var(--ink); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .4rem; }
.label-optional { font-weight: 400; color: var(--ink-soft); }
.field textarea { resize: vertical; min-height: 96px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-family: var(--body); padding: .72em .9em; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--paper); color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint);
}
.field textarea { resize: vertical; }
.enquiry-form .btn { margin-top: .4rem; }
.form-status { margin: 1rem 0 0; text-align: center; font-weight: 600; color: var(--accent-deep); }
/* under-form reassurance — sets human-reply expectation right where conviction is needed */
.form-trust { font-size: .82rem; color: var(--ink-soft); text-align: center; margin: .9rem 0 0; line-height: 1.4; }
.hp-field { position: absolute; left: -9999px; }

/* ---------- footer ---------- */
.site-footer { background: #14213e; color: #94a0b5; padding: clamp(42px, 6vw, 66px) 0; }
.footer-inner { text-align: center; }
.footer-usp { font-family: var(--display); font-size: clamp(1.2rem, 1rem + .9vw, 1.55rem); font-weight: 700; letter-spacing: -.02em; color: #ffffff; max-width: 34ch; margin: 0 auto 1.5rem; line-height: 1.25; }
.footer-meta { font-family: var(--mono); font-size: .82rem; margin: 0 0 .5rem; }
.footer-links { display: flex; justify-content: center; gap: 1.4rem; margin: 0 0 1rem; }
.footer-links a { font-family: var(--mono); font-size: .82rem; color: var(--accent-soft); text-decoration: none; border-bottom: 1px solid transparent; }
.footer-links a:hover { border-color: var(--accent-soft); }
.footer-copy { font-family: var(--mono); font-size: .76rem; opacity: .6; margin: 0; }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- focus visibility ---------- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- skip-to-content (keyboard a11y) ---------- */
.skip-link { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus {
  position: fixed; left: 1rem; top: 1rem; width: auto; height: auto;
  padding: .65rem 1.1rem; background: var(--accent); color: #fff;
  border-radius: var(--radius-sm); z-index: 100; font-weight: 600;
  text-decoration: none;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
/* very small mobile: hide the header CTA pill — the hamburger menu already has a Book a call button */
@media (max-width: 479px) {
  .header-cta { display: none; }
}

@media (min-width: 600px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 760px) {
  .learn-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .hero-inner { grid-template-columns: .9fr 1.1fr; align-items: start; }
  .day-grid { grid-template-columns: .9fr 1.1fr; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .proofband-top { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: center; }
  .proofband-top .stats { grid-template-columns: repeat(2, 1fr); }
  .proofband-head { margin-bottom: 0; }

  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid { grid-template-columns: 340px 1fr; gap: 3.2rem; }
  .cta-inner { grid-template-columns: 1fr 1fr; gap: 3.6rem; align-items: center; }
}
