/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --primary:   #1a6fa8;
  --primary-d: #145a8a;
  --secondary: #2eaa62;
  --accent:    #00c9c8;
  --accent-d:  #00a8a7;
  --bg:        #f8fafc;
  --text:      #0f172a;
  --text-muted:#475569;
  --surface:   #eaf6f6;
  --border:    #c7e6e6;
  --ring:      #00c9c8;
  --hero-start:#0d4f7c;
  --hero-end:  #0fa8a7;
  --radius:    12px;
  --shadow:    0 2px 12px rgba(0,0,0,.08);
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
h1,h2,h3 { font-family: 'Montserrat', sans-serif; line-height: 1.25; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ─── NAV ────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--hero-start);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: .75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  color: #fff; white-space: nowrap;
}
.nav-logo:hover { text-decoration: none; opacity: .85; }
.nav-links {
  display: flex; flex-wrap: wrap; gap: .25rem 1.25rem;
  list-style: none;
}
.nav-links a { color: rgba(255,255,255,.9); font-size: .85rem; font-weight: 600; }
.nav-links a:hover { color: var(--accent); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }

@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; width: 100%; flex-direction: column; padding-bottom: .5rem; }
  .nav-links.open { display: flex; }
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero-section h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff; font-weight: 800;
  margin: .5rem 0 1rem;
}
.hero-sub { color: rgba(255,255,255,.88); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-kicker {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 100px;
  margin-bottom: .5rem;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: .7rem 1.8rem; border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .95rem;
  transition: opacity .2s, transform .15s;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--text); }
.btn-primary:hover { opacity: .88; transform: translateY(-1px); text-decoration: none; }
.btn-secondary { background: rgba(255,255,255,.15); color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-secondary:hover { background: rgba(255,255,255,.25); text-decoration: none; }

/* ─── SECTION SHELL ──────────────────────────────────────────── */
.section-shell {
  padding: 4rem 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.section-shell.bg-surface {
  max-width: 100%;
  background: var(--surface);
  padding: 4rem 1.5rem;
}
.section-shell.bg-surface > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.section-label {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-d); margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--primary-d); margin-bottom: 1rem; font-weight: 700;
}
.section-intro {
  color: var(--text-muted); max-width: 620px;
  margin-bottom: 2rem; font-size: 1rem;
}

/* ─── CARD GRID ──────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.card h3 { font-size: 1rem; color: var(--primary-d); margin-bottom: .4rem; font-weight: 700; }
.card p { font-size: .9rem; color: var(--text-muted); }
.card-icon { font-size: 1.8rem; margin-bottom: .75rem; }

/* ─── GALLERY FIGURES ────────────────────────────────────────── */
.gallery-figure {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2.5rem 1rem;
  color: #fff; font-weight: 600; font-size: .9rem; text-align: center;
  gap: .5rem;
}
.gallery-figure span { font-size: 2.5rem; }

/* ─── EVENT CARDS ────────────────────────────────────────────── */
.event-badge {
  display: inline-block; background: var(--accent);
  color: var(--text); font-size: .7rem; font-weight: 700;
  padding: .2rem .6rem; border-radius: 100px;
  margin-bottom: .6rem; text-transform: uppercase; letter-spacing: .06em;
}

/* ─── STATS ROW ──────────────────────────────────────────────── */
.stat-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-top: 2rem; justify-content: center;
}
.stat-block {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem 2.5rem;
  text-align: center; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: .25rem;
}
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: .8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
}
@media (max-width: 640px) { .about-grid { grid-template-columns: 1fr; } }
.about-text p { color: var(--text-muted); font-size: .97rem; }
.highlight-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius); padding: 2rem; color: #fff; text-align: center;
}
.highlight-emoji { font-size: 2.5rem; display: block; margin-bottom: .75rem; }
.highlight-box h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.highlight-box p { font-size: .9rem; opacity: .9; }

/* ─── PROOF / TESTIMONIALS ───────────────────────────────────── */
.proof-card { border-left: 4px solid var(--accent); }
.pull-quote { font-size: 1rem; font-style: italic; color: var(--text); margin-bottom: .75rem; }
.proof-attr { font-size: .8rem; color: var(--text-muted); font-weight: 600; }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-section { text-align: center; }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem; margin-bottom: 1.5rem;
}
.contact-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow);
}
.contact-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }
.contact-card h3 { font-size: .9rem; font-weight: 700; color: var(--primary-d); margin-bottom: .3rem; }
.contact-card a, .contact-card p { font-size: .9rem; color: var(--text-muted); word-break: break-word; }
.contact-card a:hover { color: var(--primary); }
.contact-note { margin-top: 1.5rem; font-size: .8rem; color: var(--text-muted); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--hero-start); color: rgba(255,255,255,.75);
  text-align: center; padding: 2rem 1.5rem;
  font-size: .82rem; line-height: 2;
}
.footer-links a { color: rgba(255,255,255,.7); margin: 0 .25

:focus-visible {
  outline: 2px solid var(--ring, var(--primary));
  outline-offset: 3px;
}
