/* ============================================================
   WITH LOVE, BETS — Design System & Stylesheet
   Brand: fashion-house meets tech-giant
   Fonts: Cormorant Garamond (serif display) + Montserrat (sans)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,500;1,600&family=Montserrat:wght@400;500;600&display=swap');

/* ── 1. DESIGN TOKENS ── */
:root {
  /* Colour palette */
  --canvas:      #EBD9E2;   /* page background */
  --cream:       #FBF6F2;   /* primary content surface */
  --white:       #FFFFFF;   /* cleanest surfaces */
  --pink:        #AF678B;   /* THE signature accent */
  --pink-deep:   #7E4763;   /* footer, strong text */
  --pink-light:  #F5E6EE;   /* soft fills, hover washes */
  --lavender:    #9E7BC4;   /* celebration accent */
  --turquoise:   #46BEB4;   /* sparkle cursor, fresh accent */
  --ink:         #2A2230;   /* body text */
  --muted:       #6F6470;   /* secondary text, captions */

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;

  /* Type scale (desktop) */
  --text-display:   76px;
  --text-h1:        52px;
  --text-h2:        44px;
  --text-h3:        28px;
  --text-pull:      24px;
  --text-body:      16.5px;
  --text-eyebrow:   11.5px;
  --text-caption:   12.5px;

  /* Spacing scale (8px base) */
  --s1:   8px;
  --s2:  16px;
  --s3:  24px;
  --s4:  32px;
  --s5:  48px;
  --s6:  64px;
  --s7:  96px;
  --s8: 128px;

  /* Radii */
  --r-xs:   4px;
  --r-sm:  12px;
  --r-md:  14px;
  --r-lg:  18px;
  --r-pill: 100px;

  /* Single shadow style */
  --shadow: 0 8px 24px rgba(126, 71, 99, 0.08);
  --shadow-md: 0 12px 36px rgba(126, 71, 99, 0.12);

  /* Hairline border */
  --border: 1px solid rgba(175, 103, 139, 0.2);

  /* Transitions */
  --ease: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w: 1160px;
  --section-pad-v: 112px;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--pink);
  text-decoration: none;
  transition: color var(--ease), opacity var(--ease);
}

a:hover { opacity: 0.8; }

a:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

ul, ol { list-style: none; }

/* ── 3. LAYOUT UTILITIES ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s5);
}

.section {
  padding-block: var(--section-pad-v);
}

.section--cream { background: var(--cream); }
.section--pink-light { background: var(--pink-light); }
.section--canvas { background: var(--canvas); }

/* Two-column editorial layout */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s7);
  align-items: start;  /* image top aligns with first line of text */
}

.editorial--reverse { direction: rtl; }
.editorial--reverse > * { direction: ltr; }

/* ── 4. TYPOGRAPHY ── */

/* Eyebrow label — Montserrat small-caps */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
}

/* Display / hero name */
.display {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Section headings */
h2, .h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-h1);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: var(--s4);
}

h3, .h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-h3);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

/* Body copy — max line length */
.body-text {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.68;
  color: var(--ink);
  max-width: 66ch;
}

.body-text p + p {
  margin-top: var(--s3);
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-pull);
  line-height: 1.45;
  color: var(--ink);
}

/* Caption / muted */
.caption {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  color: var(--muted);
  line-height: 1.5;
}

/* ── 5. SHAPE FAMILY ── */

/* Left-rule callout */
.callout {
  background: var(--white);
  border-left: 3px solid var(--pink);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  box-shadow: var(--shadow);
  padding: var(--s4) var(--s5);
}

/* Pill tag */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px var(--s2);
  border-radius: var(--r-pill);
  background: var(--pink-light);
  color: var(--pink-deep);
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Rounded feature card */
.card {
  background: var(--cream);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  padding: var(--s5);
  border: var(--border);
}

.card--pink-light {
  background: var(--pink-light);
}

/* Notched standout */
.notched {
  background: var(--pink-light);
  border-radius: var(--r-lg) var(--r-lg) var(--r-lg) var(--r-xs);
  border: var(--border);
  padding: var(--s5) var(--s6);
}

/* ── 6. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  padding: 14px var(--s5);
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn--primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(175, 103, 139, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(175, 103, 139, 0.45);
  color: var(--white);
  opacity: 1;
}

.btn--secondary {
  background: transparent;
  color: var(--pink);
  border: 1.5px solid var(--pink);
}

.btn--secondary:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  opacity: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  align-items: center;
}

/* ── 7. NAVIGATION ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(235, 217, 226, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(175, 103, 139, 0.12);
  transition: box-shadow var(--ease-slow);
}

#nav.scrolled {
  box-shadow: 0 4px 20px rgba(126, 71, 99, 0.1);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s5);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: var(--s1) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
  opacity: 1;
}

.nav-cta {
  flex-shrink: 0;
}

/* Mobile menu toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--s1);
  background: none;
  border: none;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: var(--border);
  box-shadow: var(--shadow-md);
  padding: var(--s4) var(--s5);
  z-index: 999;
  flex-direction: column;
  gap: var(--s3);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: var(--s2) 0;
  border-bottom: var(--border);
}

.nav-mobile a:hover { color: var(--pink); opacity: 1; }

/* ── 8. HERO ── */
#hero {
  min-height: 100vh;
  padding-top: 68px;
  background: var(--canvas);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;   /* text anchors near top of column */
  padding: var(--s6) var(--s5) var(--s7) var(--s7);  /* reduced from s8/s8 → s6/s7 */
  gap: var(--s4);
}

.hero-text .eyebrow {
  margin-bottom: var(--s1);
}

.hero-text .display {
  margin-bottom: var(--s1);
}

.hero-positioning {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 44ch;
  margin-bottom: var(--s2);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  border-top: 1px solid rgba(175,103,139,0.3);
  padding-top: var(--s2);
}

/* Horizontal editorial metrics strip */
.stat-grid {
  display: flex;
  gap: 0;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: var(--s3);
  border-right: 1px solid rgba(175,103,139,0.22);
  margin-right: var(--s3);
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

/* Large gradient serif number */
.stat-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(145deg, var(--pink) 0%, var(--pink-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Demographic sub-line — flowing italic */
.hero-stat-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--muted);
  letter-spacing: 0.01em;
  border-top: 1px solid rgba(175,103,139,0.15);
  padding-top: var(--s1);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── 9. ABOUT ── */
#about {
  background: var(--cream);
}

.about-image {
  position: relative;
  border-radius: 50%;     /* portrait oval / ellipse frame */
  overflow: hidden;
  aspect-ratio: 2 / 3;   /* matches native 1024×1536 — full figure head to feet */
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;  /* subject is on left side of frame */
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

/* ── 10. TALKS / RESET ── */
#talks {
  background: var(--canvas);
}

.talks-header {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s5);
}

/* Section logo — default size (used in talks header inline if needed) */
.section-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Larger logo variant for campaign header */
.section-logo--large {
  height: 72px;
  width: 72px;
}

/* Logo column — flex so logo fills remaining height of the text column */
.talks-intro-left {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

/* Logo placed below intro body paragraph text — grows to fill remaining space */
.section-logo-below {
  display: flex;
  align-items: flex-end;
  align-self: end;
  margin-top: var(--s4);
}

.section-logo-below img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.talks-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  align-items: stretch;
  align-items: start;  /* image top aligns with first line of text */
  margin-bottom: var(--s7);
}

.talks-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 2 / 3;  /* matches native 1024×1536 — no foot crop */
  box-shadow: var(--shadow-md);
}

.talks-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;  /* subject is on left side of frame */
}

/* RESET cards grid */
.reset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-bottom: var(--s6);
}

.reset-card {
  background: var(--cream);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  border: var(--border);
  padding: var(--s4);
  cursor: pointer;
  transition: box-shadow var(--ease), transform var(--ease);
}

.reset-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.reset-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s2);
  margin-bottom: var(--s3);
}

.reset-card-number {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s1);
}

.reset-card-pillar {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
}

.reset-card-expand-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
  font-size: 16px;
  transition: transform var(--ease), background var(--ease);
}

.reset-card.open .reset-card-expand-icon {
  transform: rotate(45deg);
  background: var(--pink);
  color: var(--white);
}

.reset-card-definition {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: var(--s2);
}

.reset-card-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: var(--s2);
}

.reset-card-summary {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
}

/* Expanded card content */
.reset-card-expanded {
  display: none;
  margin-top: var(--s4);
  padding-top: var(--s4);
  border-top: 1px solid rgba(175, 103, 139, 0.15);
}

.reset-card.open .reset-card-expanded {
  display: block;
}

.reset-card-stat {
  background: var(--pink-light);
  border-radius: var(--r-sm);
  padding: var(--s3) var(--s4);
  margin-bottom: var(--s3);
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--pink-deep);
  line-height: 1.6;
  font-style: italic;
}

.reset-card-desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: var(--s3);
}

.reset-themes-label {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: var(--s2);
}

.reset-themes {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.reset-theme-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

.reset-theme-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 6px;
}

/* RESET pull quote — plain, no white box */
.talks-quote {
  margin-bottom: var(--s6);
}

.talks-quote-inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  padding: var(--s5) 0;
  border-top: 1px solid rgba(175, 103, 139, 0.2);
  border-bottom: 1px solid rgba(175, 103, 139, 0.2);
}

.talks-quote .pull-quote {
  margin-bottom: var(--s3);
  color: var(--pink-deep);
}

.talks-quote .attribution {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.talks-cta {
  text-align: center;
}

/* ── 11. CAMPAIGN / DSSUK ── */
#campaign {
  background: var(--pink-light);
}

.campaign-header {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s6);
  flex-wrap: wrap;
}

/* h2 and logo sit on the same line — logo comes after the heading text */
.campaign-header h2 {
  margin-bottom: 0;  /* remove default bottom margin when in flex row */
}

/* ─ Countdown + DSSUK logo — side-by-side row ─ */
.countdown-logo-row {
  display: flex;
  align-items: center;
  gap: var(--s6);
  margin-bottom: var(--s7);
}

.countdown-logo-row .countdown-wrap {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0;
}

.countdown-logo-side {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dssuk-logo-large {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}

/* ─ Countdown ─ */
.countdown-wrap {
  margin-bottom: var(--s7);
}

.countdown-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  border-radius: var(--r-lg);
  border: 1.5px solid rgba(175, 103, 139, 0.22);
  box-shadow: 0 16px 48px rgba(126, 71, 99, 0.14), 0 0 80px rgba(158, 123, 196, 0.06);
  padding: var(--s6) var(--s7);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin-inline: auto;
}

.countdown-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(158, 123, 196, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.countdown-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  margin-bottom: var(--s4);
}

.countdown-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pink);
  animation: titleGlow 2.4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from { text-shadow: 0 0 8px rgba(175, 103, 139, 0.3), 0 0 20px rgba(158, 123, 196, 0.15); }
  to   { text-shadow: 0 0 16px rgba(175, 103, 139, 0.55), 0 0 36px rgba(158, 123, 196, 0.3); }
}

.countdown-heartbeat {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--turquoise);
  animation: heartbeat 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

/* Odometer number */
.odometer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--s3);
  height: 110px;
  overflow: hidden;
}

.odometer-digit {
  width: 62px;
  height: 110px;
  overflow: hidden;
  position: relative;
  /* isolation needed for gradient-text inside clip context */
  isolation: isolate;
}

.odometer-reel {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.odometer-reel span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  width: 62px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 88px;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 50%, #7B5EA7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}

.odometer-top-fade,
.odometer-bottom-fade {
  position: absolute;
  left: 0; right: 0;
  height: 28px;
  pointer-events: none;
  z-index: 2;
}

.odometer-top-fade {
  top: 0;
  background: linear-gradient(to bottom, var(--white), transparent);
}

.odometer-bottom-fade {
  bottom: 0;
  background: linear-gradient(to top, var(--white), transparent);
}

.odometer-sep {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 72px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  padding-inline: 2px;
  align-self: center;
}

.odometer-threshold {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 600;
  color: var(--pink);
  line-height: 1.3;
  display: none;
}

/* Plain-text number — hidden on desktop (reel shows instead) */
.odometer-simple {
  display: none;
}

.odometer-label {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: var(--s1);
}

.odometer-sublabel {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: var(--s5);
}

/* Progress bar */
.progress-track {
  width: 100%;
  height: 10px;
  background: rgba(175, 103, 139, 0.15);
  border-radius: var(--r-pill);
  position: relative;
  margin-bottom: var(--s3);
}

.progress-fill {
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(to right, var(--pink), var(--lavender));
  box-shadow: 0 0 10px rgba(175, 103, 139, 0.4);
  position: relative;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 14px;
}

.progress-dot {
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 0 0 rgba(70, 190, 180, 0.6);
  animation: progress-pulse 1.6s ease-out infinite;
}

@keyframes progress-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(70, 190, 180, 0.65); }
  70%  { box-shadow: 0 0 0 9px rgba(70, 190, 180, 0);    }
  100% { box-shadow: 0 0 0 0   rgba(70, 190, 180, 0);    }
}

/* Tick marks — flex row, labels read 100,000 → 90,000 → 50,000 → 0 ✓ */
.progress-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}

.progress-tick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

/* Flush first label to left edge, last to right edge */
.progress-tick:first-child { align-items: flex-start; }
.progress-tick:last-child  { align-items: flex-end; }

.progress-tick-mark {
  width: 1px;
  height: 6px;
  background: rgba(175, 103, 139, 0.35);
}

.progress-tick-label {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}

/* Twinkles */
.twinkle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.twinkle {
  position: absolute;
  border-radius: 50%;
  animation: twinkle-anim var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}

@keyframes twinkle-anim {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%       { opacity: 0.85; transform: scale(1); }
}

/* Campaign body — left: text | right: image + tagline */
.campaign-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s7);
  align-items: start;
  margin-bottom: var(--s5);
}

.campaign-text .body-text p + p {
  margin-top: var(--s3);
}

/* Right column: image + tagline stacked — stretch to right edge for alignment */
.campaign-right {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  align-items: stretch;
}

/* Circle drink covers — PNG has its own circular alpha, no box */
.campaign-image--circle {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  width: 100%;
}

.campaign-image--circle img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
  /* drop-shadow respects PNG transparency, looks premium */
  filter: drop-shadow(0 12px 32px rgba(126, 71, 99, 0.18));
}

.campaign-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.campaign-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tagline standout — below the drinks image */
.campaign-tagline {
  width: 100%;
}

.campaign-tagline .notched {
  display: block;
}

.campaign-tagline-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* Full-width footer below the 2-col grid */
.campaign-footer {
  padding-top: var(--s5);
  border-top: 1px solid rgba(175, 103, 139, 0.15);
  margin-bottom: var(--s7);
}

.campaign-closing {
  margin-bottom: var(--s4);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  color: var(--ink);
  font-style: italic;
  line-height: 1.6;
  max-width: 100%;
}

.campaign-closing a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.campaign-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  align-items: center;
  margin-bottom: 0;
}

/* Petition group: Sign button stacked above download link */
.ctas-petition-group {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  align-items: flex-start;
}

.campaign-ctas .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

.campaign-ctas .link-arrow:hover { opacity: 0.75; }

/* Newsletter block */
.newsletter-block {
  background: var(--white);
  border-radius: var(--r-lg);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: var(--s6) var(--s7);
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.newsletter-block h3 {
  margin-bottom: var(--s2);
}

.newsletter-block .caption {
  margin-bottom: var(--s4);
  font-size: 15px;
  color: var(--muted);
}

/* Kit embed overrides */
.formkit-form {
  max-width: 100% !important;
}

/* ── 12. BOOK BETS ── */
#book-bets {
  background: var(--cream);
}

.book-header {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: var(--s7);
}

.book-header h2 {
  margin-bottom: var(--s3);
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s7);
  align-items: start;
}

.book-image {
  position: sticky;
  top: 88px;
  border-radius: 50%;     /* portrait oval / ellipse frame */
  overflow: hidden;
  aspect-ratio: 2 / 3;   /* matches native 1024×1536 — full figure head to feet */
  box-shadow: var(--shadow-md);
}

.book-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;  /* subject is on left side of frame */
}

.book-content {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

/* Formats */
.formats-intro {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  color: var(--muted);
  font-style: italic;
  margin-bottom: var(--s4);
  line-height: 1.6;
}

.format-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.format-item {
  border-bottom: 1px solid rgba(175, 103, 139, 0.12);
  padding-bottom: var(--s3);
}

.format-item:last-child {
  border-bottom: none;
}

.format-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.format-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Conversion block */
.conversion-block {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--s5);
  align-items: start;
}

/* Enquiry form */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px var(--s3);
  background: var(--white);
  border: 1.5px solid rgba(175, 103, 139, 0.25);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  color: var(--ink);
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(175, 103, 139, 0.12);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Honeypot */
.hp-field {
  position: absolute;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.form-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.form-success {
  display: none;
  background: var(--pink-light);
  border-radius: var(--r-md);
  padding: var(--s4);
  text-align: center;
  border-left: 3px solid var(--pink);
}

.form-success.show {
  display: block;
}

.form-success-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--pink);
  margin-bottom: var(--s1);
}

/* Intro call panel */
.intro-call-panel {
  background: var(--pink-light);
  border-radius: var(--r-md);
  border: var(--border);
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  align-items: flex-start;
}

.intro-call-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
}

.intro-call-subtext {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

.contact-fallback {
  margin-top: var(--s3);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-fallback a {
  color: var(--pink-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Availability section */
.availability-section {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.availability-section .body-text p {
  margin-bottom: 0;
}

/* ── 13. FOOTER ── */
#footer {
  background: var(--pink-deep);
  color: rgba(255,255,255,0.85);
  padding-block: var(--s7) var(--s5);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
  margin-bottom: var(--s6);
  padding-bottom: var(--s5);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-wordmark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-signoff {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-bottom: var(--s6);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--s3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color var(--ease);
}

.footer-links a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-address {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: var(--s2);
}

/* Footer newsletter */
.footer-newsletter h3 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--s2);
}

.footer-newsletter p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  margin-bottom: var(--s3);
  line-height: 1.6;
}

/* Legal bar */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding-top: var(--s4);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-legal-links {
  display: flex;
  gap: var(--s4);
}

.footer-legal a {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal a:hover { color: var(--white); opacity: 1; }

.footer-copyright {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── 14. SCROLL ANIMATIONS ── */
.fade-rise {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s var(--ease-slow), transform 0.55s var(--ease-slow);
}

.fade-rise.visible {
  opacity: 1;
  transform: translateY(0);
  /* visible class still added by JS but elements show regardless */
}

.fade-rise--delay-1 { transition-delay: 0.1s; }
.fade-rise--delay-2 { transition-delay: 0.2s; }
.fade-rise--delay-3 { transition-delay: 0.3s; }
.fade-rise--delay-4 { transition-delay: 0.4s; }

/* ── 15. SPARKLE CANVAS (cursor trail) ── */
#sparkle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ── 16. CONFETTI CANVAS ── */
#confetti-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9998;
}

/* ── 17. PRIVACY PAGE ── */
.privacy-page {
  min-height: 100vh;
  background: var(--canvas);
  padding-top: 68px;
}

.privacy-content {
  max-width: 820px;
  margin-inline: auto;
  padding: var(--s7) var(--s5);
  background: var(--cream);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
}

.privacy-content h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-h1);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s5);
}

.privacy-content h2 {
  font-size: 26px;
  margin-top: var(--s6);
  margin-bottom: var(--s3);
}

.privacy-content h3 {
  font-size: 20px;
  margin-top: var(--s4);
  margin-bottom: var(--s2);
}

.privacy-content p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: var(--s3);
}

.privacy-content ul {
  list-style: disc;
  padding-left: var(--s4);
  margin-bottom: var(--s3);
}

.privacy-content li {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: var(--s1);
}

.privacy-content a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--s4);
  font-size: 14px;
}

.privacy-content th,
.privacy-content td {
  border: 1px solid rgba(175,103,139,0.2);
  padding: var(--s2) var(--s3);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.privacy-content th {
  background: var(--pink-light);
  color: var(--pink-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── 18. RESPONSIVE ── */
@media (max-width: 1024px) {
  :root {
    --text-display: 60px;
    --text-h1: 42px;
    --section-pad-v: 80px;
  }

  .hero-text {
    padding-inline: var(--s5);
    padding-block: var(--s6);
  }

  .odometer-digit { width: 52px; height: 90px; }
  .odometer-reel span { height: 90px; width: 52px; font-size: 72px; }
  .odometer { height: 90px; }
  .odometer-sep { font-size: 60px; }
}

@media (max-width: 768px) {
  :root {
    --text-display: 46px;
    --text-h1: 34px;
    --text-h2: 30px;
    --text-pull: 19px;
    --section-pad-v: 64px;
  }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero stacks */
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    order: -1;
    aspect-ratio: 2 / 3;   /* full figure on mobile */
    min-height: unset;
    height: auto;
    border-radius: 0;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-text {
    padding: var(--s6) var(--s4);
    gap: var(--s3);
  }

  /* Editorial stacks */
  .editorial,
  .editorial--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--s5);
  }

  .talks-intro,
  .campaign-body,
  .book-layout,
  .conversion-block {
    grid-template-columns: 1fr;
  }

  /* Campaign right column stacks below text on mobile */
  .campaign-right {
    align-items: center;
  }

  .campaign-footer {
    margin-top: var(--s4);
  }


  /* Countdown + logo stack vertically on mobile */
  .countdown-logo-row {
    flex-direction: column;
    gap: var(--s4);
  }

  .countdown-logo-side {
    flex: 0 0 auto;
    width: 100%;
  }

  .dssuk-logo-large {
    width: 160px;
    margin-inline: auto;
  }

  /* Stat grid — 2×2 on mobile */
  .stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s3) 0;
  }

  /* Remove right border/margin from every even item (2nd column) */
  .stat-item:nth-child(2n) {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }

  .stat-number {
    font-size: 32px;
  }
  .reset-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s5);
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s2);
  }

  .footer-legal {
    flex-direction: column;
    gap: var(--s2);
    text-align: center;
  }

  .countdown-card {
    padding: var(--s4) var(--s4);
  }

  .newsletter-block {
    padding: var(--s5) var(--s4);
  }

  /* Fix sticky portrait overlapping text on mobile */
  .book-image {
    position: static;
    aspect-ratio: 2 / 3;
  }

  .notched {
    padding: var(--s4);
  }

  /* Odometer: hide spinning reel on mobile — iOS Safari silently drops
     -webkit-background-clip:text inside overflow:hidden containers.
     Show #odometer-simple (plain text) instead — always works. */
  .odometer {
    display: none !important;
  }
  .odometer-simple {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
    color: var(--pink);
    margin-bottom: var(--s3);
    letter-spacing: -0.02em;
  }

  /* Stat numbers: also use solid color on mobile (same iOS gradient-clip bug) */
  .stat-number {
    -webkit-text-fill-color: var(--pink);
    background: none;
    color: var(--pink);
  }

  /* ConvertKit form — never wider than card */
  .formkit-form,
  .formkit-form * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Tick labels: HTML already has only start + end — no hiding needed */
}

@media (prefers-reduced-motion: reduce) {
  .fade-rise {
    opacity: 1;
    