:root {
  --black: #101114;
  --black-2: #151B1E;
  --wine: #006D77;
  --wine-2: #00A6A6;
  --gold: #F2C879;
  --gold-deep: #E0B052;
  --copper: #F47C48;
  --cream: #FFF8ED;
  --cream-2: #F6E6C5;
  --blush: #E8FAF7;
  --white: #FFFFFF;
  --text: #151B1E;
  --muted: #6A6D6D;
  --shadow: 0 24px 70px rgba(0, 109, 119, 0.16);
  --radius: 28px;
  --container: 1180px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video, iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 {
  margin: 0;
  line-height: 1.06;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}
h1 { font-size: clamp(3.2rem, 10vw, 5.4rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.15rem, 6vw, 3.65rem); letter-spacing: -0.045em; margin-bottom: 1.2rem; }
h3 { font-size: 1.35rem; margin-bottom: .72rem; }

.container { width: min(100% - 44px, var(--container)); margin: 0 auto; }
.narrow { max-width: 790px; }
.center { text-align: center; }
.section-padding { padding: 78px 0; position: relative; }
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 9999;
  background: var(--gold); color: var(--black); padding: 10px 14px; border-radius: 12px;
}
.skip-link:focus { left: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 28px; border-radius: 999px;
  font-weight: 800; letter-spacing: .01em; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  color: #151B1E;
  background: linear-gradient(135deg, var(--gold), #FFE3A2 52%, var(--copper));
  box-shadow: 0 16px 32px rgba(201, 138, 74, .28);
}
.btn-primary:hover { box-shadow: 0 20px 38px rgba(201, 138, 74, .42); }
.btn-ghost {
  color: var(--cream); border-color: rgba(255,247,234,.72); background: rgba(255,255,255,.06);
}
.btn-ghost:hover { background: rgba(255,247,234,.14); border-color: var(--gold); }
.btn-light {
  color: var(--cream); border-color: rgba(255,247,234,.6); background: rgba(255,247,234,.08);
}
.btn-light:hover { background: rgba(255,247,234,.18); border-color: var(--gold); }
.btn-small { min-height: 44px; padding: 0 20px; font-size: .92rem; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; color: var(--cream);
  background: rgba(33, 18, 22, .82); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231,198,106,.24);
  transition: background .24s ease, box-shadow .24s ease;
}
.site-header.scrolled { background: rgba(33, 18, 22, .96); box-shadow: 0 14px 36px rgba(35, 10, 14, .23); }
.header-inner { height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 180px; }
.brand-badge {
  width: 52px; height: 52px; border-radius: 18px; display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(145deg, var(--cream), var(--cream-2)); border: 1px solid rgba(231,198,106,.9);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}
.brand-badge img { width: 42px; height: 48px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 1.16rem; font-weight: 800; letter-spacing: -.035em; }
.brand-tagline { font-size: .69rem; color: var(--gold); letter-spacing: .13em; text-transform: uppercase; font-weight: 700; }
.desktop-nav { display: none; align-items: center; gap: 22px; font-size: .94rem; color: rgba(255,247,234,.86); }
.desktop-nav a { position: relative; transition: color .2s ease; }
.desktop-nav a::after { content:""; position:absolute; left:0; bottom:-8px; width:0; height:2px; background: var(--gold); transition: width .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a:focus::after { width:100%; }
.menu-toggle { width:46px; height:46px; display:inline-grid; place-items:center; border:1px solid rgba(255,247,234,.2); border-radius:16px; background:rgba(255,255,255,.07); }
.menu-toggle span { width:22px; height:2px; background:var(--cream); display:block; margin:3px 0; transition:.2s ease; }
.menu-toggle.is-active span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2){ opacity:0; }
.menu-toggle.is-active span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }
.mobile-menu {
  position: fixed; left: 18px; right: 18px; top: calc(var(--header-height) + 12px);
  background: rgba(33,18,22,.97); border:1px solid rgba(231,198,106,.28); border-radius:24px; padding:14px;
  display:none; box-shadow: var(--shadow);
}
.mobile-menu.is-open { display:block; }
.mobile-menu a { display:block; padding:14px 16px; border-radius:16px; color:var(--cream); font-weight:700; }
.mobile-menu a:hover { background:rgba(255,247,234,.08); }
.mobile-wa { margin-top:8px; background:linear-gradient(135deg,var(--gold),var(--copper)); color:var(--black)!important; text-align:center; }

.hero {
  min-height: 850px; padding: calc(var(--header-height) + 48px) 0 76px; position: relative; overflow: hidden; color: var(--cream);
  background:
    linear-gradient(130deg, rgba(0,109,119,.94), rgba(33,18,22,.96) 48%, rgba(19,13,15,.98)),
    radial-gradient(circle at 80% 18%, rgba(231,198,106,.36), transparent 30%),
    var(--black);
}
.hero::before {
  content:""; position:absolute; inset:0; opacity:.15;
  background-image: linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero::after {
  content:"♪ ♫"; position:absolute; right:4%; bottom:6%; font-size:15rem; font-family:Georgia,serif; color:rgba(231,198,106,.08); transform:rotate(-12deg); pointer-events:none;
}
.hero-glow { position:absolute; border-radius:999px; filter: blur(10px); opacity:.86; }
.hero-glow-one { width:340px; height:340px; background:rgba(231,198,106,.22); top:15%; right:8%; }
.hero-glow-two { width:260px; height:260px; background:rgba(0,166,166,.12); bottom:10%; left:6%; }
.hero-inner { position:relative; z-index:1; display:grid; gap:40px; align-items:center; }
.eyebrow, .section-kicker {
  display:inline-flex; align-items:center; gap:10px; margin:0 0 18px; color:var(--wine); font-size:.82rem; letter-spacing:.18em; text-transform:uppercase; font-weight:900;
}
.eyebrow { color: var(--gold); background:rgba(255,247,234,.08); border:1px solid rgba(231,198,106,.35); padding:9px 15px; border-radius:999px; }
.section-kicker.light { color: var(--gold); }
.hero h1 { margin-bottom: 10px; text-shadow: 0 12px 36px rgba(0,0,0,.35); }
.hero-slogan { font-family:Georgia,"Times New Roman",serif; color:var(--gold); font-size:clamp(1.45rem, 6vw, 2.15rem); margin-bottom:1rem; }
.hero-lead { font-size:1.08rem; color:rgba(255,247,234,.92); max-width:620px; }
.hero-emotion { color:rgba(255,247,234,.86); font-size:1.1rem; max-width:680px; }
.hero-actions { display:grid; gap:12px; margin:28px 0 18px; }
.hero-note { color:rgba(255,247,234,.72); font-size:.93rem; }
.stage-card {
  position: relative; min-height: 560px; border-radius: 38px; overflow:hidden;
  background:
    linear-gradient(160deg, rgba(255,247,234,.85), rgba(246,229,184,.96)),
    radial-gradient(circle at center, rgba(231,198,106,.28), transparent 46%);
  border:1px solid rgba(231,198,106,.8); box-shadow: 0 36px 90px rgba(0,0,0,.35);
}
.stage-card::before {
  content:""; position:absolute; inset:22px; border-radius:30px; border:1px solid rgba(0,109,119,.15);
}
.stage-logo { position:absolute; z-index:2; width:min(76%, 350px); left:50%; top:42%; transform:translate(-50%,-50%); opacity:.24; }
.photo-placeholder {
  position:absolute; inset:28px; border-radius:28px; border:2px dashed rgba(0,109,119,.22);
  display:flex; flex-direction:column; align-items:center; justify-content:flex-end; text-align:center; padding:0 24px 48px;
  color:var(--wine); background: linear-gradient(to top, rgba(0,109,119,.12), transparent 48%);
}
.photo-placeholder span { font-family:Georgia,serif; font-size:2rem; font-weight:800; }
.photo-placeholder small { color:var(--muted); }
.stage-chip { position:absolute; z-index:3; left:24px; bottom:24px; padding:10px 16px; border-radius:999px; background:var(--wine); color:var(--cream); font-weight:800; box-shadow:0 14px 30px rgba(0,109,119,.24); }

.trust-section { background: linear-gradient(180deg, var(--cream), #fff); padding: 28px 0; }
.trust-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:12px; }
.trust-card { background:var(--white); border:1px solid rgba(231,198,106,.35); border-radius:22px; padding:18px; box-shadow:0 12px 34px rgba(0,109,119,.08); }
.trust-icon { display:inline-grid; width:40px; height:40px; place-items:center; border-radius:14px; background:linear-gradient(135deg,var(--cream-2),var(--blush)); margin-bottom:10px; }
.trust-card h2 { font-size:1.04rem; letter-spacing:0; margin:0 0 4px; }
.trust-card p { font-size:.9rem; color:var(--muted); margin:0; }

.intro-section { background: linear-gradient(160deg, var(--cream), var(--white) 45%, #E8FAF7); overflow:hidden; }
.music-bg { position:absolute; right:6%; top:8%; font-size:16rem; color:rgba(0,109,119,.055); font-family:Georgia,serif; }
.split { display:grid; gap:36px; align-items:center; }
.intro-photo {
  height:430px; border-radius:34px; display:grid; place-items:center; position:relative; overflow:hidden;
  background: linear-gradient(140deg, #fff, var(--cream-2), var(--blush)); border:1px solid rgba(231,198,106,.6); box-shadow:var(--shadow);
}
.intro-photo img { width:240px; opacity:.35; }
.intro-photo span { position:absolute; bottom:26px; font-family:Georgia,serif; font-size:1.5rem; color:var(--wine); font-weight:800; }
.section-copy p { color:#4c3c35; font-size:1.03rem; }
.section-copy strong { color:var(--wine); }

.video-section { color:var(--cream); background:
  radial-gradient(circle at 20% 15%, rgba(231,198,106,.22), transparent 26%),
  radial-gradient(circle at 84% 70%, rgba(0,109,119,.48), transparent 28%),
  linear-gradient(135deg, var(--wine), var(--black) 58%, #0B0708);
}
.video-section p { color:rgba(255,247,234,.8); }
.video-layout { display:grid; grid-template-columns: 1fr; gap:24px; justify-items:center; margin-top:34px; }
.video-phone {
  width:min(100%,330px); aspect-ratio:9/16; border-radius:38px; border:8px solid rgba(255,247,234,.16); background:
    linear-gradient(to bottom, rgba(255,255,255,.08), rgba(0,0,0,.3)),
    radial-gradient(circle at center, rgba(231,198,106,.34), transparent 35%),
    linear-gradient(145deg, #004E56, #0B1B1D);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; box-shadow:0 34px 80px rgba(0,0,0,.35); position:relative; overflow:hidden;
}
.video-phone::after { content:""; position:absolute; inset:16px; border:1px solid rgba(231,198,106,.22); border-radius:30px; }
.play-circle { width:78px; height:78px; border-radius:50%; display:grid; place-items:center; background:linear-gradient(135deg,var(--gold),var(--copper)); color:var(--black); font-size:1.8rem; margin-bottom:18px; box-shadow:0 20px 44px rgba(231,198,106,.28); }
.video-phone p { font-family:Georgia,serif; font-size:1.45rem; margin:.2rem 0; color:var(--cream); }
.video-phone small { color:rgba(255,247,234,.66); }
.video-side { display:grid; gap:18px; align-content:center; }
.mini-video { width:170px; height:160px; border-radius:26px; display:grid; place-items:center; color:var(--cream); font-weight:800; background:rgba(255,247,234,.08); border:1px solid rgba(231,198,106,.24); }
.video-actions { margin-top:28px; display:flex; flex-direction:column; gap:12px; align-items:center; }

.events-section { background: linear-gradient(180deg, #fff, var(--cream)); }
.events-carousel { display:flex; overflow-x:auto; gap:18px; padding:12px 22px 18px; scroll-snap-type:x mandatory; }
.events-carousel::-webkit-scrollbar { height:8px; }
.events-carousel::-webkit-scrollbar-thumb { background:rgba(0,109,119,.24); border-radius:999px; }
.event-card { flex:0 0 min(82vw, 330px); background:var(--white); border-radius:28px; overflow:hidden; border:1px solid rgba(231,198,106,.35); box-shadow:0 18px 48px rgba(0,109,119,.12); scroll-snap-align:start; }
.event-image { height:190px; display:grid; place-items:end start; padding:22px; color:var(--cream); font-family:Georgia,serif; font-size:1.7rem; font-weight:800; background:linear-gradient(135deg,var(--wine),var(--copper)); position:relative; overflow:hidden; }
.event-image::after { content:"♪"; position:absolute; right:18px; top:-36px; font-size:8rem; color:rgba(255,247,234,.18); }
.birthday .event-image { background:linear-gradient(135deg,#00A6A6,#F47C48); }
.anniversary .event-image { background:linear-gradient(135deg,#006D77,#C98A4A); }
.wedding .event-image { background:linear-gradient(135deg,#F2C879,#E8FAF7); }
.serenade .event-image { background:linear-gradient(135deg,#004E56,#D6AF4B); }
.corporate .event-image { background:linear-gradient(135deg,#151B1E,#00A6A6); }
.family .event-image { background:linear-gradient(135deg,#C98A4A,#006D77); }
.event-body { padding:24px; min-height:250px; display:flex; flex-direction:column; }
.event-body p { color:var(--muted); }
.event-link { margin-top:auto; color:var(--wine); font-weight:900; }
.event-link::after { content:" →"; color:var(--copper); }

.repertoire-section { color:var(--cream); background: linear-gradient(135deg, var(--wine), var(--black-2)); }
.repertoire-section p { color:rgba(255,247,234,.82); }
.highlight-text { color:var(--gold)!important; font-family:Georgia,serif; font-size:1.25rem!important; }
.chips-wrap { display:flex; flex-wrap:wrap; gap:12px; }
.chips-wrap span { display:inline-flex; padding:12px 18px; border-radius:999px; background:rgba(255,247,234,.11); color:var(--cream); border:1px solid rgba(231,198,106,.34); font-weight:800; }

.benefits-section { background: linear-gradient(160deg, var(--cream), #fff 48%, #E8FAF7); }
.benefits-grid { display:grid; grid-template-columns:1fr; gap:16px; margin-top:28px; margin-bottom:30px; }
.benefit-card { background:rgba(255,255,255,.82); border:1px solid rgba(231,198,106,.38); border-radius:26px; padding:24px; box-shadow:0 14px 42px rgba(0,109,119,.09); }
.benefit-card span { color:var(--copper); font-weight:900; letter-spacing:.18em; font-size:.8rem; }
.benefit-card p { color:var(--muted); margin:0; }

.coverage-section { background:var(--white); }
.coverage-map {
  min-height:330px; border-radius:34px; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; padding:28px;
  background:
    radial-gradient(circle at 55% 45%, rgba(231,198,106,.5), transparent 22%),
    linear-gradient(135deg, var(--cream), var(--blush));
  border:1px solid rgba(231,198,106,.5); box-shadow:var(--shadow);
}
.map-pin { font-size:3rem; width:96px; height:96px; border-radius:50%; display:grid; place-items:center; background:var(--wine); margin-bottom:18px; }
.coverage-map h3 { color:var(--wine); }
.coverage-map p { color:var(--muted); margin:0; }

.testimonials-section { background:linear-gradient(180deg, var(--cream-2), var(--cream)); }
.testimonials-grid { display:grid; gap:18px; margin-top:28px; margin-bottom:28px; }
.testimonial-card { background:var(--white); border-radius:28px; padding:26px; border:1px solid rgba(231,198,106,.35); box-shadow:0 16px 48px rgba(0,109,119,.1); position:relative; }
.quote { font-family:Georgia,serif; font-size:5rem; line-height:.5; color:rgba(0,109,119,.16); position:absolute; top:20px; right:24px; }
.testimonial-card p { position:relative; z-index:1; color:#4c3c35; }

.final-cta {
  min-height:560px; display:grid; place-items:center; text-align:center; color:var(--cream); position:relative; overflow:hidden;
  background:
    linear-gradient(rgba(33,18,22,.82), rgba(0,109,119,.85)),
    radial-gradient(circle at 30% 20%, rgba(231,198,106,.35), transparent 30%),
    var(--wine);
}
.final-cta::after { content:""; position:absolute; inset:24px; border:1px solid rgba(231,198,106,.24); border-radius:34px; pointer-events:none; }
.final-inner { position:relative; z-index:1; max-width:820px; }
.final-logo { width:170px; opacity:.55; margin-bottom:10px; }
.final-inner p { color:rgba(255,247,234,.86); font-size:1.08rem; }
.final-actions { display:flex; flex-direction:column; gap:12px; align-items:center; margin-top:26px; }

.social-section { background: linear-gradient(160deg, #fff, var(--cream)); }
.social-inner { display:grid; gap:28px; }
.social-grid { display:grid; gap:12px; }
.social-grid a { padding:18px; border-radius:22px; background:var(--white); border:1px solid rgba(231,198,106,.35); box-shadow:0 12px 34px rgba(0,109,119,.08); }
.social-grid strong { display:block; color:var(--wine); }


.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  padding: 18px;
  overflow-y: auto;
}
.quote-modal.is-open { display: grid; place-items: center; }
.quote-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 17, 20, .72);
  backdrop-filter: blur(10px);
}
.quote-dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  background: linear-gradient(160deg, var(--white), var(--cream) 62%, var(--blush));
  border: 1px solid rgba(242, 200, 121, .72);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 28px 90px rgba(0,0,0,.32);
}
.quote-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.quote-intro { color: var(--muted); margin-bottom: 22px; }
.quote-intro strong { color: var(--wine); }
.quote-form { display: grid; grid-template-columns: 1fr; gap: 16px; }
.quote-form label { display: grid; gap: 7px; font-weight: 800; color: var(--text); }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 109, 119, .20);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  background: rgba(255,255,255,.86);
  color: var(--text);
  outline: none;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--wine-2);
  box-shadow: 0 0 0 4px rgba(0,166,166,.12);
}
.quote-form .full { grid-column: 1 / -1; }

@media (min-width: 720px) {
  .quote-dialog { padding: 38px; }
  .quote-form { grid-template-columns: repeat(2, 1fr); }
}

.site-footer { background:var(--black); color:rgba(255,247,234,.78); padding:70px 0 102px; }
.footer-grid { display:grid; gap:30px; }
.footer-brand img { width:150px; opacity:.76; }
.footer-grid h2, .footer-grid h3 { color:var(--cream); margin-bottom:12px; }
.footer-grid a { display:block; margin:7px 0; color:rgba(255,247,234,.85); }
.footer-grid a:hover { color:var(--gold); }
.footer-bottom { margin-top:40px; padding-top:20px; border-top:1px solid rgba(231,198,106,.18); display:grid; gap:6px; font-size:.9rem; }
.footer-bottom p { margin:0; }

.floating-whatsapp {
  position:fixed; left:16px; right:16px; bottom:16px; z-index:1100; min-height:58px; display:flex; align-items:center; justify-content:center; gap:10px; border-radius:999px;
  color:#ffffff; font-weight:900; background:linear-gradient(135deg,#25D366,var(--wine-2)); box-shadow:0 16px 42px rgba(0,0,0,.3);
}
.floating-whatsapp span { width:30px; height:30px; border-radius:50%; display:grid; place-items:center; background:rgba(255,255,255,.45); }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity:1; transform:translateY(0); }

@media (max-width: 760px) {
  .site-header .btn-small { display:none; }
  .hide-mobile { display:none!important; }
  .hero-actions .btn { width:100%; }
  .brand { min-width: auto; }
  .brand-badge { width:48px; height:48px; }
  .brand-name { font-size:1.04rem; }
  .brand-tagline { font-size:.6rem; }
}

@media (min-width: 761px) {
  .floating-whatsapp { left:auto; right:24px; width:auto; padding:0 24px; }
  .footer-grid { grid-template-columns: 1.35fr .8fr 1fr 1fr; }
  .footer-bottom { grid-template-columns:1fr auto; }
}

@media (min-width: 920px) {
  .desktop-nav { display:flex; }
  .menu-toggle { display:none; }
  .hero { min-height: 820px; padding-top: calc(var(--header-height) + 50px); }
  .hero-inner { grid-template-columns: 1.04fr .96fr; gap:70px; }
  .hero-actions { display:flex; flex-wrap:wrap; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap:18px; }
  .section-padding { padding:104px 0; }
  .split { grid-template-columns: 1fr 1fr; gap:70px; }
  .split-intro { grid-template-columns: .85fr 1.15fr; }
  .video-layout { grid-template-columns: 1fr auto 1fr; align-items:center; gap:30px; }
  .video-actions { flex-direction:row; justify-content:center; }
  .events-carousel { display:grid; grid-template-columns:repeat(3, 1fr); overflow:visible; padding:12px 0 0; gap:28px; }
  .event-card { flex:auto; min-width:0; }
  .benefits-grid { grid-template-columns: repeat(6, 1fr); }
  .benefit-card:nth-child(1), .benefit-card:nth-child(2), .benefit-card:nth-child(3) { grid-column: span 2; }
  .benefit-card:nth-child(4) { grid-column: 2 / span 2; }
  .benefit-card:nth-child(5) { grid-column: 4 / span 2; }
  .testimonials-grid { grid-template-columns:repeat(3, 1fr); }
  .final-actions { flex-direction:row; justify-content:center; }
  .social-inner { grid-template-columns: .9fr 1.1fr; align-items:center; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  .reveal { opacity:1; transform:none; }
}


/* ===== V4 ambient background update ===== */
.site-header {
  background: rgba(11, 18, 20, .78);
  border-bottom: 1px solid rgba(242,200,121,.20);
}
.site-header.scrolled { background: rgba(11, 18, 20, .95); }
.brand-tagline, .section-kicker.light, .hero-slogan { color: var(--gold); }
.btn-ghost, .btn-light { background: rgba(255,255,255,.10); backdrop-filter: blur(8px); }

.hero {
  min-height: 850px;
  background:
    linear-gradient(90deg, rgba(11,18,20,.88) 0%, rgba(11,18,20,.80) 34%, rgba(11,18,20,.63) 58%, rgba(11,18,20,.84) 100%),
    radial-gradient(circle at 78% 16%, rgba(242,200,121,.18), transparent 24%),
    radial-gradient(circle at 22% 72%, rgba(15,107,115,.16), transparent 24%),
    url('img/backgrounds/hero-audience.webp') center center / cover no-repeat;
}
.hero::before {
  background: linear-gradient(to bottom, rgba(255,255,255,.04), rgba(255,255,255,0));
  opacity: .75;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(to top, rgba(11,18,20,.85), transparent);
}
.hero-glow { display:none; }
.hero-inner { gap: 28px; }
.hero-copy { max-width: 640px; }
.hero-lead, .hero-emotion, .hero-note { text-shadow: 0 8px 24px rgba(0,0,0,.35); }

.stage-card.audience-card {
  min-height: 390px;
  border-radius: 34px;
  background: linear-gradient(155deg, rgba(255,248,237,.22), rgba(255,255,255,.07));
  border: 1px solid rgba(255,248,237,.18);
  box-shadow: 0 26px 60px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}
.stage-card.audience-card::before { border-color: rgba(255,255,255,.12); }
.stage-card.audience-card .stage-logo { width: min(66%, 260px); top: 34%; opacity: .16; }
.stage-card.audience-card .photo-placeholder {
  inset: 24px;
  border: 1px dashed rgba(255,248,237,.18);
  background: linear-gradient(to top, rgba(11,18,20,.22), rgba(255,255,255,.02) 60%);
  color: var(--cream);
  justify-content: flex-end;
}
.stage-card.audience-card .photo-placeholder span { font-size: 1.9rem; color: var(--cream); }
.stage-card.audience-card .photo-placeholder small { color: rgba(255,248,237,.82); max-width: 280px; }
.stage-card.audience-card .stage-chip { background: rgba(15,107,115,.82); box-shadow: 0 10px 24px rgba(0,0,0,.25); }

.intro-section {
  background: linear-gradient(160deg, rgba(255,248,237,.98), rgba(255,255,255,.98) 52%, rgba(232,250,247,.94));
}

.events-section { position: relative; overflow: hidden; }
.events-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,248,237,.94), rgba(255,248,237,.96)),
    url('img/backgrounds/cta-audience.webp') center center / cover no-repeat;
  opacity: .95;
  pointer-events: none;
}
.events-section > .container { position: relative; z-index: 1; }
.event-card { background: rgba(255,255,255,.92); backdrop-filter: blur(4px); }

.testimonials-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(246,230,197,.92), rgba(255,248,237,.96));
}
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/backgrounds/hero-audience.webp') center center / cover no-repeat;
  opacity: .08;
  pointer-events: none;
}
.testimonials-section > .container { position: relative; z-index: 1; }

.final-cta {
  background:
    linear-gradient(90deg, rgba(11,18,20,.88) 0%, rgba(15,107,115,.80) 100%),
    url('img/backgrounds/cta-audience.webp') center center / cover no-repeat;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 18%, rgba(242,200,121,.20), transparent 24%);
}
.final-cta::after { border-color: rgba(255,248,237,.18); }
.final-inner { position: relative; z-index: 2; }

@media (min-width: 992px) {
  .hero-inner { grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); gap: 44px; }
  .stage-card.audience-card { min-height: 470px; }
  .events-section::before { background-position: center top; }
}

@media (max-width: 767px) {
  .hero { min-height: 780px; padding-bottom: 58px; background-position: 60% center; }
  .stage-card.audience-card { min-height: 330px; }
  .stage-card.audience-card .stage-logo { width: 180px; }
  .stage-card.audience-card .photo-placeholder span { font-size: 1.6rem; }
  .events-section::before, .testimonials-section::before { opacity: .14; }
}


/* ===== V5 no-white-sections update ===== */
.trust-section,
.intro-section,
.events-section,
.benefits-section,
.coverage-section,
.testimonials-section,
.social-section {
  position: relative;
  overflow: hidden;
}

.trust-section::before,
.intro-section::before,
.benefits-section::before,
.coverage-section::before,
.social-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trust-section::before {
  background:
    linear-gradient(180deg, rgba(11,18,20,.88), rgba(15,107,115,.78)),
    url('img/backgrounds/hero-audience.webp') center center / cover no-repeat;
}

.intro-section::before {
  background:
    linear-gradient(145deg, rgba(11,18,20,.86), rgba(11,18,20,.76) 52%, rgba(15,107,115,.78)),
    url('img/backgrounds/cta-audience.webp') center center / cover no-repeat;
  opacity: .96;
}

.benefits-section::before {
  background:
    linear-gradient(160deg, rgba(15,107,115,.84), rgba(11,18,20,.84)),
    url('img/backgrounds/hero-audience.webp') center center / cover no-repeat;
  opacity: .94;
}

.coverage-section::before {
  background:
    linear-gradient(160deg, rgba(11,18,20,.84), rgba(15,107,115,.80)),
    url('img/backgrounds/cta-audience.webp') center center / cover no-repeat;
  opacity: .94;
}

.social-section::before {
  background:
    linear-gradient(160deg, rgba(15,107,115,.82), rgba(11,18,20,.86)),
    url('img/backgrounds/hero-audience.webp') center center / cover no-repeat;
  opacity: .95;
}

.trust-section > .container,
.intro-section > .container,
.events-section > .container,
.benefits-section > .container,
.coverage-section > .container,
.testimonials-section > .container,
.social-section > .container {
  position: relative;
  z-index: 1;
}

.trust-section { padding: 34px 0; background: transparent; }
.trust-card, .event-card, .benefit-card, .testimonial-card, .social-grid a {
  background: rgba(255,248,237,.88);
  border-color: rgba(242,200,121,.36);
}
.trust-card { box-shadow: 0 14px 32px rgba(0,0,0,.18); }
.trust-card h2 { color: #13343a; }

.intro-section { background: transparent; }
.intro-section .section-copy,
.intro-section .section-copy p { color: rgba(255,248,237,.92); }
.intro-section .section-copy strong,
.intro-section h2,
.intro-section .section-kicker { color: var(--gold); }
.intro-photo {
  background: rgba(255,248,237,.10);
  border-color: rgba(255,248,237,.20);
  box-shadow: 0 18px 48px rgba(0,0,0,.26);
  backdrop-filter: blur(7px);
}
.intro-photo span { color: var(--cream); }
.music-bg { color: rgba(255,248,237,.06); }

.events-section { background: transparent; }
.events-section::before {
  background:
    linear-gradient(180deg, rgba(11,18,20,.20), rgba(11,18,20,.30)),
    linear-gradient(180deg, rgba(255,248,237,.90), rgba(255,248,237,.92)),
    url('img/backgrounds/cta-audience.webp') center center / cover no-repeat;
}
.events-section .section-kicker,
.events-section h2 { color: #17353a; }

.benefits-section { background: transparent; }
.benefits-section .section-kicker,
.benefits-section h2 { color: var(--gold); }
.benefits-section p,
.benefits-section .benefit-card p,
.benefits-section .benefit-card h3,
.benefits-section .center p { color: rgba(255,248,237,.90); }
.benefit-card {
  background: rgba(255,248,237,.10);
  border-color: rgba(255,248,237,.18);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
  backdrop-filter: blur(7px);
}
.benefit-card span { color: var(--gold); }

.coverage-section { background: transparent; }
.coverage-section .section-kicker,
.coverage-section h2,
.coverage-section h3 { color: var(--gold); }
.coverage-section .section-copy p { color: rgba(255,248,237,.90); }
.coverage-map {
  background:
    radial-gradient(circle at 55% 45%, rgba(242,200,121,.25), transparent 22%),
    linear-gradient(145deg, rgba(255,248,237,.12), rgba(255,248,237,.08));
  border-color: rgba(255,248,237,.18);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
  backdrop-filter: blur(7px);
}
.coverage-map p { color: rgba(255,248,237,.90); }
.map-pin { background: rgba(242,200,121,.90); color: #17353a; }

.testimonials-section {
  background: transparent;
}
.testimonials-section::before {
  background:
    linear-gradient(180deg, rgba(255,248,237,.88), rgba(255,248,237,.92)),
    url('img/backgrounds/hero-audience.webp') center center / cover no-repeat;
  opacity: 1;
}

.social-section { background: transparent; }
.social-section .section-kicker,
.social-section h2 { color: var(--gold); }
.social-section p { color: rgba(255,248,237,.88); }
.social-grid a {
  background: rgba(255,248,237,.12);
  border-color: rgba(255,248,237,.20);
  color: var(--cream);
  box-shadow: 0 14px 36px rgba(0,0,0,.20);
  backdrop-filter: blur(6px);
}
.social-grid strong { color: var(--gold); }

.footer-main {
  background: linear-gradient(180deg, #0B1214, #101114);
}

@media (max-width: 767px) {
  .trust-section::before,
  .intro-section::before,
  .benefits-section::before,
  .coverage-section::before,
  .social-section::before {
    background-position: center center;
  }
}


/* ===== V6 watermarked backgrounds for Video, Events and Repertoire ===== */
.video-section, .events-section, .repertoire-section {
  position: relative;
  overflow: hidden;
}

.video-section > .container,
.events-section > .container,
.repertoire-section > .container {
  position: relative;
  z-index: 1;
}

.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(11,18,20,.86), rgba(15,107,115,.78) 55%, rgba(11,18,20,.88)),
    url('img/backgrounds/hero-audience.webp') center center / cover no-repeat;
  opacity: .98;
  pointer-events: none;
}
.video-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(242,200,121,.14), transparent 24%), radial-gradient(circle at 82% 70%, rgba(244,124,72,.10), transparent 20%);
  pointer-events: none;
}
.video-phone, .mini-video {
  background-color: rgba(255,248,237,.08);
  backdrop-filter: blur(5px);
}

.events-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,248,237,.88), rgba(255,248,237,.92)),
    url('img/backgrounds/cta-audience.webp') center center / cover no-repeat;
  opacity: .98;
  pointer-events: none;
}
.events-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,20,.10), rgba(11,18,20,0));
  pointer-events: none;
}

.repertoire-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(15,107,115,.82), rgba(11,18,20,.86)),
    url('img/backgrounds/hero-audience.webp') center center / cover no-repeat;
  opacity: .97;
  pointer-events: none;
}
.repertoire-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(242,200,121,.14), transparent 22%), radial-gradient(circle at 18% 80%, rgba(255,255,255,.06), transparent 18%);
  pointer-events: none;
}
.repertoire-section .chips-wrap span {
  background: rgba(255,248,237,.12);
  border-color: rgba(255,248,237,.18);
  backdrop-filter: blur(5px);
}

@media (max-width: 767px) {
  .video-section::before,
  .events-section::before,
  .repertoire-section::before {
    background-position: center center;
  }
}


/* ===== V7 unique image watermark background per section (no repeats) ===== */
.hero {
  background:
    linear-gradient(90deg, rgba(11,18,20,.88) 0%, rgba(11,18,20,.80) 34%, rgba(11,18,20,.63) 58%, rgba(11,18,20,.84) 100%),
    radial-gradient(circle at 78% 16%, rgba(242,200,121,.18), transparent 24%),
    radial-gradient(circle at 22% 72%, rgba(15,107,115,.16), transparent 24%),
    url('img/backgrounds/v7/hero.webp') center center / cover no-repeat !important;
}

.trust-section::before {
  background:
    linear-gradient(180deg, rgba(11,18,20,.88), rgba(15,107,115,.78)),
    url('img/backgrounds/v7/trust.webp') center center / cover no-repeat !important;
}

.intro-section::before {
  background:
    linear-gradient(145deg, rgba(11,18,20,.86), rgba(11,18,20,.76) 52%, rgba(15,107,115,.78)),
    url('img/backgrounds/v7/intro.webp') center center / cover no-repeat !important;
  opacity: .96;
}

.video-section::before {
  background:
    linear-gradient(145deg, rgba(11,18,20,.86), rgba(15,107,115,.78) 55%, rgba(11,18,20,.88)),
    url('img/backgrounds/v7/video.webp') center center / cover no-repeat !important;
  opacity: .98;
}

.events-section::before {
  background:
    linear-gradient(180deg, rgba(255,248,237,.88), rgba(255,248,237,.92)),
    url('img/backgrounds/v7/events.webp') center center / cover no-repeat !important;
  opacity: .98;
}

.repertoire-section::before {
  background:
    linear-gradient(145deg, rgba(15,107,115,.82), rgba(11,18,20,.86)),
    url('img/backgrounds/v7/repertoire.webp') center center / cover no-repeat !important;
  opacity: .97;
}

.benefits-section::before {
  background:
    linear-gradient(160deg, rgba(15,107,115,.84), rgba(11,18,20,.84)),
    url('img/backgrounds/v7/benefits.webp') center center / cover no-repeat !important;
  opacity: .94;
}

.coverage-section::before {
  background:
    linear-gradient(160deg, rgba(11,18,20,.84), rgba(15,107,115,.80)),
    url('img/backgrounds/v7/coverage.webp') center center / cover no-repeat !important;
  opacity: .94;
}

.testimonials-section::before {
  background:
    linear-gradient(180deg, rgba(255,248,237,.88), rgba(255,248,237,.92)),
    url('img/backgrounds/v7/testimonials.webp') center center / cover no-repeat !important;
  opacity: 1;
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(11,18,20,.88) 0%, rgba(15,107,115,.80) 100%),
    url('img/backgrounds/v7/final.webp') center center / cover no-repeat !important;
}

.social-section::before {
  background:
    linear-gradient(160deg, rgba(15,107,115,.82), rgba(11,18,20,.86)),
    url('img/backgrounds/v7/social.webp') center center / cover no-repeat !important;
  opacity: .95;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11,18,20,.92), rgba(11,18,20,.97)),
    url('img/backgrounds/v7/footer.webp') center center / cover no-repeat !important;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,20,.82), rgba(11,18,20,.94));
  pointer-events: none;
}
.site-footer > .container { position: relative; z-index: 1; }

@media (max-width: 767px) {
  .hero { background-position: 58% center !important; }
  .trust-section::before,
  .intro-section::before,
  .video-section::before,
  .events-section::before,
  .repertoire-section::before,
  .benefits-section::before,
  .coverage-section::before,
  .testimonials-section::before,
  .social-section::before,
  .site-footer {
    background-position: center center !important;
  }
}


/* ===== V8 final unique backgrounds, no singer visible ===== */
.hero {
  background:
    linear-gradient(90deg, rgba(11,18,20,.88) 0%, rgba(11,18,20,.80) 34%, rgba(11,18,20,.63) 58%, rgba(11,18,20,.84) 100%),
    radial-gradient(circle at 78% 16%, rgba(242,200,121,.18), transparent 24%),
    radial-gradient(circle at 22% 72%, rgba(15,107,115,.16), transparent 24%),
    url('img/backgrounds/v8/hero.webp') center center / cover no-repeat !important;
}
.trust-section::before {
  background:
    linear-gradient(180deg, rgba(11,18,20,.88), rgba(15,107,115,.78)),
    url('img/backgrounds/v8/trust.webp') center center / cover no-repeat !important;
}
.intro-section::before {
  background:
    linear-gradient(145deg, rgba(11,18,20,.86), rgba(11,18,20,.76) 52%, rgba(15,107,115,.78)),
    url('img/backgrounds/v8/intro.webp') center center / cover no-repeat !important;
  opacity: .96;
}
.video-section::before {
  background:
    linear-gradient(145deg, rgba(11,18,20,.86), rgba(15,107,115,.78) 55%, rgba(11,18,20,.88)),
    url('img/backgrounds/v8/video.webp') center center / cover no-repeat !important;
  opacity: .98;
}
.events-section::before {
  background:
    linear-gradient(180deg, rgba(255,248,237,.88), rgba(255,248,237,.92)),
    url('img/backgrounds/v8/events.webp') center center / cover no-repeat !important;
  opacity: .98;
}
.repertoire-section::before {
  background:
    linear-gradient(145deg, rgba(15,107,115,.82), rgba(11,18,20,.86)),
    url('img/backgrounds/v8/repertoire.webp') center center / cover no-repeat !important;
  opacity: .97;
}
.benefits-section::before {
  background:
    linear-gradient(160deg, rgba(15,107,115,.84), rgba(11,18,20,.84)),
    url('img/backgrounds/v8/benefits.webp') center center / cover no-repeat !important;
  opacity: .94;
}
.coverage-section::before {
  background:
    linear-gradient(160deg, rgba(11,18,20,.84), rgba(15,107,115,.80)),
    url('img/backgrounds/v8/coverage.webp') center center / cover no-repeat !important;
  opacity: .94;
}
.testimonials-section::before {
  background:
    linear-gradient(180deg, rgba(255,248,237,.88), rgba(255,248,237,.92)),
    url('img/backgrounds/v8/testimonials.webp') center center / cover no-repeat !important;
  opacity: 1;
}
.final-cta {
  background:
    linear-gradient(90deg, rgba(11,18,20,.88) 0%, rgba(15,107,115,.80) 100%),
    url('img/backgrounds/v8/final.webp') center center / cover no-repeat !important;
}
.social-section::before {
  background:
    linear-gradient(160deg, rgba(15,107,115,.82), rgba(11,18,20,.86)),
    url('img/backgrounds/v8/social.webp') center center / cover no-repeat !important;
  opacity: .95;
}
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11,18,20,.92), rgba(11,18,20,.97)),
    url('img/backgrounds/v8/footer.webp') center center / cover no-repeat !important;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,20,.82), rgba(11,18,20,.94));
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero { background-position: 58% center !important; }
  .trust-section::before,
  .intro-section::before,
  .video-section::before,
  .events-section::before,
  .repertoire-section::before,
  .benefits-section::before,
  .coverage-section::before,
  .testimonials-section::before,
  .social-section::before,
  .site-footer {
    background-position: center center !important;
  }
}


/* ===== V8.1 TikTok integration ===== */
.tiktok-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.tiktok-card, .tiktok-library-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 34px;
  padding: 24px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  border: 1px solid rgba(255,248,237,.18);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  background:
    linear-gradient(180deg, rgba(11,18,20,.10), rgba(11,18,20,.86)),
    url('img/backgrounds/v8/video.webp') center center / cover no-repeat;
  isolation: isolate;
}
.tiktok-card:nth-child(2), .tiktok-library-card:nth-child(2n) { background-image: linear-gradient(180deg, rgba(11,18,20,.10), rgba(11,18,20,.86)), url('img/backgrounds/v8/final.webp'); }
.tiktok-card:nth-child(3), .tiktok-library-card:nth-child(3n) { background-image: linear-gradient(180deg, rgba(11,18,20,.10), rgba(11,18,20,.86)), url('img/backgrounds/v8/social.webp'); }
.tiktok-card:nth-child(4), .tiktok-library-card:nth-child(4n) { background-image: linear-gradient(180deg, rgba(11,18,20,.10), rgba(11,18,20,.86)), url('img/backgrounds/v8/events.webp'); }
.tiktok-card::before, .tiktok-library-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,248,237,.16);
  border-radius: 26px;
  z-index: -1;
}
.tiktok-card strong, .tiktok-library-card strong {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.08;
}
.tiktok-card small, .tiktok-library-card small { color: rgba(255,248,237,.82); font-weight: 800; margin-top: 8px; }
.tiktok-label {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(242,200,121,.90);
  color: #13282c;
  font-weight: 900;
  font-size: .76rem;
  letter-spacing: .04em;
}
.tiktok-play {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--black);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
}
.tiktok-library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.tiktok-library-card { min-height: 360px; }
.tiktok-library-card span { color: var(--gold); font-weight: 900; margin-bottom: 10px; }
.tiktok-library-card p { color: rgba(255,248,237,.84); }
.video-library-hero .hero-inner.single-column { grid-template-columns: 1fr; max-width: 900px; text-align: center; }
.video-library-hero .hero-actions { justify-content: center; }
@media (max-width: 991px) {
  .tiktok-feature-grid, .tiktok-library-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .tiktok-feature-grid, .tiktok-library-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-left: 22px;
    padding-right: 22px;
    scroll-snap-type: x mandatory;
  }
  .tiktok-card, .tiktok-library-card {
    flex: 0 0 min(78vw, 300px);
    min-height: 430px;
    scroll-snap-align: start;
  }
}
