/* ============================================================
   Civics & Civility – Modern Design System
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@400;700;900&display=swap');

:root {
  --navy:        #0d1b3e;
  --navy-light:  #1a2f5a;
  --blue:        #1e40af;
  --blue-mid:    #2563eb;
  --blue-light:  #3b82f6;
  --blue-pale:   #eff6ff;
  --red:         #b91c1c;
  --red-mid:     #dc2626;
  --gold:        #d97706;
  --gold-light:  #fbbf24;
  --gold-pale:   #fffbeb;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-800:    #1e293b;
  --text:        #1e293b;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:   0 20px 25px rgba(0,0,0,.12), 0 10px 10px rgba(0,0,0,.05);
  --shadow-2xl:  0 25px 50px rgba(0,0,0,.18);
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --t:           0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-mid); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--blue); }

/* ─── Layout ─────────────────────────────────────────────── */
.container        { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container--narrow{ max-width: 780px;  margin: 0 auto; padding: 0 28px; }
.page-content     { padding-top: 70px; }

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__logo img { height: 46px; width: auto; }
.nav__logo-text {
  font-family: 'Merriweather', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--navy); line-height: 1.2;
}

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__links a {
  display: block; padding: 8px 16px;
  font-size: 0.875rem; font-weight: 500; color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: background var(--t), color var(--t);
}
.nav__links a:hover { background: var(--gray-100); color: var(--blue-mid); }
.nav__links li.active a {
  background: var(--navy); color: var(--white);
}
.nav__links li.active a:hover { background: var(--blue); }

.nav__cta {
  display: inline-flex; align-items: center;
  padding: 9px 20px; margin-left: 8px;
  background: var(--gold); color: var(--white);
  font-size: 0.85rem; font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 12px rgba(217,119,6,0.35);
  transition: all var(--t);
}
.nav__cta:hover { background: #b45309; color: var(--white); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(217,119,6,0.45); }

.nav__hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer; border: none; background: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px; background: var(--gray-800);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.nav__mobile {
  display: none; flex-direction: column; gap: 2px;
  padding: 12px 20px 16px; border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.nav__mobile a {
  display: block; padding: 10px 14px;
  font-size: 0.9rem; font-weight: 500; color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: all var(--t);
}
.nav__mobile a:hover { background: var(--gray-100); color: var(--blue-mid); }
.nav__mobile li.active a { background: var(--navy); color: var(--white); }
.nav__mobile .nav__cta { margin: 8px 0 0; justify-content: center; }
.nav__mobile.open { display: flex; }

/* ─── Flag Stripe ─────────────────────────────────────────── */
.flag-stripe {
  height: 5px;
  background: linear-gradient(90deg,
    var(--navy)    0%,   var(--navy)    33.3%,
    var(--white)   33.3%,var(--white)   66.6%,
    var(--red-mid) 66.6%,var(--red-mid) 100%
  );
}

/* ─── Hero (home) ─────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  min-height: 92vh; display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.18;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(13,27,62,0.95) 0%,
    rgba(30,64,175,0.65) 60%,
    rgba(185,28,28,0.25) 100%
  );
}
.hero__stars {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero__stars::before, .hero__stars::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero__stars::before { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero__stars::after  { width: 400px; height: 400px; bottom: -100px; left: -80px; }

.hero__content {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; padding: 100px 28px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero__left { }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(251,191,36,0.18);
  border: 1px solid rgba(251,191,36,0.4);
  color: var(--gold-light);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero__badge::before { content: '★'; font-size: 0.75rem; }
.hero__title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900; color: var(--white); line-height: 1.12;
  margin-bottom: 24px;
}
.hero__title em { color: var(--gold-light); font-style: normal; }
.hero__subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 520px; margin-bottom: 40px; line-height: 1.75;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__right {
  display: flex; flex-direction: column; gap: 20px; align-items: flex-end;
}
.hero__img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255,255,255,0.12);
  width: 100%;
}
.hero__img-card img { width: 100%; height: auto; }

.hero__mini-cards { display: flex; gap: 12px; width: 100%; }
.hero__mini-card {
  flex: 1; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md); padding: 16px;
  backdrop-filter: blur(8px);
  text-align: center;
}
.hero__mini-card .num {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--gold-light);
}
.hero__mini-card .lbl {
  font-size: 0.75rem; color: rgba(255,255,255,0.75); margin-top: 4px;
  font-weight: 500; line-height: 1.3;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.02em;
  transition: all var(--t); cursor: pointer; border: none;
  text-decoration: none; white-space: nowrap;
}
.btn--primary {
  background: var(--blue-mid); color: var(--white);
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}
.btn--primary:hover {
  background: var(--blue); color: var(--white);
  box-shadow: 0 6px 22px rgba(37,99,235,0.5);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 16px rgba(217,119,6,0.4);
}
.btn--gold:hover {
  background: #b45309; color: var(--white);
  box-shadow: 0 6px 22px rgba(217,119,6,0.5);
  transform: translateY(-2px);
}
.btn--red {
  background: var(--red-mid); color: var(--white);
  box-shadow: 0 4px 16px rgba(220,38,38,0.35);
}
.btn--red:hover {
  background: var(--red); color: var(--white);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12); color: var(--white);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent; color: var(--navy);
  border: 2px solid var(--gray-300);
}
.btn--outline-dark:hover {
  background: var(--gray-100); color: var(--navy);
  border-color: var(--gray-500);
}
.btn--lg { padding: 15px 36px; font-size: 1rem; }

/* ─── Sections ────────────────────────────────────────────── */
.section      { padding: 88px 0; }
.section--sm  { padding: 56px 0; }
.section--xs  { padding: 40px 0; }
.section--dark{ background: var(--navy); color: var(--white); }
.section--gray{ background: var(--gray-50); }
.section--blue{ background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); }
.section--red { background: linear-gradient(135deg, var(--red) 0%, #7f1d1d 100%); color: var(--white); }

.section__tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--blue-mid);
  margin-bottom: 12px;
}
.section--dark .section__tag  { color: var(--gold-light); }
.section--blue .section__tag  { color: var(--gold-light); }

.section__title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 18px;
}
.section__lead {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--gray-600); max-width: 680px;
}
.section--dark .section__lead { color: rgba(255,255,255,0.78); }
.section--blue .section__lead { color: rgba(255,255,255,0.82); }

.section__header { margin-bottom: 52px; }
.section__header--center { text-align: center; }
.section__header--center .section__lead { margin-left: auto; margin-right: auto; }

.divider {
  width: 52px; height: 4px;
  background: var(--blue-mid); border-radius: 2px;
  margin: 18px 0 0;
}
.section__header--center .divider { margin-left: auto; margin-right: auto; }
.section--dark .divider, .section--blue .divider { background: var(--gold); }

/* ─── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.card__body { padding: 32px; }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
}
.card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.card__text  { font-size: 0.925rem; color: var(--gray-600); line-height: 1.75; }

/* ─── REAL Acronym Cards ──────────────────────────────────── */
.real-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.real-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md); padding: 36px 32px;
  color: var(--white);
  transition: transform var(--t), box-shadow var(--t);
  min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end;
}
.real-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2xl); }
.real-card__bg-letter {
  position: absolute; top: -18px; right: 16px;
  font-family: 'Merriweather', serif;
  font-size: 7rem; font-weight: 900;
  opacity: 0.12; line-height: 1; pointer-events: none;
  color: var(--white);
}
.real-card__key {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.8; margin-bottom: 4px;
}
.real-card__word {
  font-family: 'Merriweather', serif;
  font-size: 1.65rem; font-weight: 700; margin-bottom: 12px; line-height: 1.1;
}
.real-card__desc { font-size: 0.9rem; opacity: 0.88; line-height: 1.7; }
.real-card__accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: rgba(255,255,255,0.3);
}

.real-card--k { background: linear-gradient(145deg, #1d4ed8 0%, #1e40af 100%); }
.real-card--i { background: linear-gradient(145deg, #0f766e 0%, #0d9488 100%); }
.real-card--r { background: linear-gradient(145deg, #b91c1c 0%, #dc2626 100%); }
.real-card--e { background: linear-gradient(145deg, #5b21b6 0%, #7c3aed 100%); }
.real-card--a { background: linear-gradient(145deg, #065f46 0%, #059669 100%); }
.real-card--l { background: linear-gradient(145deg, #92400e 0%, #d97706 100%); }

/* ─── Team Cards ──────────────────────────────────────────── */
.team-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}
.team-card {
  background: var(--white); border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.team-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.team-card__avatar {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
}
.team-card__info { min-width: 0; }
.team-card__name { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card__role { font-size: 0.825rem; color: var(--gray-500); line-height: 1.4; }

/* ─── Schools ─────────────────────────────────────────────── */
.school-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.school-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 100px; padding: 8px 18px;
  font-size: 0.875rem; font-weight: 500; color: var(--gray-800);
  box-shadow: var(--shadow-sm);
  transition: all var(--t); cursor: default;
}
.school-tag:hover {
  background: var(--blue-mid); color: var(--white);
  border-color: var(--blue-mid); transform: scale(1.04);
  box-shadow: var(--shadow-md);
}
.school-tag svg { width: 14px; height: 14px; opacity: 0.7; flex-shrink: 0; }
.school-tag:hover svg { opacity: 1; }

/* ─── Sponsors ────────────────────────────────────────────── */
.sponsor-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  align-items: center;
}
.sponsor-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 20px;
  display: flex; align-items: center; justify-content: center;
  height: 110px; box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.sponsor-card:hover {
  border-color: var(--blue-light); box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.sponsor-card img {
  max-height: 64px; max-width: 100%; width: auto;
  object-fit: contain; filter: grayscale(25%);
  transition: filter var(--t);
}
.sponsor-card:hover img { filter: grayscale(0%); }

/* ─── Video Embed ─────────────────────────────────────────── */
.video-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-2xl);
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

/* ─── Quote / Callout ─────────────────────────────────────── */
.quote {
  border-left: 4px solid var(--gold);
  padding: 22px 28px;
  background: var(--gold-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.05rem; line-height: 1.85;
  color: var(--gray-800); font-style: italic;
}
.callout {
  background: var(--blue-pale); border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius-md); padding: 28px 32px;
}
.callout__title { font-weight: 700; color: var(--blue); margin-bottom: 10px; font-size: 1.05rem; }
.callout__text  { font-size: 0.95rem; color: var(--gray-800); line-height: 1.75; }

/* ─── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white); padding: 80px 28px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero__tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; margin-bottom: 16px; line-height: 1.12;
}
.page-hero__subtitle {
  font-size: 1.1rem; opacity: 0.85; line-height: 1.75; max-width: 560px; margin: 0 auto;
}

/* ─── Stats Bar ───────────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: 40px 28px; }
.stats-bar .container { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat__num {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem; font-weight: 900; color: var(--gold-light); line-height: 1;
}
.stat__lbl { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 6px; font-weight: 500; }

/* ─── CTA Section ─────────────────────────────────────────── */
.cta {
  background: linear-gradient(135deg, var(--red-mid) 0%, #7f1d1d 100%);
  color: var(--white); text-align: center; padding: 80px 28px;
}
.cta__title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900; margin-bottom: 16px;
}
.cta__text {
  font-size: 1.05rem; opacity: 0.88; margin-bottom: 36px;
  max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.75;
}
.cta__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── Event Banner ────────────────────────────────────────── */
.event-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0f3460 100%);
  color: var(--white); padding: 28px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: var(--shadow-lg);
}
.event-banner__info { }
.event-banner__date {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px;
}
.event-banner__title { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
.event-banner__location { font-size: 0.875rem; color: rgba(255,255,255,0.72); margin-top: 4px; }

/* ─── Mission List ────────────────────────────────────────── */
.mission-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mission-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; line-height: 1.65;
}
.mission-list li::before {
  content: '▶'; font-size: 0.55rem; color: var(--gold);
  margin-top: 5px; flex-shrink: 0;
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--navy); padding: 52px 28px 32px;
  color: rgba(255,255,255,0.65);
}
.footer__inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 32px; margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo img { height: 50px; width: auto; }
.footer__nav { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__nav a {
  font-size: 0.875rem; color: rgba(255,255,255,0.7);
  padding: 6px 12px; border-radius: var(--radius-sm);
  transition: all var(--t);
}
.footer__nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.footer__bottom {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 0.82rem; }
.footer__copy a { color: rgba(255,255,255,0.85); }
.footer__hashtag {
  font-size: 0.82rem; color: var(--gold-light); font-weight: 600;
}

/* ─── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Grids ───────────────────────────────────────────────── */
.grid--2 { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* ─── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; gap: 40px; }
  .hero__right { align-items: center; }
  .hero__img-card { max-width: 480px; }
  .real-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { gap: 40px; }
}

@media (max-width: 640px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .section { padding: 60px 0; }
  .section--sm { padding: 44px 0; }
  .hero { min-height: auto; }
  .hero__content { padding: 72px 20px 56px; }
  .hero__mini-cards { flex-direction: column; }
  .real-grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; }
  .event-banner { flex-direction: column; text-align: center; }
}

/* ─── Keyframes ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__badge    { animation: fadeInUp 0.6s ease 0.1s both; }
.hero__title    { animation: fadeInUp 0.7s ease 0.2s both; }
.hero__subtitle { animation: fadeInUp 0.7s ease 0.35s both; }
.hero__actions  { animation: fadeInUp 0.7s ease 0.5s both; }
.hero__right    { animation: fadeInUp 0.9s ease 0.3s both; }
