/* ============================================================
   BMUN — Balochistan Model United Nations
   Design system: warm, local, diplomatic.
   Colors pulled from the BMUN logo (terracotta camel on ochre).
   ============================================================ */

:root {
  /* --- Ink / browns --- */
  --ink:        #2c1a0e;   /* primary text — warm near-black */
  --espresso:   #4a2a16;
  --brown:      #6d3717;   /* brand terracotta brown */
  --brown-2:    #823f17;

  /* --- Golds / ochre --- */
  --gold:       #b97a22;   /* ochre accent */
  --gold-2:     #cd8a2c;
  --gold-soft:  #e3b65f;
  --gold-glow:  #f0cd86;

  /* --- Paper / sand --- */
  --cream:      #f7efe0;   /* page background */
  --paper:      #fcf7ec;   /* card surface */
  --sand:       #efe2cb;   /* tinted panel */
  --sand-2:     #e7d6b8;
  --line:       #ddc9a4;   /* hairline border */
  --line-soft:  #ece0c8;

  /* --- Semantic --- */
  --text:       var(--ink);
  --muted:      #6b513a;
  --muted-2:    #8a6f54;
  --ok:         #4f7a3f;
  --danger:     #a5471f;

  /* --- Type --- */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Work Sans', system-ui, -apple-system, sans-serif;
  --accent:'Marcellus', 'Cormorant Garamond', serif;

  /* --- Misc --- */
  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(60,33,12,.07), 0 4px 14px rgba(60,33,12,.05);
  --shadow:    0 4px 18px rgba(60,33,12,.10), 0 18px 50px rgba(60,33,12,.10);
  --shadow-lg: 0 10px 40px rgba(60,33,12,.16), 0 40px 90px rgba(60,33,12,.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle paper texture via layered radial tints */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 700px at 12% -8%, rgba(227,182,95,.20), transparent 60%),
    radial-gradient(1000px 600px at 105% 8%, rgba(185,122,34,.10), transparent 55%);
}

#root { position: relative; z-index: 1; }

h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
html, body { overflow-x: hidden; max-width: 100%; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 76px 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--center::after {
  content: "";
  width: 30px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--espresso);
}
.h-xl { font-size: clamp(40px, 6.4vw, 78px); line-height: 1.02; }
.h-lg { font-size: clamp(34px, 4.6vw, 54px); }
.h-md { font-size: clamp(26px, 3vw, 36px); }

.lead { font-size: clamp(18px, 2vw, 21px); color: var(--muted); line-height: 1.65; }
.muted { color: var(--muted); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head .display { margin-top: 18px; }
.section-head p { margin-top: 18px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--brown-2), var(--brown));
  color: #fdf3e0;
  box-shadow: 0 6px 18px rgba(109,55,23,.30);
}
.btn-primary:hover { box-shadow: 0 10px 26px rgba(109,55,23,.40); transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #2c1a0e;
  box-shadow: 0 6px 18px rgba(185,122,34,.32);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(185,122,34,.42); }
.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brown); background: rgba(109,55,23,.05); }
.btn-lg { padding: 17px 34px; font-size: 16px; }

/* ---------- Cards / chips ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--espresso);
  border: 1px solid var(--line);
}
.divider-emblem {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  color: var(--gold);
}
.divider-emblem::before, .divider-emblem::after {
  content: ""; height: 1px; width: 80px; background: var(--line);
}
.divider-emblem .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); transform: rotate(45deg); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled, .nav.open {
  background: rgba(247,239,224,.86);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 24px rgba(60,33,12,.06);
}
.nav.open { background: rgba(247,239,224,.97); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-badge {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; flex: none; position: relative;
  border: 1.5px solid var(--brown);
  box-shadow: 0 2px 8px rgba(109,55,23,.20);
}
.brand-badge img {
  position: absolute; top: 50%; left: 50%;
  width: 124%; height: 124%; object-fit: cover;
  transform: translate(-50%, -50%);
}
.brand-text { line-height: 1; }
.brand-text .name { font-family: var(--accent); font-size: 20px; letter-spacing: .14em; color: var(--espresso); }
.brand-text .sub { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: 4px; font-weight: 600; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 2px; flex: 1; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--espresso);
  padding: 9px 12px; border-radius: 999px; white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(109,55,23,.07); color: var(--brown); }
.nav-cta { margin-left: 14px; flex: none; }
.nav-burger { display: none; background: none; border: none; padding: 8px; color: var(--espresso); }

/* ============================================================
   HERO — cinematic Balochistan mountain scene
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 132px 0 96px;
  overflow: hidden;
  isolation: isolate;
}

/* --- layered scene (all decorative, behind content) --- */
.hero-scene { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-scene::before {            /* the sunset sky */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    #fcf5e6 0%, #faedd3 24%, #f3dcad 44%,
    #ecc888 58%, #d7a154 70%, #9c6328 82%, #5c3417 93%, #3c2110 100%);
}
.hero-sun {
  position: absolute; left: 50%; top: 34%;
  width: 360px; height: 360px; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,238,196,.95) 0%, rgba(247,206,122,.55) 32%, rgba(231,167,72,0) 68%);
  filter: blur(4px);
}
.hero-canvas { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease .15s; }
.hero-canvas.ready { opacity: 1; }
.hero-canvas canvas { display: block; width: 100% !important; height: 100% !important; }

/* SVG mountain silhouettes — the reliable base beneath the WebGL.
   Atmospheric perspective: far ridges are hazier/blurrier, near ones crisp+dark. */
.hero-mtns { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 70%; will-change: transform; }
.hero-mtns .mtn { transform-origin: 50% 100%; }
.hero-mtns .mtn-1 { opacity: .75; filter: blur(2.5px); }
.hero-mtns .mtn-2 { opacity: .88; filter: blur(1.5px); }
.hero-mtns .mtn-3 { filter: blur(.6px); }
.hero-mtns .mtn-4 { filter: drop-shadow(0 -2px 10px rgba(40,23,12,.18)); }
.hero-mtns .mtn-5 { filter: drop-shadow(0 -3px 16px rgba(20,12,6,.30)); }
@media (prefers-reduced-motion: no-preference) {
  .hero-mtns .mtn-1 { animation: drift 30s ease-in-out infinite; }
  .hero-mtns .mtn-2 { animation: drift 24s ease-in-out infinite reverse; }
  .hero-mtns .mtn-3 { animation: drift 19s ease-in-out infinite; }
  .hero-mtns .mtn-4 { animation: drift 15s ease-in-out infinite reverse; }
}
@keyframes drift {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(-16px); }
}
/* When WebGL is up, soften the SVG so the 3D terrain reads as the surface */
.hero-canvas.ready ~ .hero-mtns { opacity: .5; transition: opacity 1s ease; }

.hero-haze {                     /* horizon glow + readability vignette */
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 60% at 50% 30%, rgba(255,247,228,.35), transparent 60%),
    radial-gradient(100% 70% at 50% 112%, rgba(40,23,12,.55), transparent 60%);
}
.hero-grain {                    /* faint film grain */
  position: absolute; inset: 0; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- foreground content --- */
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  max-width: 880px;
}
.hero-kicker { margin-bottom: 22px; }
.hero-title {
  font-size: clamp(40px, 6.6vw, 82px); line-height: 1.03;
  color: var(--espresso);
  text-shadow: 0 1px 0 rgba(255,247,228,.45), 0 14px 40px rgba(60,33,12,.12);
}
.hero-title .accent {
  font-style: italic;
  background: linear-gradient(100deg, var(--brown) 0%, var(--gold) 55%, var(--brown-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin-top: 26px; max-width: 600px; color: #6a4a30; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; justify-content: center; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; justify-content: center; }
.hero-meta .chip { background: rgba(252,247,236,.78); backdrop-filter: blur(6px); border-color: rgba(221,201,164,.9); }
.hero-meta .chip svg { color: var(--gold); }

.hero-stats { display: flex; gap: 40px; margin-top: 46px; padding-top: 30px; border-top: 1px solid rgba(247,239,224,.35); }
.stat .num { font-family: var(--serif); font-size: 42px; font-weight: 600; color: var(--brown); line-height: 1; }
.stat .lbl { font-size: 13px; color: var(--muted); margin-top: 7px; letter-spacing: .02em; }
/* Hero stats sit over the dark mountains — keep them light and legible. */
.hero-stats .stat .num { color: #fbf2e0; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.hero-stats .stat .lbl { color: #ecdcc0; text-shadow: 0 1px 10px rgba(0,0,0,.45); }

/* scroll cue */
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border-radius: 14px; border: 2px solid rgba(109,55,23,.45);
  display: grid; justify-items: center; padding-top: 7px;
}
.hero-scroll-dot { width: 4px; height: 8px; border-radius: 3px; background: var(--brown); }
@media (prefers-reduced-motion: no-preference) { .hero-scroll-dot { animation: scrolldot 1.6s ease-in-out infinite; } }
@keyframes scrolldot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-points { display: grid; gap: 18px; margin-top: 30px; }
.about-point { display: flex; gap: 16px; align-items: flex-start; }
.about-point .ic {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: var(--sand); color: var(--brown); border: 1px solid var(--line);
}
.about-point h4 { font-size: 17px; color: var(--espresso); margin-bottom: 3px; }
.about-point p { font-size: 15px; color: var(--muted); }
.about-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px); line-height: 1.35; color: var(--espresso);
  border-left: 3px solid var(--gold); padding-left: 26px;
}
.about-quote cite { display: block; font-style: normal; font-family: var(--sans); font-size: 14px; letter-spacing: .04em; color: var(--gold); margin-top: 18px; font-weight: 600; }

/* ============================================================
   COMMITTEES
   ============================================================ */
.committees { background: var(--espresso); color: #f3e6d0; }
.committees .eyebrow { color: var(--gold-soft); }
.committees .eyebrow::before, .committees .eyebrow--center::after { background: var(--gold-soft); }
.committees .display { color: #fbf2e0; }
.committees .lead { color: #d8c4a6; }
.comm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; }
.comm-card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(227,182,95,.18);
  border-radius: var(--radius-lg);
  padding: 30px;
  cursor: pointer;
  transition: border-color .25s, transform .25s, background .25s;
  position: relative; overflow: hidden;
}
.comm-card:hover { border-color: var(--gold-soft); transform: translateY(-3px); background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); }
.comm-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.comm-abbr { font-family: var(--accent); font-size: 13px; letter-spacing: .14em; color: var(--gold-soft); }
.comm-card h3 { font-family: var(--serif); font-size: 26px; color: #fbf2e0; margin: 14px 0 0; }
.comm-agenda { font-size: 15px; color: #d8c4a6; margin-top: 14px; font-style: italic; }
.comm-toggle {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  border: 1px solid rgba(227,182,95,.4); background: transparent; color: var(--gold-soft);
  display: grid; place-items: center; transition: transform .3s, background .25s;
}
.comm-card.open .comm-toggle { transform: rotate(45deg); background: rgba(227,182,95,.16); }
.comm-detail { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.comm-card.open .comm-detail { max-height: 560px; }
.comm-detail-inner { padding-top: 20px; margin-top: 20px; border-top: 1px solid rgba(227,182,95,.18); }
.comm-detail-inner .label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
.comm-detail-inner p { font-size: 14.5px; color: #d8c4a6; margin-top: 8px; line-height: 1.6; }
.comm-no { color: #c9b08c; letter-spacing: .06em; }
.comm-foot { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 16px; }
.comm-guide {
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  font-size: 13px; font-weight: 600; color: #2c1a0e; background: var(--gold-soft);
  padding: 8px 14px; border-radius: 999px; transition: background .2s ease, transform .2s ease;
}
.comm-guide:hover { background: var(--gold-glow); transform: translateX(2px); }

/* ============================================================
   TEAM — hierarchy
   ============================================================ */
.team-org { display: grid; gap: 0; }
.team-connector {
  width: 1.5px; height: 36px; margin: 0 auto; background: var(--line);
}
.team-tier-label { display: flex; align-items: center; gap: 18px; margin: 0 0 28px; }
.team-tier-label span { font-family: var(--accent); font-size: 14px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.team-tier-label::before, .team-tier-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-bottom: 50px; }
.team-grid > .member { flex: 0 1 calc(25% - 13.5px); }
.team-grid--top { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto 50px; }
.team-grid--1 { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto 50px; }
.team-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 560px; margin: 0 auto 50px; }
.team-grid--3 { grid-template-columns: repeat(3, 1fr); }
.team-grid--4 { grid-template-columns: repeat(4, 1fr); }
.member { text-align: center; padding: 22px 14px; border-radius: var(--radius-lg); transition: transform .25s, box-shadow .25s, border-color .25s; border: 1px solid transparent; }
.member:hover { border-color: var(--line); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.member .avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(155deg, var(--sand-2), var(--sand));
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--brown);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.member .avatar.avatar--photo { padding: 0; background: var(--sand); }
.member .avatar.avatar--photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  border-radius: 50%; display: block;
}
.member h4 { font-size: 16px; color: var(--espresso); }
.member .role { font-size: 12.5px; color: var(--gold); font-weight: 600; letter-spacing: .04em; margin-top: 4px; text-transform: uppercase; }
.member p { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.5; }
/* President — the apex of the hierarchy: larger card, gold ring, no hover border */
.member.top { border: 1px solid var(--line-soft); background: var(--paper); box-shadow: var(--shadow); padding: 32px 20px; }
.member.top .avatar {
  width: 116px; height: 116px; font-size: 36px;
  border: 1.5px solid var(--line);
  background: linear-gradient(155deg, var(--sand-2), var(--sand));
  color: var(--brown);
  box-shadow: var(--shadow);
}
.member.top h4 { font-size: 20px; }
.member.top .role { font-size: 13px; }

/* ============================================================
   CODE OF CONDUCT
   ============================================================ */
.conduct { background: var(--espresso); color: #f3e6d0; }
.conduct .eyebrow { color: var(--gold-soft); }
.conduct .eyebrow::before, .conduct .eyebrow--center::after { background: var(--gold-soft); }
.conduct .display { color: #fbf2e0; }
.conduct .lead { color: #d8c4a6; }
.conduct-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.conduct-card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(227,182,95,.18);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.conduct-card .ic {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(227,182,95,.12); border: 1px solid rgba(227,182,95,.3); color: var(--gold-soft);
  margin-bottom: 16px;
}
.conduct-card h4 { font-family: var(--serif); font-size: 19px; color: #fbf2e0; font-weight: 600; }
.conduct-card p { font-size: 14px; color: #d8c4a6; margin-top: 10px; line-height: 1.6; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--sand); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 16px; margin-top: 48px;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-sm); display: block; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ============================================================
   REGISTRATION
   ============================================================ */
.register { background: var(--cream); }
.reg-shell { display: grid; grid-template-columns: .9fr 1.4fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft); }
.reg-aside { background: var(--espresso); color: #f0e2cb; padding: 48px 42px; position: relative; }
.reg-aside h3 { font-family: var(--serif); font-size: 30px; color: #fbf2e0; }
.reg-aside .price { display: flex; align-items: baseline; gap: 8px; margin: 26px 0 6px; }
.reg-aside .price .amt { font-family: var(--serif); font-size: 52px; font-weight: 600; color: var(--gold-soft); line-height: 1; }
.reg-aside .price .cur { font-size: 16px; color: #d8c4a6; }
.reg-aside .price-note { font-size: 13.5px; color: #c9b08c; }
.reg-incl { margin-top: 34px; display: grid; gap: 14px; }
.reg-incl li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: #e3d3b8; list-style: none; }
.reg-incl li svg { color: var(--gold-soft); flex: none; margin-top: 3px; }
.reg-incl { padding: 0; margin-left: 0; }
.reg-aside .pay-methods { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(227,182,95,.2); }
.reg-aside .pay-methods .label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
.pay-row { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.pay-pill { font-size: 12.5px; font-weight: 600; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid rgba(227,182,95,.25); color: #f0e2cb; }

.reg-form { background: var(--paper); padding: 44px 46px; }

/* Stepper */
.stepper { display: flex; align-items: center; gap: 0; margin-bottom: 36px; }
.step-node { display: flex; align-items: center; gap: 11px; }
.step-dot {
  width: 32px; height: 32px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 14px; font-weight: 600;
  background: var(--sand); color: var(--muted-2); border: 1.5px solid var(--line);
  transition: all .3s;
}
.step-node.active .step-dot { background: var(--brown); color: #fdf3e0; border-color: var(--brown); }
.step-node.done .step-dot { background: var(--gold); color: #2c1a0e; border-color: var(--gold); }
.step-node .step-name { font-size: 13px; font-weight: 600; color: var(--muted-2); }
.step-node.active .step-name { color: var(--espresso); }
.step-line { flex: 1; height: 1.5px; background: var(--line); margin: 0 12px; min-width: 16px; transition: background .3s; }
.step-line.filled { background: var(--gold); }

/* Form controls */
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--espresso); margin-bottom: 8px; }
.field label .req { color: var(--danger); margin-left: 3px; }
.input, .select, .textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.input::placeholder, .textarea::placeholder { color: #ad9576; }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--gold); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(185,122,34,.14);
}
.input.err, .select.err { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(165,71,31,.12); }
.field .err-msg { color: var(--danger); font-size: 12.5px; margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hint { font-size: 12.5px; color: var(--muted-2); margin-top: 7px; }

/* Segmented toggle */
.seg { display: grid; grid-auto-flow: column; gap: 8px; background: var(--sand); padding: 6px; border-radius: 14px; border: 1px solid var(--line); }
.seg button {
  border: none; background: transparent; padding: 13px 14px; border-radius: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--muted); transition: all .2s;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.seg button .s { font-size: 11.5px; font-weight: 500; color: var(--muted-2); }
.seg button.on { background: var(--paper); color: var(--espresso); box-shadow: var(--shadow-sm); }
.seg button.on .s { color: var(--gold); }

/* Choice cards (experience, committee prefs, payment) */
.choice-grid { display: grid; gap: 10px; }
.choice-grid.c2 { grid-template-columns: 1fr 1fr; }
.choice {
  display: flex; align-items: center; gap: 13px; text-align: left;
  border: 1.5px solid var(--line); background: var(--cream);
  border-radius: 12px; padding: 14px 16px; transition: all .18s; width: 100%;
}
.choice:hover { border-color: var(--gold-soft); }
.choice.on { border-color: var(--brown); background: rgba(185,122,34,.08); box-shadow: 0 0 0 3px rgba(185,122,34,.10); }
.choice .radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line); flex: none; display: grid; place-items: center; transition: all .2s; }
.choice.on .radio { border-color: var(--brown); }
.choice.on .radio::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--brown); }
.choice .ctext h5 { font-size: 14.5px; color: var(--espresso); font-weight: 600; }
.choice .ctext p { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.choice .cnum { font-family: var(--serif); font-size: 18px; color: var(--gold); font-weight: 600; }

/* committee preference selects */
.pref-row { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 14px; margin-bottom: 12px; }
.pref-row .rank { font-family: var(--accent); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

/* Form nav */
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line-soft); }

/* Review list */
.review-list { display: grid; gap: 2px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.review-item { display: flex; justify-content: space-between; gap: 18px; padding: 13px 16px; background: var(--cream); font-size: 14px; }
.review-item:nth-child(even) { background: var(--paper); }
.review-item .k { color: var(--muted); }
.review-item .v { color: var(--espresso); font-weight: 600; text-align: right; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin-top: 22px; font-size: 13.5px; color: var(--muted); }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--brown); flex: none; }

/* Success */
.reg-success { text-align: center; padding: 30px 10px; }
.reg-success .seal {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 24px;
  background: radial-gradient(circle at 50% 40%, var(--gold-soft), var(--gold));
  display: grid; place-items: center; color: #2c1a0e;
  box-shadow: 0 10px 30px rgba(185,122,34,.4);
  animation: pop .5s cubic-bezier(.2,1.3,.4,1);
}
@keyframes pop { from { transform: scale(0); } }
.reg-success h3 { font-family: var(--serif); font-size: 34px; color: var(--espresso); }
.reg-success .code { font-family: var(--accent); letter-spacing: .2em; font-size: 18px; color: var(--brown); background: var(--sand); display: inline-block; padding: 10px 22px; border-radius: 10px; margin-top: 18px; border: 1px dashed var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 4px; cursor: pointer; width: 100%; background: none; border: none; text-align: left; }
.faq-q h4 { font-family: var(--serif); font-size: 22px; color: var(--espresso); font-weight: 600; }
.faq-q .ic { width: 30px; height: 30px; flex: none; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--brown); transition: transform .3s, background .25s, border-color .25s; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--brown); color: #fdf3e0; border-color: var(--brown); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding: 0 4px 26px; color: var(--muted); font-size: 15.5px; line-height: 1.65; }

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.contact { background: var(--espresso); color: #ecdcc2; }
.contact .eyebrow { color: var(--gold-soft); }
.contact .eyebrow::before, .contact .eyebrow--center::after { background: var(--gold-soft); }
.contact .display { color: #fbf2e0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
.contact-card { background: rgba(255,255,255,.04); border: 1px solid rgba(227,182,95,.18); border-radius: var(--radius-lg); padding: 30px 32px; }
.contact-card .who { display: flex; align-items: center; gap: 14px; }
.contact-card .who .av { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(155deg, var(--brown-2), var(--brown)); display: grid; place-items: center; font-family: var(--serif); font-size: 22px; color: #fbf2e0; font-weight: 600; flex: none; }
.contact-card h4 { font-size: 18px; color: #fbf2e0; }
.contact-card .role { font-size: 12.5px; color: var(--gold-soft); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; margin-top: 3px; }
.contact-lines { margin-top: 22px; display: grid; gap: 12px; }
.contact-lines a { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: #e3d3b8; transition: color .2s; }
.contact-lines a:hover { color: var(--gold-soft); }
.contact-lines svg { color: var(--gold-soft); flex: none; }

.footer { background: #1f120a; color: #c9b08c; padding: 64px 0 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 380px; }
.footer-brand .tagline { font-family: var(--serif); font-style: italic; font-size: 22px; color: #f0e2cb; margin-top: 18px; }
.footer-brand p { font-size: 14px; margin-top: 14px; color: #b29871; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(227,182,95,.3); display: grid; place-items: center; color: var(--gold-soft); transition: all .2s; }
.footer-social a:hover { background: var(--gold); color: #1f120a; border-color: var(--gold); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--accent); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: #c9b08c; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: #f0e2cb; }
.footer-bottom { margin-top: 54px; padding-top: 26px; border-top: 1px solid rgba(227,182,95,.14); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; color: #9c8259; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* Visible by default — content can NEVER stay hidden if JS/animation fails.
   The hidden state lives only on `.reveal.pre`; once shown we drop `pre`
   (base opacity:1) and add `.in` purely to play a decorative entrance. */
.reveal { opacity: 1; }
.reveal.pre { opacity: 0; transform: translateY(26px); }
@media (prefers-reduced-motion: no-preference) {
  .reveal.in { animation: revealIn .7s cubic-bezier(.2,.7,.3,1) both; }
}
@keyframes revealIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.pre { opacity: 1 !important; transform: none !important; }
  .hero-ring { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: grid; place-items: center; }
}
@media (max-width: 940px) {
  .hero-stats { gap: 26px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .comm-grid { grid-template-columns: 1fr; }
  .team-grid, .team-grid--3, .team-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .conduct-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-shell { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .section--tight { padding: 52px 0; }
  .wrap { padding: 0 18px; }
  .section-head { margin-bottom: 36px; }
  .section-head .display, .section-head p { margin-top: 14px; }

  /* Hero */
  .hero { padding: 104px 0 72px; }
  .hero-inner { max-width: 100%; }
  .hero-title { font-size: clamp(30px, 8.5vw, 46px); line-height: 1.06; }
  .hero-sub { margin-top: 20px; font-size: 16.5px; }
  .hero-kicker { margin-bottom: 16px; }
  .hero-actions { margin-top: 30px; gap: 12px; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-meta { gap: 10px; margin-top: 26px; }
  .hero-meta .chip { font-size: 12.5px; }
  .hero-stats { gap: 16px 26px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }
  .stat .num { font-size: 34px; }

  /* Layout grids */
  .reg-form, .reg-aside { padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .choice-grid.c2 { grid-template-columns: 1fr; }
  .team-grid, .team-grid--3, .team-grid--4 { grid-template-columns: 1fr 1fr; }
  .conduct-grid { grid-template-columns: 1fr; }
  .step-node .step-name { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .hero-medallion { width: 74px; height: 74px; margin-bottom: 22px; }

  /* Footer tidies up */
  .footer { padding: 52px 0 36px; }
  .footer-top { gap: 32px; }
  .footer-cols { gap: 32px 48px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; }

  /* Buttons get comfortable tap targets */
  .btn-lg { padding: 15px 26px; font-size: 15.5px; }
}

@media (max-width: 400px) {
  .wrap { padding: 0 15px; }
  .hero-title { font-size: 27px; }
  .reg-type { grid-template-columns: 1fr; }
  .team-grid, .team-grid--2, .team-grid--3, .team-grid--4 { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .brand-text .sub { display: none; }
}

/* ============================================================
   PREMIUM POLISH LAYER
   Site-wide refinements layered on top of the base system.
   ============================================================ */
::selection { background: rgba(185,122,34,.26); color: var(--ink); }

/* Scroll progress bar (pure CSS, scroll-driven; no-op where unsupported) */
.scroll-progress {
  position: absolute; top: 0; left: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--brown-2));
  transform: scaleX(0); transform-origin: left; z-index: 70;
}
@supports (animation-timeline: scroll()) {
  .scroll-progress { animation: growbar linear both; animation-timeline: scroll(root); }
}
@keyframes growbar { to { transform: scaleX(1); } }

/* Animated gold underline on nav links */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

/* Buttons: subtle moving sheen on hover */
.btn { position: relative; overflow: hidden; }
.btn-primary::after, .btn-gold::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 70%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.30), transparent);
  transform: skewX(-18deg); transition: left .6s ease;
}
.btn-primary:hover::after, .btn-gold:hover::after { left: 130%; }

/* Section eyebrow shimmer accent */
.section-head .display { position: relative; }

/* Committee cards: growing top accent + soft corner glow */
.comm-card::before {
  content: ""; position: absolute; top: 0; left: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.comm-card:hover::before, .comm-card.open::before { transform: scaleX(1); }
.comm-card::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(227,182,95,.16), transparent 70%);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.comm-card:hover::after { opacity: 1; }

/* Gallery: cinematic hover — zoom, warm-up, gold frame */
.gallery-grid img {
  filter: saturate(.92) contrast(1.02);
  transition: transform .5s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease, filter .4s ease;
}
.gallery-grid img:hover {
  transform: scale(1.035); filter: saturate(1.08) contrast(1.05);
  box-shadow: 0 14px 40px rgba(60,33,12,.28), 0 0 0 2px var(--gold-soft);
  z-index: 2; position: relative;
}

/* Team avatars: gold ring sweep on hover */
.member .avatar { transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.member:hover .avatar { border-color: var(--gold-soft); box-shadow: 0 8px 22px rgba(185,122,34,.30); }

/* About quote card: faint emblem watermark depth */
.about-quote { position: relative; }

/* Conduct + committees: section-edge gradient seam for depth */
.committees, .conduct, .contact { position: relative; }
.committees::before, .conduct::before, .contact::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, rgba(0,0,0,.16), transparent);
  pointer-events: none;
}

/* Card lift easing refinement everywhere */
.contact-card, .conduct-card { transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.contact-card:hover, .conduct-card:hover { transform: translateY(-3px); border-color: var(--gold-soft); }

/* ---- Geometric divider ---- */
.geo-divider { width: 100%; line-height: 0; opacity: .9; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent); }

/* ---- Stats band ---- */
.statband { background: linear-gradient(180deg, #3a2110, #4a2a16); color: #f3e6d0; padding: 30px 0 0; position: relative; }
.statband .wrap { padding-top: 46px; padding-bottom: 50px; }
.statband-head { text-align: center; margin-bottom: 40px; }
.statband .eyebrow { color: var(--gold-soft); }
.statband .eyebrow::before, .statband .eyebrow--center::after { background: var(--gold-soft); }
.statband-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.statband-item { text-align: center; padding: 22px 12px; border-radius: var(--radius-lg);
  border: 1px solid rgba(227,182,95,.16); background: rgba(255,255,255,.03); transition: border-color .3s, transform .3s, background .3s; }
.statband-item:hover { border-color: var(--gold-soft); transform: translateY(-3px); background: rgba(255,255,255,.05); }
.statband-item .stat .num { color: var(--gold-soft); font-size: 52px; }
.statband-item .stat .lbl { color: #d8c4a6; margin-top: 10px; }

/* Countdown */
.countdown { display: inline-flex; gap: 14px; margin-top: 22px; }
.countdown.tba { align-items: center; gap: 10px; font-size: 14px; font-weight: 600; letter-spacing: .04em;
  color: #e3d3b8; background: rgba(255,255,255,.05); border: 1px solid rgba(227,182,95,.25);
  padding: 12px 22px; border-radius: 999px; }
.countdown.tba svg { color: var(--gold-soft); }
.cd-unit { min-width: 70px; padding: 12px 8px; border-radius: 14px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(227,182,95,.2); display: grid; gap: 4px; }
.cd-n { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--gold-soft); line-height: 1; }
.cd-l { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #c9b08c; }

/* ---- Sponsors / partners ---- */
.sponsors { background: var(--paper); }
.sponsors-eyebrow { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--muted-2); }
.sponsors-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 56px; margin-top: 34px; }
.sponsor { display: grid; justify-items: center; gap: 4px; filter: grayscale(1); opacity: .62;
  transition: filter .3s, opacity .3s, transform .3s; }
.sponsor:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
.sp-name { font-family: var(--accent); font-size: 26px; letter-spacing: .08em; color: var(--espresso); }
.sp-note { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ---- Lightbox ---- */
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 8px; padding: clamp(16px, 4vw, 56px);
  background: rgba(20,12,5,.82); backdrop-filter: blur(8px); animation: lbIn .25s ease both; }
@keyframes lbIn { from { opacity: 0; } }
.lb-figure { grid-column: 2; justify-self: center; max-width: 100%; max-height: 100%; margin: 0; }
.lb-figure img { max-width: 100%; max-height: 80vh; border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6); animation: lbPop .3s cubic-bezier(.2,.9,.3,1) both; }
@keyframes lbPop { from { transform: scale(.95); opacity: 0; } }
.lb-figure figcaption { text-align: center; color: #e3d3b8; font-size: 14px; margin-top: 16px; }
.lb-figure figcaption span { color: var(--gold-soft); }
.lb-btn { width: 52px; height: 52px; border-radius: 50%; flex: none; border: 1px solid rgba(227,182,95,.3);
  background: rgba(255,255,255,.06); color: #f3e6d0; display: grid; place-items: center;
  transition: background .2s, border-color .2s, transform .2s; }
.lb-btn:hover { background: rgba(227,182,95,.18); border-color: var(--gold-soft); }
.lb-close { position: absolute; top: 22px; right: 22px; transform: rotate(45deg); }
.lb-close:hover { transform: rotate(45deg) scale(1.08); }
.lb-prev { grid-column: 1; }
.lb-next { grid-column: 3; }

@media (max-width: 560px) {
  .statband-grid { grid-template-columns: repeat(2, 1fr); }
  .statband-item .stat .num { font-size: 40px; }
  .sponsors-row { gap: 16px 32px; }
  .sp-name { font-size: 21px; }
  .lb-btn { width: 44px; height: 44px; }
  .lb-prev { grid-column: 1; } .lb-next { grid-column: 3; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mtns .mtn, .hero-scroll-dot { animation: none !important; }
  .btn-primary::after, .btn-gold::after { display: none; }
}

/* ============================================================
   ROUND 3 — sponsors empty · CTA band · team · registration · footer
   ============================================================ */

/* Sponsors empty state */
.sponsors-empty {
  text-align: center; max-width: 560px; margin: 8px auto 0;
  border: 1.5px dashed var(--line); border-radius: var(--radius-lg);
  padding: 50px 32px; background: linear-gradient(180deg, var(--paper), var(--cream));
}
.sponsors-empty .sp-emblem {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  margin: 0 auto 18px; color: var(--gold);
  background: var(--sand); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.sponsors-empty p { color: var(--muted); font-size: 16px; margin-bottom: 24px; }

/* Closing CTA band */
.cta-band {
  position: relative; text-align: center; overflow: hidden; padding: 100px 0;
  background: linear-gradient(160deg, #4a2a16, #2c1a0e);
  color: #f3e6d0;
}
.cta-band .eyebrow { color: var(--gold-soft); }
.cta-band .eyebrow::before, .cta-band .eyebrow--center::after { background: var(--gold-soft); }
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 80% at 50% -10%, rgba(227,182,95,.20), transparent 60%),
    radial-gradient(40% 60% at 85% 120%, rgba(185,122,34,.16), transparent 60%);
}
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-title { color: #fbf2e0; margin-top: 16px; }
.cta-sub { color: #d8c4a6; margin: 18px auto 0; max-width: 600px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.cta-ghost { background: transparent; border: 1.5px solid rgba(227,182,95,.42); color: #f3e6d0; }
.cta-ghost:hover { border-color: var(--gold-soft); background: rgba(227,182,95,.10); transform: translateY(-1px); }

/* Back-to-top */
.to-top { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-soft); font-weight: 600; transition: color .2s, transform .2s; }
.to-top svg { transform: rotate(-90deg); }
.to-top:hover { color: #f0e2cb; transform: translateY(-2px); }

/* --- Team: every member is a refined card --- */
.member { padding: 26px 18px; background: var(--paper); border-color: var(--line-soft); box-shadow: var(--shadow-sm); }
.member:hover { box-shadow: var(--shadow); border-color: var(--gold-soft); transform: translateY(-5px); }
.member.top { border-color: var(--gold-soft); background: linear-gradient(180deg, var(--paper), #fbf3e3); }
.member .avatar {
  border: 2px solid var(--paper);
  background: linear-gradient(155deg, var(--paper), var(--sand));
  box-shadow: 0 8px 18px rgba(60,33,12,.14), 0 0 0 1px var(--line), inset 0 2px 4px rgba(255,255,255,.55);
  transition: box-shadow .3s ease, transform .3s ease;
}
.member:hover .avatar { box-shadow: 0 12px 26px rgba(185,122,34,.30), 0 0 0 2px var(--gold-soft), inset 0 2px 4px rgba(255,255,255,.55); }
.member .role {
  display: inline-block; margin-top: 9px; padding: 3px 11px; border-radius: 999px;
  background: rgba(185,122,34,.10); color: var(--gold); text-transform: uppercase; font-size: 11px; letter-spacing: .08em;
}
.member.top { background: var(--paper); }
.member.top .avatar { box-shadow: 0 14px 30px rgba(185,122,34,.26), 0 0 0 2px var(--gold-soft), inset 0 2px 6px rgba(255,255,255,.5); }
.team-tier-label span {
  padding: 5px 16px; border-radius: 999px; background: rgba(185,122,34,.08);
  border: 1px solid var(--line); color: var(--brown);
}
.team-connector { background: linear-gradient(180deg, transparent, var(--line)); }

/* --- Registration: pass selector --- */
.reg-type { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 26px; }
.reg-type-btn {
  display: flex; align-items: center; gap: 12px; text-align: left; cursor: pointer;
  padding: 14px 16px; border-radius: var(--radius); border: 1.5px solid var(--line);
  background: var(--paper); color: var(--espresso); transition: border-color .2s, background .2s, box-shadow .2s, transform .2s;
}
.reg-type-btn:hover { border-color: var(--gold-soft); transform: translateY(-1px); }
.reg-type-btn .icon, .reg-type-btn svg { color: var(--gold); flex: none; }
.reg-type-btn span { display: flex; flex-direction: column; line-height: 1.25; }
.reg-type-btn strong { font-family: var(--serif); font-size: 17px; color: var(--espresso); }
.reg-type-btn small { font-size: 12px; color: var(--muted); margin-top: 2px; }
.reg-type-btn.on {
  border-color: var(--gold); background: linear-gradient(180deg, #fff, var(--sand));
  box-shadow: 0 0 0 1px var(--gold-soft), var(--shadow-sm);
}
.reg-type-btn.on svg { color: var(--brown); }

/* --- Registration: age-proof upload --- */
.upload {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  padding: 16px 18px; border-radius: var(--radius); border: 1.5px dashed var(--line);
  background: linear-gradient(180deg, var(--paper), var(--cream)); transition: border-color .2s, background .2s;
}
.upload:hover { border-color: var(--gold-soft); }
.upload.has-file { border-style: solid; border-color: var(--gold-soft); background: linear-gradient(180deg, #fff, var(--sand)); }
.upload.err { border-color: #c0573a; }
.upload-ic {
  width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center;
  color: var(--gold); background: var(--sand); border: 1px solid var(--line);
}
.upload.has-file .upload-ic { color: #fff; background: linear-gradient(180deg, var(--brown-2), var(--brown)); border-color: transparent; }
.upload-text { display: flex; flex-direction: column; line-height: 1.3; overflow: hidden; }
.upload-text strong { font-size: 15px; color: var(--espresso); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.upload-text small { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* --- Registration: richer aside + form --- */
.reg-shell { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(185,122,34,.06); }
.reg-aside { background: linear-gradient(165deg, #56301a 0%, #3a2110 55%, #2c1a0e 100%); overflow: hidden; }
.reg-aside::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), transparent);
}
.reg-aside .price .amt { text-shadow: 0 4px 16px rgba(227,182,95,.30); }
.reg-form { position: relative; }
.reg-form::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brown), var(--gold)); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--gold-soft); }
.step-node.active .step-dot { box-shadow: 0 0 0 4px rgba(109,55,23,.14); }

/* --- Contact cards: subtle gradient + gold edge on hover --- */
.contact-card { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); transition: transform .3s, border-color .3s, box-shadow .3s; }
.contact-card:hover { transform: translateY(-4px); border-color: var(--gold-soft); box-shadow: 0 18px 44px rgba(0,0,0,.28); }
.contact-card .who .av { box-shadow: 0 6px 16px rgba(0,0,0,.25); }

/* --- Footer refinement --- */
.footer { position: relative; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(227,182,95,.4), transparent); }
.footer-social a:hover { transform: translateY(-2px); }
.footer-bottom { align-items: center; }
.footer-wordmark { display: inline-block; }
.footer-wordmark .name { font-family: var(--accent); font-size: 28px; letter-spacing: .14em; }
.footer-wordmark .sub { margin-top: 6px; }

/* --- Section heading: subtle gold underline accent --- */
.section-head--center .display::after {
  content: ""; display: block; width: 56px; height: 3px; border-radius: 3px;
  margin: 20px auto 0; background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

@media (max-width: 560px) {
  .cta-band { padding: 72px 0; }
  .member .role { font-size: 10.5px; }
}

/* ============================================================
   ROUND 4 — loader · agenda · committee icons · micro-interactions
   ============================================================ */

/* Branded intro loader */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-content: center; justify-items: center; gap: 22px;
  background: radial-gradient(120% 120% at 50% 30%, #4a2a16, #2c1a0e);
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-emblem {
  width: 92px; height: 92px; border-radius: 50%; overflow: hidden; position: relative;
  border: 3px solid var(--gold-soft); box-shadow: 0 0 0 8px rgba(227,182,95,.12), 0 10px 40px rgba(0,0,0,.4);
  animation: loaderPulse 1.6s ease-in-out infinite;
}
.loader-emblem img { position: absolute; top: 50%; left: 50%; width: 124%; height: 124%; object-fit: cover; transform: translate(-50%,-50%); }
@keyframes loaderPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.loader-bar { width: 160px; height: 3px; border-radius: 3px; background: rgba(227,182,95,.18); overflow: hidden; }
.loader-bar i { display: block; height: 100%; width: 40%; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); animation: loaderBar 1.1s ease-in-out infinite; }
@keyframes loaderBar { 0% { transform: translateX(-130%); } 100% { transform: translateX(380%); } }
.loader-text { font-family: var(--accent); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); }
@media (prefers-reduced-motion: reduce) { .loader-emblem, .loader-bar i { animation: none; } }

/* Committee icon + head */
.comm-head { display: flex; align-items: flex-start; gap: 14px; }
.comm-ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: rgba(227,182,95,.12); border: 1px solid rgba(227,182,95,.3); color: var(--gold-soft);
  transition: transform .3s ease, background .3s ease; }
.comm-card:hover .comm-ic { transform: scale(1.06) rotate(-4deg); background: rgba(227,182,95,.2); }
.comm-card h3 { margin-top: 4px; }

/* Agenda timeline — distinct warm sand panel, set apart from neighbours */
.agenda { background: linear-gradient(180deg, var(--sand), var(--sand-2)); padding-top: 56px; padding-bottom: 56px; }
.agenda .geo-divider { margin-bottom: 40px; }
.agenda .geo-divider:last-child { margin-bottom: 0; margin-top: 40px; }
.agenda-days { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 72px; position: relative; }
.day-card {
  position: relative; z-index: 1; background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 50px 28px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.day-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.day-num {
  position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-size: 21px; font-weight: 600; color: #fdf3e0;
  background: linear-gradient(180deg, var(--brown-2), var(--brown)); box-shadow: 0 6px 16px rgba(109,55,23,.32);
  border: 3px solid var(--sand); z-index: 2;
}
.day-label { display: block; text-align: center; font-family: var(--accent); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.day-theme { text-align: center; font-family: var(--serif); font-size: 23px; color: var(--espresso); margin: 8px 0 20px; }
.day-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.day-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--muted); }
.day-list li svg { color: var(--gold); flex: none; margin-top: 3px; }

/* Registration success celebration */
.reg-success .seal { position: relative; }
.reg-success .seal::before, .reg-success .seal::after {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 2px dashed rgba(185,122,34,.4); animation: sealRing 1.3s ease-out forwards;
}
.reg-success .seal::after { inset: -28px; border-color: rgba(227,182,95,.3); animation-delay: .12s; }
@keyframes sealRing { from { transform: scale(.5); opacity: 0; } 55% { opacity: 1; } to { transform: scale(1); opacity: 0; } }

/* Micro-interactions + typographic refinement */
.btn svg { transition: transform .25s ease; }
.btn-primary:hover svg, .btn-gold:hover svg { transform: translateX(3px); }
.chip { transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.chip:hover { transform: translateY(-1px); border-color: var(--gold-soft); }
.about-point .ic, .conduct-card .ic { transition: transform .3s ease, background .3s ease; }
.about-point:hover .ic { transform: rotate(-6deg) scale(1.06); }
.conduct-card:hover .ic { transform: scale(1.08); }
.faq-q:hover h4 { color: var(--brown); }
.display { letter-spacing: -0.018em; }
.eyebrow { font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  .reg-success .seal::before, .reg-success .seal::after { animation: none; opacity: 0; }
}
@media (max-width: 860px) {
  .agenda-days { grid-template-columns: 1fr; gap: 48px; margin-top: 58px; }
}

/* ============================================================
   Pay Fee portal
   ============================================================ */
.pay-portal { background: var(--cream); }
.pay-card {
  max-width: 760px; margin: 0 auto; background: var(--paper);
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 34px 32px;
}
.pay-lookup { display: flex; gap: 14px; align-items: flex-end; flex-wrap: wrap; }
.pay-lookup .btn { white-space: nowrap; }
.pay-lookup .input { text-transform: uppercase; letter-spacing: .04em; }

/* Result state blocks */
.pay-state {
  display: flex; gap: 16px; align-items: flex-start; margin-top: 24px;
  padding: 22px 22px; border-radius: var(--radius); border: 1px solid var(--line);
}
.pay-state h4 { font-family: var(--serif); font-size: 23px; color: var(--espresso); margin: 0 0 6px; }
.pay-state p { margin: 0; color: var(--muted); font-size: 15px; }
.pay-state-ic {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold-2);
  background: rgba(185,122,34,.12); border: 1px solid rgba(185,122,34,.28);
}
.pay-state-ic.ok { color: var(--ok); background: rgba(79,122,63,.12); border-color: rgba(79,122,63,.3); }
.pay-state--pending { background: rgba(227,182,95,.08); border-color: rgba(227,182,95,.35); }
.pay-state--warn { background: rgba(165,71,31,.06); border-color: rgba(165,71,31,.25); }
.pay-state--warn .pay-state-ic { color: var(--danger); background: rgba(165,71,31,.1); border-color: rgba(165,71,31,.3); }

/* Verified result */
.pay-verified-banner {
  display: flex; gap: 16px; align-items: flex-start; margin-top: 24px;
  padding: 20px 22px; border-radius: var(--radius);
  background: rgba(79,122,63,.08); border: 1px solid rgba(79,122,63,.3);
}
.pay-verified-banner h4 { font-family: var(--serif); font-size: 23px; color: var(--espresso); margin: 0 0 4px; }
.pay-verified-banner p { margin: 0; color: var(--muted); font-size: 14.5px; }
.pay-subhead {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700; margin: 28px 0 14px;
}
.pay-accounts { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.pay-acc { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.pay-acc-head { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.pay-acc-head strong { font-size: 14.5px; color: var(--espresso); }
.pay-acc-ic { flex: none; width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; color: var(--gold-2); background: rgba(185,122,34,.12); }
.pay-acc-lines { margin: 0; display: grid; gap: 9px; }
.pay-acc-lines > div { display: flex; flex-direction: column; gap: 1px; }
.pay-acc-lines dt { font-size: 11.5px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .05em; margin: 0; }
.pay-acc-lines dd { margin: 0; font-size: 14px; color: var(--espresso); font-weight: 600; word-break: break-word; }
.pay-note { margin: 22px 0 0; font-size: 14px; color: var(--muted); line-height: 1.6; }
.pay-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.pay-submit { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.pay-help { margin-top: 14px; font-size: 13.5px; color: var(--muted-2); }
.pay-help a { color: var(--brown); font-weight: 600; text-decoration: underline; }
.pay-submitted {
  display: flex; gap: 16px; align-items: flex-start; margin-top: 24px;
  padding: 20px 22px; border-radius: var(--radius);
  background: rgba(79,122,63,.08); border: 1px solid rgba(79,122,63,.3);
}
.pay-submitted h4 { font-family: var(--serif); font-size: 23px; color: var(--espresso); margin: 0 0 4px; }
.pay-submitted p { margin: 0; color: var(--muted); font-size: 14.5px; }

@media (max-width: 760px) {
  .pay-card { padding: 26px 18px; }
  .pay-lookup { flex-direction: column; align-items: stretch; }
  .pay-lookup .btn { justify-content: center; }
  .pay-accounts { grid-template-columns: 1fr; }
}
