/* ============================================
   FAMA DJs · Vanilla CSS (full luxury theme)
   ============================================ */

:root {
  --bg: #140A22;
  --bg-2: #2B1244;
  --bg-3: #0F0719;
  --purple: #A970FF;
  --gold: #D4AF37;
  --gold-dark: #B8962E;
  --white: #FFFFFF;
  --white-70: rgba(255,255,255,.70);
  --white-60: rgba(255,255,255,.60);
  --white-40: rgba(255,255,255,.40);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
section[id], span.anchor { scroll-margin-top: 80px; }
.anchor { display: block; height: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--bg); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--purple), var(--gold)); border-radius: 5px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ---------- Shared ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow.small { font-size: 10px; letter-spacing: 0.3em; margin-bottom: 12px; }
.eyebrow.center { text-align: center; }
.section-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  color: var(--white);
}
.section-title.center { text-align: center; }
.italic-gold, .italic-purple, .italic-purple-gold {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.italic-gold { background-image: linear-gradient(135deg, #D4AF37 0%, #F1D27A 50%, #B8962E 100%); }
.italic-purple { background-image: linear-gradient(135deg, #A970FF 0%, #D4AF37 100%); }
.italic-purple-gold { background-image: linear-gradient(135deg, #A970FF 0%, #D4AF37 100%); font-size: clamp(2.5rem, 6vw, 4rem); }
.section-lead {
  font-size: 16px;
  color: var(--white-70);
  margin-top: 24px;
  line-height: 1.7;
  max-width: 640px;
}
.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  color: var(--bg);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 15px 30px;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-gold:hover { box-shadow: 0 0 30px rgba(212,175,55,0.5); transform: scale(1.04); }
.btn-glass, .btn-glass-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 15px 30px;
  transition: all 0.3s;
}
.btn-glass:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }
.btn-glass-gold {
  border-color: rgba(212,175,55,0.4);
}
.btn-glass-gold:hover { background: rgba(212,175,55,0.1); border-color: var(--gold); }

.gold-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 96px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.gold-divider.top { height: 64px; background: linear-gradient(180deg, var(--gold), transparent); }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.5s;
  background: transparent;
}
.nav.scrolled {
  background: rgba(20,10,34,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(169,112,255,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .nav-inner { padding: 0 40px; height: 80px; } }
.nav-logo img { height: 32px; width: auto; }
@media (min-width: 768px) { .nav-logo img { height: 40px; } }

.nav-links { display: none; align-items: center; gap: 14px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
@media (min-width: 1200px) { .nav-links { gap: 22px; } }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  position: relative;
  white-space: nowrap;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-lang {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 999px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  min-width: 38px;
  min-height: 38px;
  padding: 7px 9px;
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav-lang:hover {
  background: rgba(212,175,55,0.12);
  border-color: var(--gold);
  color: var(--white);
}
.nav-cta { display: none; padding: 12px 18px !important; font-size: 11px !important; }
@media (min-width: 1200px) { .nav-cta { padding: 12px 24px !important; font-size: 12px !important; } }
@media (min-width: 1024px) { .nav-lang { display: inline-flex; } }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  overflow: hidden;
  max-height: 0;
  background: rgba(20,10,34,0.97);
  backdrop-filter: blur(20px);
  transition: max-height 0.5s, border-top 0.5s;
  border-top: 0 solid rgba(169,112,255,0);
}
.nav-mobile.open {
  max-height: 600px;
  border-top: 1px solid rgba(169,112,255,0.2);
}
.nav-mobile a {
  display: block;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.nav-mobile .nav-lang-mobile {
  color: var(--gold);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
}
.nav-mobile .btn-gold {
  margin: 20px 24px;
  padding: 14px 30px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
  padding-top: 80px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,10,34,0.7), rgba(20,10,34,0.5), var(--bg));
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,10,34,0.8), transparent, rgba(43,18,68,0.4));
}
.particles { position: absolute; inset: 0; pointer-events: none; }
.particles span {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212,175,55,0.8);
  animation: floatP 8s ease-in-out infinite;
}
@keyframes floatP {
  0%,100% { transform: translate(0,0); opacity: 0.2; }
  50% { transform: translate(20px,-40px); opacity: 0.9; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: calc(100vh - 80px);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .hero-content { padding: 0 40px; } }

.hero-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #D4AF37 0%, #F1D27A 50%, #B8962E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.hero-sub {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--white-70);
  max-width: 640px;
  margin-top: 28px;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; gap: 16px; } }
.hero-tagline {
  display: none;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--white-60);
}
@media (min-width: 640px) { .hero-tagline { display: flex; } }
.hero-tagline .line { width: 48px; height: 1px; background: rgba(212,175,55,0.6); }

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-60);
  transition: color 0.3s;
}
.scroll-indicator:hover { color: var(--gold); }
.scroll-indicator span { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-indicator svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(20px); animation: reveal 1s ease-out forwards; animation-delay: var(--d, 0.1s); }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.9s, transform 0.9s; }
.reveal-up.in { opacity: 1; transform: translateY(0); }

/* ---------- ABOUT ---------- */
.about {
  position: relative;
  padding: 96px 0;
  background: var(--bg);
  overflow: hidden;
}
@media (min-width: 768px) { .about { padding: 144px 0; } }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.orb-purple { top: -160px; right: -160px; width: 500px; height: 500px; background: rgba(169,112,255,0.1); }
.orb-gold { bottom: 0; left: -160px; width: 400px; height: 400px; background: rgba(212,175,55,0.05); }
.orb-purple-lg { top: 25%; left: 0; width: 400px; height: 400px; background: rgba(169,112,255,0.15); filter: blur(140px); }
.orb-gold-lg { bottom: 0; right: 0; width: 500px; height: 500px; background: rgba(212,175,55,0.1); filter: blur(160px); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 96px; } }

.about-collage {
  position: relative;
  height: 440px;
}
@media (min-width: 640px) { .about-collage { height: 560px; } }
@media (min-width: 768px) { .about-collage { height: 640px; } }
.about-collage > div { position: absolute; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.about-collage img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s; }
.about-collage > div:hover img { transform: scale(1.05); }
.collage-1 { top: 0; left: 0; width: 62%; height: 68%; border: 1px solid rgba(169,112,255,0.2); }
.collage-2 { top: 18%; right: 0; width: 52%; height: 58%; border: 1px solid rgba(212,175,55,0.3); }
.collage-3 { bottom: 0; left: 12%; width: 58%; height: 42%; border: 1px solid rgba(169,112,255,0.2); }

.years-badge {
  position: absolute;
  bottom: -24px;
  right: 16px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  backdrop-filter: blur(20px);
  background: rgba(20,10,34,0.6);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: pulseGlow 3s ease-in-out infinite;
}
@media (min-width: 768px) { .years-badge { width: 160px; height: 160px; right: 32px; } }
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 20px rgba(212,175,55,0.3); }
  50% { box-shadow: 0 0 40px rgba(212,175,55,0.6); }
}
.years-num {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #D4AF37 0%, #F1D27A 50%, #B8962E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) { .years-num { font-size: 40px; } }
.years-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-70); margin-top: 4px; }

.about-text .section-title { margin-bottom: 32px; }
.about-paragraphs p { color: var(--white-70); margin-bottom: 20px; line-height: 1.7; font-size: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.about-stat { border-left: 2px solid var(--gold); padding: 4px 0 4px 16px; }
.about-stat .v { font-family: 'Cinzel', serif; font-size: 26px; font-weight: 700; }
.about-stat .l { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-60); margin-top: 4px; }

/* ---------- SERVICES ---------- */
.services {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(to bottom, var(--bg), #1A0E2E, var(--bg));
}
@media (min-width: 768px) { .services { padding: 144px 0; } }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 96px; }
.section-head .section-lead { margin-left: auto; margin-right: auto; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(20px);
  background: rgba(43,18,68,0.4);
  border: 1px solid rgba(169,112,255,0.2);
  transition: transform 0.5s, border-color 0.5s, box-shadow 0.5s;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 20px 50px rgba(169,112,255,0.15);
}
.service-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(169,112,255,0.1);
  filter: blur(48px);
  transition: background 0.7s;
}
.service-card:hover::before { background: rgba(212,175,55,0.2); }
.service-icon {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  color: var(--gold);
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(212,175,55,0.1); border-color: var(--gold); }
.service-title { font-family: 'Cinzel', serif; font-size: 21px; margin-bottom: 12px; line-height: 1.3; position: relative; }
.service-desc { font-size: 14px; color: var(--white-70); line-height: 1.7; flex: 1; position: relative; }
.service-explore {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(169,112,255,0.8);
  position: relative;
}
.service-card:hover .service-explore { color: var(--gold); }
.service-arrow { font-size: 18px; transition: transform 0.3s; }
.service-card:hover .service-arrow { transform: translate(4px, -4px); }

/* ---------- WHY ---------- */
.why {
  position: relative;
  padding: 96px 0;
  background: var(--bg-3);
  overflow: hidden;
}
@media (min-width: 768px) { .why { padding: 128px 0; } }
.dot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 1px 1px, var(--gold) 1px, transparent 0);
  background-size: 40px 40px;
}
.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: flex-start;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 5fr 7fr; gap: 64px; } }
.why-items { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .why-items { grid-template-columns: 1fr 1fr; } }
.why-item {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(169,112,255,0.15);
  background: linear-gradient(135deg, rgba(43,18,68,0.3), transparent);
  transition: border-color 0.5s;
}
.why-item:hover { border-color: rgba(212,175,55,0.4); }
@media (min-width: 768px) {
  .why-item:nth-child(even) { transform: translateY(32px); }
}
.why-item-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.why-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: background 0.3s;
}
.why-item:hover .why-icon { background: rgba(212,175,55,0.2); }
.why-num { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white-40); }
.why-title { font-family: 'Cinzel', serif; font-size: 22px; margin-bottom: 12px; line-height: 1.3; }
.why-desc { font-size: 14px; color: var(--white-60); line-height: 1.7; }

/* ---------- GALLERY ---------- */
.gallery { padding: 96px 0; background: var(--bg); }
@media (min-width: 768px) { .gallery { padding: 144px 0; } }
.gallery-head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .gallery-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.gallery-filter {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white-70);
  transition: all 0.3s;
}
.gallery-filter:hover { border-color: rgba(212,175,55,0.6); color: var(--white); }
.gallery-filter.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  grid-auto-flow: dense;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(169,112,255,0.1);
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: opacity 0.4s, transform 0.4s;
}
.gallery-item.hidden { display: none; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 3/5; }
.gallery-item.wide { aspect-ratio: 16/10; }
@media (min-width: 768px) { .gallery-item.wide { grid-column: span 2; } }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), rgba(20,10,34,0.3), transparent);
  opacity: 0.7;
  transition: opacity 0.5s;
}
.gallery-item:hover .gallery-overlay { opacity: 0.9; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  transform: translateY(8px);
  transition: transform 0.5s;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-cat { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.gallery-alt { font-family: 'Playfair Display', serif; font-style: italic; font-size: 15px; line-height: 1.3; }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(to bottom right, var(--bg-2), #1A0E33, var(--bg));
  overflow: hidden;
}
@media (min-width: 768px) { .testimonials { padding: 144px 0; } }
.testimonials-inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.testimonial-stage { position: relative; margin-top: 64px; }
.quote-mark {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 64px;
  color: rgba(212,175,55,0.3);
}
.testimonial-card {
  position: relative;
  backdrop-filter: blur(20px);
  background: rgba(20,10,34,0.6);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 24px;
  padding: 48px 32px;
  max-width: 720px;
  margin: 0 auto;
  min-height: 280px;
  transition: opacity 0.6s, transform 0.6s;
}
@media (min-width: 768px) { .testimonial-card { padding: 56px; } }
.t-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 24px; color: var(--gold); font-size: 18px; }
.t-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(18px, 2.2vw, 28px); line-height: 1.5; text-wrap: balance; }
.t-author { margin-top: 32px; font-family: 'Cinzel', serif; font-size: 16px; }
.t-role { margin-top: 4px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; }
.t-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.t-arrow:hover { border-color: var(--gold); background: rgba(212,175,55,0.1); color: var(--gold); }
.t-dots { display: flex; gap: 6px; }
.t-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  transition: width 0.3s, background 0.3s;
}
.t-dot.active { width: 32px; background: var(--gold); }

/* ---------- STATS ---------- */
.stats {
  position: relative;
  padding: 80px 0;
  background: var(--bg-3);
  border-top: 1px solid rgba(169,112,255,0.1);
  border-bottom: 1px solid rgba(169,112,255,0.1);
  overflow: hidden;
}
@media (min-width: 768px) { .stats { padding: 112px 0; } }
.stats-title { font-family: 'Cinzel', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); text-align: center; margin: 12px 0 64px; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.stat { text-align: center; }
.stat-num {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  background: linear-gradient(135deg, #D4AF37 0%, #F1D27A 50%, #B8962E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white-60); margin-top: 16px; }
.stat-line {
  margin: 20px auto 0;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.6), transparent);
  transition: width 0.5s;
}
.stat:hover .stat-line { width: 80px; }

/* ---------- INSTAGRAM ---------- */
.instagram { padding: 96px 0; background: var(--bg); }
@media (min-width: 768px) { .instagram { padding: 128px 0; } }
.ig-head { text-align: center; margin-bottom: 48px; }
.ig-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 768px) { .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 1024px) { .ig-grid { grid-template-columns: repeat(6, 1fr); } }
.ig-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(169,112,255,0.1);
}
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.ig-item:hover img { transform: scale(1.1); }
.ig-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,10,34,0);
  transition: background 0.3s;
}
.ig-item:hover::after { background: rgba(20,10,34,0.7); }
.ig-cta-wrap { text-align: center; margin-top: 48px; }

/* ---------- CONTACT ---------- */
.contact {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(to bottom right, var(--bg-2), #1A0E2E, var(--bg));
  overflow: hidden;
}
@media (min-width: 768px) { .contact { padding: 144px 0; } }
.contact-head { text-align: center; max-width: 720px; margin: 0 auto 56px; position: relative; z-index: 1; }
.contact-head-ctas { display: flex; flex-direction: column; gap: 12px; justify-content: center; margin-top: 40px; }
@media (min-width: 640px) { .contact-head-ctas { flex-direction: row; } }

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: flex-start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; gap: 56px; } }

.contact-info-title { font-family: 'Cinzel', serif; font-size: 24px; margin-bottom: 24px; line-height: 1.3; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.contact-info-item:hover .info-value { color: var(--gold); }
.contact-info-item.static { cursor: default; }
.icon-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.3s;
}
.contact-info-item:hover .icon-circle { background: rgba(212,175,55,0.1); }
.info-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white-40); margin-bottom: 4px; }
.info-value { font-size: 15px; color: var(--white); transition: color 0.3s; }

.contact-form {
  backdrop-filter: blur(20px);
  background: rgba(43,18,68,0.4);
  border: 1px solid rgba(169,112,255,0.2);
  border-radius: 24px;
  padding: 32px;
}
@media (min-width: 768px) { .contact-form { padding: 40px; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white-60); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(20,10,34,0.6);
  border: 1px solid rgba(169,112,255,0.3);
  color: var(--white);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.form-field textarea { resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-submit { width: 100%; margin-top: 12px; }
.form-note { text-align: center; font-size: 11px; color: var(--white-40); margin-top: 12px; }

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  background: var(--bg);
  border-top: 1px solid rgba(169,112,255,0.15);
  padding: 80px 0 40px;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 3fr 4fr; gap: 48px; } }
.footer-logo { height: 48px; width: auto; margin-bottom: 20px; }
.footer-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; color: var(--white-70); margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: var(--white-60); line-height: 1.7; max-width: 380px; }

.socials { display: flex; gap: 12px; margin-top: 28px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-70);
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s;
}
.socials a:hover { border-color: var(--gold); background: rgba(212,175,55,0.1); color: var(--gold); }

.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: var(--white-70); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-col li.muted { font-size: 14px; color: var(--white-60); }
.footer-cta { margin-top: 24px; padding: 12px 24px !important; font-size: 11px !important; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 32px;
  font-size: 12px;
  color: var(--white-40);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom .italic { font-family: 'Playfair Display', serif; font-style: italic; color: var(--white-60); }
