/* ============================================================
   GTR by Vero UK — stylesheet
   All styling lives here; index.html and script.js carry NO
   inline styles, only semantic classes. Mobile-responsive via
   the media queries at the foot of this file.
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap');

/* ---- Design tokens ---- */
:root {
  --font-display: 'Space Grotesk', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Inter', Arial, ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'Space Mono', 'Space Grotesk', ui-monospace, monospace;

  --vero-coral:      #ff7759;
  --vero-near-black: #17171c;

  --ink:       #1c1813;   /* primary text */
  --ink-deep:  #17150f;   /* dark sections + dark buttons */
  --paper:     #efeae1;   /* nav pill / chips */
  --paper-line:#e3dccd;
  --muted:     #6b6258;   /* secondary text */
  --sand:      #9b8c77;   /* tertiary / accent neutral */
  --line:      #d3cabb;   /* hairlines on light */
  --line-soft: #e6dfd2;
  --field:     #ddd6c8;   /* input borders */
  --on-dark:   rgba(255,255,255,.82);
  --on-dark-2: rgba(255,255,255,.6);
}

/* ---- Reset ---- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #fff; }
/* JS toggles visibility with the `hidden` attribute. Several classes below
   (.field, .form, .modal, etc.) set their own `display`, which would otherwise
   beat the browser's [hidden] default — force hidden to always win. */
[hidden] { display: none !important; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--ink); color: #fff; }
button { font: inherit; }
img, svg { display: block; }
h1, h2, h3, p { margin: 0; }

.it { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }

/* ============================================================
   Layout helpers
   ============================================================ */
.shell { position: relative; background: #fff; min-height: 100vh; overflow: hidden; }

.wrap        { max-width: 1240px; margin: 0 auto; padding-inline: 24px; width: 100%; }
.wrap--lg    { max-width: 1100px; }
.wrap--md    { max-width: 1000px; }

.section            { padding-top: clamp(40px,6vw,72px);  padding-bottom: clamp(40px,6vw,72px); }
.section--tight     { padding-top: clamp(40px,5vw,56px);  padding-bottom: clamp(40px,5vw,56px); }
.section--lg        { padding-top: clamp(56px,8vw,96px);  padding-bottom: clamp(56px,8vw,96px); }
.section--xl        { padding-top: clamp(64px,9vw,104px); padding-bottom: clamp(64px,9vw,104px); }
.section--dark      { background: var(--ink-deep); color: #fff; }
.section--page-top  { padding-top: clamp(110px,12vw,150px); padding-bottom: clamp(36px,5vw,52px); }
.section--rule      { border-top: 1px solid var(--line); }
.section--rule-soft { border-top: 1px solid var(--line-soft); }
.pt-0    { padding-top: 0; }
.clip    { overflow: hidden; }
.center  { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ls-0    { letter-spacing: 0; }

/* Generic stacks / rows */
.stack    { display: flex; flex-direction: column; }
.stack-12 { display: flex; flex-direction: column; gap: 12px; }
.stack-18 { display: flex; flex-direction: column; gap: 18px; }
.stack-20 { display: flex; flex-direction: column; gap: 20px; }
.row-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.row-wrap.center { justify-content: center; }

/* ============================================================
   Eyebrow labels (mono / uppercase)
   ============================================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--vero-coral);
}
.eyebrow--wide  { letter-spacing: 1.4px; }
.eyebrow--sand  { color: var(--sand); }
.eyebrow--muted { color: var(--muted); }
.eyebrow--sm    { font-size: 11px; letter-spacing: 1px; }
.eyebrow--mb    { display: block; margin-bottom: 24px; }
.eyebrow--mb-sm { display: block; margin-bottom: 16px; }

/* ============================================================
   Headings & body type
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1.06;
  text-wrap: balance;
  margin: 0;
}
.display--hero { font-size: clamp(38px,5.6vw,76px); line-height: 1.04; letter-spacing: -1.8px; max-width: 15ch; }
.display--page { font-size: clamp(36px,5.2vw,74px); line-height: 1.02; letter-spacing: -1.8px; max-width: 16ch; }
.display--xl   { font-size: clamp(32px,5vw,64px);   line-height: 1.04; letter-spacing: -1.8px; }
.display--lg   { font-size: clamp(30px,4.4vw,56px); line-height: 1.04; letter-spacing: -1.4px; }
.display--lg2  { font-size: clamp(30px,4.2vw,54px); line-height: 1.06; letter-spacing: -1.4px; }
.display--md   { font-size: clamp(28px,3.8vw,46px); line-height: 1.08; letter-spacing: -1px; }
.display--sm   { font-size: clamp(26px,3.4vw,42px); line-height: 1.1;  letter-spacing: -.8px; }
.display--sm2  { font-size: clamp(26px,3vw,38px);   line-height: 1.1;  letter-spacing: -.8px; }
.display--xs   { font-size: clamp(26px,2.8vw,38px); line-height: 1.08; letter-spacing: -.8px; }
.on-dark { color: #fff; }

.lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px,2.3vw,32px);
  line-height: 1.28;
  letter-spacing: -.5px;
  color: var(--ink);
  text-wrap: balance;
}
.intro {
  font-size: clamp(18px,1.6vw,22px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 640px;
}
.prose      { font-size: 18px; line-height: 1.6; color: var(--ink); }
.prose--muted { color: var(--muted); }
.prose--dark  { color: var(--on-dark); }
.measure-46 { max-width: 46ch; }
.measure-60 { max-width: 60ch; }
.measure-80 { max-width: 80ch; }
.mt-24 { margin-top: 24px; }
.mb-12 { margin-bottom: 12px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-36 { margin-bottom: 36px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mt-36 { margin-top: 36px; }
.mb-18 { margin-bottom: 18px; }
.mw-520 { max-width: 520px; }
.mw-560 { max-width: 560px; }
.mw-600 { max-width: 600px; }
.mw-620 { max-width: 620px; }
.mw-640 { max-width: 640px; }
.mw-16ch { max-width: 16ch; }
.mw-18ch { max-width: 18ch; }
.mw-22ch { max-width: 22ch; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--xs   { padding: 9px 20px; }
.btn--sm   { padding: 13px 22px; }
.btn--md   { padding: 14px 26px; }
.btn--lg   { padding: 15px 30px; font-size: 15px; }
.btn--xl   { padding: 16px 32px; font-size: 15px; }
.btn--wide { padding: 15px 40px; font-size: 15px; }
.btn--block{ width: 100%; }

.btn--dark    { background: var(--ink-deep); color: #fff; }
.btn--dark:hover { background: #2a261d; }
.btn--outline { background: #fff; color: var(--ink); border: 1px solid #d8cfbf; }
.btn--outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ghost-dark { background: none; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: #fff; }
.btn--light   { background: #fff; color: #1a1611; }
.btn--light:hover { background: #e9e3d9; }
.btn--pay     { background: #f0ece4; color: #1a1611; }
.btn--pay:hover { background: #fff; }

.btn--icon, .btn--icon-sm {
  border-radius: 50%; padding: 0; flex: none;
}
.btn--icon    { width: 48px; height: 48px; border: 1px solid #d8cfbf; background: #fff; }
.btn--icon:hover { background: var(--ink); border-color: var(--ink); }
.btn--icon:hover svg { stroke: #fff; }
.btn--icon-sm { width: 36px; height: 36px; background: rgba(255,255,255,.12); }
.btn--icon-sm:hover { background: rgba(255,255,255,.22); }

/* ============================================================
   Navigation
   ============================================================ */
#nav { width: 100%; }
.nav--home  { position: absolute; top: 0; left: 0; right: 0; z-index: 50; }
.nav--inner {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8e2d6;
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 22px 24px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
}
.nav-pill {
  display: flex; align-items: center; gap: 20px;
  border-radius: 999px; padding: 8px 8px 8px 24px;
  background: var(--paper); border: 1px solid var(--paper-line);
  justify-self: center;
}
.nav-menu { display: flex; align-items: center; gap: 26px; }
.navlink {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--font-body); font-size: 14px; white-space: nowrap;
  color: var(--ink); opacity: .55; transition: opacity .2s ease;
}
.navlink:hover { opacity: 1; }
.navlink.is-active { opacity: 1; }

/* Brand mark */
.brand { background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 11px; padding: 0; text-align: left; }
.brand-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--ink); display: inline-block; position: relative; flex: none; }
.brand-dot::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: #fff; }
.brand-text { display: flex; align-items: baseline; gap: 7px; }
.brand-name { font-family: var(--font-display); font-size: 21px; font-weight: 500; letter-spacing: -.6px; line-height: 1; color: var(--ink); }
.brand-sub  { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink); opacity: .6; }

/* Burger (mobile menu toggle) — hidden on desktop, shown under 768px */
.nav-burger {
  display: none; flex: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0;
  background: var(--paper); border: 1px solid var(--paper-line); border-radius: 12px;
  cursor: pointer;
}
.nav-burger span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform .25s ease, opacity .2s ease;
}
#nav.is-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
#nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero (home)
   ============================================================ */
.hero { position: relative; min-height: 760px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-bg    { position: absolute; inset: 0; background: #fff; }
.hero-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; width: 100%; padding: 120px 24px 0; text-align: center; }
.hero-title { margin: 0 auto; }
.hero-sub   { max-width: 26ch; margin: 24px auto 0; }
.hero-foot  { position: relative; z-index: 2; max-width: 1240px; margin: 40px auto 0; width: 100%; padding: 0 24px 40px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-top: auto; }
.hero-foot-note { font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--sand); max-width: 36ch; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   Section heads
   ============================================================ */
.section-head { max-width: 1240px; margin: 0 auto 44px; padding: 0 24px; text-align: center; }
.section-head .display { margin-left: auto; margin-right: auto; }
.section-head .display--md { max-width: 22ch; }
.section-head .display--sm { max-width: none; }

/* ============================================================
   Marquees
   ============================================================ */
.marquee-band { position: relative; }
.marquee { display: flex; width: max-content; }
.marquee--who      { animation: gMarquee 52s linear infinite; }
.marquee--evidence { animation: gMarquee 64s linear infinite; }
.gtr-marquee { will-change: transform; }
.gtr-marquee:hover { animation-play-state: paused; }
.marquee-fade { position: absolute; top: 0; height: 100%; width: 96px; pointer-events: none; }
.marquee-fade--l { left: 0; background: linear-gradient(90deg,#fff,rgba(255,255,255,0)); }
.marquee-fade--r { right: 0; background: linear-gradient(270deg,#fff,rgba(255,255,255,0)); }

.who-chip { flex: none; margin-right: 14px; background: #fff; border: 1px solid var(--line-soft); border-radius: 14px; padding: 18px 28px; display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.who-chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--vero-coral); flex: none; }
.who-chip-label { font-family: var(--font-display); font-size: 19px; font-weight: 500; letter-spacing: -.3px; color: var(--ink); }

.evidence-card { flex: none; margin-right: 18px; width: 340px; background: #fff; border: 1px solid var(--line-soft); border-radius: 20px; padding: 30px; display: flex; flex-direction: column; min-height: 236px; }
.evidence-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 24px; letter-spacing: -.4px; color: var(--ink); margin: auto 0 10px; line-height: 1.12; }
.evidence-card p { font-size: 15px; line-height: 1.5; color: var(--muted); margin: 0; text-wrap: pretty; }

/* ============================================================
   Why-GTR cards
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 18px; }
.feature-card { position: relative; border-radius: 22px; overflow: hidden; min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; }
.feature-card__bg { position: absolute; inset: 0; background: radial-gradient(120% 95% at 72% 12%, #cbb89c 0%, #a08c71 46%, #5e5142 100%); }
.feature-card__art { position: absolute; inset: 0; width: 100%; height: 100%; }
.feature-card__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,14,0) 38%, rgba(20,18,14,.78) 100%); pointer-events: none; }
.feature-card__body { position: relative; padding: 28px; pointer-events: none; }
.feature-card__body h3 { font-family: var(--font-display); font-weight: 500; font-size: 24px; letter-spacing: -.4px; color: #fff; margin: 0 0 8px; line-height: 1.12; }
.feature-card__body p { font-size: 15px; line-height: 1.5; color: var(--on-dark); margin: 0; max-width: 30ch; }

.card-dark { background: var(--ink-deep); border-radius: 22px; padding: 30px; min-height: 440px; display: flex; flex-direction: column; justify-content: space-between; }
.card-sand { background: var(--sand); border-radius: 22px; padding: 30px; min-height: 440px; display: flex; flex-direction: column; justify-content: space-between; }
.card-title-light { font-family: var(--font-display); font-weight: 500; font-size: 26px; letter-spacing: -.5px; color: #fff; line-height: 1.1; margin: 0; }
.method-lines { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.method-bar { height: 14px; border-radius: 7px; background: rgba(255,255,255,.1); }
.method-bar--1 { width: 88%; }
.method-bar--2 { width: 64%; background: rgba(255,255,255,.08); }
.method-note { background: rgba(255,255,255,.07); border-radius: 14px; padding: 16px 18px; margin-top: 8px; font-size: 14px; line-height: 1.45; color: var(--on-dark); }
.sand-pill { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: rgba(255,255,255,.16); border-radius: 999px; padding: 14px 18px 14px 22px; }
.sand-pill span:first-child { font-family: var(--font-body); font-size: 15px; color: #fff; }
.sand-pill-icon { width: 30px; height: 30px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; flex: none; }

/* ============================================================
   Plan / stats split
   ============================================================ */
.split { display: grid; gap: clamp(32px,5vw,72px); }
.split--plan { grid-template-columns: minmax(220px,0.8fr) minmax(300px,2fr); align-items: start; }
.split--faq  { grid-template-columns: minmax(300px,1.4fr) minmax(220px,0.9fr); align-items: center; }
.split--even { grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 8px; margin-bottom: 36px; }
.stat { border-left: 1px solid var(--line); padding: 4px 0 4px 18px; }
.stat-num { font-family: var(--font-display); font-size: clamp(28px,3vw,40px); font-weight: 500; letter-spacing: -1px; color: var(--ink); line-height: 1; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.4; }

.stat-row { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 36px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 28px; }
.stat--dark .stat-num { color: #fff; }
.stat--dark .stat-label { color: var(--on-dark-2); }

/* ============================================================
   Pricing
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; align-items: stretch; }
.price-card { border-radius: 22px; padding: clamp(26px,3vw,34px); display: flex; flex-direction: column; height: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); }
.price-card--feature { background: var(--sand); border: none; }
.price-card h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px,2.4vw,27px); letter-spacing: -.5px; color: #fff; margin: 0 0 14px; line-height: 1.08; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.price-amount { font-family: var(--font-display); font-size: clamp(34px,4vw,46px); font-weight: 500; letter-spacing: -1.5px; color: #fff; line-height: 1; }
.price-unit { font-size: 13px; color: rgba(255,255,255,.55); }
.price-sep { height: 1px; background: rgba(255,255,255,.14); margin: 22px 0; }
.price-feats { display: flex; flex-direction: column; gap: 12px; flex: 1 1 auto; }
.feat { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.4; color: var(--on-dark); }
.check-svg { flex: none; margin-top: 3px; }
.price-cta-wrap { margin-top: 26px; }
.legal-note { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.45); margin: 40px 0 0; max-width: 80ch; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; text-align: left; }
.faq-q-text { font-family: var(--font-display); font-size: clamp(17px,1.6vw,20px); font-weight: 500; letter-spacing: -.3px; color: var(--ink); line-height: 1.3; }
.faq-toggle { width: 26px; height: 26px; flex: none; color: var(--ink); font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; font-family: var(--font-body); }
.faq-a { font-size: 16px; line-height: 1.6; color: #5f574c; margin: 0; padding: 0 40px 26px 0; max-width: 60ch; }
.faq-orb-wrap { display: flex; justify-content: center; }
.faq-orb { width: clamp(220px,26vw,320px); height: clamp(220px,26vw,320px); border-radius: 50%; overflow: hidden; position: relative; background: radial-gradient(120% 100% at 35% 22%, #d8c6a8 0%, #a4906f 50%, #5f513f 100%); box-shadow: inset 0 0 60px rgba(0,0,0,.25); }
.faq-orb svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ============================================================
   About page
   ============================================================ */
.flex-split { display: flex; gap: 56px; flex-wrap: wrap; }
.flex-split--center { align-items: center; }
.col-grow   { flex: 1 1 380px; }
.col-grow-sm{ flex: 1 1 320px; }
.col-fixed  { flex: 0 0 300px; max-width: 100%; }
.portrait { width: 300px; max-width: 100%; aspect-ratio: 3/4; border-radius: 22px; overflow: hidden; position: relative; background: radial-gradient(120% 100% at 50% 28%, #3a2f24 0%, #251d15 50%, #17120c 100%); border: 1px solid rgba(255,255,255,.1); }
.portrait svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.meaning-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.meaning-card { background: #fff; border: 1px solid var(--line-soft); border-radius: 18px; padding: 30px 26px; }
.meaning-word { font-size: 26px; color: var(--ink); margin-bottom: 12px; }
.meaning-body { font-size: 15px; line-height: 1.5; color: var(--muted); }
.mv-text { font-family: var(--font-display); font-size: clamp(22px,2.4vw,30px); font-weight: 400; line-height: 1.25; letter-spacing: -.6px; color: var(--ink); margin: 0; }
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 40px; }
.approach-item { border-top: 1px solid var(--ink); padding-top: 24px; }
.approach-item h3 { font-family: var(--font-display); font-weight: 500; font-size: 22px; letter-spacing: -.4px; color: var(--ink); margin: 0 0 12px; }
.approach-item p { font-size: 16px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ============================================================
   Services page
   ============================================================ */
.chip { font-family: var(--font-body); font-size: 13px; color: var(--ink); background: #fff; border: 1px solid #e0d8c8; border-radius: 999px; padding: 9px 18px; }
.snapshot { background: var(--ink-deep); color: #fff; border-radius: 22px; padding: clamp(28px,4vw,44px); display: flex; gap: 40px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.snapshot-body { flex: 1 1 420px; }
.snapshot h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px,2.8vw,34px); letter-spacing: -.6px; color: #fff; margin: 0 0 12px; line-height: 1.08; }
.snapshot p { font-size: 16px; line-height: 1.55; color: var(--on-dark); margin: 0; max-width: 54ch; }

.service-list { display: flex; flex-direction: column; gap: 16px; }
.service-card { background: #fff; border-radius: 22px; padding: clamp(28px,4vw,44px); display: flex; gap: 48px; flex-wrap: wrap; }
.service-main { flex: 1 1 300px; }
.service-side { flex: 1 1 260px; }
.service-tagrow { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.service-num { font-family: var(--font-body); font-size: 12px; color: var(--vero-coral); }
.service-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .6px; text-transform: uppercase; color: var(--muted); border: 1px solid var(--field); border-radius: 999px; padding: 5px 14px; }
.service-card h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px,3vw,38px); letter-spacing: -.8px; color: var(--ink); margin: 0 0 16px; line-height: 1.05; }
.service-desc { font-size: 17px; line-height: 1.55; color: var(--ink); margin: 0 0 24px; max-width: 42ch; }
.service-bestfor { background: #f4f1eb; border-radius: 14px; padding: 16px 18px; margin-bottom: 24px; max-width: 42ch; }
.service-bestfor-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .6px; text-transform: uppercase; color: var(--muted); }
.service-bestfor-val { font-size: 15px; line-height: 1.45; color: var(--ink); margin-top: 6px; }
.service-includes-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .6px; text-transform: uppercase; color: var(--muted); }
.include-list { display: flex; flex-direction: column; margin-top: 16px; border-top: 1px solid #e6e0d4; }
.include { display: flex; gap: 12px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid #e6e0d4; font-size: 15px; line-height: 1.4; color: var(--ink); }

/* ============================================================
   Programme page
   ============================================================ */
.steps { border-top: 1px solid var(--ink); }
.step { display: flex; gap: 40px; flex-wrap: wrap; padding: 36px 0; border-bottom: 1px solid var(--line); }
.step-side { flex: 0 0 130px; }
.step-num { font-family: var(--font-body); font-size: 12px; color: var(--vero-coral); margin-bottom: 8px; }
.step-name { font-size: clamp(28px,3vw,40px); color: var(--ink); line-height: 1.02; }
.step-main { flex: 1 1 420px; }
.step-main p { font-size: 18px; line-height: 1.6; color: var(--ink); margin: 0; max-width: 60ch; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   Contact page + form
   ============================================================ */
.contact-layout { display: flex; gap: 56px; flex-wrap: wrap; align-items: flex-start; }
.contact-main { flex: 1 1 540px; min-width: 300px; }
.contact-aside { flex: 1 1 320px; min-width: 260px; display: flex; flex-direction: column; gap: 18px; }

.thanks { display: none; border-radius: 22px; padding: 48px; background: var(--ink-deep); color: #fff; }
.thanks.is-visible { display: block; }
.thanks h2 { font-family: var(--font-display); font-weight: 500; font-size: 28px; letter-spacing: -.6px; color: #fff; margin: 0 0 12px; }
.thanks p { font-size: 16px; line-height: 1.55; color: var(--on-dark); margin: 0 0 24px; max-width: 46ch; }

.form { display: flex; flex-direction: column; gap: 22px; }
.form.is-hidden { display: none; }
.field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-family: var(--font-body); font-size: 14px; color: var(--ink); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: #fff; padding: 12px 16px; border-radius: 8px; border: 1px solid var(--field); outline: none;
}
.field textarea { resize: vertical; }
.field input[type=file] { font-size: 14px; color: var(--muted); border: 1px dashed #ccc3b3; padding: 16px; }
.form-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 4px; }
.form-actions span { font-size: 13px; color: var(--muted); }

.aside-card { background: #fff; border-radius: 18px; padding: 28px; }
.aside-card--bordered { background: #fff; border: 1px solid var(--line-soft); }
.aside-card p { font-size: 15px; line-height: 1.55; color: var(--ink); margin: 0; }
.aside-actions { display: flex; flex-direction: column; gap: 12px; }
.aside-fineprint { padding: 0 4px; }
.aside-fineprint p { font-size: 12px; line-height: 1.55; color: #9b9182; margin: 0; }

/* ============================================================
   Disclaimer + footer
   ============================================================ */
.disclaimer p { font-size: 14px; line-height: 1.65; color: var(--muted); max-width: 80ch; margin: 0 0 14px; }
.disclaimer p:last-child { margin-bottom: 0; }

.footer { background: #fff; padding: 0 16px 16px; }
.footer-inner { max-width: 1240px; margin: 0 auto; background: var(--ink-deep); color: #fff; border-radius: 28px; padding: clamp(40px,5vw,64px) clamp(28px,4vw,56px); }
.footer-top { display: flex; gap: 48px; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; }
.footer-brand { flex: 1 1 320px; }
.footer-brand p { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.66); max-width: 38ch; margin: 0; }
.footer-mark { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-mark .brand-dot { background: #fff; }
.footer-mark .brand-dot::after { background: var(--ink-deep); }
.footer-mark .brand-name { color: #fff; font-size: 24px; }
.footer-mark .brand-sub { color: rgba(255,255,255,.5); font-size: 11px; }
.footer-cta-col { flex: 0 0 auto; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.webinar-card { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 12px 14px; max-width: 300px; }
.webinar-badge { width: 42px; height: 42px; flex: none; border-radius: 50%; background: radial-gradient(120% 120% at 30% 20%, #d8b48a, #9c6a3e); display: flex; align-items: center; justify-content: center; }
.webinar-text { font-size: 13px; line-height: 1.35; color: var(--on-dark); }
.footer-divider { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 28px; display: flex; gap: 28px; flex-wrap: wrap; justify-content: space-between; align-items: center; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-link { background: none; border: none; cursor: pointer; padding: 0; font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,.7); transition: color .2s ease; }
.footer-link:hover { color: #fff; }
.footer-tagline { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.footer-legal span { font-size: 13px; color: rgba(255,255,255,.45); }
.footer-legal span:last-child { max-width: 60ch; }
.footer-mini { background: none; border: none; cursor: pointer; padding: 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.35); transition: color .2s ease; }
.footer-mini:hover { color: rgba(255,255,255,.8); }

/* ============================================================
   Auth modal + payment toast
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(20,18,14,.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.modal__card { position: relative; width: 100%; max-width: 420px; background: #fff; border-radius: 22px; padding: 36px; box-shadow: 0 30px 80px rgba(20,18,14,.35); animation: veroUp .3s cubic-bezier(.22,.61,.36,1) both; }
.modal__close { position: absolute; top: 16px; right: 18px; background: none; border: none; cursor: pointer; font-size: 26px; line-height: 1; color: var(--muted); }
.modal__title { font-family: var(--font-display); font-weight: 500; font-size: 28px; letter-spacing: -.6px; color: var(--ink); margin: 0 0 20px; line-height: 1.1; }
.modal__note { font-size: 12px; line-height: 1.5; color: var(--muted); margin: 18px 0 0; }
.auth-error { font-size: 13px; color: #b4341f; background: #fbeee9; border: 1px solid #f2cabd; border-radius: 8px; padding: 10px 12px; }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 200; display: flex; align-items: center; gap: 14px; background: var(--ink-deep); color: #fff; border-radius: 999px; padding: 14px 18px 14px 24px; font-size: 14px; line-height: 1.4; box-shadow: 0 16px 40px rgba(20,18,14,.3); max-width: calc(100% - 32px); }
.toast button { background: rgba(255,255,255,.14); border: none; color: #fff; cursor: pointer; width: 26px; height: 26px; border-radius: 50%; font-size: 16px; line-height: 1; flex: none; }

.link-btn { background: none; border: none; padding: 0; cursor: pointer; font: inherit; color: var(--vero-coral); text-decoration: underline; }
.auth-ok { font-size: 13px; color: #3f6b2e; background: #e9f1e3; border: 1px solid #cfe0c2; border-radius: 8px; padding: 10px 12px; }

/* ============================================================
   Legal pages (Terms & Conditions, Privacy Policy)
   ============================================================ */
.legal-content h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(20px,2.4vw,26px); letter-spacing: -.4px; color: var(--ink); margin: 44px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--ink); margin: 22px 0 8px; }
.legal-content p { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0 0 14px; }
.legal-content ul { margin: 0 0 14px; padding-left: 22px; }
.legal-content li { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 6px; }
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--vero-coral); text-decoration: underline; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 0 0 32px; font-size: 14px; }
.legal-content th, .legal-content td { text-align: left; padding: 10px 14px; border: 1px solid var(--line-soft); color: var(--ink); }
.legal-content th { font-family: var(--font-mono); font-size: 11px; letter-spacing: .6px; text-transform: uppercase; color: var(--muted); background: var(--paper); }
.legal-content .legal-updated { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--sand); margin: 0 0 32px; }

/* ============================================================
   Feedback / testimonials slider (homepage)
   ============================================================ */
.fb-slider { margin-top: 40px; }
.fb-viewport { overflow: hidden; }
.fb-track { display: flex; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.fb-card { flex: 0 0 100%; box-sizing: border-box; padding: clamp(28px,4vw,48px); background: #fff; border: 1px solid var(--line-soft); border-radius: 24px; }
.fb-tag { display: inline-block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--sand); background: var(--paper); border-radius: 999px; padding: 5px 12px; margin-bottom: 18px; }
.fb-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.fb-star { color: #e3dccd; font-size: 18px; line-height: 1; }
.fb-star.is-on { color: #e0773f; }
.fb-quote { font-family: var(--font-display); font-weight: 400; font-size: clamp(19px,2.4vw,26px); line-height: 1.45; letter-spacing: -.4px; color: var(--ink); margin: 0 0 26px; border: none; padding: 0; }
.fb-person { display: flex; flex-direction: column; gap: 3px; }
.fb-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.fb-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: .8px; text-transform: uppercase; color: var(--sand); }
.fb-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.fb-nav { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; transition: background .2s ease, color .2s ease; flex: none; }
.fb-nav:hover { background: var(--ink-deep); color: #fff; border-color: var(--ink-deep); }
.fb-dots { display: flex; align-items: center; gap: 8px; }
.fb-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; transition: background .2s ease, transform .2s ease; }
.fb-dot.is-on { background: #e0773f; transform: scale(1.35); }

/* ============================================================
   Booking date/time picker (calendar + time slots)
   ============================================================ */
.field-picker {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; text-align: left; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; color: var(--muted);
  background: #fff; border: 1px solid var(--field); border-radius: 12px; padding: 13px 14px;
}
.field-picker:hover { border-color: var(--ink); }
.field-picker.is-set { color: var(--ink); }
.field-picker__icon { color: var(--muted); font-size: 12px; flex: none; }

.modal__card--booking { max-width: 460px; max-height: calc(100vh - 48px); display: flex; flex-direction: column; }
.booking-scroll { flex: 1 1 auto; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; }
/* Confirm stays grey/disabled until a date AND time are chosen, then goes dark */
#booking-confirm:disabled { background: #ddd7cb; color: #a89f8c; cursor: not-allowed; }
#booking-confirm:disabled:hover { background: #ddd7cb; }
.booking-cal { margin-bottom: 16px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-month { font-family: var(--font-display); font-size: 18px; color: var(--ink); }
.cal-nav { width: 34px; height: 34px; border-radius: 10px; border: 1px solid var(--paper-line);
  background: var(--paper); cursor: pointer; font-size: 18px; line-height: 1; color: var(--ink); }
.cal-nav:disabled { opacity: .35; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: .5px;
  text-transform: uppercase; color: var(--muted); padding: 4px 0; }
.cal-cell { aspect-ratio: 1; border: none; background: none; border-radius: 10px; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; color: var(--ink); }
.cal-cell:hover:not(.is-disabled):not(.cal-empty) { background: var(--paper); }
.cal-cell.is-selected { background: var(--ink-deep); color: #fff; }
.cal-cell.is-disabled { color: #cdc4b4; cursor: not-allowed; }
.cal-empty { cursor: default; }

.booking-slots { margin-bottom: 14px; }
.slots-hint { font-size: 13px; color: var(--muted); padding: 8px 0; }
.slots-group + .slots-group { margin-top: 12px; }
.slots-group__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 8px; }
.slot { border: 1px solid var(--field); background: #fff; border-radius: 10px; padding: 9px 0;
  font-family: var(--font-body); font-size: 13px; color: var(--ink); cursor: pointer; }
.slot:hover:not(:disabled) { border-color: var(--ink); }
.slot.is-selected { background: var(--ink-deep); color: #fff; border-color: var(--ink-deep); }
.slot:disabled { opacity: .35; cursor: not-allowed; }

.booking-selected { min-height: 20px; margin-bottom: 14px; font-size: 14px; color: var(--ink); font-weight: 500; }

/* Nav account control (third nav column) */
.nav-auth { justify-self: end; display: flex; align-items: center; gap: 14px; }

/* ============================================================
   Page switching + entrance
   ============================================================ */
.page { display: none; }
.page.is-active { display: block; }
.vero-page { animation: veroUp .55s cubic-bezier(.22,.61,.36,1) both; }

@keyframes veroUp  { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes gMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Accessibility
   ============================================================ */
:focus-visible { outline: 2px solid var(--vero-coral); outline-offset: 3px; border-radius: 4px; }
input:focus-visible, select:focus-visible, textarea:focus-visible,
button:focus-visible, .navlink:focus-visible, a:focus-visible {
  outline: 2px solid var(--vero-coral) !important; outline-offset: 2px;
}

.skip-link {
  position: absolute; left: 16px; top: -56px; z-index: 100;
  background: var(--vero-near-black); color: #fff;
  padding: 11px 20px; border-radius: 999px;
  font-family: var(--font-body); font-size: 14px; text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .vero-page, .gtr-marquee { animation: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 768px) {
  .split--plan,
  .split--faq      { grid-template-columns: 1fr; }
  .split--faq      { align-items: start; }
  .pricing-grid    { grid-template-columns: 1fr; }

  /* Nav collapses into a burger menu */
  .nav-inner {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: space-between; gap: 14px;
    padding-top: 16px; padding-bottom: 16px;
  }
  .nav-burger { display: flex; }
  .nav-pill, .nav-auth { display: none; flex-basis: 100%; }
  #nav.is-open .nav-pill { display: flex; }
  #nav.is-open .nav-auth { display: flex; }
  .nav-pill  { flex-wrap: wrap; justify-content: center; gap: 10px 14px; padding: 12px 16px; max-width: 100%; }
  .nav-menu  { flex-wrap: wrap; justify-content: center; gap: 12px 18px; }
  .nav-auth  { justify-content: center; }
  /* When the menu opens over the hero, give it a readable backdrop */
  #nav.is-open.nav--home {
    background: rgba(255,255,255,.96);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-bottom: 1px solid #e8e2d6;
  }
  /* Hero text sits just below the compact burger nav (not the old tall nav) */
  .hero { min-height: 0; justify-content: flex-start; }
  .hero-inner { padding-top: 100px; }

  /* Footer CTA column stops hugging the right edge */
  .footer-cta-col { align-items: flex-start; }
  .footer-legal span:last-child { max-width: none; }
}

@media (max-width: 560px) {
  .hero { min-height: 0; padding-bottom: 32px; }
  .hero-foot { margin-top: 32px; }
  .flex-split { gap: 32px; }
  .service-card { gap: 28px; }
  .step { gap: 16px; }
  .step-side { flex: 0 0 100%; }
  .thanks { padding: 32px 24px; }
  .btn--xl, .btn--wide { width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; }
}
