/* ============================================================
   DAYSPRING SERAPHIC CHURCH — services.css
   Premium Ministry Stylesheet — Mapped to Actual HTML Classes
   Design: Cinematic Luxury | Royal Blue + Purple + Gold
   ============================================================ */

/* ── 1. GOOGLE FONTS ────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Raleway:wght@300;400;500;600;700;800&display=swap');

/* ── 2. CSS CUSTOM PROPERTIES ───────────────────────────── */
:root {
  /* Brand Palette */
  --royal-blue:       #00163b;
  --royal-blue-deep:  #000d24;
  --rich-purple:      #350a35;
  --purple-mid:       #1a0530;
  --gold:             #FFD700;
  --gold-soft:        #ffcc00;
  --gold-dim:         #c9a227;
  --gold-pale:        rgba(255, 215, 0, 0.10);
  --gold-light:       #ffe566;
  --burnt-orange:     #CC5500;
  --orange-bright:    #e86500;
  --cream:            #fff4e6;
  --wheat:            #f5deb3;
  --brown:            #8B4513;

  /* Gradients */
  --grad-hero:        linear-gradient(145deg, #00163b 0%, #1a0530 45%, #350a35 100%);
  --grad-gold:        linear-gradient(135deg, #ffcc00 0%, #FFD700 50%, #c9a227 100%);
  --grad-orange:      linear-gradient(135deg, #CC5500, #e86500);
  --grad-card:        linear-gradient(145deg, rgba(0,22,59,0.82) 0%, rgba(53,10,53,0.72) 100%);
  --grad-divider:     linear-gradient(90deg, transparent, #FFD700, transparent);
  --grad-dark-section:linear-gradient(180deg, #000d24 0%, #00163b 100%);

  /* Glass */
  --glass-bg:         rgba(0, 18, 50, 0.60);
  --glass-bg-warm:    rgba(10, 5, 30, 0.72);
  --glass-border:     rgba(255, 215, 0, 0.15);
  --glass-border-hot: rgba(255, 215, 0, 0.38);
  --glass-blur:       blur(20px);

  /* Text */
  --text-primary:     #fff4e6;
  --text-gold:        #FFD700;
  --text-muted:       rgba(255, 244, 230, 0.58);
  --text-muted-light: rgba(255, 244, 230, 0.75);
  --text-dark:        #1a0f00;

  /* Shadows */
  --shadow-card:      0 8px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,215,0,0.09);
  --shadow-lift:      0 20px 64px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,215,0,0.24);
  --shadow-gold-glow: 0 0 40px rgba(255,215,0,0.18);
  --shadow-btn:       0 4px 22px rgba(255,215,0,0.32);
  --shadow-btn-hover: 0 8px 40px rgba(255,215,0,0.52);

  /* Typography */
  --font-display:     'Cinzel', serif;
  --font-heading:     'Cormorant Garamond', serif;
  --font-body:        'Raleway', sans-serif;

  /* Spacing */
  --section-pad-v:    clamp(72px, 10vw, 128px);
  --container-max:    1240px;
  --radius-card:      18px;
  --radius-sm:        10px;
  --radius-pill:      50px;
  --gap-grid:         clamp(18px, 3vw, 32px);

  /* Motion */
  --ease-smooth:      cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:         0.25s;
  --dur-med:          0.45s;
  --dur-slow:         0.7s;
}

/* ── 3. RESET ────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--royal-blue-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--royal-blue-deep); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--burnt-orange));
  border-radius: 3px;
}

::selection { background: rgba(255,215,0,0.25); color: var(--cream); }

/* ── 4. TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: 0.03em;
}
p { font-family: var(--font-body); }

/* ── 5. LAYOUT UTILITIES ────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 48px);
  width: 100%;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: var(--gap-grid);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--gap-grid);
}

.mb-group {
  margin-bottom: clamp(48px, 8vw, 88px);
}

/* ── 6. REMOVE ALL SVG ICONS ────────────────────────────── */
.nav__logo,
.hero__cross,
.hero__badge-dot + svg,
.btn svg,
.hero__cta .btn svg,
.feature-pill__icon,
.group-heading__icon svg,
.card__icon svg,
.event-hero__icon,
.detail svg,
.location-card__icon svg,
.social-btn__icon svg,
.location-btn svg {
  display: none !important;
}

/* Keep the icon container but repurpose as decorative accent */
.feature-pill__icon {
  display: flex !important;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}

.card__icon {
  display: flex !important;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Decorative shimmer on icon containers */
.card__icon::after,
.feature-pill__icon::after,
.group-heading__icon::after,
.location-card__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
}

/* ── 7. HEADER & NAVIGATION ─────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 5vw, 48px);
  height: 70px;
  background: transparent;
  transition: background var(--dur-med) var(--ease-smooth),
              height var(--dur-med) var(--ease-smooth),
              box-shadow var(--dur-med) var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(0, 10, 30, 0.90);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 215, 0, 0.12);
  box-shadow: 0 4px 40px rgba(0,0,0,0.50);
  height: 60px;
}

/* Brand */
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.nav__logo { display: none !important; }

.nav__title {
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.8vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255,215,0,0.38);
  transition: text-shadow var(--dur-fast);
}

.nav__brand:hover .nav__title {
  text-shadow: 0 0 36px rgba(255,215,0,0.65);
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 244, 230, 0.80);
  position: relative;
  padding-bottom: 5px;
  transition: color var(--dur-fast);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--grad-gold);
  border-radius: 2px;
  transition: width 0.35s var(--ease-smooth);
}

.nav__links a:hover,
.nav__links a.active { color: var(--gold); }

.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--dur-med) var(--ease-smooth),
              opacity var(--dur-med) var(--ease-smooth);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 8, 24, 0.97);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav__mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color var(--dur-fast), text-shadow var(--dur-fast);
  position: relative;
}

.nav__mobile a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1.5px;
  background: var(--grad-gold);
  transition: width 0.35s ease;
  border-radius: 2px;
}

.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--gold);
  text-shadow: 0 0 32px rgba(255,215,0,0.45);
}

.nav__mobile a:hover::after,
.nav__mobile a.active::after { width: 60%; }


/* ── 8. HERO SECTION ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--grad-hero);
  padding: 120px 24px 100px;
}

/* ── Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.033) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.033) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero__bg-orb--1 {
  width: 520px; height: 520px;
  left: -8%; top: -10%;
  background: radial-gradient(circle, rgba(0,70,180,0.30) 0%, transparent 70%);
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.hero__bg-orb--2 {
  width: 380px; height: 380px;
  right: -5%; top: 15%;
  background: radial-gradient(circle, rgba(90,5,110,0.30) 0%, transparent 70%);
  animation: orbFloat 11s ease-in-out 2s infinite alternate;
}

.hero__bg-orb--3 {
  width: 280px; height: 280px;
  left: 55%; bottom: 10%;
  background: radial-gradient(circle, rgba(255,200,0,0.14) 0%, transparent 70%);
  animation: orbFloat 16s ease-in-out 4s infinite alternate;
}

@keyframes orbFloat {
  0%   { transform: translate(0px, 0px) scale(1); }
  33%  { transform: translate(30px, -22px) scale(1.08); }
  66%  { transform: translate(-14px, 28px) scale(0.94); }
  100% { transform: translate(12px, -10px) scale(1.04); }
}

/* Floating accents (decorative lines) */
.hero__accent {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.10);
  animation: accentPulse 8s ease-in-out infinite alternate;
}

.hero__accent--1 {
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.hero__accent--2 {
  width: 900px; height: 900px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255,215,0,0.05);
  animation-delay: 2s;
}

.hero__accent--3 {
  width: 1200px; height: 1200px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255,215,0,0.03);
  animation-delay: 4s;
}

@keyframes accentPulse {
  0%   { opacity: 0.4; }
  100% { opacity: 1; }
}

/* Cross — hide svg, keep container hidden */
.hero__cross { display: none; }

/* ── Hero Content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

/* Live badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  background: rgba(255,215,0,0.10);
  border: 1px solid rgba(255,215,0,0.28);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: badgeGlow 3s ease-in-out infinite;
}

.hero__badge-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0); }
  50%       { box-shadow: 0 0 20px 2px rgba(255,215,0,0.18); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

/* Eyebrow */
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burnt-orange);
  margin-bottom: 14px;
}

/* Main heading */
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  text-shadow:
    0 0 100px rgba(255,215,0,0.18),
    0 6px 32px rgba(0,0,0,0.55);
  margin-bottom: 22px;
}

.hero__heading em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(255,215,0,0.35));
}

/* Divider */
.hero__divider {
  width: 64px;
  height: 2px;
  background: var(--grad-gold);
  margin: 22px auto;
  border-radius: 2px;
  position: relative;
}

.hero__divider::before,
.hero__divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.hero__divider::before { left: -9px; }
.hero__divider::after  { right: -9px; }

/* Sub text */
.hero__sub {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,244,230,0.78);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero__sub strong {
  color: var(--cream);
  font-weight: 600;
  font-style: normal;
}

/* CTA Buttons */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 15px 38px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-med) var(--ease-spring),
    box-shadow var(--dur-med) var(--ease-smooth);
}

/* Hide all SVGs inside buttons */
.btn svg { display: none !important; }

.btn--primary {
  background: var(--grad-gold);
  color: var(--royal-blue-deep);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-btn-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(255,215,0,0.42);
}

.btn--ghost:hover {
  background: rgba(255,215,0,0.10);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 6px 28px rgba(255,215,0,0.18);
}

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.26);
  transform: scale(0);
  animation: rippleOut 0.65s linear;
  pointer-events: none;
}

@keyframes rippleOut { to { transform: scale(4); opacity: 0; } }

/* Feature pills */
.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,215,0,0.13);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.feature-pill:hover {
  border-color: rgba(255,215,0,0.30);
  background: rgba(255,215,0,0.06);
}

.feature-pill__icon {
  width: 28px !important;
  height: 28px !important;
  border-radius: 7px !important;
  flex-shrink: 0;
}

.feature-pill__text {
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-primary);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.65;
  transition: opacity var(--dur-fast);
}

.hero__scroll:hover { opacity: 1; }

.hero__scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
}

.hero__scroll-line {
  width: 1.5px;
  height: 52px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  border-radius: 2px;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.8); }
  50%       { opacity: 1;    transform: scaleY(1.1); }
}


/* ── 9. MAIN / SECTION ──────────────────────────────────── */
main { background: var(--grad-dark-section); }

.section {
  padding: var(--section-pad-v) 0;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, #000d24 0%, #0a0120 50%, #00163b 100%);
  position: relative;
  overflow: hidden;
}

/* Ambient background glow for section */
.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 35% at 12% 85%, rgba(204,85,0,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 88% 15%, rgba(0,60,160,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(255,215,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Section header */
.section__header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 88px);
  position: relative;
  z-index: 1;
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burnt-orange);
  margin-bottom: 14px;
  position: relative;
}

.section__label::before { content: '— '; }
.section__label::after  { content: ' —'; }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section__title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__desc {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* After section title — gold rule */
.section__header::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  background: var(--grad-gold);
  margin: 18px auto 0;
  border-radius: 2px;
}


/* ── 10. GROUP HEADINGS ─────────────────────────────────── */
.group-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(24px, 4vw, 40px);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,215,0,0.10);
  position: relative;
}

.group-heading::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 80px; height: 1.5px;
  background: var(--grad-gold);
  border-radius: 2px;
}

.group-heading__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

/* Hide SVG inside */
.group-heading__icon svg { display: none !important; }

/* Animated pulse replacement for the SVG-based pulse */
.group-heading__pulse { display: none !important; }

.group-heading h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}


/* ── 11. EVENT HERO CARD (Prayer Retreat) ───────────────── */
.event-hero {
  background: var(--glass-bg-warm);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,215,0,0.18);
  border-radius: var(--radius-card);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-smooth),
              box-shadow var(--dur-med) var(--ease-smooth),
              border-color var(--dur-med);
}

/* Gold top accent */
.event-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
}

/* Ambient corner glow */
.event-hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,215,0,0.10) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity var(--dur-med);
  opacity: 0.6;
}

.event-hero:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(255,215,0,0.30);
}

.event-hero:hover::after { opacity: 1; }

.event-hero__content {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  align-items: flex-start;
}

/* Hide icon */
.event-hero__icon { display: none !important; }

.event-hero__body { flex: 1; }

.card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.event-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.event-hero__quote {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-style: italic;
  color: rgba(255,244,230,0.72);
  border-left: 2.5px solid var(--gold-dim);
  padding-left: 18px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.event-hero__desc {
  color: var(--text-muted-light);
  font-size: clamp(0.90rem, 1.5vw, 1.02rem);
  line-height: 1.8;
}


/* ── 12. BADGES ─────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.badge--ongoing {
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.40);
  color: #6ee7b7;
}

.badge--annual {
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.40);
  color: #a5b4fc;
}

.badge--hq {
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.35);
  color: var(--gold);
}


/* ── 13. DETAIL ROWS (date / location inside cards) ────── */
.card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 14px;
}

.detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Hide SVG icons, replace with CSS pseudo-element dot */
.detail svg { display: none !important; }

.detail::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-dim);
  flex-shrink: 0;
}

.detail span,
.detail a {
  font-size: 0.82rem;
  color: var(--text-muted-light);
}

.detail a:hover { color: var(--gold); }


/* ── 14. CARDS (stacked — weekly programs) ──────────────── */
.card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: clamp(22px, 3.5vw, 36px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-med) var(--ease-smooth),
    box-shadow var(--dur-med) var(--ease-smooth),
    border-color var(--dur-med);
}

/* Top accent line */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0.5;
  transition: opacity var(--dur-med);
}

.card:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: var(--shadow-lift);
  border-color: var(--glass-border-hot);
}

.card:hover::before { opacity: 1; }

/* Card icon */
.card__icon {
  display: flex !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.card--stacked .card__icon { margin-bottom: 18px; }

.card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.card__desc {
  color: var(--text-muted);
  font-size: 0.90rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.card__body { flex: 1; }

/* Row card layout */
.card--row {
  display: flex;
  gap: clamp(16px, 3vw, 28px);
  align-items: flex-start;
}

.card--row .card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}


/* ── 15. SCHEDULE ROWS ──────────────────────────────────── */
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  border-radius: 8px;
  background: rgba(255,215,0,0.04);
  border: 1px solid rgba(255,215,0,0.08);
  margin-top: 8px;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}

.schedule-row:hover {
  background: rgba(255,215,0,0.08);
  border-color: rgba(255,215,0,0.18);
}

.schedule-row__label {
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.schedule-row__time {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}


/* ── 16. LOCATION CARDS ─────────────────────────────────── */
.location-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-med) var(--ease-smooth),
              box-shadow var(--dur-med) var(--ease-smooth),
              border-color var(--dur-med);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0.45;
  transition: opacity var(--dur-med);
}

.location-card--hq {
  border-color: rgba(255,215,0,0.24);
}

.location-card--hq::before { opacity: 0.9; }

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(255,215,0,0.28);
}

.location-card:hover::before { opacity: 1; }

.location-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.location-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
}

.location-card__icon svg { display: none !important; }

.location-card__name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.location-card__address {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.location-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-card__list li {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.location-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-dim);
}


/* ── 17. CONNECT SECTION ────────────────────────────────── */
.connect {
  background: var(--glass-bg-warm);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: clamp(36px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.connect::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: var(--grad-gold);
}

.connect::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,215,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.connect__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}

.connect__sub {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.8vw, 1.18rem);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 36px;
  position: relative; z-index: 1;
}

.connect__divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.20), transparent);
  margin: 32px 0 24px;
}

/* Social grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 14px;
  margin-bottom: 0;
  position: relative; z-index: 1;
}

.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.10);
  border-radius: 14px;
  text-decoration: none;
  transition:
    transform var(--dur-med) var(--ease-spring),
    background var(--dur-fast),
    border-color var(--dur-fast),
    box-shadow var(--dur-med);
}

.social-btn:hover {
  transform: translateY(-6px) scale(1.04);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,215,0,0.25);
  box-shadow: var(--shadow-gold-glow);
}

.social-btn__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}

.social-btn__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
}

/* Show platform SVG logos (these are brand assets, not icons) */
.social-btn__icon svg {
  display: block !important;
  width: 22px; height: 22px;
  fill: #fff;
}

.social-btn__name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}

.social-btn__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Location buttons */
.connect__locations {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative; z-index: 1;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 12px 26px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.24);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
}

.location-btn svg { display: none !important; }

.location-btn::before {
  content: '◈';
  margin-right: 8px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.location-btn:hover {
  background: rgba(255,215,0,0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,215,0,0.18);
}


/* ── 18. FOOTER ─────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #000510 0%, #000208 100%);
  border-top: 1px solid rgba(255,215,0,0.10);
  padding: 36px 24px;
  text-align: center;
}

.footer p {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: rgba(255,244,230,0.38);
  letter-spacing: 0.05em;
}

.footer strong {
  color: rgba(255,215,0,0.60);
  font-weight: 600;
}


/* ── 19. SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s var(--ease-smooth),
    transform 0.8s var(--ease-smooth);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ── 20. RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links  { display: none !important; }
  .nav__hamburger { display: flex; }

  .event-hero__content { flex-direction: column; }
  .card--row { flex-direction: column; }
  .card--row .card__icon { margin-bottom: 14px; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 16px 80px; }
  .hero__cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; }
  .connect { padding: 28px 18px; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .card--row { flex-direction: column; }
  .section__header::after { margin-top: 14px; }
  .group-heading { gap: 12px; }
}

@media (max-width: 400px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 21. ACCESSIBILITY ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}