/* =============================================================================
   HAND TO HARVEST — styles.css
   Design system + layout for the CFF fundraiser microsite.
   Sections: 1) Tokens  2) Reset/base  3) Type  4) Buttons  5) Layout helpers
   6) Header  7) Hero  8) Story/stats  9) Details  10) Gallery  11) Sponsor
   12) Ticket band  13) Footer  14) Floating CTA + banner  15) Motion/reveal
   ========================================================================== */

/* ---- 1) TOKENS ----------------------------------------------------------- */
:root {
  /* Official CFF brand palette (from the CFF Brand Style Guide) */
  --gold:        #fec214;  /* primary gold */
  --gold-deep:   #d69e00;  /* darker gold for hover */
  --green:       #467142;  /* dark forest green — text-safe (AA on white/cream) */
  --green-mid:   #4e833c;  /* mid green */
  --green-bright:#609f43;  /* bright green (large/graphical only) */
  --navy:        #223674;  /* deep navy accent */
  --sky:         #8ed8f8;  /* light blue accent */
  --forest-deep: #163a22;  /* deep forest for dark sections */
  --ink:         #1a1a1a;

  /* Surfaces */
  --paper:   #eae8dc;   /* brand cream for alternating sections */
  --white:   #ffffff;
  --ink-70:  rgba(26, 26, 26, 0.70);
  --ink-55:  rgba(26, 26, 26, 0.55);
  --line:    rgba(26, 26, 26, 0.12);

  /* Type — brand specifies Avenir (sans). Mulish is the closest free equivalent.
     Bold weights (800/900) carry headlines, matching the WaterAid format. */
  --font-display: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                  Helvetica, Arial, sans-serif;
  --font-sans: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif;

  /* Rhythm */
  --wrap: 1160px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4.5rem, 10vw, 8.5rem);
  --radius: 16px;
  --radius-sm: 10px;

  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 18px 50px -24px rgba(26, 26, 26, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- 2) RESET / BASE ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
[hidden] { display: none !important; }   /* honor the hidden attribute over display rules */

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

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---- 3) TYPE ------------------------------------------------------------- */
.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 1.3rem + 3vw, 3.2rem);
  max-width: 20ch;
}
.section-head--center .h-display { margin-inline: auto; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.eyebrow--green { color: var(--green); }
.eyebrow--gold  { color: var(--gold); }

/* ---- 4) BUTTONS ---------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--gold  { --btn-bg: var(--gold);  --btn-fg: var(--ink); }
.btn--gold:hover { --btn-bg: #ffca1f; }
.btn--green { --btn-bg: var(--green); --btn-fg: #fff; }
.btn--green:hover { --btn-bg: #327018; }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--green); color: var(--green); box-shadow: var(--shadow-sm); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.2); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.14); }

.btn--sm  { padding: 0.6rem 1.1rem; font-size: 0.9rem; }
.btn--lg  { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn--xl  { padding: 1.2rem 2.4rem; font-size: 1.15rem; }
.btn--block { display: flex; width: 100%; }

/* ---- 5) LAYOUT HELPERS --------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--paper { background: var(--paper); }

.section-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head--center { text-align: center; max-width: 42rem; margin-inline: auto; }
.section-head .eyebrow { display: block; margin-bottom: 0.9rem; }
.section-head__sub {
  margin-top: 1.1rem;
  color: var(--ink-70);
  font-size: 1.075rem;
  max-width: 44ch;
}
.section-head--center .section-head__sub { margin-inline: auto; }

/* Branded photo placeholder that reveals the real image once it loads */
.media { position: relative; overflow: hidden; background: var(--paper); }
.media::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(95, 214, 255, 0.18), transparent 55%),
    linear-gradient(135deg, #eef4e6 0%, #e6efdb 45%, #f4ead0 100%);
}
.media__label {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(57, 129, 32, 0.5);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  text-align: center;
  letter-spacing: 0.01em;
  white-space: nowrap;
  max-width: 90%;
}
.media__label code { font-size: 0.78em; opacity: 0.75; }
.media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.media img.is-loaded { opacity: 1; }          /* real photo present → cover placeholder */
.media img.is-loaded + .media__label { display: none; }

/* ---- 6) HEADER ----------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;   /* blends into the cream hero; solid on scroll */
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
              top 0.3s var(--ease), border-color 0.3s var(--ease);
}
/* When the pre-launch reminder banner is showing, drop the header below it. */
body.has-banner .site-header { top: var(--banner-h, 44px); }
.topbar { background: var(--forest-deep); color: rgba(255, 255, 255, 0.82); }
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}
.topbar__msg { font-weight: 600; }
.topbar__link { color: var(--gold); text-decoration: none; font-weight: 700; white-space: nowrap; }
.topbar__link:hover { text-decoration: underline; }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 62px;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
  backdrop-filter: saturate(1.5) blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.brand__logo {
  height: 34px; width: auto;
  flex: none;
}
.brand__divider { width: 1px; height: 26px; background: var(--line); flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand__org { font-size: 0.68rem; letter-spacing: 0.04em; color: var(--ink-55); }

.site-nav {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--green-bright);
  transition: width 0.25s var(--ease);
}
.site-nav a:hover { color: var(--green); }
.site-nav a:hover::after { width: 100%; }

.site-header__cta { margin-left: 0; }
.site-nav + .site-header__cta { margin-left: 1.4rem; }

/* ---- 7) HERO (cream, logo-forward — the H2H mark is the centerpiece) ------- */
.hero {
  background: #f4f1e6;
  text-align: center;
  padding-top: clamp(8rem, 12vw, 12rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.hero__inner {
  max-width: 62rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow {
  font-size: clamp(0.72rem, 0.66rem + 0.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  max-width: 44ch;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.hero__title { width: min(760px, 100%); margin: 0; }
.hero__logo { display: block; width: 100%; height: auto; }  /* full-colour mark on cream */
.hero__subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 0.85rem + 0.7vw, 1.5rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 0.25rem;
  padding-left: 0.3em;   /* balance the tracking */
}
.hero__rule { display: block; width: 64px; height: 3px; background: var(--gold); margin: clamp(1.5rem, 3vw, 2.25rem) 0; }
.hero__when {
  font-size: clamp(1.05rem, 0.9rem + 0.6vw, 1.35rem);
  color: var(--ink);
  font-weight: 600;
}
.hero__when strong { font-weight: 800; }
.hero__dot { color: var(--gold); margin: 0 0.5rem; font-weight: 700; }
.hero__venue { margin-top: 0.4rem; color: var(--ink-70); font-size: 1.05rem; }

/* Countdown */
.hero__countdown {
  display: flex;
  gap: 0.75rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}
.cd__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(68px, 13vw, 86px);
  padding: 0.85rem 0.6rem 0.7rem;
  background: #fff;
  border: 1px solid rgba(70, 113, 66, 0.16);
  box-shadow: 0 12px 26px -20px rgba(0, 0, 0, 0.4);
}
.cd__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 1.4rem + 1.4vw, 2.6rem);
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.cd__label {
  margin-top: 0.45rem;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--ink-55);
}
.hero__actions { margin-top: clamp(2rem, 4vw, 2.75rem); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn--outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline-green:hover { background: var(--green); color: #fff; box-shadow: var(--shadow-md); }

/* ---- Section title (bold sans, WaterAid style) ---- */
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--green);
}
.section-title--center { text-align: center; max-width: 20ch; margin-inline: auto; }

/* ---- Farmworkers reached in 2025 — headline + by-region numbers ---- */
.stats-section__title { max-width: 26ch; }   /* left-aligned bold heading */
.stats-section__big { color: var(--gold-deep); }
.stats-section__sub {
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--green);
  font-size: 1.1rem;
}
.region-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}
.region-stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 1.8vw, 3rem);
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.02em;
}
.region-stat__label {
  display: block;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-70);
}

/* ---- WHO WE ARE (inset rounded green block + photo, WaterAid style) -------- */
.who { background: var(--white); padding-block: clamp(2.5rem, 6vw, 5rem); }
.who__block {
  background: var(--green);
  color: #fff;
  border-radius: 0;
  padding: clamp(1.75rem, 4vw, 3.5rem);
}
.who__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.who__eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}
.who .section-title { color: #fff; margin: 0.85rem 0 1.2rem; }
.who__text p { color: rgba(255, 255, 255, 0.9); margin-bottom: 1rem; max-width: 48ch; }
.who__text strong { color: #fff; font-weight: 800; }
.who__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.6rem; color: var(--gold); font-weight: 800; text-decoration: none;
}
.who__link span { transition: transform 0.2s var(--ease); }
.who__link:hover span { transform: translateX(4px); }
.who__photo { aspect-ratio: 4 / 3; border-radius: 0; }

/* ---- WHERE YOUR SUPPORT GOES — pillar highlights inside the who-block ---- */
.impact__pillars { list-style: none; padding: 0; margin: 1.25rem 0 1.6rem; display: grid; gap: 0.9rem; }
.impact__pillars li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}
.impact__pillars li::before {
  content: "";
  position: absolute; left: 0; top: 0.35em;
  width: 0.8rem; height: 0.5rem;
  border-left: 2.5px solid var(--gold);
  border-bottom: 2.5px solid var(--gold);
  transform: rotate(-45deg);
}
.impact__pillars strong { color: #fff; font-weight: 800; }

/* ---- 8) STORY / STATS ---------------------------------------------------- */
.story__flourish {
  display: block;
  width: min(520px, 78%);
  height: auto;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
}
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.story__lead .eyebrow { display: block; margin-bottom: 1rem; }
.story__body p + p { margin-top: 1.1rem; color: var(--ink-70); }
.story__body p:first-child { color: var(--ink); font-size: 1.1rem; }
.story__body strong { color: var(--green); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 1.5rem + 3.5vw, 4rem);
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.02em;
}
.stat__label {
  display: block;
  margin-top: 0.65rem;
  color: var(--ink-70);
  font-size: 0.95rem;
  max-width: 22ch;
  margin-inline: auto;
}
.stat__label em { font-style: normal; opacity: 0.6; font-size: 0.85em; }

/* ---- 9) DETAILS (WaterAid "Get involved" block: photo left, details right) - */
.details__block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  background: var(--white);
  overflow: hidden;
}
.details__photo { position: relative; min-height: 420px; }
.details__content { padding: clamp(1.75rem, 4vw, 3.5rem); align-self: center; }
.details .eyebrow--green { display: block; margin-bottom: 0.7rem; }
.details__list { margin: 1.4rem 0 2rem; }
.details__row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.details__row:first-child { border-top: 0; padding-top: 0; }
.details__row dt { font-weight: 800; color: var(--green); }
.details__row dd { color: var(--ink-70); }
.details__map { display: inline-block; margin-top: 0.4rem; color: var(--green); font-weight: 700; text-decoration: none; }
.details__map:hover { text-decoration: underline; }

.details__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.detail-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.detail-card__icon {
  display: inline-flex;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(82,206,11,0.16), rgba(95,214,255,0.16));
  color: var(--green);
  margin-bottom: 1rem;
}
.detail-card__icon svg { width: 24px; height: 24px; }
.detail-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.detail-card p { font-weight: 500; }
.detail-card__sub { color: var(--ink-70); font-weight: 400; font-size: 0.95rem; }
.detail-card__map { display: inline-block; margin-top: 0.5rem; color: var(--green); font-weight: 600; text-decoration: none; }
.detail-card__map:hover { text-decoration: underline; }
.details__cta { margin-top: clamp(2rem, 5vw, 3rem); text-align: center; }

/* ---- 10) GALLERY --------------------------------------------------------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.gallery__item {
  border-radius: 0;          /* square, to match the rest of the site */
  aspect-ratio: 4 / 5;
}

.pullquote {
  max-width: 44ch;
  padding-left: 1.4rem;
  border-left: 4px solid var(--gold);
}
.pullquote p {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pullquote cite { display: block; margin-top: 1rem; font-style: normal; color: var(--ink-55); font-size: 0.95rem; }

/* ---- 11) SPONSOR --------------------------------------------------------- */
.tier-group__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  margin: clamp(2rem, 4vw, 3rem) 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.tier-group__label:first-of-type { margin-top: clamp(1rem, 2vw, 1.5rem); }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.tier__avail {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.sponsor__legal { display: inline-block; margin-top: 0.75rem; font-size: 0.82rem; color: var(--ink-55); }
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier--featured {
  border-color: var(--gold);
  box-shadow: 0 20px 50px -26px rgba(224, 168, 0, 0.6);
}
.tier__flag {
  position: absolute;
  top: -0.8rem; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.tier__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--green);
}
.tier__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  margin: 0.35rem 0 0.2rem;
}
.tier__note { font-size: 0.85rem; color: var(--gold-deep); font-weight: 600; margin-bottom: 0.5rem; }
.tier__perks {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 0.6rem;
  flex: 1;
}
.tier__perks li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  color: var(--ink-70);
}
.tier__perks li::before {
  content: "";
  position: absolute; left: 0; top: 0.45em;
  width: 0.9rem; height: 0.55rem;
  border-left: 2px solid var(--green-bright);
  border-bottom: 2px solid var(--green-bright);
  transform: rotate(-45deg);
}
.sponsor__foot { text-align: center; margin-top: 2.5rem; color: var(--ink-70); }
.sponsor__foot a { color: var(--green); font-weight: 600; text-decoration: none; }
.sponsor__foot a:hover { text-decoration: underline; }

/* ---- 12) TICKET BAND (conversion moment) --------------------------------- */
.ticket-band { background: var(--white); padding-block: clamp(2.5rem, 6vw, 5rem); }
.ticket-band__block {
  background: var(--green);   /* solid, no gradient */
  color: #fff;
  border-radius: 0;
  padding: clamp(1.75rem, 4vw, 3.5rem);
}
.ticket-band__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.ticket-band .eyebrow { display: block; margin-bottom: 1rem; }
.ticket-band__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 1.4rem + 3vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.ticket-band__sub {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.075rem;
  max-width: 46ch;
}
.ticket-band__photo {
  margin-top: 1.5rem;
  aspect-ratio: 16 / 10;
  border-radius: 0;
}
.ticket-band__quote { margin-top: 1.5rem; }
.ticket-band__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
}
.ticket-band__quote cite { display: block; margin-top: 0.75rem; font-style: normal; font-size: 0.92rem; color: rgba(255,255,255,0.78); }

/* Right-hand ticket panel (WaterAid donate-widget equivalent) */
.ticket-panel {
  background: #fff;
  color: var(--ink);
  border-radius: 0;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.55);
}
.ticket-panel__event {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.ticket-panel__event strong { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--green); }
.ticket-panel__event span { color: var(--ink-70); font-size: 0.95rem; }
.ticket-panel__list { list-style: none; padding: 0; margin: 1.25rem 0; display: grid; gap: 0.6rem; }
.ticket-panel__list li {
  position: relative; padding-left: 1.7rem; font-weight: 600;
}
.ticket-panel__list li::before {
  content: ""; position: absolute; left: 0; top: 0.4em;
  width: 0.9rem; height: 0.55rem;
  border-left: 2.5px solid var(--green-bright);
  border-bottom: 2.5px solid var(--green-bright);
  transform: rotate(-45deg);
}
.ticket-panel .btn--block + .btn--block { margin-top: 0.75rem; }
.ticket-panel__note { margin-top: 1.1rem; font-size: 0.8rem; color: var(--ink-55); line-height: 1.5; }

/* ---- 13) FOOTER ---------------------------------------------------------- */
.site-footer { background: var(--green); color: rgba(255, 255, 255, 0.85); padding-top: clamp(3.5rem, 8vw, 5.5rem); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}
.brand__logo--footer { height: 46px; width: auto; margin-bottom: 1.1rem; }
.site-footer__cta { margin-top: 1.4rem; }
.site-footer__org { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: #fff; }
.site-footer__mission { margin-top: 0.6rem; max-width: 34ch; font-size: 0.95rem; }
.site-footer__h {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.site-footer__list { list-style: none; padding: 0; display: grid; gap: 0.6rem; font-size: 0.95rem; }
.site-footer__list a { color: rgba(255,255,255,0.82); text-decoration: none; }
.site-footer__list a:hover { color: #fff; text-decoration: underline; }

.socials { list-style: none; padding: 0; display: flex; gap: 0.6rem; margin: 0; }
.socials a {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.socials a:hover { background: var(--green-mid); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.socials li[hidden] { display: none; }

/* Dark bottom bar: socials on the left, legal line on the right (WaterAid style) */
.site-footer__bottom { background: var(--forest-deep); }
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding-block: 1.25rem;
}
.site-footer__legal-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 60ch;
}
.site-footer__bottom .socials a { background: rgba(255, 255, 255, 0.1); }

/* ---- 14) FLOATING CTA + PLACEHOLDER BANNER ------------------------------- */
.floating-cta {
  position: fixed;
  right: 1rem; bottom: 1rem;
  z-index: 90;
  display: none;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.45);
}

.placeholder-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  background: #fdf6dd;
  color: #7a5b00;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #ecd489;
}
.placeholder-banner code { background: rgba(0,0,0,0.06); padding: 0.05rem 0.35rem; border-radius: 4px; font-size: 0.9em; }
.placeholder-banner__close {
  background: none; border: 0; color: inherit;
  font-size: 1.3rem; line-height: 1; cursor: pointer; padding: 0 0.3rem;
}

/* ---- 15) MOTION / SCROLL REVEAL ------------------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ---------------------------------------------------------- */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-nav + .site-header__cta { margin-left: auto; }
  .story__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .who__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .who__photo { order: -1; }
  .ticket-band__grid { grid-template-columns: 1fr; gap: 2rem; }
  .details__grid { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .stats { grid-template-columns: 1fr; gap: 2.25rem; }
  .details__grid { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .tier--featured { order: -1; }         /* surface the popular tier first on mobile */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr; }
  .floating-cta { display: inline-flex; }
  .site-header__cta { display: none; }   /* floating CTA takes over on small screens */
}

/* Region numbers reflow on tablet/mobile */
@media (max-width: 900px) { .region-stats { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; } }
@media (max-width: 760px) {
  .hero__photo { aspect-ratio: 3 / 2; }
  .details__block { grid-template-columns: 1fr; }
  .details__photo { min-height: 0; aspect-ratio: 16 / 9; }
}
@media (max-width: 520px) { .region-stats { grid-template-columns: repeat(2, 1fr); } }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__scroll-line { animation: none; }
}
