/* ============================================
   CORPORATE GAMES 2026 — What Ability Foundation
   Brand: Official WAF palette — Navy #34408c | Orange #f25c26 | Green #149e4a | Yellow #ebba1e
   Fonts: Second Chance (headings) + Open Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* Second Chance — loaded via CDN fallback (Google Fonts doesn't have it;
   we simulate with Nunito which shares the same rounded, friendly personality) */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800;900&display=swap');

:root {
  /* === WAF BRAND PALETTE === */
  --waf-navy:   #34408c;
  --waf-orange: #f25c26;
  --waf-green:  #149e4a;
  --waf-yellow: #ebba1e;

  /* Tints */
  --waf-navy-dark:    #212934;
  --waf-navy-light:   #eceef8;
  --waf-orange-dark:  #c8430e;
  --waf-orange-light: #fff3ed;
  --waf-green-dark:   #0d7535;
  --waf-green-light:  #e8f7ed;
  --waf-yellow-dark:  #c89900;
  --waf-yellow-light: #fdf7e0;

  /* Surfaces */
  --color-bg:       #f9f9fb;
  --color-surface:  #ffffff;
  --color-border:   #e2e2e2;
  --color-divider:  #eeeeee;

  /* Text */
  --color-text:        #212934;
  --color-text-muted:  #5a6270;
  --color-text-faint:  #a0a8b4;
  --color-text-inverse: #ffffff;

  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.2vw,  0.8125rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.3vw,  1rem);
  --text-base: clamp(1rem,     0.95rem + 0.2vw,  1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.6vw,  1.5rem);
  --text-xl:   clamp(1.5rem,   1.1rem  + 1.2vw,  2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2vw,    3.25rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     1rem    + 6vw,    7rem);

  /* Spacing */
  --space-1:  0.25rem;  --space-2:  0.5rem;   --space-3:  0.75rem;
  --space-4:  1rem;     --space-5:  1.25rem;  --space-6:  1.5rem;
  --space-8:  2rem;     --space-10: 2.5rem;   --space-12: 3rem;
  --space-16: 4rem;     --space-20: 5rem;     --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1160px;

  /* Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.75rem;
  --radius-lg:   1.125rem;
  --radius-xl:   1.75rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(52,64,140,0.08);
  --shadow-md: 0 4px 16px rgba(52,64,140,0.12);
  --shadow-lg: 0 12px 40px rgba(52,64,140,0.16);

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 180ms var(--ease-out);

  /* Fonts */
  --font-display: 'Nunito', 'Arial Rounded MT Bold', sans-serif;
  --font-body:    'Open Sans', Arial, Helvetica, sans-serif;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}
img, svg { display: block; max-width: 100%; }
p, li { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.1; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul[role='list'] { list-style: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
::selection { background: rgba(242,92,38,0.15); }
:focus-visible { outline: 2px solid var(--waf-orange); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ===== WAF RAINBOW BAR ===== */
.waf-rainbow {
  display: flex;
  height: 6px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.waf-rainbow span {
  flex: 1;
}
.waf-rainbow span:nth-child(1) { background: var(--waf-navy); }
.waf-rainbow span:nth-child(2) { background: var(--waf-orange); }
.waf-rainbow span:nth-child(3) { background: var(--waf-green); }
.waf-rainbow span:nth-child(4) { background: var(--waf-yellow); }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.section-label--navy  { color: var(--waf-navy); }
.section-label--orange { color: var(--waf-orange); }
.section-label--green  { color: var(--waf-green); }
.section-label--yellow { color: var(--waf-yellow-dark); }
.section-label--light  { color: rgba(255,255,255,0.65); }

h2.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--waf-navy);
  margin-bottom: var(--space-6);
  line-height: 1.05;
}
.section-intro {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-bottom: var(--space-12);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { font-size: var(--text-sm); padding: var(--space-2) var(--space-5); }
.btn-lg { font-size: var(--text-base); padding: var(--space-4) var(--space-8); }

/* Navy (Register / primary) */
.btn-navy {
  background: var(--waf-navy);
  color: #fff !important;
}
.btn-navy:hover { background: #2a3375; box-shadow: 0 8px 24px rgba(52,64,140,0.35); }

/* Orange (CTA) */
.btn-orange {
  background: var(--waf-orange);
  color: #fff !important;
}
.btn-orange:hover { background: var(--waf-orange-dark); box-shadow: 0 8px 24px rgba(242,92,38,0.35); }

/* Green */
.btn-green {
  background: var(--waf-green);
  color: #fff !important;
}
.btn-green:hover { background: var(--waf-green-dark); box-shadow: 0 8px 24px rgba(20,158,74,0.3); }

/* Yellow */
.btn-yellow {
  background: var(--waf-yellow);
  color: var(--waf-navy-dark) !important;
}
.btn-yellow:hover { background: var(--waf-yellow-dark); box-shadow: 0 8px 24px rgba(235,186,30,0.4); }

/* Ghost (hero) */
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9) !important;
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

/* Alias for template compatibility */
.btn-primary { background: var(--waf-orange); color: #fff !important; }
.btn-primary:hover { background: var(--waf-orange-dark); box-shadow: 0 8px 24px rgba(242,92,38,0.35); }

.btn-full { width: 100%; }

/* ===== STICKY HEADER ===== */
.site-header {
  position: sticky;
  top: 6px; /* below rainbow bar */
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-6);
}

/* ===== WAF LOGO ===== */
.waf-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.waf-logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 4px;
}
.waf-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.waf-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--waf-navy);
  letter-spacing: -0.01em;
}
.waf-logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
/* Inverted variant for dark backgrounds */
.waf-logo-inverted .waf-logo-name { color: #fff; }
.waf-logo-inverted .waf-logo-sub  { color: rgba(255,255,255,0.6); }

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.header-nav a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--waf-navy); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--waf-navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--waf-navy);
  overflow: hidden;
  padding-block: var(--space-24);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%,  rgba(242,92,38,0.22)  0%, transparent 45%),
    radial-gradient(ellipse at 15% 85%,  rgba(20,158,74,0.14)  0%, transparent 45%),
    radial-gradient(ellipse at 60% 60%,  rgba(235,186,30,0.08) 0%, transparent 55%);
}
/* Diagonal colour stripe bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    var(--waf-navy)  0%,   var(--waf-navy)  25%,
    var(--waf-orange) 25%, var(--waf-orange) 50%,
    var(--waf-green)  50%, var(--waf-green)  75%,
    var(--waf-yellow) 75%, var(--waf-yellow) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(235,186,30,0.18);
  color: var(--waf-yellow);
  border: 1px solid rgba(235,186,30,0.4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
}
.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}
.hero-heading .word-corporate { color: #fff; }
.hero-heading .word-games     { color: var(--waf-yellow); }
.hero-heading .word-year {
  display: block;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--space-4);
}
.hero-desc {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.62);
  max-width: 56ch;
  margin-bottom: var(--space-10);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: var(--space-1); }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-num--orange { color: var(--waf-orange); }
.stat-num--green  { color: #65de90; }
.stat-num--yellow { color: var(--waf-yellow); }
.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.14);
}
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ===== ABOUT ===== */
.section-about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.about-text h2 em { font-style: normal; color: var(--waf-orange); }
.about-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.75;
  max-width: 54ch;
}
.impact-quote {
  margin-top: var(--space-8);
  padding: var(--space-6);
  border-left: 4px solid var(--waf-green);
  background: var(--waf-green-light);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic;
  font-size: var(--text-base);
  color: var(--waf-navy);
  font-weight: 600;
  line-height: 1.65;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.value-card {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.value-card:nth-child(1) .value-icon { background: var(--waf-navy-light);   color: var(--waf-navy);   }
.value-card:nth-child(2) .value-icon { background: var(--waf-orange-light);  color: var(--waf-orange); }
.value-card:nth-child(3) .value-icon { background: var(--waf-green-light);   color: var(--waf-green);  }
.value-card:nth-child(4) .value-icon { background: var(--waf-yellow-light);  color: var(--waf-yellow-dark); }
.value-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--waf-navy);
  margin-bottom: var(--space-2);
}
.value-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: none;
}

/* ===== HOW IT WORKS ===== */
.section-how { background: var(--waf-navy); }
.section-how h2.section-heading { color: #fff; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-16);
}
.how-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.how-step:nth-child(1) .step-num { color: #7a8fef; }
.how-step:nth-child(2) .step-num { color: var(--waf-orange); }
.how-step:nth-child(3) .step-num { color: #65de90; }
.how-step:nth-child(4) .step-num { color: var(--waf-yellow); }
.step-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--space-4);
  opacity: 0.75;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-3);
}
.how-step p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}
.scoring-block {
  background: rgba(235,186,30,0.1);
  border: 1px solid rgba(235,186,30,0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.scoring-block h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--waf-yellow);
  margin-bottom: var(--space-6);
}
.scoring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.scoring-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.scoring-venue {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: var(--text-base);
}
.scoring-criteria {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

/* ===== VENUES ===== */
.section-venues { background: var(--color-bg); }
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.venue-card {
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: box-shadow var(--transition), transform var(--transition);
}
.venue-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.venue-card:nth-child(1) { border-top: 4px solid var(--waf-navy); }
.venue-card:nth-child(2) { border-top: 4px solid var(--waf-orange); }
.venue-card:nth-child(3) { border-top: 4px solid var(--waf-green); }
.venue-icon { font-size: 2.5rem; margin-bottom: var(--space-4); line-height: 1; }
.venue-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--waf-navy);
  margin-bottom: var(--space-1);
}
.venue-tagline {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: var(--space-4);
}
.venue-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-5);
  max-width: none;
}
.venue-card:nth-child(1) .venue-challenge { background: var(--waf-navy-light);   color: var(--waf-navy);        border: 1px solid rgba(52,64,140,0.2);  }
.venue-card:nth-child(2) .venue-challenge { background: var(--waf-orange-light); color: var(--waf-orange-dark); border: 1px solid rgba(242,92,38,0.25); }
.venue-card:nth-child(3) .venue-challenge { background: var(--waf-green-light);  color: var(--waf-green-dark);  border: 1px solid rgba(20,158,74,0.25); }
.venue-challenge {
  display: inline-block;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ===== INCLUSIONS ===== */
.section-includes {
  background: linear-gradient(135deg, var(--waf-navy) 0%, #1e2d5e 100%);
}
.includes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.includes-text h2.section-heading { color: #fff; }
.includes-text p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.58);
  max-width: 42ch;
  line-height: 1.7;
  max-width: none;
}
.includes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  list-style: none;
}
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.includes-list li:nth-child(1) .check { color: #7a8fef; }
.includes-list li:nth-child(2) .check { color: var(--waf-orange); }
.includes-list li:nth-child(3) .check { color: var(--waf-green); }
.includes-list li:nth-child(4) .check { color: var(--waf-yellow); }
.includes-list li:nth-child(5) .check { color: var(--waf-orange); }
.includes-list li:nth-child(6) .check { color: var(--waf-green); }
.includes-list li:nth-child(7) .check { color: var(--waf-yellow); }
.includes-list li:nth-child(8) .check { color: #7a8fef; }
.check { flex-shrink: 0; margin-top: 1px; }

/* ===== SCHEDULE ===== */
.section-schedule { background: #fff; }
.schedule-list {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-6);
}
.schedule-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-6);
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--color-divider);
  background: #fff;
  transition: background var(--transition);
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item:hover { background: var(--color-bg); }
.schedule-item:nth-child(1) .schedule-time { color: var(--waf-navy);   }
.schedule-item:nth-child(2) .schedule-time { color: var(--waf-orange); }
.schedule-item:nth-child(3) .schedule-time { color: var(--waf-green);  }
.schedule-item:nth-child(4) .schedule-time { color: var(--waf-navy);   }
.schedule-item:nth-child(5) .schedule-time { color: var(--waf-orange); }
.schedule-item:nth-child(6) .schedule-time { color: var(--waf-yellow-dark); }
.schedule-time {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 3px;
}
.schedule-event strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--waf-navy);
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.schedule-event p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: none;
}
.schedule-note {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  font-style: italic;
}

/* ===== REGISTER ===== */
.section-register { background: var(--color-bg); }
.register-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.register-text > p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: var(--space-8);
}
.register-details { display: flex; flex-direction: column; gap: var(--space-3); }
.register-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-5);
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.register-detail:nth-child(1) { border-left: 4px solid var(--waf-navy);   }
.register-detail:nth-child(2) { border-left: 4px solid var(--waf-orange); }
.register-detail:nth-child(3) { border-left: 4px solid var(--waf-green);  }
.register-detail:nth-child(4) { border-left: 4px solid var(--waf-yellow); }
.register-detail strong {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
}
.register-detail span {
  font-size: var(--text-sm);
  color: var(--waf-navy);
  font-weight: 600;
}
.register-form-wrap {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-top: 5px solid var(--waf-orange);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
}
.rsvp-form h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--waf-navy);
  margin-bottom: var(--space-8);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-group label span { color: var(--waf-orange); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--waf-navy);
  box-shadow: 0 0 0 3px rgba(52,64,140,0.1);
}
.form-group input.error,
.form-group textarea.error { border-color: #c0392b; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-check {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  margin-bottom: var(--space-6);
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--waf-navy);
  cursor: pointer;
}
.form-check label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  cursor: pointer;
}
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-4);
  text-align: center;
  line-height: 1.5;
}
.rsvp-success {
  text-align: center;
  padding: var(--space-12) var(--space-8);
}
.success-icon {
  color: var(--waf-green);
  margin-bottom: var(--space-6);
  display: flex;
  justify-content: center;
}
.rsvp-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--waf-navy);
  margin-bottom: var(--space-4);
}
.rsvp-success p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  margin-inline: auto;
}
.rsvp-success a { color: var(--waf-orange); text-decoration: underline; }

/* ===== FAQ ===== */
.section-faq { background: var(--color-bg); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 820px;
}
.faq-item {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--waf-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--waf-orange);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--color-bg); }
.faq-item p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: none;
}
.faq-item a { color: var(--waf-orange); text-decoration: underline; }

/* ===== FINAL CTA ===== */
.section-cta {
  position: relative;
  background: var(--waf-orange);
  text-align: center;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(235,186,30,0.18)  0%, transparent 50%);
}
.cta-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.section-cta h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: #fff;
  margin-bottom: var(--space-4);
}
.section-cta p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}
.section-cta .btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--waf-orange) !important;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-10);
  border-radius: var(--radius-full);
  border: none;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.section-cta .btn-cta-white:hover { background: rgba(255,255,255,0.92); box-shadow: 0 8px 30px rgba(0,0,0,0.18); transform: translateY(-1px); }
.cta-contact {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
}
.cta-contact a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* ===== FOOTER ===== */
.site-footer { background: #000; color: rgba(255,255,255,0.55); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-12);
  padding-block: var(--space-12);
}
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.38);
  margin-top: var(--space-4);
  max-width: 38ch;
  line-height: 1.65;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: right;
}
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links a:hover { color: var(--waf-orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--space-5);
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.28); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid,
  .includes-inner,
  .register-inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .about-cards    { grid-template-columns: 1fr 1fr; }
  .how-grid       { grid-template-columns: 1fr 1fr; }
  .scoring-grid   { grid-template-columns: 1fr; }
  .venues-grid    { grid-template-columns: 1fr; }
  .includes-list  { grid-template-columns: 1fr 1fr; }
  .footer-inner   { flex-direction: column; gap: var(--space-8); }
  .footer-links   { text-align: left; }
}
@media (max-width: 640px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: var(--space-6);
    gap: var(--space-4);
    border-bottom: 1px solid var(--color-divider);
    z-index: 99;
  }
  .menu-toggle  { display: flex; }
  .stat-divider { display: none; }
  .hero-stats   { gap: var(--space-4); }
  .how-grid     { grid-template-columns: 1fr; }
  .about-cards  { grid-template-columns: 1fr; }
  .includes-list { grid-template-columns: 1fr; }
  .register-form-wrap { padding: var(--space-6); }
  .schedule-item { grid-template-columns: 1fr; gap: var(--space-2); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
