/* =============================================
   ROOT VARIABLES & RESET
   ============================================= */
:root {
  --bg:        #1a1f2e;
  --bg2:       #1f2640;
  --bg3:       #252d4a;
  --gold:      #c9a84c;
  --gold2:     #e8c97e;
  --gold-glow: rgba(201,168,76,0.18);
  --teal:      #2dd4bf;
  --teal2:     #5eead4;
  --teal-glow: rgba(45,212,191,0.15);
  --text:      #f0ede8;
  --muted:     #8a8a9a;
  --border:    rgba(201,168,76,0.15);
  --radius:    16px;
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.7; overflow-x: hidden; }
body::-webkit-scrollbar { width: 4px; }
body::-webkit-scrollbar-track { background: var(--bg); }
body::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 5%; transition: all .4s ease; }
.nav.scrolled { background: rgba(10,10,15,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 1rem 5%; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; letter-spacing: 0.02em; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); transition: color .3s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--gold) !important; color: var(--bg) !important; padding: 0.5rem 1.4rem !important; border-radius: 50px !important; font-weight: 500 !important; transition: all .3s !important; }
.nav-cta:hover { background: var(--gold2) !important; transform: translateY(-1px); box-shadow: 0 8px 24px var(--gold-glow); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: .3s; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 99; align-items: center; justify-content: center; flex-direction: column; }
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 1.5rem 0; }
.mobile-menu ul li a { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-style: italic; color: var(--text); }

/* =============================================
   HERO
   ============================================= */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 0 5%; padding-top: 6rem; position: relative; overflow: hidden; gap: 4rem; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25; animation: orb-float 8s ease-in-out infinite; }
.orb1 { width: 500px; height: 500px; background: radial-gradient(circle, #c9a84c, transparent); top: -100px; right: -100px; animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; background: radial-gradient(circle, #2dd4bf, transparent); bottom: 0; left: 0; animation-delay: 3s; }
.orb3 { width: 300px; height: 300px; background: radial-gradient(circle, #6366f1, transparent); top: 50%; left: 50%; animation-delay: 5s; opacity: 0.15; }
@keyframes orb-float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
.grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 2; animation: fade-up 1s ease both; }
.hero-badge { display: inline-block; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); color: var(--gold2); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 2rem; animation: fade-up 1s .1s ease both; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.2rem; }
.hero-title .line1, .hero-title .line2, .hero-title .line3 { display: block; animation: fade-up 1s ease both; }
.hero-title .line1 { animation-delay: 0.2s; }
.hero-title .line2 { animation-delay: 0.35s; -webkit-text-stroke: 1px var(--gold); color: transparent; }
.hero-title .line3 { animation-delay: 0.5s; }
.hero-title em { font-style: italic; color: var(--gold); -webkit-text-stroke: 0; }
.hero-subtitle { font-size: 0.9rem; color: var(--teal); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.5rem; animation: fade-up 1s .55s ease both; }
.hero-desc { color: var(--muted); font-size: 1rem; max-width: 420px; line-height: 1.8; margin-bottom: 2.5rem; animation: fade-up 1s .65s ease both; }
.hero-actions { display: flex; gap: 1.2rem; align-items: center; animation: fade-up 1s .75s ease both; }

.btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #0a0a0f; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em; padding: 0.85rem 1.8rem; border-radius: 50px; transition: all .3s; }
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201,168,76,0.35); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { font-size: 0.88rem; letter-spacing: 0.04em; color: var(--muted); border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: all .3s; }
.btn-ghost:hover { color: var(--text); border-color: var(--text); }

.hero-image-wrap { position: relative; z-index: 2; display: flex; justify-content: center; animation: fade-up 1s .3s ease both; }
.image-frame { position: relative; width: 340px; height: 440px; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.image-placeholder { width: 100%; height: 100%; background: linear-gradient(145deg, #131325, #0f1520); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--muted); }
.image-decor { position: absolute; inset: -2px; border-radius: 26px; border: 1px solid transparent; background: linear-gradient(135deg, rgba(201,168,76,0.4), transparent, rgba(45,212,191,0.2)) border-box; -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); -webkit-mask-composite: destination-out; mask-composite: exclude; pointer-events: none; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 0.75rem; background: rgba(15,15,26,0.92); backdrop-filter: blur(16px); border: 1px solid var(--border); border-radius: 14px; padding: 0.75rem 1.2rem; animation: float-card 4s ease-in-out infinite; }
.card1 { bottom: 40px; left: -60px; animation-delay: 0s; }
.card2 { top: 40px; right: -50px; animation-delay: 2s; }
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.card-icon { font-size: 1.4rem; }
.card-num { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); line-height: 1; font-weight: 600; }
.card-label { font-size: 0.7rem; color: var(--muted); }

/* =============================================
   SECTION SHARED
   ============================================= */
.section { padding: 7rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); border-left: 2px solid var(--teal); padding-left: 0.8rem; margin-bottom: 1.2rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 3rem; }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.center { text-align: center; }

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: center; }
.about-text p { color: var(--muted); line-height: 1.9; margin-bottom: 1.2rem; font-size: 0.97rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.about-tags span { font-size: 0.9rem; padding: 0.4rem 1rem; border-radius: 50px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); color: var(--gold2); letter-spacing: 0.04em; transition: all .3s; }
.about-tags span:hover { background: rgba(201,168,76,0.15); transform: translateY(-1px); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.stat-box { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center; transition: all .35s; position: relative; overflow: hidden; }
.stat-box::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--teal)); transform: scaleX(0); transition: transform .4s; }
.stat-box:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-4px); }
.stat-box:hover::before { transform: scaleX(1); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--gold); font-weight: 600; line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; }

/* =============================================
   ACHIEVEMENTS (TIMELINE)
   ============================================= */
.achievements { background: var(--bg); }
.timeline { position: relative; max-width: 750px; margin: 0 auto; padding: 2rem 0; }
.timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 1px; top: 0; bottom: 0; background: linear-gradient(to bottom, transparent, var(--gold), transparent); }
.timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 2rem; margin-bottom: 3rem; align-items: start; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-dot { grid-column: 2; }
.timeline-dot { width: 14px; height: 14px; background: var(--gold); border: 3px solid var(--bg); box-shadow: 0 0 0 1px var(--gold), 0 0 20px rgba(201,168,76,0.4); margin: 0 auto; margin-top: 0.4rem; transform: rotate(45deg); }
.timeline-content { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.6rem; transition: all .3s; }
.timeline-content:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }
.timeline-year { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--teal); text-transform: uppercase; margin-bottom: 0.4rem; }
.timeline-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--text); margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fa-solid { color: var(--gold); }
.service-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.2rem 1.8rem; transition: all .35s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, var(--gold-glow), transparent 60%); opacity: 0; transition: opacity .4s; }
.service-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.service-card:hover::after { opacity: 1; }
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--text); margin-bottom: 0.7rem; }
.service-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.75; }

/* =============================================
   EVENT — FULLY UPDATED
   ============================================= */
.event { position: relative; overflow: hidden; background: var(--bg); }
.event-bg { position: absolute; inset: 0; pointer-events: none; }
.event-orb1, .event-orb2 { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.2; }
.event-orb1 { width: 600px; height: 600px; background: radial-gradient(circle, #c9a84c, transparent); top: -200px; left: -100px; }
.event-orb2 { width: 500px; height: 500px; background: radial-gradient(circle, #2dd4bf, transparent); bottom: -100px; right: 0; }

.event-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.event-badge { display: inline-block; background: rgba(45,212,191,0.1); border: 1px solid rgba(45,212,191,0.3); color: var(--teal); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1.2rem; border-radius: 50px; margin-bottom: 1.5rem; }

.event-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; letter-spacing: -0.02em; margin-bottom: 1rem; }
.event-title em { color: var(--gold); font-style: italic; }

.event-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--gold2); margin-bottom: 1.5rem; }

.event-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 100%;
  text-align: left;
  margin-bottom: 2.5rem;
}

/* POSTER + VIDEO — stacked vertically, full width, proper sizing */
.event-media {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0 3rem;
}
.event-media-item { position: relative; width: 100%; }
.event-media-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.event-media-item video {
  width:auto;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.25);
  background: var(--bg3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.media-caption { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 0.6rem; letter-spacing: 0.05em; }

/* EVENT DETAILS */
.event-details { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 3rem; }
.event-detail { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1rem; display: flex; align-items: flex-start; gap: 0.8rem; text-align: left; }
.detail-icon { font-size: 1.2rem; color: var(--gold); margin-top: 0.1rem; flex-shrink: 0; }
.detail-label { font-size: 0.7rem; color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.25rem; }
.detail-value { font-size: 0.88rem; color: var(--text); font-weight: 500; line-height: 1.5; }

/* GUESTS */
.event-guests { margin: 0 0 3rem; }
.guests-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--text); margin-bottom: 1.5rem; text-align: center; }
.guests-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.guest-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem 1rem; text-align: center; transition: all 0.3s; }
.guest-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.highlight-card { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.35); }
.guest-role { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.4rem; }
.guest-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--gold2); font-weight: 400; margin-bottom: 0.4rem; line-height: 1.3; }
.highlight-card .guest-name { font-size: 1.2rem; color: var(--gold); }
.guest-detail { font-size: 0.72rem; color: var(--muted); line-height: 1.5; }

/* COUNTDOWN */
.countdown { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.count-item { text-align: center; }
.count-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5rem); font-weight: 300; color: var(--gold); line-height: 1; display: block; min-width: 80px; }
.count-label { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.3rem; }
.count-sep { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: var(--gold); opacity: 0.4; margin-bottom: 1.2rem; }

.btn-event { display: inline-flex; align-items: center; gap: 0.6rem; background: transparent; border: 1.5px solid var(--gold); color: var(--gold); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem 2rem; border-radius: 50px; transition: all .35s; }
.btn-event:hover { background: var(--gold); color: var(--bg); box-shadow: 0 0 30px rgba(201,168,76,0.3); transform: translateY(-2px); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--bg2); }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 1.5rem; align-items: center; }
.testimonial-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.8rem; position: relative; transition: all .35s; }
.testimonial-card.featured { background: linear-gradient(145deg, rgba(201,168,76,0.08), rgba(45,212,191,0.05)); border-color: rgba(201,168,76,0.35); transform: scale(1.03); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
.testimonial-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold); opacity: 0.25; line-height: 0.6; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--teal)); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 600; color: var(--bg); }
.author-name { font-size: 0.88rem; font-weight: 500; color: var(--text); }
.author-detail { font-size: 0.75rem; color: var(--muted); }

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ci-icon { font-size: 1.4rem; margin-top: 0.1rem; }
.ci-label { font-size: 0.7rem; color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.ci-value { font-size: 0.95rem; color: var(--text); }
.ci-value a { transition: color .3s; }
.ci-value a:hover { color: var(--gold); }
.contact-cta-box { position: relative; background: linear-gradient(145deg, rgba(201,168,76,0.06), rgba(45,212,191,0.04)); border: 1px solid rgba(201,168,76,0.25); border-radius: 24px; padding: 3rem 2.5rem; text-align: center; overflow: hidden; }
.cta-glow { position: absolute; width: 200px; height: 200px; background: radial-gradient(circle, rgba(201,168,76,0.15), transparent); top: -50px; right: -50px; border-radius: 50%; pointer-events: none; }
.contact-cta-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 1rem; color: var(--text); }
.contact-cta-box p { font-size: 1.1rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.whatsapp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem; background: #25D366; color: white; font-weight: 600; font-size: 0.95rem; padding: 1rem 2.2rem; border-radius: 50px; transition: all .35s; box-shadow: 0 8px 24px rgba(37,211,102,0.25); }
.whatsapp-btn svg { width: 20px; height: 20px; }
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,0.4); }
.cta-note { font-size: 0.9rem !important; color: var(--muted); margin-bottom: 0 !important; margin-top: 1rem !important; opacity: 0.7; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--bg3); border-top: 1px solid var(--border); padding: 3rem 0; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 2rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; margin-bottom: 0.4rem; }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.82rem; color: var(--muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.8; color: var(--muted); letter-spacing: 0.05em; transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { display: none; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .event-details { grid-template-columns: repeat(2, 1fr); }
  .guests-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav { padding: 1rem 5%; }
  .nav-logo { font-size: 1.2rem; }
  .hero { padding-top: 5rem; padding-bottom: 3rem; min-height: auto; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-desc { font-size: 0.92rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.8rem; }
  .btn-primary { width: 100%; justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .stat-num { font-size: 2rem; }
  .section { padding: 4rem 0; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.8rem); margin-bottom: 2rem; }
  .timeline::before { left: 16px; }
  .timeline-item { grid-template-columns: 32px 1fr; gap: 0.8rem; margin-bottom: 1.5rem; }
  .timeline-item:nth-child(odd) .timeline-content { grid-column: 2; text-align: left; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
  .timeline-dot { grid-column: 1 !important; width: 10px; height: 10px; margin-top: 0.5rem; }
  .timeline-content { padding: 1rem 1.2rem; }
  .timeline-content h3 { font-size: 1rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.5rem 1.2rem; }
  .event-media-item video { height: 250px; }
  .event-details { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .event-detail { padding: 1rem 0.8rem; }
  .detail-value { font-size: 0.78rem; }
  .event-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .guests-grid { grid-template-columns: 1fr 1fr; }
  .highlight-card { grid-column: span 2; }
  .countdown { gap: 0.2rem; }
  .count-num { font-size: 2.2rem; min-width: 50px; }
  .count-sep { font-size: 2rem; }
  .count-label { font-size: 0.6rem; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-cta-box { padding: 2rem 1.5rem; }
  .whatsapp-btn { width: 100%; justify-content: center; }
  #videos .container > div { grid-template-columns: 1fr !important; gap: 1rem !important; }
  #biodata iframe { height: 450px; }
  .footer-top { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-logo { font-size: 1.3rem; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================= */
@media (max-width: 480px) {
  .container { padding: 0 4%; }
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .event-details { grid-template-columns: 1fr; }
  .event-media-item video { height: auto; }
  .guests-grid { grid-template-columns: 1fr; }
  .highlight-card { grid-column: span 1; }
  .count-num { font-size: 1.9rem; min-width: 44px; }
  .count-sep { font-size: 1.6rem; }
  .contact-cta-box { padding: 1.5rem 1rem; }
  .footer-links { gap: 0.8rem; }
}