/* ============================================================
   WEDD SUMMIT — weddsummit.winmartin.com
   Win Martin | 360° B2B Media & Communications Management
   Brand system per Master Brief (Part 1)
   ============================================================ */

:root {
  --terracotta: #8C2D19;
  --marigold:   #D9A241;
  --charcoal:   #1A1D20;
  --sandstone:  #F4EFEA;
  --white:      #FFFFFF;
  --grey-mid:   #888888;
  --grey-dark:  #444444;

  --gold-line:  rgba(217, 162, 65, 0.3);
  --gold-soft:  rgba(217, 162, 65, 0.15);
  --sand-glass: rgba(244, 239, 234, 0.04);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
::selection { background: var(--marigold); color: var(--charcoal); }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Keyboard focus — visible ring for keyboard users only */
:focus { outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--marigold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Shared layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; position: relative; }
.section--light { background: var(--sandstone); color: var(--charcoal); }
.section--dark  { background: var(--charcoal);  color: var(--sandstone); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--marigold);
  margin-bottom: 22px;
  display: inline-block;
}
.h1-section {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--terracotta);
  padding-bottom: 24px;
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 38px;
}
/* Grid items default to min-width:auto, which lets long/serif content force a
   track wider than the viewport. Allow every grid child to shrink and wrap. */
.split > *, .stats-grid > *, .deleg > *, .spaces > *, .about > *,
.pillars > *, .form__grid > *, .footer__cols > *, .tiles > *, .gallery > * { min-width: 0; }
.h1-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--marigold);
}
.section--dark .h1-section { color: var(--sandstone); }
.h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 32px);
  font-weight: 700;
  line-height: 1.15;
}
.lead { max-width: 62ch; }
.lead p { margin-bottom: 22px; }
.lead p:last-child { margin-bottom: 0; }
.section--dark .lead p { color: rgba(244, 239, 234, 0.82); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
}
.btn--solid { background: var(--terracotta); color: var(--white); }
.btn--solid:hover { background: var(--marigold); color: var(--charcoal); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(217,162,65,0.28); }
.btn--ghost { border-color: var(--marigold); color: var(--marigold); background: transparent; }
.btn--ghost:hover { background: var(--marigold); color: var(--charcoal); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(217,162,65,0.22); }
.btn:active { transform: translateY(0); }

/* ============================================================
   S1 — Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(26, 29, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), height 0.4s var(--ease);
}
.nav.is-scrolled {
  background: var(--charcoal);
  border-bottom: 1px solid var(--gold-line);
}
.nav__inner { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.brand__name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--marigold); letter-spacing: 0.04em; line-height: 1; }
.brand__url  { font-family: var(--sans); font-size: 10px; color: var(--grey-mid); letter-spacing: 0.05em; }
.brand__logo { display: block; height: 52px; width: auto; transition: height 0.4s var(--ease); }
.nav.is-scrolled .brand__logo { height: 46px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sandstone);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--marigold); border-bottom-color: var(--marigold); }
.nav__cta {
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--marigold); color: var(--marigold); background: transparent;
  padding: 10px 24px; transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__cta:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }

/* Hamburger */
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; background: none; border: 0; }
.nav__burger span { width: 24px; height: 2px; background: var(--marigold); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 360px);
  background: var(--charcoal); z-index: 1001;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column; padding: 100px 36px 40px;
  border-left: 1px solid var(--gold-line);
}
.drawer.is-open { transform: translateX(0); }
.drawer a.nav__link { font-size: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.drawer .btn { margin-top: auto; width: 100%; }
.scrim { position: fixed; inset: 0; background: rgba(26,29,32,0.6); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease); }
.scrim.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   S2 — Hero
   ============================================================ */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero__media { position: absolute; inset: -10% 0; z-index: 0; will-change: transform; }
.hero__media img, .hero__media video { width: 100%; height: 120%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(26,29,32,0.45) 0%, rgba(26,29,32,0.78) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 880px; padding: 0 32px; text-align: center; }
.hero__pre { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(217,162,65,0.85); margin-bottom: 10px; }
.hero__sig { width: clamp(168px, 18vw, 212px); height: auto; margin: 0 auto 22px; filter: drop-shadow(0 6px 24px rgba(0,0,0,0.5)); }
.hero__title { font-family: var(--serif); font-size: clamp(52px, 11vw, 96px); font-weight: 700; letter-spacing: 0.05em; color: var(--marigold); line-height: 0.98; margin-bottom: 20px; text-shadow: 0 4px 40px rgba(0,0,0,0.4); }
.hero__sub { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2.4vw, 24px); letter-spacing: 0.1em; color: var(--sandstone); margin-bottom: 14px; }
.hero__anchor { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,239,234,0.7); margin-bottom: 40px; }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--marigold); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll span { font-family: var(--sans); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(217,162,65,0.8); }
.hero__chev { width: 22px; height: 22px; animation: pulse-down 2s var(--ease) infinite; }
@keyframes pulse-down { 0%,100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(8px); opacity: 1; } }

/* ============================================================
   S3 — What is WEDD Summit (stats)
   ============================================================ */
.split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 72px; align-items: start; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card {
  background: var(--charcoal);
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  padding: 32px;
}
.stat-card__num { font-family: var(--serif); font-size: 52px; font-weight: 700; color: var(--marigold); line-height: 1; margin-bottom: 12px; }
.stat-card__label { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sandstone); line-height: 1.5; }

/* ============================================================
   S4 — Host Venue
   ============================================================ */
.venue-hero-img { width: 100%; height: clamp(320px, 52vh, 600px); object-fit: cover; margin-bottom: 90px; }
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.tile {
  border: 1px solid rgba(217,162,65,0.4);
  background: var(--sand-glass);
  padding: 30px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 12px 32px var(--gold-soft); border-color: var(--marigold); }
.tile__icon { color: var(--marigold); margin-bottom: 18px; }
.tile__icon svg { width: 30px; height: 30px; }
.tile__num { font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--sandstone); line-height: 1; margin-bottom: 8px; }
.tile__label { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-mid); }

.spaces { margin-top: 84px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.spaces__list li { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 16px; color: rgba(244,239,234,0.85); }
.spaces__list li b { color: var(--marigold); font-weight: 600; white-space: nowrap; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery figure { position: relative; overflow: hidden; }
.gallery img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 14px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sandstone); background: linear-gradient(to top, rgba(26,29,32,0.85), transparent); }

/* ============================================================
   S5 — The Experience (tabs + agenda)
   ============================================================ */
.tabbar { display: inline-flex; background: var(--charcoal); border-radius: 2px; padding: 6px; margin-bottom: 48px; gap: 4px; }
.tab {
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey-mid); padding: 14px 28px; border-bottom: 2px solid transparent; transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tab.is-active { color: var(--marigold); border-bottom-color: var(--marigold); }
.agenda { animation: fade-in 0.4s var(--ease); }
.agenda[hidden] { display: none; }
.agenda__note { font-style: italic; color: var(--grey-dark); margin-bottom: 32px; max-width: 70ch; }
.agenda__row { display: grid; grid-template-columns: 200px 1fr 220px; gap: 28px; padding: 26px 0; border-top: 1px solid rgba(140,45,25,0.18); }
.agenda__row:last-child { border-bottom: 1px solid rgba(140,45,25,0.18); }
.agenda__time { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.05em; color: var(--terracotta); }
.agenda__time small { display: block; color: var(--grey-mid); font-weight: 500; margin-top: 2px; }
.agenda__act h4 { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.agenda__act p { font-size: 15px; line-height: 1.7; color: var(--grey-dark); }
.agenda__venue { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--terracotta); text-align: right; }
@keyframes fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ============================================================
   S6 — The Delegation (map + checklist)
   ============================================================ */
.deleg { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.checklist { margin-top: 30px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; font-size: 16px; color: var(--sandstone); }
.checklist svg { width: 20px; height: 20px; color: var(--marigold); flex: 0 0 auto; margin-top: 4px; }
.mapwrap { border: 1px solid var(--gold-line); background: var(--sand-glass); padding: 30px; border-radius: 2px; }
.mapwrap svg { width: 100%; height: auto; }
.map-pin { fill: var(--marigold); transform-origin: center; animation: pin-pulse 2.4s var(--ease) infinite; }
.map-pin-ring { fill: none; stroke: var(--marigold); opacity: 0; transform-origin: center; animation: pin-ring 2.4s var(--ease) infinite; }
@keyframes pin-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes pin-ring { 0% { opacity: 0.7; r: 3; } 100% { opacity: 0; r: 16; } }
.maplegend { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; }
.maplegend span { font-family: var(--sans); font-size: 12px; letter-spacing: 0.05em; color: rgba(244,239,234,0.75); display: flex; align-items: center; gap: 8px; }
.maplegend span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--marigold); }

/* ============================================================
   S7 — The Opportunity
   ============================================================ */
.opp-intro { max-width: 76ch; }
.opp-intro strong { color: var(--terracotta); font-weight: 600; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 52px; align-items: start; }
.pillar {
  background: #fff;
  border: 1px solid rgba(140,45,25,0.10);
  border-top: 3px solid var(--terracotta);
  border-radius: 3px;
  padding: 38px 36px 36px;
  box-shadow: 0 1px 2px rgba(26,29,32,0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(140,45,25,0.14); }
.pillar__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.pillar__num { font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--marigold); line-height: 1; }
.pillar__icon { color: var(--terracotta); }
.pillar__icon svg { width: 34px; height: 34px; }
.pillar__title { font-family: var(--serif); font-size: clamp(21px, 2.1vw, 25px); font-weight: 700; color: var(--charcoal); line-height: 1.22; margin-bottom: 13px; }
.pillar__summary { font-size: 15.5px; line-height: 1.62; color: var(--grey-dark); margin-bottom: 22px; }
.pillar__points { display: flex; flex-direction: column; gap: 15px; }
.pillar__points li { position: relative; padding-left: 22px; font-size: 14.5px; line-height: 1.62; color: var(--grey-dark); }
.pillar__points li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 7px; height: 7px; background: var(--marigold); border-radius: 50%; }
.pillar__points b { color: var(--terracotta); font-weight: 600; }

.bottomline { position: relative; overflow: hidden; background: var(--terracotta); margin-top: 88px; padding: clamp(56px, 7vw, 76px) 32px; }
.bottomline::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 170% at 100% 0%, rgba(217,162,65,0.30), transparent 55%); pointer-events: none; }
.bottomline__inner { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; text-align: center; }
.bottomline__label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--marigold); margin-bottom: 20px; }
.bottomline__label svg { width: 19px; height: 19px; }
.bottomline__text { font-family: var(--serif); font-size: clamp(22px, 2.9vw, 31px); line-height: 1.46; color: #fff; }
.bottomline__text strong { color: var(--marigold); font-weight: 700; font-style: italic; }

/* ============================================================
   S7b — Conversion CTA band
   ============================================================ */
.ctaband {
  background: var(--charcoal);
  padding: clamp(84px, 12vw, 132px) 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  position: relative;
  overflow: hidden;
}
.ctaband::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 150% at 50% 0%, rgba(140,45,25,0.42), transparent 58%);
  pointer-events: none;
}
.ctaband__inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; text-align: center; }
.ctaband__title { font-family: var(--serif); font-size: clamp(30px, 4.6vw, 48px); font-weight: 700; line-height: 1.12; color: var(--sandstone); margin: 16px 0 20px; }
.ctaband__lead { font-family: var(--sans); font-size: 17px; line-height: 1.7; color: rgba(244,239,234,0.84); max-width: 62ch; margin: 0 auto 36px; }
.ctaband__lead em { font-style: italic; color: var(--marigold); font-weight: 500; }
.ctaband__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   S9 — About Win Martin
   ============================================================ */
.about { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: center; }
.about__mark { border: 1px solid var(--gold-line); background: var(--charcoal); border-radius: 2px; aspect-ratio: 4/5; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.about__sig { width: min(72%, 220px); height: auto; filter: drop-shadow(0 4px 18px rgba(0,0,0,0.4)); }
.about__mark p { font-family: var(--sans); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey-mid); margin-top: 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }
.chip { background: var(--charcoal); color: var(--marigold); font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 16px; border-radius: 2px; }
.contact-lines a { display: block; color: var(--terracotta); font-weight: 600; letter-spacing: 0.04em; padding: 3px 0; }

/* ============================================================
   S10 — Expression of Interest
   ============================================================ */
.eoi { position: relative; overflow: hidden; }
.eoi__bg { position: absolute; inset: 0; z-index: 0; }
.eoi__bg img { width: 100%; height: 100%; object-fit: cover; }
.eoi__bg::after { content: ""; position: absolute; inset: 0; background: rgba(26,29,32,0.85); }
.eoi__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; text-align: center; }
.eoi .h1-section { color: var(--sandstone); }
.form { margin-top: 40px; text-align: left; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--marigold); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--sandstone);
  background: rgba(244,239,234,0.08); border: 1px solid var(--gold-line);
  padding: 14px 18px; border-radius: 2px; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(244,239,234,0.4); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D9A241' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--marigold); box-shadow: 0 0 0 3px var(--gold-soft); }
.form__submit { margin-top: 26px; width: 100%; }
.gdpr { font-family: var(--sans); font-size: 11px; color: var(--grey-mid); text-align: center; margin-top: 18px; line-height: 1.6; }
.confirm { text-align: center; padding: 40px 0; animation: fade-in 0.5s var(--ease); }
.confirm[hidden] { display: none; }
.confirm h3 { font-family: var(--serif); font-size: 32px; color: var(--marigold); margin-bottom: 18px; }
.confirm p { color: var(--sandstone); max-width: 52ch; margin: 0 auto; }

/* Zoho appointment scheduler (iframe embed) */
.scheduler { margin-top: 48px; }
.scheduler__divider { display: flex; align-items: center; gap: 18px; margin-bottom: 32px; }
.scheduler__divider::before, .scheduler__divider::after { content: ""; flex: 1; height: 1px; background: var(--gold-line); }
.scheduler__divider span { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--marigold); }
.zoho-embed { display: flex; justify-content: center; }
.zoho-embed iframe {
  width: 432px;
  max-width: 100%;
  height: 350px;
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   S11 — Footer
   ============================================================ */
.footer { background: var(--charcoal); border-top: 1px solid var(--gold-line); padding: 72px 0 0; }
.footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer__cols h5 { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--marigold); margin-bottom: 22px; }
.footer__logo { display: block; width: 132px; height: auto; margin-bottom: 16px; }
.footer__brand .org { font-family: var(--sans); font-size: 12px; color: var(--grey-mid); }
.footer__nav li, .footer__contact a { font-size: 13px; color: var(--grey-mid); padding: 5px 0; display: block; transition: color 0.25s var(--ease); }
.footer__nav li:hover, .footer__contact a:hover { color: var(--marigold); }
.footer__contact a { color: var(--marigold); }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer__bar p { font-family: var(--sans); font-size: 11px; color: #555; text-align: center; }

/* ============================================================
   Scroll-reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
/* Tablet / iPad portrait & small laptops */
@media (max-width: 1023px) {
  .section { padding: 90px 0; }
  .split, .spaces, .deleg, .about { grid-template-columns: 1fr; gap: 48px; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .pillars { gap: 22px; }              /* keep 2-col on iPad portrait */
  .agenda__row { grid-template-columns: 150px 1fr; }
  .agenda__venue { grid-column: 2; text-align: left; padding-top: 6px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}
/* Large phones / phablet */
@media (max-width: 767px) {
  body { font-size: 16px; }
  .container { padding: 0 22px; }
  .section { padding: 72px 0; }
  .stats-grid { gap: 14px; }
  .stat-card { padding: 24px 20px; }
  .stat-card__num { font-size: 38px; }
  .tiles { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 18px; }
  .pillar { padding: 30px 26px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; gap: 36px; }
  .agenda__row { grid-template-columns: 1fr; gap: 6px; }
  .agenda__venue { grid-column: 1; text-align: left; }
  .spaces__list li { flex-direction: column; gap: 4px; }
  .hero__cta .btn, .ctaband__actions .btn { flex: 1 1 100%; }
}
/* Small phones */
@media (max-width: 430px) {
  .container { padding: 0 18px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card__num { font-size: 44px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
