
:root {
  --bg: #08070d;
  --bg-alt: #12111a;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f4f3f8;
  --muted: #c2bed1;
  --accent: #ff2f6d;
  --accent-2: #6f8cff;
  --accent-3: #8c52ff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 47, 109, 0.13), transparent 28%),
    radial-gradient(circle at top right, rgba(111, 140, 255, 0.10), transparent 25%),
    linear-gradient(180deg, #08070d 0%, #0c0b12 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.72; }
h1, h2, h3 { line-height: 1.08; margin: 0 0 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-alt { background: rgba(255, 255, 255, 0.025); }
.eyebrow {
  color: #ff8db0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 7, 13, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.logo span { color: #ff8db0; }
.site-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.site-nav a {
  color: var(--muted);
  font-weight: 600;
}
.site-nav a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-main.jpg') center 22% / cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.05);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 13, 0.82) 0%, rgba(8, 7, 13, 0.42) 55%, rgba(8, 7, 13, 0.68) 100%),
    linear-gradient(180deg, rgba(8, 7, 13, 0.18), rgba(8, 7, 13, 0.82));
}
.hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(8,7,13,0), rgba(8,7,13,0.95));
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: end;
}
.hero-copy { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.7rem, 8vw, 5.6rem);
  margin-bottom: 1rem;
}
.hero-text {
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 0;
}
.hero-link {
  display: inline-flex;
  margin-top: 0.95rem;
  color: #f7d1de;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.hero-link:hover { color: #fff; }
.hero-actions,
.hero-pills,
.pill-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero-actions { margin-top: 1.55rem; }
.hero-pills { margin-top: 1rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.98rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 16px 36px rgba(255, 47, 109, 0.25);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}
.btn-full { width: 100%; border: 0; cursor: pointer; }
.pill {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 0.58rem 0.84rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}
.pill-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.pill-link:hover,
.pill-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.11);
}
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
}
.feature-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}
.split-grid,
.booking-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
.about-grid { align-items: center; }
.about-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow);
}
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.section-intro { max-width: 780px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.music-card {
  min-height: 185px;
  background: linear-gradient(180deg, rgba(140,82,255,0.12), rgba(255,47,109,0.06));
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-item-featured {
  grid-column: span 2;
}
.gallery-item-featured img {
  aspect-ratio: 16 / 10;
}
.booking-form {
  display: grid;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border-radius: var(--radius);
}
.booking-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 600;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
}
.booking-form option { color: #111; }
.form-note { margin: 0; font-size: 0.92rem; }
.info-card p { margin-bottom: 0; }
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.1rem 0 2rem;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links { color: var(--muted); }
.legal-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 4rem 0;
}
.legal-card {
  max-width: 820px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .booking-grid,
  .contact-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-item-featured {
    grid-column: span 2;
  }
  .about-image-wrap { aspect-ratio: 4 / 3; }
}

@media (max-width: 760px) {
  .section { padding: 56px 0; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    padding: 0.8rem;
    background: rgba(10,10,15,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero {
    min-height: auto;
    padding: 6.6rem 0 2.75rem;
  }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(8, 7, 13, 0.32), rgba(8, 7, 13, 0.92));
  }
  .hero h1 { font-size: clamp(2.3rem, 12vw, 4rem); margin-bottom: 0.8rem; }
  .hero-copy { max-width: none; }
  .hero-text { font-size: 1rem; line-height: 1.58; max-width: none; }
  .hero-card { padding: 1.15rem; }
  .hero-card h2 { font-size: 1.9rem; margin-bottom: 0.85rem; }
  .hero-pills { gap: 0.55rem; }
  .hero-pills .pill {
    padding: 0.5rem 0.78rem;
    font-size: 0.86rem;
  }
  .gallery-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .gallery-item,
  .gallery-item-featured { grid-column: auto; }
  .gallery-item img,
  .gallery-item-featured img { aspect-ratio: 5 / 4; }
  .music-card,
  .process-card { min-height: 0; }
  .booking-form,
  .card { padding: 1.1rem; }
  .about-image-wrap { aspect-ratio: 5 / 4; }
}

.repertoire-card {
  margin-top: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
}
.references-pills {
  margin-top: 1rem;
}
.soft-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 1rem 0;
}
.booking-checklist {
  margin: 1rem 0 1.2rem;
  padding-left: 1.15rem;
  color: var(--text);
  line-height: 1.7;
}
.booking-checklist li + li {
  margin-top: 0.3rem;
}
.booking-info-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
}
.info-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-claim {
  font-size: clamp(1.18rem, 3vw, 1.8rem);
  color: #fff;
  font-weight: 800;
  max-width: 700px;
  margin-bottom: 1rem;
}
.process-grid {
  align-items: stretch;
}
.process-card {
  position: relative;
  min-height: 220px;
  padding-top: 3.7rem;
}
.process-step {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}
.process-card-highlight {
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(111,140,255,0.08));
}
.legal-card-wide {
  max-width: 920px;
}
.legal-card h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
}
.legal-list {
  color: var(--muted);
  line-height: 1.8;
}


.reference-card-featured {
  grid-column: span 2;
  min-height: 0;
  background: linear-gradient(135deg, rgba(255,47,109,0.16), rgba(111,140,255,0.10));
}
.reference-card-compact {
  min-height: 140px;
  opacity: 0.92;
}
.references-highlight-grid {
  margin-top: 1rem;
}
@media (max-width: 980px) {
  .reference-card-featured {
    grid-column: span 1;
  }
}


.cta-section {
  padding-top: 0;
}
.cta-card {
  background: linear-gradient(135deg, rgba(255,47,109,0.18), rgba(111,140,255,0.16));
  text-align: center;
}
.cta-card p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  justify-content: center;
}
.form-note {
  opacity: 0.92;
}
.booking-form textarea {
  min-height: 152px;
}
@media (max-width: 760px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }
  .hero-actions { margin-top: 1.35rem; }
  .hero-link {
    display: block;
    width: 100%;
    margin-top: 0.85rem;
    text-align: center;
  }
  .site-header { background: rgba(8, 7, 13, 0.9); }
  .nav-wrap { min-height: 68px; }
  .footer-wrap {
    align-items: flex-start;
  }
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-version {
  margin: 0;
  font-size: 0.78rem;
  opacity: 0.72;
}


.text-link {
  color: #f7d1de;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.text-link:hover { color: #fff; }
.offer-card,
.faq-card { min-height: 0; }
.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.subpage-hero {
  min-height: auto;
  padding: 7rem 0 3.5rem;
}
.subpage-hero::before {
  background-position: center 24%;
}
.subpage-hero .hero-grid {
  align-items: center;
}
.breadcrumb {
  margin: 0 0 1rem;
  color: #f7d1de;
  font-weight: 700;
}
.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.page-content p strong {
  color: var(--text);
}
@media (max-width: 760px) {
  .subpage-hero {
    padding: 6rem 0 2.5rem;
  }
}
