@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ========================================================================
   WBF NGO – Premium Homepage Stylesheet
   Elegant · Luxurious · Interactive
   ======================================================================== */

/* ── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  --wbf-primary: #146c5f;
  --wbf-primary-light: #1c8c7c;
  --wbf-primary-dark: #0f5147;
  --wbf-secondary: #d4af37;
  --wbf-secondary-light: #e6c960;
  --wbf-secondary-dark: #b8941e;
  --wbf-accent: #e27d60;
  --wbf-bg-warm: #f4f1ea;
  --wbf-text-dark: #2d3748;
  --wbf-text-muted: #4a5568;
  --wbf-white: #ffffff;
  --wbf-glass-bg: rgba(255, 255, 255, 0.82);
  --wbf-glass-border: rgba(255, 255, 255, 0.35);

  /* Gold Gradients */
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f5e6a3 40%, #d4af37 60%, #b8941e 100%);
  --gold-gradient-text: linear-gradient(135deg, #d4af37, #f5e6a3, #d4af37);
  --gold-shimmer: linear-gradient(90deg, transparent 0%, rgba(245,230,163,0.4) 50%, transparent 100%);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 12px 24px -8px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 32px 64px -16px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
}


/* ── Global / Luxury Base ──────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(212, 175, 55, 0.3);
  color: var(--wbf-text-dark);
}

::-moz-selection {
  background: rgba(212, 175, 55, 0.3);
  color: var(--wbf-text-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--wbf-bg-warm);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--wbf-primary) 0%, var(--wbf-primary-dark) 100%);
  border-radius: 10px;
  border: 2px solid var(--wbf-bg-warm);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--wbf-secondary) 0%, var(--wbf-secondary-dark) 100%);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--wbf-text-dark);
  background-color: var(--wbf-bg-warm);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle film-grain / texture overlay on body */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}


/* ── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

p {
  line-height: 1.7;
  color: var(--wbf-text-muted);
  margin-bottom: 1.5rem;
}


/* ── Keyframe Animations ───────────────────────────────────────────────── */

/* Hero Ken Burns */
@keyframes kenBurns {
  0% {
    transform: scale(1.0);
  }
  50% {
    transform: scale(1.12) translate(-1%, -1%);
  }
  100% {
    transform: scale(1.0);
  }
}

/* Fade in up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scale in */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Gold shimmer sweep */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Floating particles */
@keyframes floatParticle1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  50% { transform: translate(80px, -120px) scale(0.5); }
}

@keyframes floatParticle2 {
  0%, 100% { transform: translate(0, 0) scale(0.8); opacity: 0; }
  15% { opacity: 0.8; }
  85% { opacity: 0.8; }
  50% { transform: translate(-60px, -100px) scale(0.3); }
}

@keyframes floatParticle3 {
  0%, 100% { transform: translate(0, 0) scale(0.6); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  50% { transform: translate(40px, -150px) scale(0.2); }
}

/* Pulse glow */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 20px 8px rgba(212, 175, 55, 0.15); }
}

/* CTA gradient animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Diagonal gold line */
@keyframes diagonalSlide {
  0% { transform: translateX(-100%) rotate(-45deg); }
  100% { transform: translateX(200%) rotate(-45deg); }
}

/* Sparkle twinkle */
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* Stat count feel */
@keyframes countPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Reveal animation for scroll */
@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gold line expand */
@keyframes lineExpand {
  from { width: 40px; }
  to { width: 100%; }
}


/* ── Animation Utility Classes ─────────────────────────────────────────── */
.animate-fade-in-up {
  animation: fadeInUp 0.9s var(--ease-out-expo) forwards;
  opacity: 0;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  justify-items: center;
}

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }


/* ── Premium Buttons ───────────────────────────────────────────────────── */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  letter-spacing: 0.01em;
  isolation: isolate;
}

/* Ripple/shine sweep on all buttons */
.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transition: left 0.6s var(--ease-out-expo);
  z-index: 0;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium.primary {
  color: var(--wbf-white);
  box-shadow: rgba(20, 108, 95, 0.35) 0px 4px 15px 0px;
  background: linear-gradient(135deg, var(--wbf-primary) 0%, var(--wbf-primary-dark) 100%);
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-image: initial;
}

.btn-premium.primary:hover {
  background: linear-gradient(135deg, var(--wbf-primary-light) 0%, var(--wbf-primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(20, 108, 95, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.btn-premium.primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(20, 108, 95, 0.3);
}

.btn-premium.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--wbf-primary);
  border: 2px solid var(--wbf-primary);
  backdrop-filter: blur(8px);
}

.btn-premium.secondary:hover {
  background: var(--wbf-primary);
  color: var(--wbf-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--wbf-primary);
}

.btn-premium.secondary:active {
  transform: translateY(-1px);
}

.btn-premium.gold {
  background: var(--gold-gradient);
  background-size: 200% 200%;
  color: #1a1a1a;
  box-shadow: var(--shadow-gold);
  border: none;
  font-weight: 700;
}

.btn-premium.gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.45);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.btn-premium.gold:active {
  transform: translateY(-1px);
}


/* ── Hero Section ──────────────────────────────────────────────────────── */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 120px;
  z-index: 0;
}

/* Ken Burns animated background */
.hero-premium__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.85) saturate(1.1);
  animation: kenBurns 25s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

/* Cinematic multi-stop overlay */
.hero-premium__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(15, 81, 71, 0.85) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.3) 70%, rgba(15, 81, 71, 0.6) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.6) 100%);
  z-index: -1;
}

/* Decorative gold diagonal line */
.hero-premium__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 2px;
  background: var(--gold-gradient);
  transform-origin: 0 0;
  transform: rotate(25deg);
  opacity: 0.5;
  top: 20%;
  filter: blur(0.5px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Gold geometric accent triangle */
.hero-premium__overlay::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  transform: rotate(45deg);
  border-radius: 4px;
}

/* Animated sparkle particles (CSS only) */
.hero-premium::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 15%;
  width: 6px;
  height: 6px;
  background: var(--wbf-secondary);
  border-radius: 50%;
  z-index: 2;
  animation: floatParticle1 6s ease-in-out infinite;
  box-shadow:
    0 0 6px rgba(212, 175, 55, 0.8),
    0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-premium::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 25%;
  width: 4px;
  height: 4px;
  background: var(--wbf-secondary-light);
  border-radius: 50%;
  z-index: 2;
  animation: floatParticle2 8s ease-in-out infinite 1s;
  box-shadow:
    0 0 4px rgba(212, 175, 55, 0.6),
    0 0 15px rgba(212, 175, 55, 0.3);
}

/* Additional sparkle via content pseudo on eyebrow */
.hero-premium__content::before {
  content: '';
  position: absolute;
  top: 30%;
  right: 35%;
  width: 3px;
  height: 3px;
  background: rgba(245, 230, 163, 0.9);
  border-radius: 50%;
  z-index: 2;
  animation: floatParticle3 7s ease-in-out infinite 2s;
  box-shadow: 0 0 8px rgba(245, 230, 163, 0.5);
}

.hero-premium__content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100% - 32px);
  padding: 0 0.5rem;
  color: var(--wbf-white);
  text-align: left;
}

.hero-premium__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--wbf-secondary);
  margin-bottom: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Gold dot before eyebrow text */
.hero-premium__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wbf-secondary);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
  animation: pulseGlow 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-premium__title {
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.75rem;
    max-width: 800px;
    color: var(--wbf-white);
    text-shadow: rgba(0, 0, 0, 0.3) 0px 2px 30px, rgba(0, 0, 0, 0.2) 0px 1px 3px;
    letter-spacing: -0.03em;
}

/* Gold accent on first word or key word */
.hero-premium__title strong,
.hero-premium__title em {
  font-style: normal;
  background: var(--gold-gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.hero-premium__lede {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    text-shadow: rgba(0, 0, 0, 0.2) 0px 1px 8px;
}

.hero-premium__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

/* Hero bottom fade for seamless transition */
.hero-premium__content::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -200%;
  right: -200%;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--wbf-bg-warm));
  pointer-events: none;
}


/* ── Impact Stats – Glassmorphism ──────────────────────────────────────── */
.stats-glass {
  position: relative;
  z-index: 10;
  margin-top: -90px;
  padding: 0 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.stats-glass__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  background: var(--wbf-glass-bg);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--wbf-glass-border);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(255,255,255,0.5) inset,
    0 1px 0 0 rgba(255,255,255,0.8) inset;
  overflow: hidden;
}

.stat-glass__card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

/* Gold line separator between cards */
.stat-glass__card + .stat-glass__card {
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

/* Subtle gold top border */
.stat-glass__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 0 0 3px 3px;
  transition: width 0.5s var(--ease-out-expo);
}

.stat-glass__card:hover::before {
  width: 60%;
}

.stat-glass__card:hover {
  transform: translateY(-5px);
  background: rgba(212, 175, 55, 0.04);
}

.stat-glass__number {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  display: block;
  background: linear-gradient(135deg, var(--wbf-primary) 0%, var(--wbf-secondary) 60%, var(--wbf-secondary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  line-height: 1.2;
}

/* Shimmer overlay on stat number */
.stat-glass__number::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gold-shimmer);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.stat-glass__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wbf-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.stat-glass__desc {
  font-size: 0.8rem;
  color: var(--wbf-text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
  line-height: 1.5;
}


/* ── Sections General ──────────────────────────────────────────────────── */
.section-premium {
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-premium--bg {
  background-color: var(--wbf-white);
  padding: 7rem 0;
  margin-bottom: 0;
  position: relative;
}

/* Handcrafted subtle texture pattern */
.section-premium--bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: repeating-linear-gradient(45deg, rgba(20, 108, 95, 0.03) 0, rgba(20, 108, 95, 0.03) 1px, transparent 1px, transparent 12px), url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.section-premium--bg .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-header__title {
  font-size: 2.75rem;
  color: var(--wbf-primary);
  position: relative;
  display: inline-block;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Gold gradient underline on section titles */
.section-header__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Decorative dots flanking the underline */
.section-header__title::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: calc(50% - 50px);
  width: 6px;
  height: 6px;
  background: var(--wbf-secondary);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
  box-shadow: 94px 0 0 0 var(--wbf-secondary);
}

.section-header__subtitle {
  font-size: 1.125rem;
  max-width: 640px;
  margin: 2rem auto 0;
  color: var(--wbf-text-muted);
  line-height: 1.7;
}


/* ── About Section Split ───────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-split__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Decorative gold corner accent on image */
.about-split__image-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--wbf-secondary);
  border-left: 4px solid var(--wbf-secondary);
  border-radius: var(--radius-lg) 0 0 0;
  z-index: 3;
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: -2px -2px 15px rgba(212, 175, 55, 0.2);
}

.about-split__image-wrapper:hover::before {
  width: 120px;
  height: 120px;
}

/* Inner border overlay */
.about-split__image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 2;
}

.about-split__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}

.about-split__image-wrapper:hover .about-split__image {
  transform: scale(1.06);
}

.about-split__content h2 {
  font-size: 2.75rem;
  color: var(--wbf-primary);
  margin-bottom: 1.5rem;
  font-weight: 800;
  position: relative;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Gold underline on about heading */
.about-split__content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 4px;
  margin-top: 1rem;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
  transition: width 0.5s var(--ease-out-expo);
}

.about-split__content:hover h2::after {
  width: 120px;
}


/* ── Card Grid (Programs & Content) ────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.premium-card {
  background: var(--wbf-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  top: 0;
}

/* Gold gradient line at top of each card */
.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  z-index: 3;
  transform: scaleX(0.15);
  transform-origin: center;
  transition: transform 0.5s var(--ease-out-expo);
}

/* On hover the gold line expands */
.premium-card:hover::before {
  transform: scaleX(1);
}

/* Gold border bottom on hover */
.premium-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 3;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s var(--ease-out-expo) 0.1s;
}

.premium-card:hover::after {
  transform: scaleX(1);
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.premium-card__image {
  height: 230px;
  overflow: hidden;
  position: relative;
}

/* Vignette overlay on card images */
.premium-card__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.2) 100%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.premium-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.premium-card:hover .premium-card__image img {
  transform: scale(1.1);
}

/* Subtle background pattern on card content */
.premium-card__content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.02'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.premium-card__category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wbf-accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.premium-card__category::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wbf-accent);
  flex-shrink: 0;
}

.premium-card__title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--wbf-text-dark);
  line-height: 1.3;
}

.premium-card__desc {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.premium-card__link {
  color: var(--wbf-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s var(--ease-out-expo);
  margin-top: auto;
  font-size: 0.95rem;
  gap: 0.5rem;
}

.premium-card__link::after {
  content: '→';
  transition: transform 0.3s var(--ease-out-expo);
  font-size: 1.1em;
}

.premium-card__link:hover {
  color: var(--wbf-secondary-dark);
  gap: 0.75rem;
}

.premium-card__link:hover::after {
  transform: translateX(4px);
}


/* ── Image Gallery ─────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 260px;
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo), filter 0.5s ease;
}

/* Gold overlay + zoom icon on hover */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(15, 81, 71, 0.3) 100%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none;
}

/* Gold border ring on hover */
.gallery-item::after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--wbf-white);
  border: 2px solid rgba(212, 175, 55, 0.8);
  border-radius: 50%;
  z-index: 3;
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
  text-align: center;
  line-height: 48px;
  backdrop-filter: blur(4px);
  background: rgba(212, 175, 55, 0.15);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}


/* ── Call to Action Bar ────────────────────────────────────────────────── */
.cta-bar {
  background: linear-gradient(135deg, var(--wbf-primary-dark) 0%, var(--wbf-primary) 30%, var(--wbf-primary-light) 60%, var(--wbf-primary) 100%);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  color: var(--wbf-white);
  padding: 5.5rem 2rem;
  text-align: center;
  border-radius: var(--radius-xl);
  margin: 5rem auto;
  max-width: 1200px;
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

/* Radial light halo */
.cta-bar::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 30%;
  width: 40%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Animated gold sparkle dot (top right) */
.cta-bar::after {
  content: '';
  position: absolute;
  top: 18%;
  right: 12%;
  width: 5px;
  height: 5px;
  background: var(--wbf-secondary);
  border-radius: 50%;
  z-index: 1;
  animation: floatParticle1 5s ease-in-out infinite 0.5s;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6),
    0 0 40px rgba(212, 175, 55, 0.2);
}

.cta-bar__inner {
  position: relative;
  z-index: 1;
}

/* Sparkle particle on inner (bottom left) */
.cta-bar__inner::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 8%;
  width: 4px;
  height: 4px;
  background: rgba(245, 230, 163, 0.9);
  border-radius: 50%;
  animation: floatParticle2 7s ease-in-out infinite 1s;
  box-shadow: 0 0 8px rgba(245, 230, 163, 0.5);
}

/* Another sparkle (bottom right) */
.cta-bar__inner::after {
  content: '';
  position: absolute;
  top: -5%;
  left: 15%;
  width: 3px;
  height: 3px;
  background: rgba(212, 175, 55, 0.7);
  border-radius: 50%;
  animation: floatParticle3 9s ease-in-out infinite 2s;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

.cta-bar h2 {
  font-size: 2.75rem;
  color: var(--wbf-white);
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  letter-spacing: -0.02em;
}

.cta-bar p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-bar .btn-premium {
  box-shadow: none;
}

.cta-bar .btn-premium.gold {
  box-shadow: var(--shadow-gold);
}

/* ── Homepage Events Section ────────────────────────────────────────────── */

.home-events-grid {
  display: grid;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.home-event-card {
  display: grid;
  grid-template-columns: 72px 1fr 28px;
  gap: 16px;
  align-items: center;
  background: var(--wbf-white);
  border: 1px solid rgba(216, 225, 232, 0.7);
  border-radius: 16px;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
}

.home-event-card:hover {
  transform: translateX(6px);
  border-color: rgba(20, 108, 95, 0.2);
  box-shadow: var(--shadow-md);
}

.home-event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wbf-primary), var(--wbf-primary-dark));
  color: #fff;
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  min-width: 72px;
  min-height: 72px;
}

.home-event-card__month {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  line-height: 1;
}

.home-event-card__day {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  margin-top: 2px;
  letter-spacing: -0.03em;
}

.home-event-card__body {
  min-width: 0;
}

.home-event-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--wbf-text-dark);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.home-event-card__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--wbf-text-muted);
}

.home-event-card__arrow {
  font-size: 1.2rem;
  color: var(--wbf-primary);
  font-weight: 800;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease-out-expo);
}

.home-event-card:hover .home-event-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.home-event-skeleton {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(216, 225, 232, 0.6);
  border-radius: 16px;
  padding: 18px 20px;
}

.section-footer-link {
  text-align: center;
  margin-top: 32px;
}


/* ── Responsive Overrides ──────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 992px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-premium__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }

  .gallery-item--large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .stat-glass__card + .stat-glass__card {
    border-left: none;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
  }

  .stats-glass__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-bar h2 {
    font-size: 2.25rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-premium {
    min-height: 85vh;
    padding-top: 100px;
  }

  .hero-premium__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-premium__lede {
    font-size: 1.05rem;
  }

  .hero-premium__actions {
    flex-direction: row;
    align-items: center;
  }

  .btn-premium {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    font-size: 0.92rem;
  }

  .stats-glass {
    margin-top: 2rem;
    padding: 0 1rem;
  }

  .stats-glass__grid {
    padding: 0;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-glass__card {
    padding: 2rem 1.5rem;
  }

  .stat-glass__card + .stat-glass__card {
    border-left: none;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
  }

  .stat-glass__number {
    font-size: 2.5rem;
  }

  .section-premium {
    padding: 4.5rem 1rem;
  }

  .section-header__title {
    font-size: 2rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .about-split {
    gap: 2rem;
  }

  .about-split__content h2 {
    font-size: 2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 0.75rem;
  }

  .cta-bar {
    padding: 3.5rem 1.5rem;
    margin: 3rem 1rem;
    border-radius: var(--radius-lg);
  }

  .cta-bar h2 {
    font-size: 1.75rem;
  }

  .cta-bar p {
    font-size: 1rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-premium {
    min-height: 80vh;
  }

  .hero-premium__title {
    font-size: 1.75rem;
  }

  .hero-premium__eyebrow {
    font-size: 0.7rem;
    padding: 0.4rem 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .section-header__title {
    font-size: 1.65rem;
  }

  .stat-glass__number {
    font-size: 2rem;
  }
}


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

  html {
    scroll-behavior: auto;
  }

  .hero-premium__bg {
    animation: none;
    transform: scale(1.02);
  }

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


/* ── Additional Premium Elements ──────────────────────────────────────── */

/* Gold Text Gradient */
.gold-text-gradient {
  background: var(--gold-gradient-text, linear-gradient(135deg, #d4af37, #f5e6a3, #d4af37));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Eyebrow Diamond Accents */
.eyebrow-diamond {
  font-size: 0.6em;
  color: var(--wbf-secondary);
  margin: 0 0.4em;
  opacity: 0.7;
}

/* Button Icon */
.btn-icon {
  margin-right: 0.5em;
  font-size: 0.9em;
}

/* Link Arrow */
.link-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-premium, ease);
}
.premium-card__link:hover .link-arrow {
  transform: translateX(6px);
}

/* Scroll Hint Arrow */
.hero-premium__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(10px); opacity: 1; }
}

/* Hero Particles (CSS-only decorative dots) */
.hero-premium__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-premium__particles::before,
.hero-premium__particles::after {
  content: '✦';
  position: absolute;
  color: rgba(212, 175, 55, 0.3);
  font-size: 12px;
  animation: floatParticle 6s infinite ease-in-out;
}
.hero-premium__particles::before {
  top: 30%;
  right: 15%;
  animation-delay: 0s;
}
.hero-premium__particles::after {
  top: 60%;
  right: 25%;
  font-size: 8px;
  animation-delay: 3s;
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

/* About Gold Corner Accent */
.about-split__gold-accent {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--wbf-secondary);
  border-left: 3px solid var(--wbf-secondary);
  border-radius: 4px 0 0 0;
  transition: all 0.4s var(--ease-premium, ease);
  pointer-events: none;
  z-index: 2;
}
.about-split__image-wrapper {
  position: relative;
}
.about-split__image-wrapper:hover .about-split__gold-accent {
  width: 90px;
  height: 90px;
  border-color: var(--wbf-secondary-light, #e6c960);
}

/* Feature Badges */
.about-split__features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(20, 108, 95, 0.06);
  border: 1px solid rgba(20, 108, 95, 0.12);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wbf-primary);
  transition: all 0.3s;
}
.feature-badge:hover {
  background: rgba(20, 108, 95, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 108, 95, 0.1);
}
.feature-badge__icon {
  font-size: 1.1rem;
}

/* Section Tag */
.section-tag {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--wbf-secondary);
  margin-bottom: 0.75rem;
  padding: 0.5rem 1.15rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.section-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wbf-secondary);
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
  flex-shrink: 0;
}

/* Premium Card Image Overlay (Vignette) */
.premium-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Gallery Item Overlay */
.gallery-item {
  position: relative;
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease-premium, ease);
  border-radius: inherit;
  z-index: 1;
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item__label {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Testimonial Strip */
.testimonial-strip {
  background: linear-gradient(135deg, var(--wbf-primary-dark) 0%, var(--wbf-primary) 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.testimonial-strip::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 5%;
  font-size: 20rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.testimonial-strip__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-strip__quote p {
  font-size: 1.35rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  margin: 0 0 2rem;
  font-weight: 400;
}
.testimonial-strip__quote footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.testimonial-strip__quote footer strong {
  color: var(--wbf-secondary);
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
}
.testimonial-strip__quote footer span {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-style: normal;
}

/* CTA Bar Sparkle Accents */
.cta-bar__sparkle {
  position: absolute;
  font-size: 2rem;
  color: rgba(212, 175, 55, 0.3);
  animation: sparkleFloat 4s ease-in-out infinite;
  top: 20%;
  left: 8%;
}
.cta-bar__sparkle--right {
  left: auto;
  right: 8%;
  top: 30%;
  animation-delay: 2s;
}
@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-12px) scale(1.2); opacity: 0.7; }
}

/* CTA Bar secondary button override for dark context */
.cta-bar .btn-premium.secondary {
  background: transparent;
}
.cta-bar .btn-premium.secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .testimonial-strip {
    padding: 3rem 1.5rem;
  }
  .testimonial-strip__quote p {
    font-size: 1.1rem;
  }
  .hero-premium__scroll-hint {
    display: none;
  }
  .about-split__features {
    justify-content: center;
  }
  .cta-bar__sparkle {
    display: none;
  }
}



  .hero-premium {
    min-height: 74svh;
    padding: 94px 18px 54px;
  }

  .hero-premium__title {
    font-size: clamp(2rem, 9vw, 4rem);
    line-height: .98;
  }

  .hero-premium__lede {
    max-width: 34rem;
    font-size: 1.2rem;
    line-height: 1.58;
  }

  .hero-premium__actions {
    gap: .7rem;
    flex-wrap: wrap;
    
  }

  .btn-premium {
    flex: 0 1 auto;
    min-height: 42px;
    min-width: min(42vw, 178px);
    padding: .78rem 1rem;
    border-radius: 999px;
    font-size: .82rem;
    letter-spacing: .02em;
  }

  .section-premium {
    padding: 3.4rem 1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header__title {
    font-size: clamp(1.58rem, 7vw, 2.08rem);
    line-height: 1.08;
  }

  .section-header__subtitle,
  .about-split__content p,
  .premium-card__desc,
  .home-event-card__meta {
    font-size: .92rem;
    line-height: 1.55;
  }

  .stats-glass {
    margin-top: 1.2rem;
    padding: 0 .8rem;
  }

  .stats-glass__grid {
    border-radius: 22px;
  }

  .stat-glass__card {
    padding: 1.45rem 1rem;
  }

  .stat-glass__number {
    font-size: clamp(1.72rem, 8vw, 2.35rem);
  }

  .stat-glass__label {
    font-size: .8rem;
  }

  .stat-glass__desc {
    font-size: .78rem;
    line-height: 1.45;
  }

  .about-split {
    gap: 1.6rem;
  }

  .about-split__image {
    border-radius: 22px;
  }

  .about-split__content h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .card-grid {
    gap: 1.05rem;
  }

  .premium-card {
    border-radius: 20px;
  }

  .premium-card__image-wrapper {
    height: clamp(170px, 52vw, 230px);
  }

  .premium-card__content {
    padding: 1.15rem;
  }

  .premium-card__title {
    font-size: 1.05rem;
  }

  .home-event-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .home-event-card__arrow {
    display: none;
  }

  .cta-bar {
    padding: 2.4rem 1.1rem;
    margin: 2rem .75rem;
    border-radius: 24px;
  }

  .cta-bar h2 {
    font-size: clamp(1.45rem, 8vw, 1.95rem);
  }
}

@media (max-width: 390px) {


  .hero-premium__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(250px, 100%);
    margin-inline: auto;
  }

  .btn-premium {
    min-width: 0;
    width: 100%;
  }
}

/* ── Print Styles ──────────────────────────────────────────────────────── */
@media print {
  body::after,
  .hero-premium::before,
  .hero-premium::after,
  .hero-premium__overlay,
  .cta-bar::before,
  .cta-bar::after {
    display: none !important;
  }

  .hero-premium {
    min-height: auto;
    padding: 2rem;
  }

  .stats-glass {
    margin-top: 1rem;
  }

  .premium-card {
    break-inside: avoid;
    box-shadow: 0 0 0 1px #ddd;
  }
}
