/* ═══════════════════════════════════════════════════════════════
   KARINE YENGO — ELEVATED CLARITY · 2025 REDESIGN
   Palette : Midnight Navy · Warm Gold · Ivory Cream
   Typeface: Playfair Display · Inter
═══════════════════════════════════════════════════════════════ */

:root {
  --navy:       #0C1A35;
  --navy-mid:   #152643;
  --navy-lt:    #1E3460;
  --gold:       #C9932A;
  --gold-lt:    #E4B84E;
  --gold-pale:  #F0D498;
  --gold-dk:    #9E7220;
  --gold-glow:  rgba(201,147,42,0.14);
  --cream:      #FDFAF5;
  --cream-dk:   #F2E8D5;
  --cream-bd:   #E5D8C0;
  --dark:       #070E1D;
  --text:       #181E30;
  --gray:       #5A6880;
  --gray-lt:    #94A3B8;
  --white:      #FFFFFF;
  --success:    #10B981;
  --error:      #EF4444;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;

  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  36px;

  --shadow:      0 4px 24px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.11);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 32px rgba(201,147,42,0.3);

  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --spring:     all 0.45s cubic-bezier(0.34,1.56,0.64,1);
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section      { padding: 104px 0; }
.section-light { background: var(--cream); }
.section-dark  { background: var(--navy); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(201,147,42,0.38);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(201,147,42,0.5);
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-gold);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Section Headers ──────────────────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 7px 18px;
  border: 1px solid rgba(201,147,42,0.3);
  border-radius: 50px;
  margin-bottom: 20px;
  background: rgba(201,147,42,0.06);
  cursor: default;
  transition: var(--spring);
}
.section-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.section-tag:hover { transform: scale(1.05); }

.section-tag.light {
  color: var(--gold-lt);
  border-color: rgba(228,184,78,0.35);
  background: rgba(228,184,78,0.07);
}
.section-tag.light::before { background: var(--gold-lt); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray);
  max-width: 560px;
}
.section-subtitle.light { color: rgba(255,255,255,0.5); }

.section-header.centered { text-align: center; margin-bottom: 60px; }
.section-header.centered .section-subtitle { margin: 0 auto; }

.gold-text { color: var(--gold); }

/* ── NAVBAR ───────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(12,26,53,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-accent { color: var(--gold-lt); }

.nav-links { display: flex; align-items: center; gap: 2px; }

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold-lt);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.nav-link:hover::after, .nav-link.active::after {
  left: 16px; right: 16px;
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-mobile-header { display: none; }
.nav-overlay { display: none; }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(201,147,42,0.11) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(21,38,67,0.9) 0%, transparent 55%),
    linear-gradient(155deg, var(--navy) 0%, var(--dark) 100%);
}
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-content { order: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  padding: 8px 20px;
  border: 1px solid rgba(228,184,78,0.3);
  border-radius: 50px;
  margin-bottom: 12px;
  background: rgba(228,184,78,0.06);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: badge-pulse 2.2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.65); }
}

/* Gold rule between badge and title */
.hero-divider {
  width: 44px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 700;
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,0.65); }

.hero-subtitle {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(255,255,255,0.52);
  max-width: 460px;
  margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero image column */
.hero-image-wrap {
  position: relative;
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  z-index: 2;
  width: 390px;
  height: 490px;
  border-radius: 200px 200px 160px 160px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,147,42,0.2);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.96) contrast(1.04);
}

/* Gold frame offset behind photo */
.hero-accent-circle {
  position: absolute;
  width: 390px;
  height: 490px;
  border-radius: 200px 200px 160px 160px;
  border: 1.5px solid rgba(201,147,42,0.35);
  top: 22px;
  left: calc(50% - 195px + 22px);
  z-index: 1;
}

/* Dot grid decoration */
.hero-accent-dots {
  position: absolute;
  bottom: 30px;
  right: -16px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(circle, rgba(201,147,42,0.45) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  z-index: 0;
}

/* Floating mini-stat card */
.hero-stat-card {
  position: absolute;
  bottom: 60px;
  left: -12px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 18px 22px;
  z-index: 4;
}
.hero-stat-card .num {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.hero-stat-card .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.48);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(201,147,42,0.7), transparent);
  animation: scroll-drop 2.2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* ── ABOUT ────────────────────────────────────────────────────────────────── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-col { position: relative; }

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-image-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(145deg, rgba(201,147,42,0.5), transparent 50%);
  z-index: -1;
}

.about-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-social-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-bd);
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 2;
}
.about-social-card p {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-lt);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--white);
  transition: var(--spring);
}
.social-link.instagram { background: linear-gradient(135deg, #F09433, #E6683C 30%, #DC2743 60%, #CC2366 80%, #BC1888); }
.social-link.linkedin  { background: #0A66C2; }
.social-link.email     { background: var(--navy); }
.social-link.whatsapp  { background: #25D366; }
.social-link:hover { transform: scale(1.22) rotate(-6deg); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.about-content-col { padding-right: 16px; }

.about-lead {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-body {
  font-size: 16px;
  line-height: 1.82;
  color: var(--gray);
  margin-bottom: 18px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dk);
  transition: var(--transition);
}
.pillar:hover {
  border-color: rgba(201,147,42,0.28);
  background: rgba(201,147,42,0.04);
  transform: translateX(5px);
  box-shadow: var(--shadow);
}
.pillar-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt);
  font-size: 17px;
  flex-shrink: 0;
  transition: var(--spring);
}
.pillar:hover .pillar-icon { transform: scale(1.12) rotate(-6deg); }
.pillar h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.pillar p  { font-size: 13px; color: var(--gray); line-height: 1.55; margin: 0; }

/* ── SERVICES ─────────────────────────────────────────────────────────────── */
.services { background: var(--navy); }

/* Override dark subtitle */
.services .section-subtitle { color: rgba(255,255,255,0.48); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 38px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, background 0.3s ease, border-color 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 64px rgba(0,0,0,0.45);
  border-color: rgba(201,147,42,0.22);
}
.service-card:hover::before { opacity: 1; }

.featured-service {
  background: linear-gradient(145deg, rgba(201,147,42,0.11) 0%, rgba(201,147,42,0.03) 100%);
  border-color: rgba(201,147,42,0.28);
}
.featured-service::before { opacity: 1; }

.service-badge {
  position: absolute;
  top: 22px; right: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,147,42,0.18), rgba(201,147,42,0.04));
  border: 1px solid rgba(201,147,42,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold-lt);
  margin-bottom: 26px;
  transition: var(--spring);
}
.service-card:hover .service-icon {
  transform: scale(1.12) rotate(-6deg);
  background: linear-gradient(135deg, rgba(201,147,42,0.28), rgba(201,147,42,0.1));
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card > p {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255,255,255,0.48);
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 30px;
}
.service-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  padding-left: 17px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.65;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-lt);
  transition: var(--transition);
}
.service-cta i { transition: transform 0.2s ease; }
.service-cta:hover { gap: 13px; }
.service-cta:hover i { transform: translateX(5px); }

/* ── BOOK ─────────────────────────────────────────────────────────────────── */
.book { background: var(--cream); }

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 88px;
  align-items: center;
}

.book-cover-col { display: flex; justify-content: center; }

.book-cover-wrap {
  position: relative;
  transition: var(--spring);
}
.book-cover-wrap:hover { transform: translateY(-14px) rotate(-2deg) scale(1.03); }

.book-cover {
  position: relative;
  z-index: 2;
  border-radius: 6px 18px 18px 6px;
  overflow: hidden;
  box-shadow:
    -6px 12px 0 rgba(0,0,0,0.06),
    0 32px 72px rgba(0,0,0,0.25),
    inset -3px 0 8px rgba(0,0,0,0.12);
}
.book-img {
  width: 270px;
  height: auto;
  display: block;
  border-radius: 6px 18px 18px 6px;
}

.book-shadow {
  position: absolute;
  bottom: -20px;
  left: 12px; right: -10px;
  height: 36px;
  background: rgba(0,0,0,0.18);
  filter: blur(18px);
  border-radius: 50%;
}

.book-content-col { padding: 16px 0; }

.book-description {
  font-size: 16px;
  line-height: 1.82;
  color: var(--gray);
  margin-bottom: 18px;
}

.book-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.book-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--spring);
  cursor: default;
}
.book-highlight i { color: var(--gold); }
.book-highlight:hover {
  transform: scale(1.07);
  border-color: rgba(201,147,42,0.3);
  background: rgba(201,147,42,0.05);
}

.book-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.book-availability { font-size: 14px; color: var(--gray-lt); }

/* ── EVENTS ───────────────────────────────────────────────────────────────── */
.events { background: var(--white); }

.events-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  background: var(--cream);
  border: 1px solid var(--cream-bd);
  transition: var(--spring);
}
.filter-btn:hover { transform: scale(1.06); }
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.events-loading {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 64px;
  color: var(--gray-lt);
  font-size: 14px;
}
.spinner {
  width: 36px; height: 36px;
  border: 2.5px solid var(--cream-dk);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dk);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.event-card:hover {
  transform: translateY(-9px) scale(1.015);
  box-shadow: 0 22px 56px rgba(12,26,53,0.14);
  border-color: rgba(201,147,42,0.22);
}

/* Shared image container (rendered by JS as .event-card-image) */
.event-card-image {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,147,42,0.28);
  font-size: 42px;
}
.event-card-image img,
.event-card-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* YouTube / embed thumbnail */
.embed-thumb {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}
.embed-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  transition: background 0.25s ease;
}
.embed-thumb-overlay i {
  font-size: 48px;
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.embed-thumb-overlay span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}
.event-card:hover .embed-thumb-overlay { background: rgba(0,0,0,0.22); }

/* Uploaded video play overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.25s ease;
}
.play-overlay i { font-size: 48px; color: var(--white); filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.event-card:hover .play-overlay { background: rgba(0,0,0,0.18); }

/* Legacy selectors kept for safety */
.event-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.event-card-img-placeholder {
  width: 100%;
  height: 210px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: rgba(201,147,42,0.28);
}

.event-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--gold-glow);
  color: var(--gold-dk);
  border: 1px solid rgba(201,147,42,0.2);
  margin-bottom: 10px;
}

.event-card-body { padding: 20px 20px 0; flex: 1; }
.event-card-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}
.event-card-meta { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.event-meta-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-lt); }
.event-meta-item i { color: var(--gold); width: 14px; }
.event-card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Share bar */
.event-share-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
  background: rgba(253,250,245,0.7);
  margin-top: 16px;
}
.share-label { font-size: 11px; color: var(--gray-lt); font-weight: 500; margin-right: 4px; white-space: nowrap; }
.share-label i { margin-right: 3px; }
.share-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.share-btn:hover { transform: scale(1.22); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.share-wa   { background: #25D366; color: #fff; }
.share-ig   { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }
.share-igs  { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; font-size: 11px; width: auto; border-radius: 14px; padding: 0 9px; gap: 3px; height: 30px; }
.story-badge { font-size: 10px; font-weight: 700; }
.share-copy { background: var(--navy); color: #fff; }

/* Modal share */
.modal-share-bar { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.07); }
.modal-share-bar .share-label { display: block; font-size: 11px; color: var(--gray-lt); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.modal-share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.modal-share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 20px; border: none;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.modal-share-btn:hover { opacity: .85; transform: translateY(-2px); }
.modal-share-btn.share-wa   { background: #25D366; color: #fff; }
.modal-share-btn.share-ig   { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }
.modal-share-btn.share-igs  { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; }
.modal-share-btn.share-copy { background: var(--navy); color: #fff; }

#shareToast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy); color: #fff;
  padding: 12px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 500;
  z-index: 9999; opacity: 0;
  transition: opacity .3s, transform .3s;
  white-space: nowrap; max-width: 90vw;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
#shareToast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.events-footer { text-align: center; margin-top: 52px; }
.no-events { grid-column: 1/-1; text-align: center; padding: 60px; color: var(--gray-lt); font-size: 15px; }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────────── */
.testimonials { background: var(--navy); }

/* Section tag / title overrides for dark bg (no .light in HTML) */
.testimonials .section-tag {
  color: var(--gold-lt);
  border-color: rgba(228,184,78,0.35);
  background: rgba(228,184,78,0.07);
}
.testimonials .section-tag::before { background: var(--gold-lt); }
.testimonials .section-title { color: var(--white); }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, background 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-7px) scale(1.015);
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,147,42,0.2);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 18px; left: 28px;
  font-family: var(--font-serif);
  font-size: 76px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
}

.testimonial-stars {
  display: flex; gap: 4px;
  color: var(--gold); font-size: 13px;
  margin-bottom: 18px; padding-top: 24px;
}
.testimonial-text {
  font-size: 15px; line-height: 1.82;
  color: rgba(255,255,255,0.68);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-lt));
  border: 2px solid rgba(201,147,42,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 16px; font-weight: 700;
  color: var(--gold-lt); flex-shrink: 0;
}
.author-name  { font-size: 14px; font-weight: 600; color: var(--white); }
.author-title { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 2px; }

/* ── CONTACT ──────────────────────────────────────────────────────────────── */
/* section-dark class is on contact in HTML, kept dark */
.contact.section-dark { background: var(--navy); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  font-size: 16px; line-height: 1.78;
  color: rgba(255,255,255,0.52);
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }

.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: rgba(201,147,42,0.28);
  background: rgba(255,255,255,0.06);
  transform: translateX(5px);
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,147,42,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px; flex-shrink: 0;
  border: 1px solid rgba(201,147,42,0.18);
  transition: var(--transition);
}
.contact-item:hover .contact-icon { background: rgba(201,147,42,0.18); }
.contact-label { display: block; font-size: 10px; color: rgba(255,255,255,0.35); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.contact-value { font-size: 15px; font-weight: 500; color: var(--white); transition: var(--transition); }
.contact-value:hover { color: var(--gold-lt); }

.contact-social { display: flex; flex-direction: column; gap: 10px; }
.contact-social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.58);
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
  width: fit-content;
}
.contact-social-btn:hover {
  color: var(--gold-lt);
  border-color: rgba(201,147,42,0.32);
  background: rgba(201,147,42,0.05);
  transform: translateX(5px);
}

/* Contact form card */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,147,42,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select   { cursor: pointer; }

.form-message {
  margin-top: 12px; padding: 12px 16px; border-radius: 10px;
  font-size: 14px; display: none;
}
.form-message.success { background: rgba(16,185,129,0.08); color: var(--success); display: block; border: 1px solid rgba(16,185,129,0.2); }
.form-message.error   { background: rgba(239,68,68,0.08); color: var(--error); display: block; border: 1px solid rgba(239,68,68,0.2); }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--gold-lt); }

.footer-brand p {
  font-size: 14px; line-height: 1.78;
  color: rgba(255,255,255,0.38);
  margin-bottom: 28px; max-width: 280px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.38);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: var(--spring);
}
.footer-social a:hover {
  transform: scale(1.22) rotate(8deg);
  background: var(--gold);
  color: var(--white);
}

.footer-links-col h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 14px; color: rgba(255,255,255,0.48);
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links-col a:hover { color: var(--gold-lt); transform: translateX(4px); }

.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,211,102,0.07);
  color: #4ADE80;
  padding: 10px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 600;
  margin-top: 20px; transition: var(--spring);
  border: 1px solid rgba(37,211,102,0.14);
}
.footer-wa-btn:hover { transform: scale(1.06); background: rgba(37,211,102,0.14); }
.footer-contact-quick { margin-top: 4px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-size: 13px; color: rgba(255,255,255,0.22);
}
.admin-link { color: rgba(255,255,255,0.1); font-size: 11px; transition: var(--transition); }
.admin-link:hover { color: var(--gold); }

/* ── MODAL ────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(7,14,29,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 660px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; z-index: 10; transition: var(--transition);
}
.modal-close:hover { background: var(--navy); color: var(--white); }

.modal-image-wrap img {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-content { padding: 32px; }
.modal-content .event-type-badge { margin-bottom: 12px; }
.modal-content h3 { font-family: var(--font-serif); font-size: 26px; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.modal-content .event-card-meta { margin-bottom: 16px; }
.modal-content p { font-size: 15px; line-height: 1.82; color: var(--gray); }

/* ── FADE-IN ──────────────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero { padding: 100px 24px 80px; }
  .hero-container { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero-content { order: 1; }
  .hero-image-wrap { order: 0; }
  .hero-actions { justify-content: center; }
  .hero-subtitle { margin: 0 auto 44px; }
  .hero-image-frame { width: 280px; height: 360px; margin: 0 auto; border-radius: 140px 140px 120px 120px; }
  .hero-accent-circle { left: calc(50% - 140px + 18px); width: 280px; height: 360px; border-radius: 140px 140px 120px 120px; }
  .hero-stat-card { display: none; }
  .hero-accent-dots { right: -4px; bottom: 10px; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image-col { position: static; }
  .about-social-card { position: relative; bottom: auto; right: auto; margin-top: 20px; }
  .about-content-col { padding-right: 0; }

  .book-grid { grid-template-columns: 1fr; gap: 52px; text-align: center; }
  .book-cover-col { display: flex; justify-content: center; }
  .book-highlights { justify-content: center; }
  .book-actions { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 52px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .hamburger { display: flex; }

  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav-overlay.open { display: block; opacity: 1; }

  .nav-links {
    position: fixed; top: 0; left: 0;
    width: min(260px, 82vw); height: 100vh;
    background: #1B2A4A;
    flex-direction: column; align-items: stretch;
    padding: 0 0 40px; gap: 0;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 12px 0 60px rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }

  .nav-mobile-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 8px;
    list-style: none;
  }
  .nav-mobile-subtitle {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .nav-close {
    background: rgba(255,255,255,0.08);
    border: none;
    color: var(--white);
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .nav-close:hover { background: rgba(255,255,255,0.18); }

  .nav-section-label {
    list-style: none;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    padding: 8px 16px 4px;
    margin-top: 8px;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 14px;
    margin: 1px 8px;
    width: calc(100% - 16px);
    border-radius: 10px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.01em;
    position: relative;
  }
  .nav-link i { width: 18px; text-align: center; font-size: 14px; }
  .nav-link:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
  }
  .nav-link.active {
    background: rgba(196,151,79,0.15);
    color: #E8C483;
  }
  .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0; top: 6px; bottom: 6px;
    width: 3px;
    background: #C4974F;
    border-radius: 0 3px 3px 0;
  }
  .nav-link::after { display: none; }

  .hero-image-frame { width: 220px; height: 280px; border-radius: 110px 110px 90px 90px; }
  .hero-accent-circle { left: calc(50% - 110px + 14px); width: 220px; height: 280px; border-radius: 110px 110px 90px 90px; }

  .services-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .about-social-card { flex-direction: column; text-align: center; gap: 14px; }
  .social-links { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 36px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { padding: 14px 28px; font-size: 14px; }
  .book-actions { flex-direction: column; align-items: center; }
}

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