/* =========================================================
   Bogotá Noche — dark, neon Colombian tricolor on charcoal.
   ========================================================= */

:root {
  /* Neon Colombian tricolor */
  --yellow: #ffd33d;
  --yellow-soft: #e6b820;
  --yellow-glow: rgba(255, 211, 61, 0.35);
  --blue: #4b6fff;
  --blue-soft: #6f8aff;
  --blue-deep: #1b2a6b;
  --blue-glow: rgba(75, 111, 255, 0.32);
  --red: #ff3b5c;
  --red-soft: #ff6478;
  --red-glow: rgba(255, 59, 92, 0.36);
  --green: #2bd97c;
  --green-glow: rgba(43, 217, 124, 0.3);

  /* Surfaces — near black, charcoal layers */
  --bg: #0a0c10;            /* deepest */
  --bg-alt: #11141a;        /* slightly elevated */
  --paper: #161a22;         /* card surface */
  --paper-2: #1c212b;       /* hovered card / elevated */
  --paper-3: #232936;       /* highest */

  /* Text */
  --ink: #f0ece0;           /* warm off-white */
  --ink-soft: #c3beb0;
  --muted: #7c7666;
  --line: rgba(255,255,255,0.06);
  --line-strong: rgba(255,255,255,0.13);

  --accent: var(--yellow);
  --shadow: 0 1px 2px rgba(0,0,0,0.5), 0 12px 40px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 0 1px rgba(255,211,61,0.18), 0 8px 32px rgba(255,211,61,0.12);
  --radius: 4px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(75,111,255,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 85% 100%, rgba(255,59,92,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 20% at 50% 50%, rgba(255,211,61,0.05) 0%, transparent 60%);
  pointer-events: none;
}

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.18;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); margin: 0 0 18px; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin: 0 0 18px; }
h3 { font-size: 1.2rem; margin: 0 0 8px; }
p { margin: 0 0 16px; color: var(--ink-soft); }
a { color: var(--yellow); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--yellow-soft); text-decoration: underline; text-underline-offset: 3px; }
small { color: var(--muted); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; margin: 0 auto; }
section { padding: 80px 0; }
.muted { color: var(--muted); }

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow-glow);
}

/* Tricolor flag stripe */
.flag-stripe {
  height: 4px;
  background:
    linear-gradient(to right,
      var(--yellow) 0%, var(--yellow) 50%,
      var(--blue) 50%, var(--blue) 75%,
      var(--red) 75%, var(--red) 100%);
  box-shadow:
    0 0 18px rgba(255, 211, 61, 0.4),
    0 0 8px rgba(75, 111, 255, 0.3),
    0 0 8px rgba(255, 59, 92, 0.3);
}

/* Header / nav */
.site-header {
  background: rgba(10, 12, 16, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; max-width: 1180px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem; font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand .brand-text { display: block; }
.brand small {
  display: block; font-family: "Inter", sans-serif;
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 500; margin-top: 3px;
}
.brand .col-yellow { color: var(--yellow); text-shadow: 0 0 14px var(--yellow-glow); }
.brand .col-blue { color: var(--blue-soft); text-shadow: 0 0 14px var(--blue-glow); }
.brand .col-red { color: var(--red); text-shadow: 0 0 14px var(--red-glow); }

.nav-links {
  display: flex; gap: 26px; list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--yellow); text-decoration: none; }
.nav-links a.active { color: var(--yellow); }
.nav-cta {
  background: var(--yellow);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: var(--radius); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 0 20px var(--yellow-glow);
  transition: transform 0.12s ease, box-shadow 0.15s ease;
}
.nav-cta:hover {
  background: var(--yellow);
  color: var(--bg);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 0 28px var(--yellow-glow), 0 0 0 3px rgba(255,211,61,0.15);
}

/* Hero */
.hero {
  padding: 120px 0 90px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(75,111,255,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 20%, rgba(255,211,61,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(255,59,92,0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #050709 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--yellow), var(--red), var(--blue), transparent);
  opacity: 0.6;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  color: var(--ink);
  max-width: 900px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 span {
  color: var(--yellow);
  text-shadow: 0 0 30px var(--yellow-glow);
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 0 30px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: var(--yellow); color: var(--bg);
  box-shadow: 0 0 0 1px rgba(255,211,61,0.3), 0 8px 28px var(--yellow-glow);
}
.btn-primary:hover {
  background: var(--yellow); color: var(--bg);
  box-shadow: 0 0 0 2px rgba(255,211,61,0.5), 0 12px 36px var(--yellow-glow);
}
.btn-secondary {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 0 0 0 transparent;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn-dark {
  background: var(--paper-2); color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-dark:hover {
  background: var(--paper-3); color: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 20px var(--yellow-glow);
}
.btn-red {
  background: var(--red); color: var(--bg);
  box-shadow: 0 0 0 1px rgba(255,59,92,0.3), 0 8px 28px var(--red-glow);
}
.btn-red:hover { box-shadow: 0 0 0 2px rgba(255,59,92,0.5), 0 12px 36px var(--red-glow); }

/* Stats strip */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1180px; margin: 0 auto;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats > div {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stats > div:last-child { border-right: none; }
.stats strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem; color: var(--yellow); font-weight: 700;
  text-shadow: 0 0 24px var(--yellow-glow);
}
.stats span {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--muted);
}

/* Sections */
section.alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.paper { background: var(--bg); }
.section-head {
  margin-bottom: 50px;
  max-width: 760px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* Member grid */
.member-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.member-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.member-card:hover {
  transform: translateY(-3px);
  background: var(--paper-2);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.member-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right,
    var(--yellow) 0%, var(--yellow) 33%,
    var(--blue) 33%, var(--blue) 66%,
    var(--red) 66%, var(--red) 100%);
  opacity: 0.85;
}
.avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  margin: 4px auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem; font-weight: 700; color: var(--bg);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 2px var(--line-strong);
}
.av-a { background: var(--yellow); box-shadow: 0 0 0 2px rgba(255,211,61,0.3), 0 0 24px var(--yellow-glow); }
.av-b { background: var(--blue); color: var(--ink); box-shadow: 0 0 0 2px rgba(75,111,255,0.3), 0 0 24px var(--blue-glow); }
.av-c { background: var(--red); color: var(--ink); box-shadow: 0 0 0 2px rgba(255,59,92,0.3), 0 0 24px var(--red-glow); }
.av-d { background: var(--green); color: var(--bg); box-shadow: 0 0 0 2px rgba(43,217,124,0.3), 0 0 24px var(--green-glow); }
.av-e { background: var(--yellow-soft); color: var(--bg); }
.av-f { background: var(--blue-soft); color: var(--bg); }
.av-g { background: var(--red-soft); color: var(--bg); }
.member-card h3 { margin: 0 0 4px; font-size: 1.1rem; color: var(--ink); }
.member-card .title {
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 4px;
}
.member-card .industry {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--yellow);
  margin-bottom: 10px;
}
.member-card .country {
  display: inline-block;
  font-size: 11px; padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  background: rgba(255,255,255,0.02);
}
.member-card .country.local {
  color: var(--green);
  border-color: rgba(43,217,124,0.4);
  background: rgba(43,217,124,0.06);
}
.member-card blockquote {
  margin: 12px 0 0;
  font-size: 14px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.55;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

/* Upcoming list */
.upcoming-list {
  display: flex; flex-direction: column; gap: 14px;
}
.upcoming-row {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: center;
  border-left: 3px solid var(--yellow);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.upcoming-row:nth-child(3n+2) { border-left-color: var(--blue); }
.upcoming-row:nth-child(3n+3) { border-left-color: var(--red); }
.upcoming-row:hover {
  background: var(--paper-2);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.date-block {
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 10px 4px;
  background: var(--bg-alt);
}
.date-block strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem; color: var(--yellow);
  line-height: 1; text-shadow: 0 0 12px var(--yellow-glow);
}
.date-block span {
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.event-info h4 { margin: 0 0 4px; font-family: "Playfair Display", serif; font-size: 1.15rem; color: var(--ink); }
.event-info p { margin: 0 0 6px; color: var(--ink-soft); font-size: 14px; }
.where { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* Event gallery */
.event-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.event-tile {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.event-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}
.event-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
}
.event-tile .caption {
  position: absolute; bottom: 14px; left: 16px; right: 16px;
  color: var(--ink); z-index: 2;
}
.event-tile .caption strong {
  display: block; font-family: "Playfair Display", serif;
  font-size: 1.05rem; color: var(--ink);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.event-tile .caption small {
  display: block; font-size: 11px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em; margin-top: 2px;
}
.bg-1 { background: linear-gradient(135deg, #b58a00 0%, #4a3700 100%); }
.bg-2 { background: linear-gradient(135deg, #234dd8 0%, #0a1a4a 100%); }
.bg-3 { background: linear-gradient(135deg, #b32a3f 0%, #4a0e18 100%); }
.bg-4 { background: linear-gradient(135deg, #1a8a4d 0%, #0a3a20 100%); }
.bg-5 { background: linear-gradient(135deg, #8a5a1a 0%, #3a2208 100%); }
.bg-6 { background: linear-gradient(135deg, #4b2e8a 0%, #1a0e3a 100%); }
.bg-7 { background: linear-gradient(135deg, #2c5a8a 0%, #0e213a 100%); }
.bg-8 { background: linear-gradient(135deg, #8a2a5a 0%, #3a0e22 100%); }

/* Partner grid */
.partner-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.partner-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.partner-card:hover {
  background: var(--paper-2);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,211,61,0.15), 0 12px 32px rgba(0,0,0,0.5);
}
.partner-card .tag {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue-soft);
  background: rgba(75,111,255,0.1);
  border: 1px solid rgba(75,111,255,0.25);
  padding: 4px 9px;
  border-radius: 999px;
  display: inline-block; margin-bottom: 12px;
}
.partner-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.partner-card .discount {
  color: var(--yellow);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px var(--yellow-glow);
  margin-bottom: 4px;
}
.partner-card .where {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 10px;
}
.partner-card p {
  font-size: 14px; color: var(--ink-soft);
  margin: 0;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,211,61,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(255,59,92,0.15) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-alt) 0%, #050709 100%);
  padding: 80px 28px;
  text-align: center;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--yellow), var(--red), var(--blue), transparent);
  opacity: 0.5;
}
.cta-band::before { top: 0; }
.cta-band::after { bottom: 0; }
.cta-band h2 { color: var(--ink); text-shadow: 0 0 30px var(--yellow-glow); }
.cta-band p { color: var(--ink-soft); max-width: 580px; margin: 0 auto 28px; font-size: 1.08rem; }

/* Forms */
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: var(--radius);
  max-width: 640px; margin: 0 auto;
}
.form label {
  display: block;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.form input, .form select, .form textarea {
  width: 100%; padding: 12px 14px;
  font: inherit;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  margin-bottom: 18px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.form input::placeholder, .form textarea::placeholder { color: var(--muted); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--bg-alt);
  box-shadow: 0 0 0 3px rgba(255,211,61,0.15);
}
.form textarea { min-height: 110px; resize: vertical; }

/* Contact CTA (replaces forms with mailto-driven outreach) */
.contact-cta {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  padding: 32px 32px 30px;
  border-radius: var(--radius);
  max-width: 640px;
  margin: 0 auto;
}
.contact-cta h3 {
  margin: 0 0 12px;
}
.contact-cta p {
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.contact-cta ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--ink-soft);
}
.contact-cta ul li { margin-bottom: 4px; }
.contact-cta a {
  color: var(--accent);
  border-bottom: 1px dotted var(--accent);
}
.contact-cta a:hover { opacity: 0.85; }
.contact-cta-dark {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-left: 4px solid var(--yellow);
  padding: 26px 26px 22px;
}
.contact-cta-dark p { color: rgba(255,255,255,0.92); }

/* Value grid (about / join / mission) */
.value-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.value {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.value:hover { background: var(--paper-2); border-color: var(--line-strong); }
.value .num {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem; color: var(--yellow);
  font-weight: 700; line-height: 1;
  margin-bottom: 14px;
  text-shadow: 0 0 18px var(--yellow-glow);
}
.value h3 { font-size: 1.1rem; margin: 0 0 8px; color: var(--ink); }
.value p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* FAQ accordion */
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 10px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.faq details[open] {
  background: var(--paper-2);
  border-color: var(--yellow);
  box-shadow: 0 0 0 1px rgba(255,211,61,0.15);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--yellow); line-height: 1;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: '−'; }
.faq p { margin: 14px 0 0; color: var(--ink-soft); }

/* Footer */
.site-footer {
  background: #050709;
  color: var(--ink-soft);
  padding: 70px 0 30px;
  position: relative;
  border-top: 1px solid var(--line);
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right,
    var(--yellow) 0%, var(--yellow) 50%,
    var(--blue) 50%, var(--blue) 75%,
    var(--red) 75%, var(--red) 100%);
  box-shadow:
    0 0 20px rgba(255,211,61,0.4),
    0 0 10px rgba(75,111,255,0.3),
    0 0 10px rgba(255,59,92,0.3);
}
.site-footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.site-footer h5 {
  color: var(--ink); font-family: "Inter", sans-serif;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  margin: 0 0 16px;
}
.site-footer a {
  color: var(--ink-soft); font-size: 14px;
  display: block; padding: 4px 0;
  transition: color 0.15s ease;
}
.site-footer a:hover { color: var(--yellow); text-decoration: none; }
.footer-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem; color: var(--ink); margin-bottom: 12px;
}
.footer-tag { color: var(--muted); font-size: 13px; max-width: 320px; line-height: 1.55; }
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 50px; padding-top: 26px;
  text-align: center; font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em;
}

/* Inline svg helpers */
.icon { width: 22px; height: 22px; display: inline-block; vertical-align: middle; }

/* Responsive */
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div:nth-child(2) { border-right: none; }
  .stats > div { border-bottom: 1px solid var(--line); }
  .event-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .nav-links { gap: 14px; font-size: 13px; }
  .upcoming-row { grid-template-columns: 70px 1fr; }
  .upcoming-row .btn { grid-column: 1 / -1; justify-self: start; }
  .site-footer .container { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav { padding: 14px 20px; }
  section { padding: 60px 0; }
  .hero { padding: 90px 0 70px; }
}
@media (max-width: 520px) {
  .nav-links { display: none; }
  .member-grid { grid-template-columns: 1fr; }
  .event-gallery { grid-template-columns: 1fr; }
  .site-footer .container { grid-template-columns: 1fr; }
}
