/* ═══════════════════════════════════════════════════════════════
   CWIL EXECUTIVE RETREAT 2026 — DESIGN SYSTEM
   Source of truth: CWIL_Sponsor_Pack_Stylesheet.pdf (board-approved)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ── Brand palette (Sponsor Pack — authoritative) ── */
  --navy:          #3F4862;      /* Primary brand navy */
  --accent-blue:   #5C98D2;      /* Accent / highlights */
  --olive-gold:    #A4A668;      /* CTA / premium signals */
  --soft-sage:     #F1F2E5;      /* Section alt background */
  --warm-paper:    #FAF8F3;      /* Dominant page surface */
  --taupe:         #7A766F;      /* Muted body text / meta */
  --sand-beige:    #C9A986;      /* Tertiary accent */
  --mist:          #D9DCC8;      /* Divider / subtle surface */

  /* ── Derived tokens ── */
  --navy-deep:     #2C334A;       /* Hover / footer */
  --navy-10:       rgba(63, 72, 98, 0.10);
  --navy-20:       rgba(63, 72, 98, 0.20);
  --gold-hover:    #8E9059;
  --blue-10:       rgba(92, 152, 210, 0.10);
  --paper-shadow:  rgba(63, 72, 98, 0.08);

  /* ── Typography (Typekit primary, Google Fonts fallback) ── */
  /* Cormorant Garamond and Montserrat are loaded from Google Fonts.
     When Typekit is available, swap the first value in each stack
     for the Typekit font names provided by your Typekit kit. */
  --serif:  'Cormorant Garamond', 'Garamond Premier Pro', Georgia, 'Times New Roman', serif;
  --sans:   'Montserrat', 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Layout ── */
  --section-pad:   clamp(4rem, 8vw, 7rem);
  --content-max:   1200px;
  --narrow-max:    820px;
  --radius:        4px;
  --radius-lg:     8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--warm-paper);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; }

/* ═══════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════ */
.container { max-width: var(--content-max); margin: 0 auto; padding: 0 2rem; }
.narrow    { max-width: var(--narrow-max); margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--olive-gold);
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: ''; width: 28px; height: 1px; background: var(--olive-gold);
}

.section-heading {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--olive-gold); color: #fff;
  font-family: var(--sans);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1.05rem 2.2rem; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(164, 166, 104, 0.35);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--navy);
  font-family: var(--sans);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1rem 2.2rem; border-radius: var(--radius);
  border: 1.5px solid var(--navy); cursor: pointer;
  transition: all 0.25s ease;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline--white { color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline--white:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 2rem;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  padding: 0.9rem 2rem;
  box-shadow: 0 1px 0 var(--navy-10);
}
/* Nav logo — two SVGs stacked, the appropriate one revealed based on nav scroll state.
   No CSS filter transformation — each SVG is a purpose-designed brand asset. */
.nav-logo-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 34px;
}
.nav-logo {
  height: 34px; width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
/* Default state (pre-scroll, hero background is dark navy) — show dark-bg version */
.nav-logo--dark-bg  { opacity: 1; }
.nav-logo--light-bg { opacity: 0; position: absolute; top: 0; left: 0; pointer-events: none; }
/* Scrolled state (background becomes warm paper) — swap to light-bg version */
.site-nav.scrolled .nav-logo--dark-bg  { opacity: 0; }
.site-nav.scrolled .nav-logo--light-bg { opacity: 1; }

.nav-links {
  list-style: none; display: flex; gap: 2.2rem; align-items: center;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s ease;
}
.site-nav.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover { color: #fff; }
.site-nav.scrolled .nav-links a:hover { color: var(--olive-gold); }

.nav-cta {
  background: var(--olive-gold); color: #fff !important;
  padding: 0.65rem 1.3rem; border-radius: var(--radius);
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  font-size: 0.72rem;
}
.nav-cta:hover { background: var(--gold-hover); }

.nav-mobile-toggle {
  display: none;
  background: transparent; border: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-mobile-toggle span {
  width: 22px; height: 1.5px; background: #fff;
  transition: background 0.3s ease;
}
.site-nav.scrolled .nav-mobile-toggle span { background: var(--navy); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #4A5472 100%);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(164,166,104,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 75%, rgba(92,152,210,0.14) 0%, transparent 45%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--content-max); width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: 5rem; align-items: center;
}
.hero-overline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(164,166,104,0.35);
  border-radius: 2px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--olive-gold);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-blue);
  font-weight: 400;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-meta-item {
  font-size: 0.8rem; line-height: 1.5;
  color: rgba(255,255,255,0.7);
}
.hero-meta-item strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

/* Hero credibility card */
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.hero-card-label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--olive-gold);
  margin-bottom: 1.5rem;
}
.proof-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.proof-stat-num {
  font-family: var(--serif);
  font-size: 2.1rem; font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.proof-stat-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.hero-card-divider {
  height: 1px; background: rgba(255,255,255,0.15);
  margin: 1.8rem 0 1.4rem;
}
.hero-card-quote {
  font-family: var(--serif);
  font-size: 0.95rem; font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   EARLY BIRD BANNER
   ═══════════════════════════════════════ */
.early-bird {
  background: var(--soft-sage);
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  padding: 1rem 2rem;
  text-align: center;
}
.early-bird p {
  font-size: 0.85rem;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 0.75rem;
}
.early-bird strong { color: var(--navy); font-weight: 700; }
.pulse-dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--olive-gold); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* ═══════════════════════════════════════
   SECTIONS — COMMON
   ═══════════════════════════════════════ */
section { padding: var(--section-pad) 0; }
.section-heading-main {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 1rem;
  max-width: 720px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--taupe);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 3rem;
}

/* ═══════════════════════════════════════
   TENSION SECTION
   ═══════════════════════════════════════ */
.tension {
  background: var(--soft-sage);
  padding: var(--section-pad) 2rem;
}
.tension-inner {
  max-width: var(--narrow-max); margin: 0 auto;
  text-align: center;
}
.tension h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 400; line-height: 1.22;
  color: var(--navy);
  margin-bottom: 2rem;
}
.tension-body p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

/* ═══════════════════════════════════════
   OUTCOMES GRID
   ═══════════════════════════════════════ */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.outcome-card {
  background: #fff;
  padding: 2rem 1.8rem;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.outcome-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--paper-shadow);
}
.outcome-icon {
  width: 44px; height: 44px;
  background: var(--blue-10);
  color: var(--accent-blue);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
}
.outcome-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.outcome-card p {
  font-size: 0.93rem;
  color: var(--taupe);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   PILLARS
   ═══════════════════════════════════════ */
.pillars { background: var(--soft-sage); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.pillar-card {
  background: #fff;
  padding: 2.4rem 1.8rem 2rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--olive-gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px var(--paper-shadow);
}
.pillar-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--olive-gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.pillar-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.pillar-card p {
  font-size: 0.92rem;
  color: var(--taupe);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   PHOTO STRIP
   ═══════════════════════════════════════ */
.photo-strip {
  height: 320px;
  background-image: linear-gradient(rgba(63,72,98,0.25), rgba(63,72,98,0.35)),
    url('https://res.cloudinary.com/woureesystems/image/upload/f_auto,q_auto,w_1600/v1776198026/cwil/retreats/2026/webimages/hotel-main_image.jpg');
  background-size: cover;
  background-position: center;
}

/* ═══════════════════════════════════════
   AGENDA TIMELINE
   ═══════════════════════════════════════ */
.agenda-timeline {
  position: relative;
  padding-left: 1rem;
}
.agenda-timeline::before {
  content: '';
  position: absolute;
  left: 62px; top: 30px; bottom: 30px;
  width: 1px; background: var(--mist);
}
.day-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2.5rem;
  padding: 1.8rem 0;
  position: relative;
}
.day-marker { text-align: right; position: relative; }
.day-dot {
  position: absolute;
  left: calc(100% + 0.25rem);
  top: 0.25rem;
  width: 11px; height: 11px;
  background: var(--olive-gold);
  border: 2px solid var(--warm-paper);
  border-radius: 50%;
  z-index: 2;
}
.day-num {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.day-date {
  font-size: 0.72rem;
  color: var(--taupe);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.day-content { padding-left: 1.5rem; border-left: 1px solid transparent; }
.day-theme {
  font-size: 0.7rem;
  color: var(--olive-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.day-content h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.day-content p {
  font-size: 0.95rem;
  color: var(--taupe);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   QUOTE STRIP
   ═══════════════════════════════════════ */
.quote-strip {
  background: var(--navy);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}
.quote-strip blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 1.5rem;
  color: #fff;
}
.quote-strip cite {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-gold);
  font-style: normal;
}

/* ═══════════════════════════════════════
   VENUE
   ═══════════════════════════════════════ */
.venue-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.venue-body {
  font-size: 1rem;
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.venue-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.venue-detail-label {
  font-size: 0.7rem;
  color: var(--olive-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.venue-detail-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy);
}
.venue-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 180px;
  gap: 0.8rem;
}
.venue-img {
  overflow: hidden;
  border-radius: var(--radius);
}
.venue-img:first-child { grid-column: 1 / -1; }
.venue-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.venue-img:hover img { transform: scale(1.04); }

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing { background: var(--soft-sage); }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.price-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--mist);
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--olive-gold);
  box-shadow: 0 8px 32px rgba(164,166,104,0.15);
}
.price-card.featured::before {
  content: 'Recommended';
  position: absolute;
  top: -12px; left: 2rem;
  background: var(--olive-gold);
  color: #fff;
  padding: 0.3rem 0.9rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px;
}
.price-tier {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.price-amount {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.price-amount .currency {
  font-size: 1.3rem;
  vertical-align: top;
  margin-right: 0.15rem;
}
.price-per {
  font-size: 0.85rem;
  color: var(--taupe);
  margin-bottom: 0.4rem;
}
.price-multi {
  font-size: 0.82rem;
  color: var(--taupe);
  margin-bottom: 0.3rem;
}
.price-early {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--olive-gold);
  font-weight: 600;
  background: rgba(164,166,104,0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  margin: 0.5rem 0 1.5rem;
}
.price-includes {
  list-style: none;
  margin-bottom: 1.8rem;
}
.price-includes li {
  font-size: 0.9rem;
  color: var(--navy);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--mist);
  padding-left: 1.4rem;
  position: relative;
}
.price-includes li::before {
  content: '✓';
  position: absolute;
  left: 0; color: var(--olive-gold);
  font-weight: 700;
}
.price-includes li.extra {
  color: var(--navy);
  font-weight: 500;
}
.pricing-note {
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.7;
  max-width: 820px;
  margin: 2rem auto 0;
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--mist);
}
.pricing-note strong { color: var(--navy); }

/* ═══════════════════════════════════════
   AUDIENCE
   ═══════════════════════════════════════ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.audience-card {
  padding: 2.2rem 1.8rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--mist);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px var(--paper-shadow);
  border-color: var(--accent-blue);
}
.audience-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.audience-card p {
  font-size: 0.93rem;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.audience-path {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--accent-blue);
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  background: var(--blue-10);
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   CREDIBILITY
   ═══════════════════════════════════════ */
.credibility {
  background: var(--navy);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}
.cred-heading {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 3rem;
  color: #fff;
}
.cred-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.cred-stat-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--olive-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.cred-stat-text {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.cred-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-inner {
  max-width: var(--narrow-max);
  margin: 0 auto;
  padding: 0 2rem;
}
.faq-item {
  border-bottom: 1px solid var(--mist);
}
.faq-question {
  width: 100%;
  background: transparent; border: none;
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
}
.faq-icon {
  width: 16px; height: 16px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--olive-gold);
  transition: transform 0.3s ease;
}
.faq-icon::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 16px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.94rem;
  color: var(--taupe);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ═══════════════════════════════════════
   SEGMENTED CTA
   ═══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  text-align: center;
}
.cta-section .section-heading,
.cta-section h2 { color: #fff; }
.cta-section > .container > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 1rem auto 3rem;
}
.cta-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.cta-path {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  text-align: left;
}
.cta-path h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.cta-path p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 1rem;
}
.footer-brand img {
  height: 32px; width: auto;
}
.footer-brand span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  max-width: 240px; line-height: 1.5;
}
.footer-links {
  list-style: none;
  display: flex; gap: 1.8rem; flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--olive-gold); }
.footer-copy {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════
   HOLDING PAGE (root index)
   ═══════════════════════════════════════ */
.holding-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #4A5472 100%);
  color: #fff;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.holding-page::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 30%, rgba(164,166,104,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 80%, rgba(92,152,210,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.holding-inner {
  position: relative; z-index: 1;
  max-width: 640px; text-align: center;
}
.holding-logo {
  /* Uses the purpose-designed corporate dark-bg SVG.
     Height sized for the full logo which includes the tagline. */
  height: 72px; width: auto;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
}
.holding-overline {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(164,166,104,0.4);
  border-radius: 2px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--olive-gold);
  margin-bottom: 2rem;
}
.holding-page h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.holding-page h1 em { color: var(--accent-blue); font-style: italic; }
.holding-page p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.holding-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--olive-gold); color: #fff;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  border-radius: var(--radius);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.holding-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(164,166,104,0.35);
}
.holding-spinner-note {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-content    { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card       { order: 2; }
  .venue-inner     { grid-template-columns: 1fr; gap: 2.5rem; }
  .cred-stats      { gap: 2.5rem; }
  .nav-links       { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .hero               { padding-top: 6rem; }
  .hero-meta          { grid-template-columns: 1fr; gap: 1rem; }
  .cred-stats         { flex-direction: column; gap: 2rem; }
  .photo-strip        { height: 220px; }
  .day-block          { grid-template-columns: 80px 1fr; gap: 1.2rem; }
  .agenda-timeline::before { left: 40px; }
  .footer-inner       { flex-direction: column; text-align: center; }
  .footer-links       { justify-content: center; }
  .venue-details      { grid-template-columns: 1fr; }
  .venue-images       { grid-template-rows: 200px 150px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions > * { width: 100%; justify-content: center; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; }
}
