*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #1a0800;
  --dark2: #2d1000;
  --dark3: #3d1800;
  --gold: #C9A227;
  --gold-light: #e8c84a;
  --gold-pale: rgba(201,162,39,0.15);
  --cream: #f5efe0;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.65);
  --text-light: rgba(255,255,255,0.85);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(20,4,0,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 28px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.btn-book-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark2);
  border: 1.5px solid var(--gold);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-book-nav:hover { background: var(--gold); color: var(--dark); }
.wa-icon {
  width: 32px; height: 32px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
}

/* ── HERO ── */
.hero {
  height: 100vh;
  max-height: 100vh;
  padding: 40px 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #0d0200;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 45%, rgba(160,55,10,0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201,162,39,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 1.5vw, 22px);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(201,162,39,0.2);
  border-bottom: 1px solid rgba(201,162,39,0.2);
}
.badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px;
  color: var(--text-light);
  padding: 0 16px;
}
.badge:first-child { padding-left: 0; }
.badge-icon { font-size: 18px; }
.badge-divider { width: 1px; height: 24px; background: rgba(201,162,39,0.3); }

.hero-occasions-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.hero-occasions {
  list-style: none;
  margin-bottom: 14px;
}
.hero-occasions li {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
}

.hero-artist-name {
  font-family: 'Dancing Script', cursive;
  font-size: 36px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.hero-trust {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.stat-divider { width: 1px; height: 36px; background: rgba(201,162,39,0.25); align-self: center; }
.stat div { display: flex; flex-direction: column; }
.stat strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.stat span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(201,162,39,0.3);
}
.btn-hero:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,162,39,0.4);
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 0;
  display: block;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 20%, black 90%, transparent 100%),
    linear-gradient(to bottom, black 75%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 20%, black 90%, transparent 100%),
    linear-gradient(to bottom, black 75%, transparent 100%);
  mask-composite: intersect;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 28px 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 32px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}
.trust-icon { font-size: 30px; flex-shrink: 0; }
.trust-item div { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong {
  font-size: 14px;
  font-weight: 600;
  color: #1a0800;
}
.trust-item span {
  font-size: 12px;
  color: #6b4c2a;
}
.trust-item .gold { color: var(--gold); }
.trust-divider { width: 1px; height: 48px; background: rgba(201,162,39,0.3); }

/* ── WHY SECTION ── */
.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: #f9f2e4;
}
.why-image {
  position: relative;
  overflow: hidden;
}
.why-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 440px;
  background: linear-gradient(135deg, #3d1800 0%, #6b2e00 50%, #2d1000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.why-image-placeholder span { font-size: 80px; opacity: 0.4; }
.why-image-placeholder p { font-size: 14px; color: rgba(255,255,255,0.3); letter-spacing: 1px; }

.why-content {
  padding: 64px 56px;
  background: #f9f2e4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: #8a6a3a;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.section-label.centered { text-align: center; }

.why-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  color: #1a0800;
  line-height: 1.3;
  margin-bottom: 16px;
}
.why-desc {
  font-size: 14px;
  color: #5a3a1a;
  line-height: 1.7;
  margin-bottom: 20px;
}
.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 20px;
}
.why-point {
  font-size: 13px;
  color: #3a2010;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.check { color: var(--gold); font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.why-closing { font-size: 13px; color: #5a3a1a; line-height: 1.7; font-style: italic; }

/* ── PACKAGES ── */
.packages-section {
  background: var(--dark);
  padding: 80px 48px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.section-heading.centered { text-align: center; }
.gold-divider-center { display: flex; justify-content: center; margin-bottom: 48px; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.package-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 16px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,162,39,0.1);
}

.package-featured {
  background: linear-gradient(160deg, #3d1000 0%, #2d0a00 100%);
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201,162,39,0.2);
  margin-top: -16px;
  padding-top: 48px;
}

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pkg-icon { font-size: 32px; }
.pkg-label {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  font-weight: 500;
}
.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.pkg-from { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.package-featured .pkg-price { font-size: 42px; }
.pkg-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 16px;
}
.pkg-features li {
  font-size: 13px;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pkg-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

.btn-pkg-outline {
  display: block;
  text-align: center;
  border: 1.5px solid var(--gold);
  color: var(--white);
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: auto;
}
.btn-pkg-outline:hover { background: var(--gold); color: var(--dark); }

.btn-pkg-gold {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--dark);
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: auto;
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}
.btn-pkg-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: #faf3e8;
  padding: 72px 48px;
  overflow: hidden;
}
.testimonials-slider { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(201,162,39,0.12);
}
.quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--gold);
  line-height: 0.7;
  margin-bottom: 16px;
  opacity: 0.6;
}
.testimonial-text {
  font-size: 15px;
  color: #3a2010;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), #8B4513);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial-author div { display: flex; flex-direction: column; gap: 2px; }
.testimonial-author strong { font-size: 14px; color: #1a0800; }
.testimonial-author span { font-size: 12px; color: #8a6a3a; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(201,162,39,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ── WHY BOOK WITH US ── */
.why-book-section {
  background: linear-gradient(135deg, #1a0500 0%, #2d0e00 60%, #1a0500 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 360px;
}
.why-book-content {
  padding: 64px 56px;
}
.gold-label { color: var(--gold) !important; text-align: left !important; }
.why-book-icons {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}
.why-book-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,162,39,0.15);
  transition: padding-left 0.3s;
}
.why-book-item:first-child { border-top: 1px solid rgba(201,162,39,0.15); }
.why-book-item:hover { padding-left: 8px; }
.wbi-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  min-width: 44px;
  opacity: 0.85;
}
.why-book-item p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.4;
  font-weight: 500;
}

.why-book-image { overflow: hidden; }
.why-book-img-placeholder {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, #5c2000 0%, #2d0e00 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.why-book-img-placeholder span { font-size: 80px; opacity: 0.3; }
.why-book-img-placeholder p { font-size: 14px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }

/* ── FAQ ── */
.faq-section {
  background: var(--dark);
  padding: 72px 48px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 32px auto 0;
}
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-icon { font-size: 24px; }
.faq-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.faq-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CTA SECTION / BOOKING FORM ── */
.cta-section {
  background: linear-gradient(135deg, #1a0500 0%, #3d1000 50%, #1a0500 100%);
  padding: 80px 48px;
  border-top: 1px solid rgba(201,162,39,0.2);
}
.cta-text {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}
.cta-text p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.booking-form {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 16px;
  padding: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.form-field textarea { resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A227' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-field select option { background: #2d0e00; color: var(--white); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.form-field input:invalid:not(:placeholder-shown) {
  border-color: rgba(200,60,40,0.6);
}

.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
  border: none;
  cursor: pointer;
}
.btn-cta-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.form-submit {
  width: 100%;
  margin-top: 26px;
  font-family: 'Inter', sans-serif;
}
.form-success {
  display: none;
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--gold-light);
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 8px;
  padding: 14px;
}
.form-success.show { display: block; }

.cta-note {
  text-align: center;
  font-size: 13px;
  color: rgba(201,162,39,0.5);
  letter-spacing: 1px;
  padding-top: 28px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .faq-grid { grid-template-columns: repeat(3, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; }
  .package-featured { margin-top: 0; }
}

@media (max-width: 900px) {
  .nav { padding: 14px 24px; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-image-wrap { display: none; }
  .why-section { grid-template-columns: 1fr; }
  .why-image { min-height: 280px; }
  .why-book-section { grid-template-columns: 1fr; }
  .why-book-image { display: none; }
  .cta-text { max-width: 100%; }
  .trust-bar { padding: 24px; }
  .trust-divider { display: none; }
  .trust-item { border-bottom: 1px solid rgba(201,162,39,0.1); padding: 16px 24px; max-width: 100%; width: 100%; }
}

@media (max-width: 640px) {
  .hero { padding: 90px 20px 48px; }
  .why-content { padding: 40px 24px; }
  .why-book-content { padding: 40px 24px; }
  .packages-section, .testimonials-section, .faq-section, .cta-section { padding: 56px 20px; }
  .booking-form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { flex-direction: column; align-items: flex-start; gap: 8px; }
  .badge-divider { display: none; }
  .badge { padding: 0; }
  .why-points { grid-template-columns: 1fr; }
  .testimonials-track { flex-direction: column; }
  .testimonial-card { min-width: 100%; }
}
