﻿:root {
  --bg: #fbfbfa;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --cream: #f7f7f5;
  --soft: #f4f4f2;
  --ink: #171310;
  --muted: rgba(23, 19, 16, 0.72);
  --line: rgba(23, 19, 16, 0.08);
  --accent: #1d1814;
  --accent-soft: #a56e56;
  --shadow: 0 14px 36px rgba(25, 19, 14, 0.05);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --shell: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 0 0 20px;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: relative;
  top: 0;
  z-index: 50;
  padding: 8px 0 0;
}
.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 22px rgba(22, 17, 13, 0.04);
}
.brand {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
}
.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav a,
.lang-btn {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.nav a {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--nav-accent, rgba(29,24,20,0.14)) 18%, rgba(23, 19, 16, 0.06));
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}
.nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: calc(100% - 16px);
  border-radius: 0 999px 999px 0;
  background: color-mix(in srgb, var(--nav-accent, rgba(29,24,20,0.16)) 82%, white);
  opacity: 0.68;
}
.nav a:hover,
.nav a.active,
.lang-btn.active {
  color: var(--ink);
  background: color-mix(in srgb, var(--nav-accent, rgba(29,24,20,0.08)) 5%, white);
}
.nav a.active {
  color: color-mix(in srgb, var(--nav-accent, var(--ink)) 72%, var(--ink));
  border-color: color-mix(in srgb, var(--nav-accent, rgba(29,24,20,0.18)) 26%, rgba(23,19,16,0.07));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 6px 16px rgba(23, 19, 16, 0.04);
}
.nav a.active::before,
.nav a:hover::before {
  opacity: 1;
}
.nav-about { --nav-accent: #8b7447; }
.nav-sessions { --nav-accent: #4f6b59; }
.nav-gift { --nav-accent: #934d44; }
.nav-live { --nav-accent: #9a7a3b; }
.nav-production { --nav-accent: #7a5a46; }
.nav-music { --nav-accent: #5d7f97; }
.nav-book {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent) !important;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  font-weight: 600;
  -webkit-text-fill-color: #fff;
  white-space: nowrap;
}
.nav a.nav-book {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
  box-shadow: none !important;
}
.nav-book::before {
  background: rgba(255,255,255,0.72);
  opacity: 0.75;
}
.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
}
.lang-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.section-tracker {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  display: grid;
  gap: 10px;
}
.tracker-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.tracker-link span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(23, 19, 16, 0.14);
  background: rgba(255,255,255,0.9);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.tracker-link em {
  font-style: normal;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(23, 19, 16, 0.08);
  background: rgba(255,255,255,0.95);
  color: var(--muted);
  font-size: 0.78rem;
  pointer-events: none;
}
.tracker-link:hover em,
.tracker-link.active em {
  opacity: 1;
  transform: translateX(0);
}
.tracker-link.active span {
  transform: scale(1.25);
  background: var(--tracker-accent, var(--accent));
  border-color: var(--tracker-accent, var(--accent));
}
.tracker-link[data-section="about"] { --tracker-accent: #8b7447; }
.tracker-link[data-section="sessions"] { --tracker-accent: #4f6b59; }
.tracker-link[data-section="gift"] { --tracker-accent: #934d44; }
.tracker-link[data-section="live"] { --tracker-accent: #9a7a3b; }
.tracker-link[data-section="production"] { --tracker-accent: #7a5a46; }
.tracker-link[data-section="music"] { --tracker-accent: #5d7f97; }
.tracker-link[data-section="booking"] { --tracker-accent: #667a5b; }
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 46;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 19, 16, 0.08);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 10px 24px rgba(23, 19, 16, 0.08);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.section {
  padding: 12px 0 0;
  scroll-margin-top: 110px;
  border: 0;
}
.section-white { background: #ffffff; }
.section-cream { background: #fafaf8; }
.section-soft { background: #f5f5f2; }
.booking-section,
.section-booking {
  background: #fcfcfb;
}
.section-shell {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(23, 19, 16, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(21, 18, 16, 0.035);
  overflow: hidden;
}
.section-shell > * {
  position: relative;
  z-index: 1;
}
.section-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  border-radius: 30px 0 0 30px;
  background: linear-gradient(180deg, #4e6a5a, #6f8a79);
}
.section-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-shell::before {
  background: linear-gradient(180deg, #55748d, #7fa0bc);
}
#about .section-shell::before {
  background: linear-gradient(180deg, #8b7447, #b59a67);
}
.session-shell::before {
  background: linear-gradient(180deg, #4f6b59, #7a947f);
}
.gift-shell::before {
  background: linear-gradient(180deg, #934d44, #bf756b);
}
.live-shell::before {
  background: linear-gradient(180deg, #9a7a3b, #c09a58);
}
.live-shell .section-heading {
  max-width: none;
}
.live-shell .section-heading h2 {
  max-width: none;
}
.production-shell::before {
  background: linear-gradient(180deg, #7a5a46, #a88368);
}
.production-accent {
  position: absolute;
  right: -10px;
  top: 20px;
  width: min(240px, 24%);
  height: 180px;
  margin: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 26px;
}
.production-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.production-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.88) 18%, rgba(255,255,255,0.34) 42%, rgba(255,255,255,0.08) 64%, rgba(255,255,255,0) 82%),
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.2) 18%, rgba(255,255,255,0.16) 82%, rgba(255,255,255,0.94) 100%);
}
.production-shell .section-heading {
  max-width: none;
}
.production-shell .section-heading h2 {
  max-width: none;
}
#music .section-shell::before {
  background: linear-gradient(180deg, #5d7f97, #88a8bf);
}
.booking-section .section-shell::before {
  background: linear-gradient(180deg, #667a5b, #8da184);
}
.session-shell::after {
  opacity: 0;
  background-image: none;
}
.session-accent {
  position: absolute;
  right: -8px;
  top: 30px;
  width: min(360px, 34%);
  margin: 0;
  opacity: 0.46;
  z-index: 2;
  pointer-events: none;
  transform: rotate(0deg);
}
.session-accent img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.gift-shell::after {
  opacity: 0;
  background-image: none;
}
.gift-accent {
  position: absolute;
  right: -10px;
  top: 24%;
  width: 104px;
  height: 124px;
  margin: 0;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 26px;
  transform: translateY(-50%);
}
.gift-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gift-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.88) 18%, rgba(255,255,255,0.34) 42%, rgba(255,255,255,0.08) 64%, rgba(255,255,255,0) 82%),
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.22) 18%, rgba(255,255,255,0.18) 82%, rgba(255,255,255,0.94) 100%);
}
.section-stack {
  display: grid;
  gap: 16px;
}
.section-heading {
  display: grid;
  gap: 8px;
  max-width: 720px;
  padding: 0 0 10px 14px;
  border-left: 2px solid rgba(29, 24, 20, 0.12);
  border-bottom: 1px solid rgba(23, 19, 16, 0.08);
}
.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: rgba(23, 19, 16, 0.54);
}
h1, h2, p, figure { margin: 0; }
h1, h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
}
h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.1rem);
  letter-spacing: -0.05em;
  max-width: 12ch;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
}
.lead,
.about-copy p,
.info-card p,
.gift-banner p {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

.hero {
  padding-top: 18px;
  min-height: auto;
}
.hero-shell {
  padding-bottom: 14px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(360px, 1.04fr);
  gap: 18px;
  align-items: center;
}
.hero-copy {
  display: grid;
  gap: 12px;
  align-content: start;
  max-width: 540px;
}
.card-surface {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
}
.hero-notes {
  display: grid;
  gap: 10px;
  width: min(100%, 34rem);
  padding: 14px 16px;
}
.hero-feature {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.22rem, 1.55vw, 1.58rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: rgba(23, 19, 16, 0.82);
  max-width: none;
}
.hero-feature-secondary {
  margin-top: -2px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 19, 16, 0.14);
}
.button-solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.button-ghost {
  background: rgba(255,255,255,0.62);
}
.hero-media {
  display: flex;
  align-self: start;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 0;
}
.hero-card,
.card-frame,
.info-card,
.music-card,
.gift-banner,
.booking-panel,
.about-copy {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-card,
.card-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  isolation: isolate;
}
.hero-card::after,
.card-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.06) 26%, rgba(255,255,255,0) 46%, rgba(255,255,255,0.18) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.02) 28%, rgba(255,255,255,0.08) 74%, rgba(255,255,255,0.34) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-card img,
.card-frame img {
  filter: saturate(0.88) contrast(0.97) brightness(1.02);
}
.hero-card-tall {
  aspect-ratio: 0.85;
}
.hero-card-wide {
  grid-column: span 2;
  aspect-ratio: 1.9;
}
.hero-card-single {
  aspect-ratio: 0.8;
  width: min(100%, 480px);
  max-width: 480px;
  margin-top: 0;
}

.about-layout,
.live-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(340px, 1.24fr);
  gap: 14px;
  align-items: stretch;
}
.about-photo,
.live-photo {
  min-height: 100%;
}
.about-copy {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--surface);
}
.about-copy p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.26rem, 1.48vw, 1.54rem);
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: rgba(23, 19, 16, 0.84);
}

.card-grid {
  display: grid;
  gap: 12px;
  align-items: stretch;
}
.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.info-card {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 154px;
  padding: 13px 15px;
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.info-card strong {
  font-size: 1rem;
  line-height: 1.1;
  text-wrap: auto;
}
.info-card p {
  font-size: 0.98rem;
  line-height: 1.5;
}
.info-card span {
  margin-top: auto;
  color: rgba(23, 19, 16, 0.58);
  font-size: 0.82rem;
  line-height: 1.28;
}
.tone-blush {
  background: rgba(255,255,255,0.92);
  border-color: rgba(184, 112, 78, 0.2);
}
.tone-sage {
  background: rgba(255,255,255,0.92);
  border-color: rgba(86, 129, 92, 0.22);
}
.tone-sand {
  background: rgba(255,255,255,0.92);
  border-color: rgba(176, 137, 62, 0.22);
}
.tone-night {
  background: #fbfcff;
}
.live-option {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 18px 18px 16px;
  align-content: end;
  background-image: var(--live-art);
  background-size: 145%;
  background-position: 90% center;
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(15, 16, 22, 0.12);
  isolation: isolate;
  --live-accent: rgba(255,255,255,0.82);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}
.live-option:hover,
.live-option:focus-visible {
  transform: translateY(-4px);
  box-shadow:
    0 20px 36px rgba(15, 16, 22, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.4),
    0 0 28px color-mix(in srgb, var(--live-accent) 56%, white 44%);
  filter: saturate(1.04);
}
.live-option:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--live-accent) 72%, white 28%);
  outline-offset: 3px;
}
.live-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.1) 18%, rgba(9,12,18,0.18) 52%, rgba(7,10,18,0.8) 100%);
  z-index: 0;
}
.live-option::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.72) 18%, rgba(255,255,255,0.28) 34%, rgba(255,255,255,0.08) 52%, rgba(255,255,255,0.02) 72%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.18) 16%, rgba(255,255,255,0.04) 34%, rgba(255,255,255,0.08) 76%, rgba(255,255,255,0.34) 100%);
  z-index: 1;
  pointer-events: none;
}
.live-option::before,
.live-option::after {
  pointer-events: none;
}
.live-option::after {
  box-shadow: inset 5px 0 0 var(--live-accent);
}
.live-option > * {
  position: relative;
  z-index: 2;
}
.live-option strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 1.8vw, 1.95rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.live-option p {
  font-size: 1rem;
  line-height: 1.48;
  color: rgba(23, 19, 16, 0.78);
  max-width: 26ch;
}

.live-option .live-meta {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.82em;
  opacity: 0.9;
}

@supports not (color: color-mix(in srgb, white 50%, black 50%)) {
  .live-option:hover,
  .live-option:focus-visible {
    box-shadow:
      0 20px 36px rgba(15, 16, 22, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.4),
      0 0 28px rgba(196, 133, 92, 0.36);
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-option {
    transition: box-shadow 0.24s ease, filter 0.24s ease;
  }

  .live-option:hover,
  .live-option:focus-visible {
    transform: none;
  }
}
.live-option-solo {
  --live-accent: #b44e63;
  background-size: 150%;
  background-position: 20% 34%;
}
.live-option-band {
  --live-accent: #c59a2e;
  background-size: 145%;
  background-position: 22% center;
}
.live-shell .live-layout {
  display: block;
}
.live-shell .card-grid-two {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 14px;
}
.session-shell .info-card {
  position: relative;
  gap: 10px;
  min-height: 182px;
  padding: 18px 18px 16px;
  box-shadow: 0 16px 30px rgba(25, 19, 14, 0.06);
}
.session-shell .info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: var(--card-accent, rgba(23, 19, 16, 0.18));
}
.session-shell .info-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 1.65vw, 1.78rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.session-shell .info-card p {
  font-size: 1.03rem;
  line-height: 1.55;
  color: rgba(23, 19, 16, 0.74);
}
.session-shell .info-card span {
  font-size: 0.88rem;
  line-height: 1.35;
  color: rgba(23, 19, 16, 0.6);
}
.session-shell .tone-blush {
  --card-accent: #c77d59;
}
.session-shell .tone-sage {
  --card-accent: #5f8b65;
}
.session-shell .tone-sand {
  --card-accent: #c39a42;
}
.production-shell .card-grid-two {
  gap: 14px;
}
.production-card {
  position: relative;
  overflow: hidden;
  gap: 10px;
  min-height: 188px;
  padding: 18px 18px 16px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 30px rgba(25, 19, 14, 0.05);
  isolation: isolate;
}
.production-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: var(--production-accent, rgba(23, 19, 16, 0.18));
  z-index: 2;
}
.production-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 40%, rgba(255,255,255,0.82) 58%, rgba(255,255,255,0.38) 76%, rgba(255,255,255,0.08) 90%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.2) 18%, rgba(255,255,255,0.08) 72%, rgba(255,255,255,0.54) 100%),
    var(--production-art);
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
  background-position: left center, center, 88% center;
  z-index: 0;
  pointer-events: none;
}
.production-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.46rem, 1.65vw, 1.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.production-card > * {
  position: relative;
  z-index: 1;
}
.production-card p {
  font-size: 1.02rem;
  line-height: 1.54;
  color: rgba(23, 19, 16, 0.74);
  max-width: 30ch;
}
.production-card-engineering {
  --production-accent: #6b8e76;
  --production-art: url('images/Professionelles Musikstudio mit modernem Equipment.png');
}
.production-card-bigband {
  --production-accent: #b7745d;
  --production-art: url('images/production-big-band-recording.png');
}
.centered-action {
  display: flex;
  justify-content: center;
}
.gift-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: start;
  padding: 20px 22px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border-left: 3px solid rgba(165, 110, 86, 0.24);
  overflow: hidden;
}
.gift-accent {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 96px;
  height: 96px;
  margin: 0;
  opacity: 0.78;
  z-index: 0;
  pointer-events: none;
  transform: translateY(-50%);
}
.gift-accent img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.98) brightness(1.02);
}
.gift-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0) 28%, rgba(255,255,255,0.28) 68%, rgba(255,255,255,0.7) 100%);
}
.gift-banner h2 {
  max-width: 16ch;
}
.gift-banner > div:first-of-type {
  max-width: 26rem;
}
.gift-banner p[data-i18n="gift.text"] {
  max-width: 42ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.18rem, 1.45vw, 1.46rem);
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: rgba(23, 19, 16, 0.8);
  grid-column: 1 / 2;
}
.gift-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  grid-column: 1 / 2;
}
.gift-ideas {
  margin-top: 10px;
}
.gift-idea {
  position: relative;
  gap: 10px;
  min-height: 0;
  padding: 18px 18px 16px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 28px rgba(25, 19, 14, 0.05);
}
.gift-idea::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: var(--gift-accent, rgba(23, 19, 16, 0.18));
}
.gift-idea strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.38rem, 1.55vw, 1.7rem);
  line-height: 1;
  letter-spacing: -0.028em;
  color: var(--ink);
}
.gift-idea p {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(23, 19, 16, 0.72);
}
.gift-idea-session {
  --gift-accent: #b44e63;
}
.gift-idea-song {
  --gift-accent: #c59a2e;
}
.gift-idea-creative {
  --gift-accent: #6a9274;
}
.gift-banner > :not(.gift-accent) {
  position: relative;
  z-index: 1;
}

@media (min-width: 921px) {
  .gift-shell {
    display: block;
  }

  .gift-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    padding: 16px 18px 14px;
    gap: 8px 14px;
    align-items: start;
  }

  .gift-banner h2 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(2.1rem, 3vw, 3.2rem);
  }

  .gift-banner > div:first-of-type {
    max-width: none;
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .gift-banner p[data-i18n="gift.text"] {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(1.02rem, 1.1vw, 1.2rem);
    grid-column: 1 / 2;
    grid-row: auto;
    align-self: start;
  }

  .gift-banner > :not(.gift-accent) {
    max-width: none;
  }

  .gift-accent {
    right: 16px;
    top: 50%;
    width: 112px;
    height: 112px;
  }

  .gift-actions {
    grid-column: 1 / 2;
    grid-row: auto;
    align-self: start;
    margin-top: 2px;
  }

  .gift-ideas {
    margin-top: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-content: stretch;
  }

  .gift-idea {
    min-height: 0;
    padding: 14px 16px 13px;
    gap: 6px;
  }

  .gift-idea strong {
    font-size: clamp(1.24rem, 1.35vw, 1.5rem);
  }

  .gift-idea p {
    font-size: 0.94rem;
    line-height: 1.42;
  }
}
.session-shell .section-heading,
.session-shell .card-grid,
.session-shell .centered-action,
.production-shell .section-heading,
.production-shell .card-grid,
.production-shell .centered-action,
.gift-shell .gift-banner {
  position: relative;
  z-index: 1;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.music-card {
  position: relative;
  overflow: hidden;
  min-height: 158px;
  padding: 12px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  color: #fff;
  background-size: cover;
  background-position: center center;
}
.music-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(0,0,0,0.7));
}
.music-card.has-art {
  background-image: var(--card-art);
  background-size: cover;
  background-position: center center;
}
.music-card.has-art::before {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.08) 0%, rgba(0,0,0,0.72) 100%);
}
.music-card > * {
  position: relative;
  z-index: 1;
}
.spotify {
  background: linear-gradient(160deg, #143124, #1f7c49 60%, #0f1913);
}
.youtube {
  background: linear-gradient(160deg, #511313, #bc2b2b 58%, #220f0f);
}
.neutral {
  background: linear-gradient(160deg, #463b31, #8d725c 58%, #221915);
}
.service,
.meta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
}
.music-card strong {
  font-size: 0.96rem;
  line-height: 1.1;
  text-wrap: auto;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.booking-sidebar {
  display: grid;
  gap: 14px;
}
.booking-photo {
  aspect-ratio: 0.92;
}
.booking-actions {
  display: flex;
  justify-content: center;
}
.booking-panel {
  padding: 12px;
  border: 1px solid rgba(21,19,17,0.08);
  background: rgba(255,255,255,0.65);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.booking-frame {
  width: 100%;
  min-height: 820px;
  border: 0;
  border-radius: calc(var(--radius-xl) - 8px);
  background: #fff;
}

@media (min-width: 921px) {
  .site-header {
    padding-top: 6px;
  }

  .header-inner {
    gap: 16px;
    padding: 9px 14px;
  }

  .nav {
    gap: 8px;
  }

  .nav a,
  .lang-btn {
    padding: 8px 14px;
    font-size: 0.84rem;
  }

  .section-shell {
    border-radius: 28px;
  }

  .hero-shell {
    padding-top: 18px;
    padding-bottom: 14px;
  }

  .hero-grid {
    position: relative;
    display: block;
    min-height: 470px;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    width: min(76%, 980px);
    max-width: none;
    gap: 8px;
    padding: 2px 0 6px;
  }

  .hero-copy h1 {
    max-width: 24ch;
  }

  .hero-title-compact {
    font-size: clamp(1.95rem, 3.5vw, 3.05rem);
  }

  .heading-single-line {
    white-space: nowrap;
  }

  .heading-small {
    font-size: clamp(1.42rem, 2.15vw, 2rem);
  }

  .hero-copy .eyebrow,
  .hero-copy p:not(.eyebrow) {
    max-width: 52ch;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .hero-notes,
  .hero-copy .hero-feature,
  .hero-copy .hero-actions {
    margin-left: 0;
  }

  .hero-notes {
    width: min(100%, 52ch);
    padding: 16px 18px;
  }

  .hero-feature {
    max-width: none;
  }

  .hero-media {
    /* Hero image block:
       - width = overall image size
       - top = move image up/down
       - right = move image left/right
       - height = how tall the image area is */
    position: absolute;
    top: -24px;
    right: -29px;
    width: min(46%, 760px);
    height: calc(100% + 24px);
    min-height: 0;
    padding-left: 0;
    justify-content: flex-end;
    z-index: 1;
  }

  .hero-media::before {
    /* Hero veil overlay:
       - use this to soften the image into the page
       - first gradient mostly affects the left/right blend
       - second gradient mostly affects the top/bottom blend
       - increase white/opacity to make the fade stronger */
    content: "";
    position: absolute;
    inset: -10px -12px -12px -108px;
    border-radius: 34px;
    background:
      radial-gradient(circle at 84% 16%, rgba(255,255,255,0.2), transparent 20%),
      linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.38) 18%, rgba(255,255,255,0.08) 36%, rgba(255,255,255,0) 58%),
      linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.18) 14%, rgba(255,255,255,0.06) 34%, rgba(255,255,255,0.06) 72%, rgba(255,255,255,0.44) 88%, rgba(255,255,255,0.82) 100%);
    pointer-events: none;
    z-index: 2;
  }

  .hero-card-single {
    width: 100%;
    max-width: none;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 32px;
    border-color: transparent;
    box-shadow: none;
    background: transparent;
  }

  .hero-card-single::after {
    background:
      radial-gradient(circle at 84% 22%, rgba(255,255,255,0.16), transparent 22%),
      linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.02) 20%, rgba(255,255,255,0.06) 78%, rgba(255,255,255,0.34) 100%);
  }

  .hero-card-single img {
    /* Hero crop + image fade:
       - object-position: first value = move subject left/right, second = up/down
       - mask-image: controls the true fade on the image itself
       - in the mask, #000 = visible, transparent = faded out
       - move transparent earlier to increase the fade strength */
    object-position: 58% 68%;
    filter: saturate(0.9) contrast(0.96) brightness(1.03);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.3) 12%, rgba(0,0,0,0.72) 22%, #000 34%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.3) 12%, rgba(0,0,0,0.72) 22%, #000 34%, #000 100%);
  }

  .about-photo,
  .live-photo {
    min-height: 100%;
  }

  .about-photo {
    display: none;
  }

  .about-shell {
    overflow: hidden;
  }

  .about-shell::before {
    z-index: 1;
  }

  .about-shell::after {
    /* About image layer:
       - this is the actual About picture on desktop
       - width = image size
       - left = move image left/right
       - top / bottom = how much vertical space the image occupies
       - background-position: first value = move subject left/right, second = up/down
       - mask-image controls the fade
       - first mask gradient (90deg) = right-side fade strength
       - second mask gradient (180deg) = top/bottom fade strength
       - in the mask, #000 = visible, transparent = faded out */
    content: "";
    position: absolute;
    left: -76px;
    top: 20px;
    bottom: 0px;
    width: min(44%, 510px);
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    background-image: url("images/about-placeholder.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 58% 8%;
    filter: saturate(0.88) contrast(0.96) brightness(1.03);
    -webkit-mask-image:
      linear-gradient(90deg, rgba(0,0,0,0.98) 0%, #000 52%, #000 55%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.01) 80%, transparent 100%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.01) 50%, rgba(0,0,0,0.04) 50%, rgba(0,0,0,0.12) 50%, rgba(0,0,0,0.3) 16%, rgba(0,0,0,0.62) 22%, rgba(0,0,0,0.92) 30%, #000 38%, #000 62%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0.04) 92%, transparent 100%);
    mask-image:
      linear-gradient(90deg, rgba(0,0,0,0.98) 0%, #000 -1%, #000 0%, rgba(0,0,0,0.08) 30%, rgba(0,0,0,0.01) 40%, transparent 100%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.12) 10%, rgba(0,0,0,0.3) 16%, rgba(0,0,0,0.62) 22%, rgba(0,0,0,0.92) 30%, #000 38%, #000 62%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0.04) 92%, transparent 100%);
  }

  .about-shell .section-heading {
    /* About title block:
       - max-width on the heading text below controls how much title width stays clear of the image */
    position: relative;
    z-index: 2;
    max-width: none;
    width: 100%;
    overflow: visible;
  }

  .about-shell .section-heading h2,
  .about-shell .section-heading .eyebrow {
    /* Reduce or increase this max-width if you want the title to overlap more or less with the image */
    position: relative;
    z-index: 2;
    max-width: 74%;
  }

  .about-copy {
    /* About text card:
       - margin-left = distance between image and text card
       - padding = inner spacing inside the text card
       - background / backdrop-filter = how glassy or solid the card feels */
    position: relative;
    z-index: 1;
    align-content: center;
    margin-left: clamp(228px, 31%, 390px);
    padding: 24px 26px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-color: rgba(23, 19, 16, 0.06);
  }

  .about-layout {
    /* About section content height:
       - reduce min-height to remove empty space below the text card
       - increase min-height if the image or card feels cramped */
    position: relative;
    display: block;
    min-height: 260px;
  }

  .session-accent {
    right: 12px;
    top: 22px;
    width: min(280px, 26%);
    opacity: 0.24;
  }

  .production-accent {
    right: 10px;
    top: 18px;
    width: min(210px, 22%);
    height: 164px;
    opacity: 0.78;
  }

  .gift-accent {
    right: 8px;
    width: 94px;
    height: 112px;
    opacity: 0.9;
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .music-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gift-banner { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .section-tracker {
    display: grid;
    right: 8px;
    gap: 8px;
  }
  .back-to-top {
    right: 12px;
    bottom: 14px;
    min-width: 58px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.74rem;
  }
  .tracker-link em {
    display: none;
  }
  .tracker-link span {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.96);
  }
  .header-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
    border-radius: 24px;
    padding: 12px;
  }
  .brand { display: none; }
  .nav {
    display: contents;
  }
  .nav a {
    min-height: 42px;
    justify-content: center;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 9px 8px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.1;
    border-radius: 17px;
  }
  .lang-switch {
    position: static;
    justify-self: stretch;
    background: rgba(255,255,255,0.95);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    min-height: 42px;
    padding: 3px;
  }
  .about-layout,
  .live-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(150px, 0.92fr);
    gap: 14px;
    align-items: start;
  }
  .about-layout,
  .live-layout,
  .booking-layout {
    gap: 14px;
  }
  .session-accent {
    right: -6px;
    top: 26px;
    width: min(450px, 96%);
    opacity: 0.34;
  }
  .gift-accent {
    right: -2px;
    top: 24%;
    width: 94px;
    height: 112px;
  }
  .production-accent {
    right: -8px;
    top: 18px;
    width: min(210px, 28%);
    height: 156px;
  }
  .about-photo,
  .live-photo,
  .booking-photo {
    max-width: 320px;
  }
  .hero-media {
    justify-content: flex-end;
    width: 100%;
    max-width: 220px;
    margin-top: 8px;
    position: relative;
  }
  .hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(270deg, rgba(255,255,255,0) 58%, rgba(255,255,255,0.92) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .card-grid-three,
  .card-grid-two,
  .music-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .info-card {
    min-height: 162px;
    padding: 13px 14px;
  }
}

@media (max-width: 640px) {
  main { gap: 10px; }
  .section { padding: 10px 0 0; }
  .shell { width: min(calc(100% - 20px), var(--shell)); }
  .section-tracker {
    right: 6px;
    top: auto;
    bottom: 18px;
    transform: none;
    gap: 7px;
  }
  .tracker-link span {
    width: 7px;
    height: 7px;
  }
  body::before {
    background:
      linear-gradient(180deg, rgba(251,251,250,0.9), rgba(251,251,250,0.94)),
      radial-gradient(circle at 82% 18%, rgba(86, 116, 141, 0.08), transparent 22%),
      radial-gradient(circle at 18% 58%, rgba(79, 107, 89, 0.06), transparent 24%),
      url("images/edited-_DSC9339-Edit-Edit-scaled.jpg");
    background-size: auto, auto, auto, cover;
    background-position: center, center, center, center;
    opacity: 0.22;
    filter: saturate(0.8) blur(2px);
  }
  .section-shell {
    padding: 20px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
  }
  .session-shell::after,
  .gift-shell::after {
    opacity: 0.16;
    background-position: center, center;
  }
  .hero-shell {
    padding-bottom: 14px;
  }
  h1 { font-size: clamp(2.7rem, 12vw, 4.6rem); }
  h2 { font-size: clamp(1.7rem, 7.2vw, 2.35rem); }
  .card-grid-three,
  .card-grid-two,
  .music-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    display: block;
    position: relative;
    min-height: 520px;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
    gap: 10px;
    max-width: 78%;
    min-height: auto;
  }
  .hero-actions {
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
  }
  .hero-notes {
    width: min(100%, 100%);
    gap: 8px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(5px);
  }
  .hero-actions .button {
    min-height: 42px;
    padding-inline: 14px;
    white-space: nowrap;
  }
  .hero-feature {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.46;
  }
  .hero-media {
    position: absolute;
    top: -118px;
    right: -132px;
    width: 70%;
    max-width: none;
    height: 390px;
    margin: 0;
    z-index: 1;
    pointer-events: none;
  }
  .hero-media::before {
    inset: 0;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.62) 20%, rgba(255,255,255,0.1) 40%, rgba(255,255,255,0) 55%),
      linear-gradient(180deg, rgba(255,255,255,0.54) 0%, rgba(255,255,255,0.12) 18%, rgba(255,255,255,0.08) 62%, rgba(255,255,255,0.72) 88%, rgba(255,255,255,0.94) 100%);
    border-radius: 24px;
  }
  .hero-card-single {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    max-width: none;
    margin-top: 0;
    border-radius: 24px;
  }
  .hero-card-single img {
    object-position: 58% 88%;
  }
  .about-layout,
  .live-layout,
  .booking-layout {
    gap: 12px;
  }
  .about-photo,
  .live-photo,
  .booking-photo {
    display: none;
  }
  .session-accent {
    right: -8px;
    top: 22px;
    width: 340px;
    opacity: 0.28;
  }
  .gift-accent {
    right: -6px;
    top: 26%;
    width: 78px;
    height: 92px;
  }
  .production-accent {
    right: -12px;
    top: 12px;
    width: 124px;
    height: 132px;
  }
  .production-shell .section-heading {
    position: relative;
    max-width: none;
    width: 100%;
    overflow: visible;
  }
  .production-shell .section-heading h2,
  .production-shell .section-heading .eyebrow {
    position: relative;
    z-index: 1;
    max-width: 72%;
  }
  .production-shell .section-heading::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -34px;
    width: 58%;
    height: calc(100% + 36px);
    border-radius: 28px;
    background-image:
      linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.84) 18%, rgba(255,255,255,0.28) 40%, rgba(255,255,255,0.06) 62%, rgba(255,255,255,0) 80%),
      linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.14) 18%, rgba(255,255,255,0.12) 82%, rgba(255,255,255,0.9) 100%),
      url("images/Professionelles Musikstudio mit modernem Equipment.png");
    background-size: cover, cover, cover;
    background-repeat: no-repeat;
    background-position: left center, center, 74% center;
    z-index: 0;
    pointer-events: none;
  }
  .production-accent {
    display: none;
  }
  .about-shell .section-heading {
    position: relative;
    max-width: none;
    width: 100%;
    overflow: visible;
  }
  .about-shell .section-heading h2,
  .about-shell .section-heading .eyebrow {
    position: relative;
    z-index: 1;
    max-width: 68%;
  }
  .about-shell .section-heading::after {
    content: "";
    position: absolute;
    top: -18px;
    right: -38px;
    width: 66%;
    height: calc(100% + 52px);
    transform: translate(16px, 0);
    border-radius: 30px;
    background-image:
      linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 14%, rgba(255,255,255,0.2) 34%, rgba(255,255,255,0.04) 54%, rgba(255,255,255,0) 74%),
      linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.1) 18%, rgba(255,255,255,0.1) 82%, rgba(255,255,255,0.94) 100%),
      url("images/about-placeholder.jpg");
    background-size: cover, cover, cover;
    background-repeat: no-repeat;
    background-position: left center, center, 96% 34%;
    pointer-events: none;
    z-index: 0;
  }
  .about-copy,
  .booking-panel {
    padding: 16px;
  }
  .live-shell {
    overflow: hidden;
  }
  .live-layout {
    position: relative;
    padding-right: 0;
  }
  .live-shell .section-heading {
    position: relative;
    max-width: none;
    width: 100%;
    padding-right: 0;
    min-height: 0;
    overflow: hidden;
  }
  .live-shell .section-heading h2,
  .live-shell .section-heading .eyebrow {
    position: relative;
    z-index: 1;
    max-width: 72%;
  }
  .live-shell .section-heading::after {
    content: "";
    position: absolute;
    top: 6px;
    right: -54px;
    width: 62%;
    height: calc(100% - 12px);
    border-radius: 30px;
    background-image:
      linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.88) 18%, rgba(255,255,255,0.36) 42%, rgba(255,255,255,0.08) 64%, rgba(255,255,255,0) 82%),
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.18) 20%, rgba(255,255,255,0.14) 80%, rgba(255,255,255,0.96) 100%),
      url("images/edited-_DSC9383-Edit-scaled-e1725545137809.jpg");
    background-size: cover, cover, cover;
    background-repeat: no-repeat;
    background-position: left center, center, 82% center;
    pointer-events: none;
    filter: saturate(0.92);
    z-index: 0;
  }
  .live-layout > * {
    position: relative;
    z-index: 1;
  }
  .booking-frame {
    width: 100%;
    min-height: 760px;
    height: auto;
    margin: 0;
    transform: none;
  }
  .booking-panel {
    padding: 14px;
  }
  .card-grid,
  .music-grid {
    gap: 8px;
  }
  .info-card,
  .music-card {
    min-height: auto;
    padding: 12px 13px;
  }
  .info-card strong {
    font-size: 0.92rem;
    line-height: 1.08;
  }
  .info-card p {
    font-size: 0.82rem;
    line-height: 1.38;
  }
  .info-card span {
    font-size: 0.76rem;
  }
  .music-card {
    min-height: 148px;
    padding: 11px;
    gap: 4px;
  }
  .music-card strong {
    font-size: 0.9rem;
  }
  .service,
  .meta {
    font-size: 0.68rem;
  }
  .nav a,
  .lang-btn { font-size: 0.82rem; }
  .nav {
    display: contents;
  }
  .nav a {
    min-height: 38px;
    padding: 7px 6px;
    font-size: 0.74rem;
    font-weight: 600;
    border-radius: 15px;
  }
  .nav-book {
    grid-column: auto;
    padding-inline: 10px !important;
    background: linear-gradient(180deg, #27201b, #171310) !important;
    border-color: rgba(23, 19, 16, 0.18);
    color: #fff !important;
    min-width: 84px;
    justify-content: center;
    -webkit-text-fill-color: #fff;
    font-size: 0.82rem !important;
  }
  .lang-switch {
    padding: 3px;
    min-height: 38px;
    border-radius: 16px;
  }
  .lang-btn {
    min-width: 0;
    flex: 1 1 0;
    min-height: 30px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  .section-heading {
    padding-left: 12px;
    padding-bottom: 10px;
  }
  .section-booking {
    padding-top: 10px;
  }
  .section-booking .shell {
    width: calc(100% - 2px);
  }
  .section-booking .section-head {
    margin-bottom: 24px;
    padding-inline: 14px;
  }
  .section-booking .booking-panel {
    padding: 8px;
    border: 1px solid rgba(21,19,17,0.08);
    background: rgba(255,255,255,0.65);
    box-shadow: var(--shadow);
    border-radius: 24px;
    overflow: hidden;
  }
  .section-booking .booking-frame {
    width: 100%;
    min-height: 760px;
    border: 0;
    border-radius: 20px;
    background: #fff;
  }
}
