/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  color: #4a4a4a;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== COLOUR TOKENS ===== */
:root {
  --gold: #b8953e;
  --gold-light: #d4b85c;
  --gold-muted: #c9a84c;
  --gold-dark: #9a7a2e;
  --cream: #fdfcfa;
  --cream-warm: #f8f6f2;
  --marble: #f3f1ed;
  --dark: #2c2c2c;
  --dark-soft: #5a5a5a;
  --text: #4a4a4a;
  --text-light: #8a8a8a;
  --white: #ffffff;
  --border: #e8e4de;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,.07);
  --shadow-lg: 0 16px 50px rgba(0,0,0,.1);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--dark); line-height: 1.25; }
.section-label {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: .75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.02rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5.5rem 0; }
.text-center { text-align: center; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 1;
  transform: translateY(0);
}
}

/* ===== MARBLE TEXTURE (CSS only) ===== */
.marble-bg {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(220,215,205,.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(210,205,195,.3) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(225,220,210,.25) 0%, transparent 45%),
    linear-gradient(135deg, #faf8f5 0%, #f5f2ee 30%, #faf8f5 50%, #f2efe9 70%, #faf8f5 100%);
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.2rem 0;
}
.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: .7rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  transition: color var(--transition);
}
.nav.scrolled .nav-logo { color: var(--gold); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: .72rem; font-weight: 400; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--dark-soft);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--dark-soft); }
.nav.scrolled .nav-links a:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--dark-soft);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.nav.scrolled .hamburger span { background: var(--dark-soft); }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/duo-wedding.jpg');
  background-color: #f5f2ee;
  background-size: cover; background-position: center 40%;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(205,195,180,.25) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 15%, rgba(195,185,170,.2) 0%, transparent 35%),
    radial-gradient(ellipse at 60% 75%, rgba(210,200,185,.2) 0%, transparent 40%),
    radial-gradient(ellipse at 35% 90%, rgba(200,190,175,.15) 0%, transparent 30%),
    radial-gradient(ellipse at 75% 50%, rgba(215,205,190,.1) 0%, transparent 35%);
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 2;
  opacity: .06; pointer-events: none;
  overflow: hidden;
}
.hero-pattern svg { width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 3; padding: 2rem 1.5rem; }
.hero-frame {
  position: relative;
  padding: 3rem 3.5rem;
  max-width: 680px; margin: 0 auto;
}
.hero-frame::before, .hero-frame::after {
  content: ''; position: absolute;
  width: 100%; height: 100%;
  border: 1px solid rgba(184,149,62,.25);
  pointer-events: none;
}
.hero-frame::before {
  top: 0; left: 0;
  border-right: none; border-bottom: none;
  width: 80px; height: 80px;
}
.hero-frame::after {
  bottom: 0; right: 0; top: auto; left: auto;
  border-left: none; border-top: none;
  width: 80px; height: 80px;
}
.hero-rule {
  width: 140px; height: 1px; background: var(--gold);
  margin: 0 auto; position: relative; opacity: .5;
}
.hero-rule::before {
  content: ''; position: absolute;
  top: -3px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border: 1px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
  background: var(--cream);
}
.hero-rule-top { margin-bottom: 1.8rem; }
.hero-rule-bottom { margin-top: 1.8rem; margin-bottom: 2rem; }
.hero-pre {
  font-family: 'Lato', sans-serif;
  font-weight: 300; font-size: .72rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--dark-soft);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--gold-dark); margin-bottom: .8rem; font-weight: 400;
  letter-spacing: 6px;
  text-shadow: 0 1px 4px rgba(255,255,255,.6);
}
.hero-sub {
  font-size: clamp(.92rem, 2vw, 1.05rem);
  color: var(--dark-soft); max-width: 420px;
  margin: 0 auto; font-weight: 300;
  letter-spacing: .5px; line-height: 1.7;
}
.btn {
  display: inline-block; padding: .85rem 2.8rem;
  background: var(--gold); color: var(--white);
  font-family: 'Lato', sans-serif; font-weight: 400;
  font-size: .75rem; letter-spacing: 3px; text-transform: uppercase;
  border: none; border-radius: 0; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,149,62,.25);
}
.btn-outline {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--gold-muted); font-size: 1.2rem;
  animation: bounce 2.5s infinite; opacity: .5;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== ABOUT ===== */
.about { background: var(--white); padding-bottom: 3rem; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
  text-align: left;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-photo img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius);
}
.about-text {
  font-size: 1.02rem; line-height: 2; margin: 0;
  color: var(--dark-soft); font-style: italic;
  font-family: 'Playfair Display', serif;
}
.about-divider {
  width: 50px; height: 1px; background: var(--gold);
  margin: 2rem 0 0;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 960px; margin: 0 auto;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--marble);
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,.06));
  pointer-events: none;
}

/* ===== VIDEO ===== */
.video-section { background: var(--cream-warm); }
.video-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}
.video-thumb {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.video-play-btn {
  position: absolute;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.video-play-btn i {
  color: var(--white); font-size: 1.2rem; margin-left: 3px;
}
.video-thumb:hover .video-play-btn {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(184,149,62,.3);
  background: var(--gold-dark);
}

/* ===== PACKAGES ===== */
.packages { padding-bottom: 3rem; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; align-items: start;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.package-card.featured {
  border-color: var(--gold);
  padding-top: 3.2rem;
}
.package-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--gold); color: var(--white);
  font-size: .6rem; font-weight: 500; letter-spacing: 2.5px;
  padding: .45rem 1rem;
  text-align: center;
}
.package-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; margin-bottom: .5rem; font-weight: 400;
}
.package-price {
  font-size: 2rem; font-weight: 300; color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}
.package-list { list-style: none; text-align: left; }
.package-list li {
  padding: .5rem 0; border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--dark-soft);
  display: flex; align-items: flex-start; gap: .6rem;
  text-align: left;
}
.package-list li:last-child { border-bottom: none; }
.package-list li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: var(--gold); font-size: .7rem; margin-top: 5px; flex-shrink: 0;
}
.package-cta {
  margin-top: 1.8rem; text-align: center;
}

/* ===== REPERTOIRE ===== */
.rep-highlights {
  max-width: 860px; margin: 0 auto 3rem;
}
.rep-highlights-label {
  font-family: 'Lato', sans-serif;
  font-size: .7rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; font-weight: 400;
}
.rep-highlights-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
}
.rep-highlight-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: .82rem; color: var(--dark);
  transition: background var(--transition), color var(--transition);
}
.rep-highlight-chip:hover {
  background: var(--gold); color: var(--white);
}
.rep-highlight-chip .artist {
  color: var(--text-light); font-size: .75rem;
  transition: color var(--transition);
}
.rep-highlight-chip:hover .artist { color: rgba(255,255,255,.75); }
.rep-divider-text {
  display: flex; align-items: center; gap: 1.2rem;
  max-width: 780px; margin: 0 auto 2rem;
  font-size: .7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-light); font-weight: 400;
}
.rep-divider-text::before, .rep-divider-text::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.rep-count {
  font-size: .75rem; color: var(--text-light); font-weight: 400;
  margin-left: .5rem; letter-spacing: 0;
  font-family: 'Lato', sans-serif;
}
.repertoire-accordion { max-width: 780px; margin: 0 auto; }
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-header {
  width: 100%; background: none; border: none;
  padding: 1.2rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--dark); font-weight: 400;
  transition: color var(--transition);
}
.accordion-header:hover { color: var(--gold); }
.accordion-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--gold); display: flex;
  align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
  flex-shrink: 0;
}
.accordion-icon i { font-size: .65rem; color: var(--gold); transition: transform var(--transition); }
.accordion-item.active .accordion-icon {
  background: var(--gold);
}
.accordion-item.active .accordion-icon i {
  color: var(--white); transform: rotate(180deg);
}
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height .45s ease;
}
.accordion-body-inner {
  padding: 0 0 1.5rem;
  display: flex; flex-wrap: wrap; gap: .45rem;
}
.song-chip {
  display: inline-block; padding: .35rem .8rem;
  background: var(--cream-warm); border-radius: 50px;
  font-size: .8rem; color: var(--dark-soft);
  border: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
}
.song-chip:hover {
  border-color: var(--gold); background: #fdf9f0;
}
.song-chip .artist {
  color: var(--text-light); font-size: .75rem;
}

/* ===== REVIEWS ===== */
.reviews { background: var(--cream-warm); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: var(--gold); font-size: .8rem; margin-bottom: 1rem;
  letter-spacing: 2px;
}
.review-text {
  font-style: italic; color: var(--dark-soft);
  line-height: 1.85; margin-bottom: 1.2rem;
  font-size: .92rem;
}
.review-author {
  font-weight: 700; color: var(--dark);
  font-size: .85rem; letter-spacing: 1px;
}
.review-card::before {
  content: '\201C'; font-family: 'Playfair Display', serif;
  font-size: 4rem; color: var(--gold-light);
  position: absolute; top: 8px; right: 20px; opacity: .25;
  line-height: 1;
}

/* ===== CONTACT ===== */
.contact-section { background: var(--cream-warm); }
.contact-section .section-title { color: var(--dark); }
.contact-section .section-subtitle { color: var(--text-light); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.contact-info p {
  color: var(--dark-soft); line-height: 1.85;
  margin-bottom: 1.5rem; font-size: 1rem;
}
.contact-features { list-style: none; margin-bottom: 2rem; }
.contact-features li {
  padding: .4rem 0; color: var(--dark-soft);
  display: flex; align-items: center; gap: .7rem;
  font-size: .92rem;
}
.contact-features li i { color: var(--gold); width: 18px; text-align: center; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
}
.contact-form-wrap h3 {
  color: var(--dark); margin-bottom: .8rem;
  font-size: 1.3rem; font-weight: 400;
}
.contact-form-wrap p {
  color: var(--text-light); font-size: .92rem;
  margin-bottom: 1.5rem;
}
.contact-social a {
  color: var(--text-light); margin: 0 .6rem; font-size: 1.1rem;
  transition: color var(--transition);
}
.contact-social a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: var(--white); padding: 2.5rem 0;
  text-align: center; color: var(--text-light);
  font-size: .82rem; border-top: 1px solid var(--border);
  letter-spacing: .5px;
}
.footer-social {
  display: flex; justify-content: center; gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold); color: var(--gold);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav ul {
  list-style: none; text-align: center;
  display: flex; flex-direction: column; gap: 1.8rem;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--dark); font-weight: 400;
  letter-spacing: 2px;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-photo { max-width: 400px; margin: 0 auto; }
  .about-divider { margin: 2rem auto 0; }
}
@media (max-width: 768px) {
  .hero-bg { background-position: 70% 40%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 3.5rem 0; }
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; max-width: 340px; }
  .hero h1 { font-size: 1.8rem; letter-spacing: 2px; }
  .hero-frame { padding: 2rem 1.5rem; }
  .hero-frame::before, .hero-frame::after { width: 50px; height: 50px; }
}