/* ══════════════════════════════════════════
   MedCON-ESTATE 2027 — Stylesheet
   Linked from: mcon-estate.html
   Fonts: Cormorant Garamond · DM Mono · Instrument Sans
   ══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --forest:      #1a3d2b;
  --forest-deep: #0f2419;
  --forest-mid:  #2a6044;
  --forest-light:#3d8a60;
  --stone:       #e4ddd0;
  --stone-light: #f4f0ea;
  --earth:       #8b6940;
  --terracotta:  #b85c38;
  --gold:        #c8973a;
  --sky:         #2c5f7a;
  --cream:       #faf8f4;
  --ink:         #1a1a16;
  --mist:        rgba(26,61,43,0.06);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Instrument Sans', sans-serif;
  --font-mono:   'DM Mono', monospace;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 500;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Global bolder text */
p  { font-weight: 500; }
li { font-weight: 500; }
a  { font-weight: 500; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--stone-light); }
::-webkit-scrollbar-thumb { background: var(--forest-mid); border-radius: 3px; }

/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 64px;
  background: rgba(15,36,25,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 600;
  color: var(--stone); letter-spacing: 0.03em;
  text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 0.2rem; list-style: none; }
.nav-links a {
  color: rgba(228,221,208,0.75);
  text-decoration: none; font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.4rem 0.75rem; border-radius: 4px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--stone); background: rgba(255,255,255,0.07); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--forest-deep) !important;
  border-radius: 4px; padding: 0.45rem 1.1rem !important;
}
.nav-cta:hover { background: #dca840 !important; }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh; padding-top: 64px; max-height: 100vh;
  background: var(--forest-deep);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 15% 55%, rgba(42,96,68,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 25%, rgba(44,95,122,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 90%, rgba(139,105,64,0.12) 0%, transparent 60%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23e4ddd0'/%3E%3Ccircle cx='40' cy='40' r='1' fill='%23e4ddd0'/%3E%3Ccircle cx='70' cy='70' r='1.5' fill='%23e4ddd0'/%3E%3C/svg%3E") repeat;
}
.hero-waves {
  position: absolute; bottom: 0; left: 0; right: 0; height: 160px; overflow: hidden;
}
.hero-waves svg { position: absolute; bottom: 0; width: 100%; }
.wave1 { animation: waveFloat 10s ease-in-out infinite; }
.wave2 { animation: waveFloat 14s ease-in-out infinite reverse; opacity: 0.4; }

@keyframes waveFloat {
  0%,100% { transform: translateX(0); }
  50%      { transform: translateX(-2.5%); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem 2rem 4rem;
  max-width: 960px;
}
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 0.9rem;
  opacity: 0; animation: fadeUp 0.8s 0.15s forwards;
}
.hero-title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  color: var(--stone-light); line-height: 1.08;
  margin-bottom: 0.3rem;
  opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-acronym {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600; color: var(--gold); letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-subtitle {
  font-family: var(--font-serif); font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300; color: rgba(228,221,208,0.65);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
}
.hero-location {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--stone); letter-spacing: 0.12em; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.75s forwards;
}
.hero-location span { color: var(--forest-light); margin: 0 0.5rem; }
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}
.hero-countdown {
  position: absolute; bottom: 2.5rem; right: 3.5rem; z-index: 3;
  text-align: right;
  opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
}
.countdown-label {
  font-family: var(--font-mono); font-size: 0.62rem;
  color: rgba(228,221,208,0.4); letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.countdown-boxes { display: flex; gap: 0.5rem; justify-content: flex-end; }
.cbox {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 0.5rem 0.7rem; text-align: center; min-width: 52px;
}
.cbox-num {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600;
  color: var(--gold); line-height: 1; display: block;
}
.cbox-unit {
  font-family: var(--font-mono); font-size: 0.55rem;
  color: rgba(228,221,208,0.45); letter-spacing: 0.1em; text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; font-family: var(--font-sans);
  font-size: 0.84rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
  transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: var(--forest-deep); }
.btn-primary:hover { background: #dca840; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,151,58,0.35); }
.btn-secondary { background: transparent; color: var(--stone); border: 1px solid rgba(228,221,208,0.3); }
.btn-secondary:hover { border-color: var(--stone); background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--gold); border: 1px solid rgba(200,151,58,0.5); }
.btn-outline-light:hover { background: rgba(200,151,58,0.08); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════ */
.stats-strip {
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.05);
}
.stat-item {
  background: var(--forest); padding: 1.75rem 2rem; text-align: center;
}
.stat-num {
  font-family: var(--font-serif); font-size: 2.2rem;
  font-weight: 600; color: var(--gold); display: block;
}
.stat-label {
  font-family: var(--font-mono); font-size: 0.66rem;
  color: rgba(228,221,208,0.5); text-transform: uppercase;
  letter-spacing: 0.13em; margin-top: 0.25rem;
}

/* ══════════════════════════════════════════
   SECTION SHELLS
   ══════════════════════════════════════════ */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--forest-mid);
  margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::after { content: ''; flex: 0 0 38px; height: 1px; background: var(--forest-light); }
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 300; line-height: 1.15;
  color: var(--forest-deep); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--forest-mid); }
.divider { width: 48px; height: 2px; background: linear-gradient(90deg, var(--forest-mid), transparent); margin: 1.5rem 0; }

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-text p { color: #2e2e28; line-height: 1.9; margin-bottom: 1.2rem; font-size: 1.05rem; font-weight: 500; }

.tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.61rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.22rem 0.55rem; border-radius: 3px;
  background: rgba(26,61,43,0.08); color: var(--forest-mid);
  margin-right: 0.4rem; margin-bottom: 0.4rem;
}
.about-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.about-card {
  background: white; border: 1px solid rgba(26,61,43,0.1);
  border-left: 3px solid var(--forest-mid);
  padding: 1.5rem; border-radius: 0 6px 6px 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-card:hover { box-shadow: 0 4px 20px rgba(26,61,43,0.12); transform: translateX(4px); }
.about-card h4 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--forest-deep); margin-bottom: 0.4rem; }
.about-card p { font-size: 0.95rem; color: #484844; line-height: 1.75; font-weight: 500; }
.about-card .badge {
  display: inline-block; margin-top: 0.7rem;
  font-family: var(--font-mono); font-size: 0.63rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,151,58,0.1);
  padding: 0.22rem 0.55rem; border-radius: 3px;
}

/* ══════════════════════════════════════════
   SPOTLIGHT (dark section)
   ══════════════════════════════════════════ */
.spotlight-section { background: var(--forest-deep); color: var(--stone-light); }
.spotlight-section .section-label { color: var(--gold); }
.spotlight-section .section-label::after { background: var(--gold); opacity: 0.3; }
.spotlight-section .section-title { color: var(--stone-light); }

.spotlight-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.spotlight-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(228,221,208,0.1);
  border-radius: 8px; padding: 2rem;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.spotlight-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--forest-light), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.spotlight-card:hover::before { transform: scaleX(1); }
.spotlight-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.spotlight-icon {
  width: 42px; height: 42px; background: rgba(200,151,58,0.13);
  border-radius: 8px; display: grid; place-items: center;
  margin-bottom: 1.25rem; font-size: 1.25rem;
}
.spotlight-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--stone); margin-bottom: 0.65rem; }
.spotlight-card p { font-size: 0.95rem; color: rgba(228,221,208,0.75); line-height: 1.78; font-weight: 500; }
.spotlight-date { margin-top: 1rem; font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.08em; }

/* ── SUBMISSION PORTAL BANNER ── */
.portal-banner {
  background: linear-gradient(135deg, rgba(42,96,68,0.15), rgba(44,95,122,0.12));
  border: 1px solid rgba(42,96,68,0.25);
  border-radius: 10px; padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; margin-top: 3rem; flex-wrap: wrap;
}
.portal-banner-text h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--forest-deep); font-weight: 600; margin-bottom: 0.4rem; }
.portal-banner-text p { font-size: 0.97rem; color: #5a5a52; }
.portal-banner-text .mono { font-family: var(--font-mono); font-size: 0.72rem; color: var(--terracotta); letter-spacing: 0.06em; margin-top: 0.4rem; }

/* ══════════════════════════════════════════
   TIMELINE / DATES
   ══════════════════════════════════════════ */
.dates-section { background: var(--stone-light); }
.dates-timeline {
  margin-top: 3rem;
  border-left: 2px solid rgba(26,61,43,0.18);
  padding-left: 2rem;
}
.date-item { position: relative; padding: 1.2rem 0; border-bottom: 1px solid rgba(26,61,43,0.07); }
.date-item:last-child { border-bottom: none; }
.date-item::before {
  content: ''; position: absolute; left: -2.55rem; top: 1.6rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--forest-mid); border: 2px solid var(--stone-light);
  box-shadow: 0 0 0 2px var(--forest-mid);
}
.date-item.hot::before { background: var(--terracotta); box-shadow: 0 0 0 2px var(--terracotta); }
.date-row { display: flex; align-items: baseline; gap: 2rem; }
.date-when { font-family: var(--font-mono); font-size: 0.77rem; color: var(--forest-mid); letter-spacing: 0.06em; min-width: 140px; }
.date-item.hot .date-when { color: var(--terracotta); }
.date-what { font-size: 0.94rem; color: var(--ink); font-weight: 600; }
.date-note { font-size: 0.88rem; color: #666; margin-top: 0.2rem; font-weight: 500; }

/* ══════════════════════════════════════════
   TRACKS
   ══════════════════════════════════════════ */
.tracks-section { background: white; }
.tracks-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem; margin-top: 3rem;
}
.track-card {
  padding: 1.5rem; border: 1px solid rgba(26,61,43,0.1);
  border-radius: 6px; transition: all 0.2s;
}
.track-card:hover { background: var(--mist); border-color: var(--forest-light); }
.track-num { font-family: var(--font-mono); font-size: 0.63rem; color: var(--forest-light); letter-spacing: 0.1em; margin-bottom: 0.45rem; }
.track-card h4 { font-family: var(--font-serif); font-size: 0.98rem; font-weight: 600; color: var(--forest-deep); line-height: 1.35; }

/* ══════════════════════════════════════════
   REGISTRATION
   ══════════════════════════════════════════ */
.reg-section { background: var(--cream); }
.reg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.reg-card {
  background: white; border: 1px solid rgba(26,61,43,0.1);
  border-radius: 10px; overflow: hidden; transition: all 0.25s;
}
.reg-card:hover { box-shadow: 0 12px 40px rgba(26,61,43,0.12); transform: translateY(-4px); }
.reg-card-head { background: var(--forest); padding: 1.75rem; }
.reg-card.featured .reg-card-head { background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid)); }
.reg-plan-label { font-family: var(--font-mono); font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(228,221,208,0.55); margin-bottom: 0.4rem; }
.reg-plan-name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--stone); }
.reg-price-range { margin-top: 0.6rem; font-family: var(--font-mono); font-size: 0.8rem; color: var(--gold); }
.reg-card-body { padding: 1.75rem; }
.reg-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.55rem 0; border-bottom: 1px solid rgba(26,61,43,0.07); font-size: 0.86rem; font-weight: 500; }
.reg-row:last-child { border-bottom: none; }
.reg-row span:first-child { color: #484844; }
.reg-row span:last-child { font-weight: 700; color: var(--forest-deep); font-family: var(--font-mono); }

/* ══════════════════════════════════════════
   VENUE
   ══════════════════════════════════════════ */
.venue-section { background: var(--forest-deep); color: var(--stone-light); }
.venue-section .section-label { color: var(--gold); }
.venue-section .section-label::after { background: var(--gold); opacity: 0.3; }
.venue-section .section-title { color: var(--stone-light); }
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.venue-desc p { font-size: 1rem; color: rgba(228,221,208,0.82); line-height: 1.9; margin-bottom: 1.1rem; font-weight: 500; }
.venue-transport { display: flex; flex-direction: column; gap: 1rem; }
.transport-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(228,221,208,0.1);
  border-radius: 8px; padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.transport-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.transport-item h4 { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--stone); margin-bottom: 0.3rem; }
.transport-item p { font-size: 0.92rem; color: rgba(228,221,208,0.72); line-height: 1.7; font-weight: 500; }
.hotels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.hotel-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(228,221,208,0.1);
  border-radius: 6px; padding: 1.25rem; text-align: center;
}
.hotel-card h5 { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; color: var(--stone); margin-bottom: 0.25rem; }
.hotel-card p { font-size: 0.75rem; color: rgba(228,221,208,0.5); }
.hotel-card a { display: block; margin-top: 0.6rem; font-family: var(--font-mono); font-size: 0.65rem; color: var(--gold); text-decoration: none; letter-spacing: 0.05em; }
.hotel-card a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   COMMITTEE
   ══════════════════════════════════════════ */
.committee-section { background: white; }
.committee-note {
  background: linear-gradient(135deg, rgba(26,61,43,0.06), rgba(44,95,122,0.06));
  border: 1px solid rgba(26,61,43,0.15); border-radius: 10px; padding: 2.5rem;
  margin-top: 2.5rem; text-align: center;
}
.committee-note p { font-size: 1rem; color: #5a5a52; line-height: 1.8; margin-bottom: 1rem; }

/* ══════════════════════════════════════════
   SPONSORS
   ══════════════════════════════════════════ */
.sponsors-section { background: var(--stone-light); }
.sponsor-logos {
  display: flex; flex-wrap: wrap; gap: 2rem;
  align-items: center; justify-content: center;
  margin-top: 3rem; padding: 2.5rem;
  background: white; border-radius: 10px;
  border: 1px solid rgba(26,61,43,0.08);
}
.sponsor-item {
  width: 140px; height: 70px; display: grid; place-items: center;
  background: var(--stone-light); border-radius: 6px; padding: 0.75rem;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--forest-mid);
  text-align: center; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid rgba(26,61,43,0.08);
}
.sponsor-item img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(30%); transition: filter 0.2s; }
.sponsor-item:hover img { filter: none; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer { background: var(--forest-deep); color: var(--stone-light); padding: 5rem 2rem 3rem; }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-text { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--stone); margin-bottom: 0.5rem; }
.footer-brand .logo-text span { color: var(--gold); }
.footer-brand p { font-size: 0.82rem; color: rgba(228,221,208,0.58); line-height: 1.85; max-width: 260px; font-weight: 500; }
.footer-contact-link { margin-top: 1.5rem; }
.footer-contact-link a { font-family: var(--font-mono); font-size: 0.76rem; color: var(--gold); text-decoration: none; font-weight: 600; }
.footer-col h5 { font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(228,221,208,0.45); margin-bottom: 1.25rem; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.84rem; color: rgba(228,221,208,0.72); text-decoration: none; transition: color 0.2s; font-weight: 500; }
.footer-col a:hover { color: var(--stone); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; font-family: var(--font-mono); font-size: 0.67rem;
  color: rgba(228,221,208,0.3); letter-spacing: 0.06em;
}
.sdg-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-grid,
  .venue-grid          { grid-template-columns: 1fr; gap: 3rem; }
  .spotlight-grid      { grid-template-columns: 1fr 1fr; }
  .reg-grid            { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-inner         { grid-template-columns: repeat(2, 1fr); }
  nav                  { padding: 0 1.5rem; }
  .nav-links           { display: none; }
  .hotels-grid         { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .spotlight-grid  { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .hero-countdown  { display: none; }
  .portal-banner   { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════
   COMMITTEE PAGE
   ══════════════════════════════════════════ */

/* Page hero — compact dark banner */
.committee-hero {
  background: var(--forest-deep);
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.committee-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 60%, rgba(42,96,68,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 20%, rgba(200,151,58,0.08) 0%, transparent 55%);
}
.committee-hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
}
.committee-hero-text .section-label { color: var(--gold); }
.committee-hero-text .section-label::after { background: var(--gold); opacity: 0.3; }
.committee-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; color: var(--stone-light);
  line-height: 1.1; margin-top: 0.6rem;
}
.committee-hero-title em { font-style: italic; color: var(--gold); }
.committee-hero-sub {
  font-size: 1rem; color: rgba(228,221,208,0.65);
  margin-top: 0.9rem; max-width: 520px;
  line-height: 1.8; font-weight: 500;
}
.committee-hero-stat {
  text-align: right;
}
.committee-hero-stat .big-num {
  font-family: var(--font-serif);
  font-size: 4rem; font-weight: 600;
  color: var(--gold); line-height: 1;
  display: block;
}
.committee-hero-stat .big-label {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: rgba(228,221,208,0.45);
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* Country tag strip */
.country-strip {
  background: var(--forest);
  padding: 0.9rem 2rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.country-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.country-pill {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  background: rgba(200,151,58,0.12);
  color: var(--gold);
  border: 1px solid rgba(200,151,58,0.2);
  border-radius: 30px;
  font-weight: 600;
}

/* Committee page main layout */
.committee-page { background: var(--cream); }

/* Section divider banner */
.cmt-group {
  padding: 4rem 2rem;
}
.cmt-group:nth-child(even) { background: white; }
.cmt-group:nth-child(odd)  { background: var(--stone-light); }

.cmt-group-header {
  max-width: 1100px; margin: 0 auto 2.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.cmt-group-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1.5rem;
}
.cmt-group-icon.gold   { background: rgba(200,151,58,0.15); }
.cmt-group-icon.forest { background: rgba(26,61,43,0.12); }
.cmt-group-icon.sky    { background: rgba(44,95,122,0.12); }
.cmt-group-icon.earth  { background: rgba(139,105,64,0.12); }

.cmt-group-label {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--forest-mid); font-weight: 600; margin-bottom: 0.2rem;
}
.cmt-group-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600; color: var(--forest-deep);
  line-height: 1.15;
}
.cmt-group-title em { font-style: italic; color: var(--forest-mid); font-weight: 300; }

/* Chair card — large featured card */
.chair-card {
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
  border-radius: 14px; padding: 2.5rem 3rem;
  display: flex; align-items: center; gap: 3rem;
  flex-wrap: wrap;
}
.chair-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(200,151,58,0.2);
  border: 2px solid rgba(200,151,58,0.4);
  display: grid; place-items: center;
  font-size: 2rem; flex-shrink: 0;
}
.chair-info { flex: 1; }
.chair-role {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem; font-weight: 600;
}
.chair-name {
  font-family: var(--font-serif); font-size: 1.8rem;
  font-weight: 600; color: var(--stone-light); margin-bottom: 0.35rem;
}
.chair-affil {
  font-size: 0.92rem; color: rgba(228,221,208,0.7);
  font-weight: 500;
}
.chair-badge {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  background: rgba(200,151,58,0.15);
  color: var(--gold); border: 1px solid rgba(200,151,58,0.25);
  border-radius: 20px; font-weight: 600;
  margin-top: 0.8rem; display: inline-block;
}

/* Member grid */
.members-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
}
.members-grid.compact {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.member-card {
  background: white;
  border: 1px solid rgba(26,61,43,0.1);
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
  display: flex; flex-direction: column;
  gap: 0.3rem;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.member-card::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--forest-mid);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.25s;
}
.member-card:hover::before { transform: scaleY(1); }
.member-card:hover {
  border-color: rgba(26,61,43,0.22);
  box-shadow: 0 6px 24px rgba(26,61,43,0.1);
  transform: translateY(-2px);
}
.member-card.on-bg { background: var(--stone-light); }
.member-card.on-bg:hover { background: white; }

.member-flag {
  font-size: 1.1rem; line-height: 1; margin-bottom: 0.15rem;
}
.member-name {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 700;
  color: var(--forest-deep); line-height: 1.3;
}
.member-affil {
  font-size: 0.88rem; color: #5a5a52;
  line-height: 1.5; font-weight: 500;
}
.member-country {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--forest-light); margin-top: 0.3rem;
  font-weight: 600;
}

/* Local organizing committee — pill list */
.local-grid {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.local-pill {
  background: white;
  border: 1px solid rgba(26,61,43,0.12);
  border-radius: 40px;
  padding: 0.65rem 1.25rem;
  display: flex; align-items: center; gap: 0.6rem;
  transition: all 0.2s;
}
.local-pill:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-2px);
}
.local-pill:hover .local-pill-name { color: var(--stone); }
.local-pill:hover .local-pill-dot  { background: var(--gold); }
.local-pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--forest-light); flex-shrink: 0;
  transition: background 0.2s;
}
.local-pill-name {
  font-size: 0.86rem; font-weight: 600;
  color: var(--forest-deep); transition: color 0.2s;
}

/* Contact CTA box */
.cmt-contact {
  max-width: 1100px; margin: 4rem auto 0;
  background: linear-gradient(135deg, var(--forest-deep), rgba(26,61,43,0.9));
  border-radius: 14px; padding: 3rem;
  text-align: center;
}
.cmt-contact h3 {
  font-family: var(--font-serif); font-size: 1.7rem;
  font-weight: 600; color: var(--stone-light); margin-bottom: 0.6rem;
}
.cmt-contact p {
  font-size: 1rem; color: rgba(228,221,208,0.68);
  max-width: 480px; margin: 0 auto 1.75rem;
  line-height: 1.8; font-weight: 500;
}
.cmt-contact-links {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.cmt-email {
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--gold); letter-spacing: 0.06em;
  text-decoration: none; font-weight: 600;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(200,151,58,0.35);
  border-radius: 6px; transition: all 0.2s;
}
.cmt-email:hover { background: rgba(200,151,58,0.1); border-color: var(--gold); }

/* ── Committee responsive ── */
@media (max-width: 760px) {
  .chair-card { flex-direction: column; gap: 1.5rem; padding: 2rem; }
  .committee-hero-inner { flex-direction: column; }
  .committee-hero-stat { text-align: left; }
  .members-grid { grid-template-columns: 1fr 1fr; }
  .members-grid.compact { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .members-grid,
  .members-grid.compact { grid-template-columns: 1fr; }
}

/* Misc helpers used in committee page */
.portal-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.tags-row { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.reg-note { margin-top: 1.5rem; font-size: 0.78rem; color: #888; font-style: italic; font-weight: 500; }
.sponsors-cta { text-align: center; margin-top: 2rem; font-size: 0.84rem; color: #666; font-weight: 500; }
.sponsors-cta a { color: var(--forest-mid); text-decoration: none; font-weight: 700; }
.committee-desc { color: #484844; max-width: 640px; font-size: 1.02rem; line-height: 1.85; font-weight: 500; }
.hotels-heading { font-family: var(--font-serif); font-size: 1.15rem; color: var(--stone); margin: 2rem 0 1rem; font-weight: 600; }
.transport-heading { font-family: var(--font-serif); font-size: 1.2rem; color: var(--stone); margin-bottom: 1.25rem; font-weight: 600; }
.venue-link { color: var(--gold); }
