/* ============================================================
   grow-in 7 — v3 start page (paid-traffic landing)
   Mobile-first, no JS dependencies for layout. CSS-driven polish.
   ============================================================ */

:root {
  --bg: #F7F3EB;
  --bg-alt: #EFE9DD;
  --surface: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #3A3A3A;
  --ink-mute: #6B6B6B;
  --primary: #C4351F;
  --primary-vivid: #E94B35;
  --forest: #1F4D3C;
  --line: rgba(26, 26, 26, 0.12);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --pad: clamp(20px, 5vw, 72px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--primary); color: var(--bg); }
a { color: inherit; }
ul, ol { list-style: none; }
em { font-style: normal; }

/* paper grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 5;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- header ---------- */
.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad);
}
.top__logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  text-decoration: none;
}
.top__logo em { color: var(--primary); }
.top__price {
  font-size: 13px; font-weight: 700;
  color: var(--forest);
  background: rgba(31, 77, 60, 0.08);
  border: 1px solid rgba(31, 77, 60, 0.22);
  padding: 7px 14px; border-radius: 999px;
  white-space: nowrap;
}

/* ---------- layout ---------- */
.page { position: relative; }
.seven {
  position: absolute; top: -40px; right: -4vw;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(280px, 42vw, 720px);
  line-height: 1; color: var(--primary);
  opacity: 0.05; pointer-events: none; user-select: none;
  z-index: 0;
}

/* soft brand wash behind the hero — premium depth without new assets */
.page::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 720px;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(52vw 40vw at 88% -6%, rgba(233, 75, 53, 0.10), transparent 60%),
    radial-gradient(40vw 34vw at -6% 30%, rgba(31, 77, 60, 0.08), transparent 60%);
}

.lp {
  position: relative; z-index: 1;
  display: grid; gap: clamp(32px, 5vw, 72px);
  padding: clamp(20px, 4vw, 64px) var(--pad) clamp(48px, 7vw, 88px);
  max-width: 1240px; margin: 0 auto;
}
@media (min-width: 980px) {
  /* laptop: balanced two-up hero — columns share a top edge (no floating) */
  .lp {
    grid-template-columns: 1.04fr 0.96fr;
    align-items: start;
    gap: clamp(40px, 4.5vw, 72px);
    padding-top: clamp(32px, 4vw, 60px);
    padding-bottom: clamp(48px, 6vw, 88px);
  }
  /* nudge the pitch down so its big headline lines up with the card's
     "Let's get you live" heading (the card has a progress bar + padding above it) */
  .lp__pitch { position: sticky; top: 40px; padding-top: 8px; }
}
/* shorter laptops: trim the title + step bulk so the form's CTA stays in view */
@media (min-width: 980px) and (max-height: 880px) {
  .lp__title { font-size: clamp(40px, 4.4vw, 64px); margin-bottom: 16px; }
  .lp__price-line { margin-bottom: 22px; }
  .steps { gap: 10px; margin-bottom: 22px; }
  .steps__item { padding: 11px 16px; }
}

/* ---------- pitch ---------- */
.lp__eyebrow {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.dot { width: 9px; height: 9px; border-radius: 999px; background: var(--primary); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.45); opacity: 0.55; } }

.lp__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(44px, 9.5vw, 88px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.lp__title em { color: var(--primary); }
.lp__price-line {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: clamp(16px, 2.4vw, 22px);
}
.lp__price-line strong { color: var(--ink); font-weight: 800; }
/* hero reassurance — disarms "why so cheap?" at first glance */
.lp__catch {
  max-width: 460px;
  margin: 0 0 12px;
  padding: 11px 0 11px 16px;
  border-left: 3px solid var(--primary);
  font-size: 14px; line-height: 1.55; color: var(--ink-mute);
}
.lp__catch strong { color: var(--ink); font-weight: 800; }
.lp__price-line .u {
  background-image: linear-gradient(transparent 72%, rgba(196, 53, 31, 0.32) 72%);
  font-weight: 700; color: var(--ink);
}

/* steps */
/* compact connected stepper — one box, numbers joined by a line */
.steps {
  display: grid; gap: 0; max-width: 460px; margin-bottom: 16px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 6px 20px;
}
.steps__item {
  position: relative;
  display: flex; gap: 14px; align-items: flex-start;
  padding: 13px 0;
}
/* vertical line linking this marker to the next */
.steps__item:not(:last-child)::before {
  content: ""; position: absolute;
  left: 15px; top: 34px; bottom: -4px; width: 2px;
  background: var(--line);
}
.steps__num {
  position: relative; z-index: 1; flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  background: var(--bg-alt); color: var(--ink);
}
.steps__item--live .steps__num { background: var(--primary); color: #fff; }
.steps__item strong { display: block; font-size: 14.5px; font-weight: 800; }
.steps__item span { font-size: 13px; line-height: 1.45; color: var(--ink-mute); }

/* "see more below" link to the full reassurance section */
.lp__more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: clamp(22px, 3.5vw, 36px);
  font-size: 13.5px; font-weight: 700; color: var(--primary);
  border-bottom: 2px solid transparent;
  transition: gap 0.25s ease, border-color 0.25s ease;
}
.lp__more:hover { gap: 10px; border-color: var(--primary); }

/* ticks */
.ticks { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }
.ticks li::before { content: "✓ "; color: var(--primary); font-weight: 800; }

/* ---------- form card ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(26, 26, 26, 0.10);
  padding: clamp(24px, 3.4vw, 44px);
  overflow: hidden;
}
.card__progress {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--bg-alt);
}
.card__bar {
  display: block; height: 100%; width: 50%;
  background: var(--primary);
  border-radius: 0 99px 99px 0;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.card__back {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 700;
  color: var(--ink-mute); padding: 4px 0; margin-bottom: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.card__back span { font-size: 1.15em; transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1); }
.card__back:hover { color: var(--primary); }
.card__back:hover span { transform: translateX(-4px); }
.card__step {
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-mute);
  margin: 6px 0 8px;
}
.card__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  padding: 0;
}
.card__sub { font-size: 15px; color: var(--ink-soft); margin-bottom: 18px; }

fieldset.step { border: 0; }
fieldset.step[hidden] { display: none; }
fieldset.step.is-active { animation: stepIn 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes stepIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }

.field { display: block; margin-bottom: 15px; }
.field__label {
  display: block;
  font-size: 13.5px; font-weight: 700;
  margin-bottom: 6px;
}
.field__label em { font-weight: 500; color: var(--ink-mute); }
.field input, .field select {
  width: 100%;
  font: inherit; font-size: 16px; /* ≥16px prevents iOS zoom */
  color: var(--ink);
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 13px;
  padding: 13px 16px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1A1A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field input::placeholder { color: rgba(107, 107, 107, 0.55); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(196, 53, 31, 0.12);
}
.field input.is-bad, .field select.is-bad { border-color: var(--primary-vivid); background: rgba(233, 75, 53, 0.05); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.cta {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  color: #fff;
  background: var(--primary);
  border: 0; border-radius: 999px;
  padding: 18px 28px;
  margin-top: 8px;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(196, 53, 31, 0.32);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, background 0.25s;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(196, 53, 31, 0.4); }
.cta:active { transform: translateY(0) scale(0.99); }
.cta[disabled] { opacity: 0.65; cursor: wait; transform: none; }
.cta__arrow { transition: transform 0.25s; }
.cta:hover .cta__arrow { transform: translateX(5px); }

.card__note {
  margin-top: 14px;
  font-size: 12.5px; font-weight: 600;
  color: var(--ink-mute);
  text-align: center;
}
.card__note--after { text-align: left; line-height: 1.7; }
.card__skip { display: inline-block; color: var(--primary); font-weight: 700; }
.card__error {
  margin-top: 12px;
  font-size: 13.5px; font-weight: 700;
  color: var(--primary-vivid);
  text-align: center;
}

.cal { min-height: 520px; border-radius: 14px; overflow: hidden; background: var(--bg); }

/* ---------- step 2 (booking) — give the calendar room to breathe ---------- */
.lp.is-booking .card { padding: clamp(16px, 2.4vw, 28px); }
.lp.is-booking .cal { min-height: 520px; }
.lp.is-booking .card__sub { max-width: 640px; }
@media (min-width: 980px) {
  /* with the redundant event-details panel hidden, the embed is just the
     calendar + time slots — collapse to one centred column at a calendar-
     friendly width so it fills the card without sprawling. */
  .lp.is-booking { grid-template-columns: 1fr; max-width: 960px; align-items: start; }
  .lp.is-booking .lp__pitch { display: none; }
  .lp.is-booking .lp__form { max-width: 960px; margin-inline: auto; }
  .lp.is-booking .card { padding: clamp(20px, 2.2vw, 34px); }
}

.lp__privacy { margin-top: 14px; font-size: 12px; color: var(--ink-mute); text-align: center; }

/* ---------- value section ---------- */
.value {
  position: relative; z-index: 1;
  background: var(--ink); color: var(--bg);
  padding: clamp(56px, 8vw, 110px) var(--pad);
}
.value__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 5.4vw, 56px);
  letter-spacing: -0.02em; line-height: 1.02;
  max-width: 900px; margin: 0 auto clamp(30px, 4.5vw, 52px);
  text-align: center;
}
.value__title em { color: var(--primary-vivid); }
.value__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 900px; margin: 0 auto clamp(24px, 3.4vw, 40px);
}
@media (min-width: 760px) { .value__grid { grid-template-columns: repeat(4, 1fr); } }
.value__grid li {
  background: rgba(247, 243, 235, 0.06);
  border: 1px solid rgba(247, 243, 235, 0.14);
  border-radius: 16px;
  padding: 20px 18px;
}
.value__grid strong {
  display: block;
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  margin-bottom: 6px;
}
.value__grid strong::before { content: "✓ "; color: var(--primary-vivid); }
.value__grid span { font-size: 13.5px; color: rgba(247, 243, 235, 0.65); }
.value__compare {
  text-align: center; font-size: 14.5px; font-weight: 600;
  color: rgba(247, 243, 235, 0.6);
  max-width: 560px; margin: 0 auto;
}

/* ---------- "Why £99 — no catch" reassurance ---------- */
.catch {
  position: relative; z-index: 1;
  background: var(--bg);
  padding: clamp(56px, 8vw, 110px) var(--pad);
}
.catch__eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.catch__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 5.2vw, 52px); line-height: 1.02; letter-spacing: -0.02em;
  text-align: center; max-width: 760px; margin: 0 auto;
}
.catch__title em { color: var(--primary); }
.catch__lede {
  text-align: center; max-width: 560px; margin: 18px auto clamp(36px, 5vw, 56px);
  color: var(--ink-soft); font-size: clamp(15px, 1.6vw, 18px);
}
.catch__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px); max-width: 1040px; margin: 0 auto;
}
@media (max-width: 820px) { .catch__grid { grid-template-columns: 1fr; max-width: 520px; } }
.catch__card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: clamp(24px, 2.8vw, 34px);
}
.catch__num { display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: 1px; color: var(--primary); margin-bottom: 14px; }
.catch__card h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(19px, 2.1vw, 23px); letter-spacing: -0.01em; margin-bottom: 10px; }
.catch__card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.catch__card strong, .catch__card em { color: var(--ink); font-style: normal; font-weight: 700; }
.catch__reverse {
  max-width: 780px; margin: clamp(28px, 4vw, 44px) auto 0; text-align: center;
  font-size: clamp(16px, 1.8vw, 20px); line-height: 1.55; color: var(--ink-soft);
  background: rgba(31, 77, 60, 0.06); border: 1px solid rgba(31, 77, 60, 0.18);
  border-radius: 16px; padding: clamp(20px, 2.6vw, 30px);
}
.catch__reverse strong { color: var(--forest); font-weight: 800; }

/* ---------- FAQ ---------- */
.qa {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
  padding: clamp(48px, 7vw, 90px) var(--pad) clamp(64px, 9vw, 120px);
}
.qa__item { border-bottom: 1px solid var(--line); }
.qa__item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(17px, 2.4vw, 22px);
  padding: 20px 0;
}
.qa__item summary::-webkit-details-marker { display: none; }
.qa__item summary::after { content: "+"; font-size: 1.4em; color: var(--primary); flex-shrink: 0; transition: transform 0.3s; }
.qa__item[open] summary::after { transform: rotate(45deg); }
.qa__item p { padding: 0 0 22px; font-size: 15px; color: var(--ink-soft); }

/* ---------- footer ---------- */
.foot {
  padding: 22px var(--pad) 96px;
  text-align: center;
  font-size: 12.5px; color: var(--ink-mute);
}
.foot a { color: inherit; }

/* ---------- mobile sticky CTA ---------- */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(8px);
  color: var(--bg);
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky.is-on { transform: none; }
.sticky[hidden] { display: flex; } /* visibility handled by transform */
.sticky__price { font-size: 13.5px; font-weight: 700; }
.sticky__btn {
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  color: #fff; background: var(--primary);
  border: 0; border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  white-space: nowrap;
}
@media (min-width: 980px) { .sticky { display: none !important; } }

/* ---------- marquee strip: what £99 includes ---------- */
.marquee {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--surface);
}
.marquee__track {
  display: flex; align-items: center; gap: 36px;
  width: max-content;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: -0.01em;
  animation: marquee 30s linear infinite;
}
.marquee__track i { color: var(--primary); font-style: normal; font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(calc(-100% / 3)); } }
html.no-motion .marquee__track { animation: none; }

/* ---------- GSAP hero entrance — initial hidden only when GSAP will run ---------- */
html.gsap .lp__eyebrow,
html.gsap .lp__title,
html.gsap .lp__price-line, html.gsap .lp__catch, html.gsap .lp__more { opacity: 0; transform: translateY(24px); }
html.gsap .lp__form > .card { opacity: 0; transform: translateY(30px); }
html.gsap .lp__privacy { opacity: 0; }

/* ---------- entrance reveals — initial hidden state only when JS will run ---------- */
html.js .steps__item, html.js .value__grid li, html.js .qa__item, html.js .catch__card { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
html.js .steps__item.in, html.js .value__grid li.in, html.js .qa__item.in, html.js .catch__card.in { opacity: 1; transform: none; }

/* motion opt-out (?motion=off → html.no-motion) */
html.no-motion *, html.no-motion *::before, html.no-motion *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
html.no-motion .steps__item, html.no-motion .value__grid li, html.no-motion .qa__item, html.no-motion .catch__card { opacity: 1; transform: none; }
html.no-motion { scroll-behavior: auto; }
