:root {
  --black: #050506;
  --ink: #0b0b0d;
  --charcoal: #131316;
  --smoke: #232326;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(217, 181, 104, 0.36);
  --text: #f6f3ee;
  --muted: #b9b4aa;
  --soft: #ded8cc;
  --gold: #d9b568;
  --gold-deep: #98733a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --header: 76px;
  --display: "Playfair Display", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 8%, rgba(217, 181, 104, 0.11), transparent 32rem),
    linear-gradient(180deg, #08080a 0%, var(--black) 45%, #090909 100%);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 6, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled { min-height: 66px; background: rgba(5, 5, 6, 0.94); }
.brand img { width: 112px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0; }
.desktop-nav a { position: relative; padding: 10px 0; transition: color 180ms ease; }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--text); }
.desktop-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.language-switcher { display: flex; align-items: center; gap: 4px; padding: 3px; border: 1px solid var(--line); background: rgba(255,255,255,0.04); border-radius: 999px; }
.lang-btn {
  border: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  padding: 7px 9px;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.lang-btn:hover, .lang-btn.is-active { color: var(--black); background: var(--gold); transform: translateY(-1px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #f2d890); color: #111; box-shadow: 0 12px 34px rgba(217, 181, 104, 0.22); }
.btn-outline { border-color: var(--line-strong); color: var(--text); background: rgba(255,255,255,0.035); }
.btn-outline:hover { border-color: var(--gold); background: rgba(217,181,104,0.08); }
.btn-small { min-height: 40px; padding: 0 16px; font-size: 0.75rem; }
.btn-full { width: 100%; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--text); transition: transform 180ms ease; }
.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: max(18px, env(safe-area-inset-top)) 20px max(120px, calc(84px + env(safe-area-inset-bottom)));
  background:
    radial-gradient(circle at 80% 0%, rgba(217, 181, 104, 0.12), transparent 26rem),
    rgba(8,8,10,0.985);
  transform: translateY(-105%);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms ease, opacity 240ms ease;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu-shell {
  width: min(100%, 520px);
  min-height: calc(100dvh - max(36px, env(safe-area-inset-top)) - max(120px, calc(84px + env(safe-area-inset-bottom))));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 26px;
}
.mobile-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
}
.mobile-logo-card img { width: 106px; height: auto; }
.mobile-close {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255,255,255,0.045);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.mobile-menu nav { display: grid; gap: 8px; margin-bottom: 26px; }
.mobile-menu nav a {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-family: var(--display);
  font-size: clamp(2rem, 12vw, 4rem);
  line-height: 1;
  font-weight: 800;
  text-transform: none;
}
.mobile-menu nav a.is-active { color: var(--gold); }
.mobile-languages { margin: auto 0 20px; width: max-content; }

.hero, .page-hero, .section, .final-cta { padding-left: clamp(20px, 5vw, 72px); padding-right: clamp(20px, 5vw, 72px); }
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding-top: 52px;
  padding-bottom: 72px;
}
.hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.34;
  pointer-events: none;
}
.hero-video-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.92) 0%, rgba(5, 5, 6, 0.68) 44%, rgba(5, 5, 6, 0.86) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.48), rgba(5, 5, 6, 0.9));
}
.hero-video-layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08);
}
.page-hero { padding-top: 96px; padding-bottom: 72px; max-width: 1040px; }
.bookings-hero { max-width: 1120px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); line-height: 0.96; letter-spacing: 0; }
h1 { max-width: 860px; margin-bottom: 22px; font-size: clamp(3.25rem, 9vw, 7.8rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.8rem); margin-bottom: 18px; }
h3 { font-size: 1.1rem; margin-bottom: 10px; }
.hero-text, .section-lead { max-width: 680px; color: var(--soft); font-size: clamp(1rem, 2vw, 1.25rem); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cta-row.center { justify-content: center; }

.hero-visual { position: relative; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 10px; background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015)); box-shadow: var(--shadow); }
.hero-visual img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; border-radius: calc(var(--radius) - 2px); filter: saturate(0.9) contrast(1.05); }
.visual-tag {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(5,5,6,0.72);
  backdrop-filter: blur(14px);
  color: var(--text);
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.section { padding-top: 86px; padding-bottom: 86px; }
.split-section { display: grid; grid-template-columns: 0.9fr 1fr; gap: clamp(24px, 6vw, 80px); align-items: end; border-top: 1px solid var(--line); }
.section-heading { max-width: 860px; margin-bottom: 34px; }
.muted-band { background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.feature-grid, .energy-grid, .contact-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card, .contact-card, .media-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255,255,255,0.035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.feature-card:hover, .contact-card:hover { transform: translateY(-4px); border-color: var(--line-strong); background: rgba(217,181,104,0.055); }
.feature-card span { color: var(--gold); font-weight: 900; font-size: 0.82rem; }
.feature-card p, .media-note p { color: var(--muted); margin-bottom: 0; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.service-grid span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(0,0,0,0.22);
  font-weight: 800;
}

.media-section, .form-section, .artist-profile, .wide-media-grid, .booking-vibe-section { display: grid; grid-template-columns: 0.86fr 1fr; gap: clamp(24px, 5vw, 70px); align-items: center; }
.video-frame { position: relative; overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 10px; background: rgba(255,255,255,0.04); box-shadow: var(--shadow); }
.video-frame video { width: 100%; max-height: 620px; aspect-ratio: 9 / 16; object-fit: cover; border-radius: calc(var(--radius) - 2px); background: #000; }
.video-frame.large video { max-height: 760px; }
.video-frame.landscape video { aspect-ratio: 16 / 10; max-height: 560px; }
.video-frame.cinematic::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(180deg, rgba(5,5,6,0.08), rgba(5,5,6,0.58));
  pointer-events: none;
}
.video-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}
.video-caption span {
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(5,5,6,0.68);
  color: var(--text);
  backdrop-filter: blur(14px);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.booking-vibe-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.012));
}
.booking-vibe-section .media-note h2 { margin-bottom: 14px; }
.booking-vibe-section .media-note p:not(.eyebrow) { max-width: 560px; }
.booking-video video { aspect-ratio: 16 / 10; max-height: 440px; }
.contact-strip { margin: 0 clamp(20px, 5vw, 72px); display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.contact-strip a, .contact-card { display: grid; gap: 4px; padding: 22px; background: rgba(255,255,255,0.035); border-right: 1px solid var(--line); }
.contact-strip a:last-child { border-right: 0; }
.contact-strip span, .contact-card span { color: var(--muted); font-size: 0.9rem; overflow-wrap: anywhere; }

.profile-image img, .editorial-gallery img { width: 100%; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line-strong); filter: saturate(0.9) contrast(1.04); }
.profile-image img { aspect-ratio: 4 / 5; }
.statement-band { margin: 10px clamp(20px, 5vw, 72px); padding: clamp(34px, 7vw, 70px); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); text-align: center; }
.statement-band p { margin: 0; color: var(--gold); font-family: var(--display); font-size: clamp(2rem, 6vw, 5rem); line-height: 1; }
.editorial-gallery { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 14px; align-items: end; }
.editorial-gallery img:first-child { aspect-ratio: 4 / 5; }
.editorial-gallery img:last-child { aspect-ratio: 3 / 4; }

.booking-form { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: rgba(255,255,255,0.04); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 8px; color: var(--soft); font-size: 0.86rem; font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.3);
  color: var(--text);
  padding: 13px 14px;
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); background: rgba(0,0,0,0.5); }
.booking-form > label, .booking-form button { margin-top: 14px; }
.form-status { margin: 14px 0 0; color: var(--gold); font-weight: 800; }

.faq-list { max-width: 920px; display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,0.035); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 20px; border: 0; background: transparent; color: var(--text); cursor: pointer; text-align: left; font-weight: 900; }
.faq-item b { color: var(--gold); font-size: 1.4rem; line-height: 1; transition: transform 180ms ease; }
.faq-item p { max-height: 0; overflow: hidden; margin: 0; padding: 0 20px; color: var(--muted); transition: max-height 220ms ease, padding 220ms ease; }
.faq-item.is-open p { max-height: 180px; padding: 0 20px 20px; }
.faq-item.is-open b { transform: rotate(45deg); }

.final-cta { padding-top: 96px; padding-bottom: 110px; text-align: center; border-top: 1px solid var(--line); }
.final-cta h2 { max-width: 900px; margin-left: auto; margin-right: auto; }
.site-footer { padding: 42px clamp(20px, 5vw, 72px) 104px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; align-items: center; color: var(--muted); }
.site-footer img { width: 104px; }
.site-footer p { margin: 0; }
.footer-links { display: flex; gap: 18px; font-weight: 800; color: var(--soft); }

.quick-actions { display: none; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 620ms ease, transform 620ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 260ms; }

@media (max-width: 980px) {
  .desktop-nav, .header-actions > .btn { display: none; }
  .menu-toggle { display: block; }
  .hero, .split-section, .media-section, .form-section, .artist-profile, .wide-media-grid, .booking-vibe-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 48px; }
  .feature-grid, .energy-grid { grid-template-columns: 1fr; }
  .service-grid, .contact-strip, .contact-card-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-strip a:nth-child(2) { border-right: 0; }
  .contact-strip a:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 640px) {
  :root { --header: 68px; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .site-header { padding: 12px 14px; gap: 10px; }
  .brand img { width: 86px; }
  .header-actions { gap: 7px; }
  .language-switcher { gap: 2px; padding: 2px; }
  .lang-btn { padding: 6px 6px; font-size: 0.65rem; }
  .menu-toggle { width: 42px; height: 42px; flex: 0 0 auto; }
  h1 { font-size: clamp(3rem, 17vw, 4.7rem); }
  h2 { font-size: clamp(2rem, 11vw, 3.2rem); }
  .hero, .page-hero, .section, .final-cta { padding-left: 18px; padding-right: 18px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .page-hero { padding-top: 72px; padding-bottom: 56px; }
  .cta-row, .cta-row.center { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; min-height: 52px; }
  .service-grid, .contact-strip, .contact-card-grid, .form-grid, .editorial-gallery { grid-template-columns: 1fr; }
  .contact-strip { margin-left: 18px; margin-right: 18px; }
  .contact-strip a { border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-strip a:last-child { border-bottom: 0; }
  .visual-tag { left: 18px; right: 18px; bottom: 18px; }
  .hero-video-layer { opacity: 0.24; }
  .video-frame.landscape video, .booking-video video { aspect-ratio: 4 / 5; max-height: 540px; }
  .video-caption { left: 18px; right: 18px; bottom: 18px; }
  .statement-band { margin-left: 18px; margin-right: 18px; padding: 34px 0; }
  .site-footer { display: grid; justify-items: start; padding-bottom: calc(112px + env(safe-area-inset-bottom)); }
  .footer-links { flex-wrap: wrap; }
  .quick-actions {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(5,5,6,0.88);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }
  .quick-actions a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--soft);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }
  .quick-actions a:nth-child(2) { background: var(--gold); color: var(--black); }
  .menu-open .quick-actions { display: none; }
}

@media (max-width: 370px) {
  .brand img { width: 78px; }
  .lang-btn { padding: 5px 4px; font-size: 0.58rem; }
  .menu-toggle { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-video-layer video, .video-frame.cinematic video { display: none; }
}
