:root {
  --gold: #c9a24a;
  --gold-light: #e3c073;
  --dark: #0a0b0f;
  --dark-2: #14161d;
  --dark-3: #1b1e27;
  --cream: #f7f3ea;
  --text-dark: #2a2620;
  --text-light: #f1ede3;
  --text-muted: #a9a49b;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.center { text-align: center; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; }

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.95rem;
}

.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); }

.btn-outline { border-color: var(--gold-light); color: var(--text-light); }
.btn-outline:hover { background: rgba(230,200,120,0.15); }

.btn-block {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  border-radius: 4px;
  margin-top: 1.2rem;
}
.btn-block:hover { background: var(--gold); color: var(--dark); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: var(--dark);
  z-index: 60;
  border-bottom: 1px solid rgba(201,162,74,0.15);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-serif);
  color: var(--text-light);
}

.nav-brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
}

.nav-brand-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-icons {
  display: flex;
  gap: 0.6rem;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: background 0.2s;
}
.icon-btn:hover { background: rgba(201,162,74,0.15); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span { width: 24px; height: 2px; background: var(--text-light); }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,11,15,0.97) 0%, rgba(10,11,15,0.75) 40%, rgba(10,11,15,0.25) 75%, rgba(10,11,15,0.1) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
}

.hero-eyebrow {
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero h1 .gold { color: var(--gold); }

.hero h1 .script {
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--gold-light);
  font-size: 0.85em;
}

.hero-sub {
  max-width: 480px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-card {
  background: rgba(20,22,29,0.85);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-card-title {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.9rem;
}

.hero-card li {
  font-size: 0.88rem;
  padding: 0.35rem 0;
  color: var(--text-light);
}

/* Overview row */
.overview {
  background: var(--dark-2);
  color: var(--text-light);
}

.overview-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  max-width: 1300px;
  margin: 0 auto;
}

.overview-col {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(201,162,74,0.15);
}

.overview-col:last-child { border-right: none; }

.overview-title {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.6rem;
}

.overview-title.center { text-align: center; }

.service-list { display: flex; flex-direction: column; gap: 1.3rem; }

.service-item { display: flex; gap: 0.9rem; align-items: flex-start; }

.icon-circle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.service-item h3 { font-size: 0.92rem; margin-bottom: 0.2rem; color: var(--text-light); }
.service-item p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

.overview-card {
  background: var(--cream);
  color: var(--text-dark);
}

.overview-card .overview-title { color: var(--gold); }

.genre-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.genre-pill {
  border: 1px solid rgba(201,162,74,0.5);
  border-radius: 6px;
  padding: 0.7rem 0.4rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
}

.genre-pill span { display: block; font-size: 1.2rem; margin-bottom: 0.3rem; }

.package-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201,162,74,0.15);
}
.package-row:last-of-type { border-bottom: none; }

.package-icon { font-size: 1.4rem; }

.package-row h3 { font-size: 0.9rem; color: var(--text-light); }

.package-price {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
}
.package-price span { color: var(--text-muted); font-weight: 400; font-size: 0.75rem; }

/* Terms + gallery row */
.terms-gallery {
  background: var(--dark);
  color: var(--text-light);
}

.terms-gallery-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: center;
  padding: 2rem 1.5rem;
}

.terms-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  padding: 2.5rem 2rem;
}

.term-item { display: flex; gap: 0.7rem; align-items: flex-start; }

.term-icon { font-size: 1.2rem; }

.term-item p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

.carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  background: var(--dark-2);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.carousel-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,11,15,0.5);
  color: var(--text-light);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
}
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-btn:hover { background: rgba(10,11,15,0.75); }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.carousel-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}
.carousel-dots span.active { background: var(--gold-light); }

/* Sections */
.section {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }

.section-alt {
  max-width: 100%;
  background: var(--dark-2);
  color: var(--text-light);
}
.section-alt .eyebrow, .section-alt h2 { color: var(--gold-light); }
.section-alt > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

.section-dark {
  max-width: 100%;
  background: var(--dark);
  color: var(--text-light);
  padding: 5rem 1.5rem;
}
.section-dark > * { max-width: 900px; margin-left: auto; margin-right: auto; }
.section-dark h2 { color: var(--text-light); margin-bottom: 2.5rem; }

/* Audio */
.audio-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }

.audio-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,74,0.3);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
}

.audio-title { font-size: 0.95rem; margin-bottom: 0.7rem; color: var(--gold-light); }
.audio-title span { color: var(--text-muted); font-weight: 400; font-size: 0.85rem; }

.audio-item audio { width: 100%; }

/* Song groups */
.song-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.song-group {
  background: white;
  border: 1px solid rgba(201,162,74,0.35);
  border-radius: 8px;
  padding: 1.5rem;
}

.song-group h3 { font-size: 1rem; margin-bottom: 0.8rem; color: var(--gold); }

.song-pending { font-size: 0.85rem; font-style: italic; color: var(--text-muted); }

.song-list {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.song-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(201,162,74,0.15);
  font-size: 0.82rem;
}
.song-list li:last-child { border-bottom: none; }

.song-list li span { color: var(--text-dark); }

.song-list li em {
  font-style: normal;
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.song-list::-webkit-scrollbar { width: 5px; }
.song-list::-webkit-scrollbar-thumb { background: rgba(201,162,74,0.4); border-radius: 4px; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: white;
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}

.price-card h3 { margin-bottom: 0.8rem; font-size: 1.05rem; color: var(--gold); }

.price-card p { font-size: 0.88rem; color: var(--text-dark); opacity: 0.75; line-height: 1.5; }

.price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.price span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 400;
}

.terms-list { max-width: 700px; margin: 2rem auto; }

.terms-list li {
  padding: 0.6rem 0 0.6rem 1.6rem;
  position: relative;
  font-size: 0.95rem;
}

.terms-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.terms-list + .center { margin-top: 2rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.contact-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,74,0.3);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  font-weight: 500;
  transition: background 0.2s;
  overflow-wrap: break-word;
  word-break: break-word;
  display: block;
}

a.contact-item:hover { background: rgba(201,162,74,0.15); }

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(242,237,225,0.6);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(201,162,74,0.2);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  z-index: 100;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 400px; }

  .overview-inner { grid-template-columns: 1fr; }
  .overview-col { border-right: none; border-bottom: 1px solid rgba(201,162,74,0.15); }

  .terms-gallery-inner { grid-template-columns: 1fr; }
  .terms-strip { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links li { border-top: 1px solid rgba(201,162,74,0.15); }
  .nav-links a { display: block; padding: 1rem 1.5rem; }

  .nav-icons { display: none; }
}
