/* ============================================================
   TANZCAPELLA — Eventband
   Design system: black + white/cream + champagne gold
   Display: Fraunces  ·  Body: Hanken Grotesk  ·  Labels: Space Mono
   ============================================================ */

:root {
  /* Palette */
  --ink-0:   #0b0b0b;          /* deepest, hero base                */
  --ink:     #121212;          /* page background                   */
  --ink-2:   #1a1a1a;          /* raised panels                     */
  --ink-3:   #232323;          /* cards                             */
  --cream:   #f4ede1;          /* primary text                      */
  --cream-2: rgba(244,237,225,.74);
  --muted:   #948e87;          /* meta / captions                   */
  --gold:    #e6b463;          /* primary accent (upscale)          */
  --gold-br: #f7d495;          /* gold highlight                    */
  --coral:   #ff6f61;          /* energy accent (joy) — used sparingly */
  --line:    rgba(244,237,225,.12);
  --line-2:  rgba(244,237,225,.07);

  /* Type */
  --display: "Fraunces", Georgia, serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono:    "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Rhythm */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 76px;
  --radius: 18px;
  --radius-lg: 26px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

::selection { background: var(--gold); color: var(--ink-0); }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

/* ---------- eyebrow / section label ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .7em;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: .7;
}
.eyebrow .idx { color: inherit; }

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.02; margin: 0; letter-spacing: -.015em; font-optical-sizing: auto; }
.h-hero {
  font-size: clamp(2.9rem, 8.5vw, 6.6rem);
  font-weight: 500;
  line-height: .96;
}
.h-hero em { font-style: italic; color: var(--gold); font-weight: 400; }
h2.title { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.0; max-width: 16ch; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.1; }
.lede { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--cream-2); line-height: 1.55; max-width: 60ch; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
.measure { max-width: 64ch; color: var(--cream-2); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--body); font-weight: 600; font-size: .98rem;
  padding: 15px 28px; border-radius: 100px;
  border: 1px solid transparent; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: var(--ink-0); }
.btn-gold:hover { background: var(--gold-br); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ink { background: var(--ink-0); color: var(--cream); }
.btn-ink:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translate(3px,-3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11,11,11,.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-2);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { position: relative; display: inline-flex; align-items: center; gap: .12em; font-family: var(--display); font-weight: 600; font-size: 1.32rem; letter-spacing: -.01em; }
.brand .dot { color: var(--coral); }
.nav .brand { color: var(--ink); }
.brand-logo { height: 40px; width: auto; display: block; transition: opacity .3s ease; }
.brand-logo.is-light { position: absolute; left: 0; top: 50%; transform: translateY(-50%); opacity: 0; }
.nav.scrolled .brand-logo.is-dark { opacity: 0; }
.nav.scrolled .brand-logo.is-light { opacity: 1; }
@media (max-width: 480px) { .brand-logo { height: 32px; } }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: .93rem; color: rgba(22,17,29,.72); position: relative; padding: 4px 0; transition: color .2s ease; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--gold); transition: width .25s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-social { display: flex; gap: 12px; }
.nav-social a { color: rgba(22,17,29,.72); transition: color .2s ease, transform .2s ease; }
.nav-social a:hover { color: #a9701a; transform: translateY(-2px); }
.nav .btn { padding: 11px 22px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); padding: 6px; }

/* scrolled state: dark bar, light text */
.nav.scrolled .brand { color: var(--cream); }
.nav.scrolled .nav-links a { color: var(--cream-2); }
.nav.scrolled .nav-links a:hover { color: var(--cream); }
.nav.scrolled .nav-social a { color: var(--cream-2); }
.nav.scrolled .nav-social a:hover { color: var(--gold); }
.nav.scrolled .nav-toggle { color: var(--cream); }

/* Repertoire-Seite: Header/Nav mit weißem Hintergrund statt dunklem Balken */
.page-repertoire .nav.scrolled {
  background: #fff;
  backdrop-filter: none;
  border-bottom-color: var(--line);
}
.page-repertoire .nav.scrolled .brand,
.page-repertoire .nav.scrolled .nav-links a,
.page-repertoire .nav.scrolled .nav-social a,
.page-repertoire .nav.scrolled .nav-toggle { color: var(--ink); }
.page-repertoire .nav.scrolled .nav-links a:hover,
.page-repertoire .nav.scrolled .nav-social a:hover { color: #a9701a; }
.page-repertoire .nav.scrolled .brand-logo.is-dark { opacity: 1; }
.page-repertoire .nav.scrolled .brand-logo.is-light { opacity: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(18px, 3vh, 32px));
  background: #ffffff; color: var(--ink);
  text-align: center;
}
.h-hero { color: var(--ink); }
.h-hero em { color: #cf9a3a; }
.hero .eyebrow { justify-content: center; color: #bf8a2e; margin: clamp(14px, 2.2vh, 22px) 0 0; }
.hero .eyebrow::before { display: none; }
.hero-sub {
  margin: clamp(14px, 2vh, 22px) auto 0; max-width: 46ch;
  font-size: clamp(1rem, 1.5vw, 1.18rem); color: rgba(22,17,29,.66);
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: clamp(20px, 2.6vh, 32px); }
.hero .btn-ghost { border-color: rgba(22,17,29,.22); color: var(--ink); }
.hero .btn-ghost:hover { border-color: #bf8a2e; color: #a9701a; }

/* video banner — full page width, height capped so it stays short; cropped to favor faces */
.hero-video-frame {
  position: relative; width: 100%; height: clamp(220px, 32vw, 460px); overflow: hidden;
  background: var(--ink-0) center/cover no-repeat;
  background-image: url('assets/images/hero-poster.jpg');
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }

.hero-inner { padding: clamp(36px, 6vw, 64px) 0 0; }

/* band lineup — its own block below the text, never overlapping the video */
.hero-stage {
  display: flex; justify-content: center;
  margin-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(44px, 7vw, 84px);
}
.hero-band {
  display: block; width: 100%; max-width: min(1180px, 96%); height: auto;
  margin-inline: auto;
}

/* ============================================================
   BAND / HEY
   ============================================================ */
.band-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.band-copy p { color: var(--cream-2); }
.band-copy h2.title { margin-bottom: 26px; color: var(--cream); }
.band-copy .lede { color: var(--cream); margin-bottom: 22px; }
.band-figure { position: relative; }
.band-figure img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.band-figure .tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 100px; background: rgba(11,11,11,.72); backdrop-filter: blur(6px);
  border: 1px solid var(--line); color: var(--cream-2);
}
.chip.is-gold { color: var(--ink-0); background: var(--gold); border-color: var(--gold); font-weight: 700; }
.region-note { margin-top: 18px; font-family: var(--mono); font-size: .8rem; color: var(--muted); letter-spacing: .04em; }

/* ============================================================
   LIVE & PAKETE
   ============================================================ */
.lp-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.lp-head .lede { margin-top: 22px; }

.basis {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 26px;
}
.basis-body { padding: clamp(28px, 4vw, 48px); }
.basis-body .kicker { font-family: var(--mono); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.basis-body h3 { margin: 10px 0 22px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.feat { list-style: none; margin: 0 0 28px; padding: 0; columns: 2; column-gap: 30px; }
.feat li { break-inside: avoid; padding: 9px 0 9px 26px; position: relative; color: var(--cream-2); font-size: .98rem; }
.feat li::before { content: ""; position: absolute; left: 0; top: 16px; width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid var(--gold); }
.basis-figure { position: relative; min-height: 280px; }
.basis-figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.basis-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink-2), transparent 38%); }
/* Artwork variant (silhouette illustration on white) — sits as a branded cream panel, not a cropped photo */
.basis-figure.is-art { background: linear-gradient(160deg, var(--cream), #e9dcc6); }
.basis-figure.is-art img { object-fit: contain; padding: clamp(18px, 3.5vw, 36px); }
.basis-figure.is-art::after { background: none; }

.addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.addon { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, border-color .3s ease; }
.addon:hover { transform: translateY(-5px); border-color: rgba(230,180,99,.4); }
.addon-img { aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(160deg, #fbf7ef, #ece1cf); display: flex; align-items: center; justify-content: center; }
.addon-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.addon:hover .addon-img img { transform: scale(1.05); }
.addon-body { padding: 24px 24px 28px; }
.addon-body .num { font-family: var(--mono); font-size: .75rem; color: var(--coral); letter-spacing: .1em; }
.addon-body h4 { font-family: var(--display); font-weight: 500; font-size: 1.32rem; margin: 6px 0 12px; line-height: 1.1; }
.addon-body p { color: var(--cream-2); font-size: .94rem; margin: 0; }

/* ============================================================
   MEDIA
   ============================================================ */
.media-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 40px; }
.media-head .credit { font-family: var(--mono); font-size: .76rem; color: var(--muted); letter-spacing: .04em; }
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px;
}
.gallery a { overflow: hidden; border-radius: 14px; position: relative; background: var(--ink-2); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery a:hover img { transform: scale(1.06); }
.gallery .g-wide { grid-column: span 2; }
.gallery .g-tall { grid-row: span 2; }
.media-video { margin-top: 16px; display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; align-items: stretch; }
.media-video--top { grid-template-columns: 1fr 1fr; margin-top: 0; margin-bottom: 40px; gap: 24px; }
.video-frame { position: relative; border-radius: 18px; overflow: hidden; background: #000; aspect-ratio: 16/9; min-width: 0; min-height: 0; border: 1px solid var(--line); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: #000; }
.media-eyebrow { margin-bottom: clamp(28px, 4vw, 44px); }
.media-shorts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.shorts-frame { position: relative; border-radius: 18px; overflow: hidden; background: #000; aspect-ratio: 9/16; }
.shorts-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; color: var(--cream); text-align: left;
  display: flex; gap: 18px; align-items: flex-start; justify-content: space-between;
  padding: 24px 0; font-family: var(--display); font-weight: 500; font-size: clamp(1.1rem, 1.9vw, 1.42rem); line-height: 1.18;
}
.faq-q .ico { flex: none; width: 26px; height: 26px; position: relative; margin-top: 4px; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--gold); transition: transform .3s ease, opacity .3s ease; }
.faq-q .ico::before { left: 0; top: 12px; width: 26px; height: 2px; }
.faq-q .ico::after  { left: 12px; top: 0; width: 2px; height: 26px; }
.faq-item.open .faq-q .ico::after { transform: scaleY(0); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 44px 26px 0; color: var(--cream-2); }
.faq-a-inner a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.faq-aside { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq-aside .card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; }
.faq-aside h3 { font-weight: 500; margin-bottom: 14px; }
.faq-aside p { color: var(--cream-2); font-size: .96rem; }
.faq-aside .btn { margin-top: 22px; }

/* ============================================================
   REPERTOIRE teaser strip
   ============================================================ */
.rep-strip { background: linear-gradient(120deg, #262626, var(--ink-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 60px); display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.rep-strip h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); max-width: 20ch; }
.rep-strip p { color: var(--cream-2); margin-top: 10px; max-width: 44ch; }

/* ============================================================
   BOOKING
   ============================================================ */
.book-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px, 5vw, 72px); align-items: start; }
.book-intro p { color: var(--cream-2); }
.book-intro h2.title { margin-bottom: 24px; }
.contact-card {
  margin-top: 30px; display: flex; align-items: center; gap: 18px;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.contact-card img { width: 54px; height: 54px; object-fit: contain; flex: none; }
.contact-card .cc-label { font-family: var(--display); font-weight: 500; font-size: 1.2rem; color: var(--gold); }

/* form */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--coral); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--cream);
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 15px; transition: border-color .2s ease, background .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(148,142,135,.7); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--ink-3); }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e6b463' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.field select option { background: var(--ink-2); }
.pkg-legend { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; display: block; }
.pkg-legend .req { color: var(--coral); }
.pkg-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pkg {
  display: flex; align-items: center; gap: 11px; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: border-color .2s ease, background .2s ease;
  font-size: .95rem; color: var(--cream-2);
}
.pkg:hover { border-color: rgba(230,180,99,.45); }
.pkg input { accent-color: var(--gold); width: 18px; height: 18px; flex: none; }
.pkg:has(input:checked) { border-color: var(--gold); background: rgba(230,180,99,.08); color: var(--cream); }
.form .submit-row { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.form .hint { font-size: .82rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--ink-0); padding-block: clamp(50px, 7vw, 84px) 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-logo { height: 34px; width: auto; display: block; }
.footer-tag { color: var(--cream-2); margin-top: 16px; max-width: 34ch; font-size: .96rem; }
.footer-col h5 { font-family: var(--mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; font-weight: 400; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--cream-2); font-size: .95rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line-2); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: var(--muted); font-family: var(--mono); letter-spacing: .03em; }

/* ============================================================
   SUB-PAGES (repertoire / impressum / success)
   ============================================================ */
.subhead { padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 90px)); padding-bottom: clamp(30px, 5vw, 54px); background: radial-gradient(110% 80% at 50% 0%, #262626, var(--ink)); }
.subhead h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 500; margin-top: 14px; }
.subhead .lede { margin-top: 18px; }
.back-link { font-family: var(--mono); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: inline-flex; gap: 8px; align-items: center; }
.back-link:hover { color: var(--gold-br); }

/* repertoire */
.rep-tools { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 30px; }
.rep-search { position: relative; flex: 1; min-width: 240px; }
.rep-search input { width: 100%; background: var(--ink-2); border: 1px solid var(--line); border-radius: 100px; padding: 14px 20px 14px 46px; color: var(--cream); font-size: 1rem; }
.rep-search input:focus { outline: none; border-color: var(--gold); }
.rep-search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.rep-count { font-family: var(--mono); font-size: .8rem; color: var(--muted); letter-spacing: .05em; }
.rep-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px 14px; list-style: none; margin: 0; padding: 0; }
.rep-list li { padding: 12px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--ink-2); display: flex; align-items: center; gap: 12px; transition: border-color .2s ease, transform .15s ease; }
.rep-list li:hover { border-color: rgba(230,180,99,.4); transform: translateY(-2px); }
.rep-list li .n { font-family: var(--mono); font-size: .72rem; color: var(--gold); flex: none; opacity: .8; }
.rep-list li .t { font-size: .96rem; }
.rep-empty { color: var(--muted); font-family: var(--mono); padding: 30px 0; }
.uvm { margin-top: 28px; font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--gold); }

/* impressum / success */
.prose { max-width: 60ch; }
.prose h2 { font-size: 1.5rem; margin: 34px 0 14px; }
.prose p { color: var(--cream-2); }
.prose a { color: var(--gold); }
.success { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 22px; padding-top: var(--nav-h); }
.success .crown { width: 80px; }
.success h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 500; }

/* ============================================================
   LIGHT SECTIONS — bring white into the page
   ============================================================ */
.section--light { background: #ffffff; color: var(--ink); }
.section--light .eyebrow { color: #bf8a2e; }
.section--light .eyebrow::before { background: #bf8a2e; }
.section--light .eyebrow .idx { color: inherit; }
.section--light h2.title,
.section--light h3 { color: var(--ink); }
.section--light .lede,
.section--light p { color: rgba(22,17,29,.68); }
.section--light .band-copy h2.title { color: var(--ink); }
.section--light .band-copy .lede { color: var(--ink); }

/* FAQ on light */
.section--light .faq-list { border-top-color: rgba(22,17,29,.14); }
.section--light .faq-item { border-bottom-color: rgba(22,17,29,.14); }
.section--light .faq-q { color: var(--ink); }
.section--light .faq-q .ico::before,
.section--light .faq-q .ico::after { background: #bf8a2e; }
.section--light .faq-a-inner { color: rgba(22,17,29,.7); }
.section--light .faq-a-inner a { color: #bf8a2e; }
.section--light .faq-aside .card { background: var(--ink); border-color: transparent; }
.section--light .faq-aside .card h3 { color: var(--cream); }
.section--light .faq-aside .card p { color: var(--cream-2); }

/* ============================================================
   BOOKING — standout gold CTA section (most important CTA)
   ============================================================ */
.book-section { background: linear-gradient(155deg, #f7d495 0%, var(--gold) 52%, #d99b45 100%); color: var(--ink-0); }
.book-section .eyebrow { color: var(--ink-0); }
.book-section .eyebrow::before { background: var(--ink-0); opacity: .55; }
.book-section .eyebrow .idx { color: inherit; }
.book-section h2.title { color: var(--ink-0); }
.book-section .book-intro p { color: rgba(11,11,11,.78); }
.book-section .contact-card { background: #fff; border-color: rgba(22,17,29,.08); }
.book-section .contact-card:hover { border-color: var(--ink-0); }
.book-section .contact-card .cc-label { color: #a9701a; }

.book-form-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 40px 70px -30px rgba(70,45,10,.55);
}
.book-section .field label,
.book-section .pkg-legend { color: #7a6a4d; }
.book-section .field label .req,
.book-section .pkg-legend .req { color: var(--coral); }
.book-section .field input,
.book-section .field select,
.book-section .field textarea {
  background-color: #faf7f1; color: var(--ink-0); border-color: rgba(22,17,29,.16);
}
.book-section .field input::placeholder,
.book-section .field textarea::placeholder { color: rgba(22,17,29,.4); }
.book-section .field input:focus,
.book-section .field select:focus,
.book-section .field textarea:focus { border-color: var(--gold); background-color: #fff; }
.book-section .field select option { background: #fff; color: var(--ink-0); }
.book-section .pkg { color: rgba(22,17,29,.75); border-color: rgba(22,17,29,.16); }
.book-section .pkg:hover { border-color: var(--gold); }
.book-section .pkg:has(input:checked) { border-color: var(--gold); background-color: rgba(230,180,99,.18); color: var(--ink-0); }
.book-section .form .hint { color: #7a6a4d; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .band-grid, .basis, .faq-grid, .book-grid, .media-video { grid-template-columns: 1fr; }
  .basis-figure { min-height: 220px; order: -1; }
  .basis-figure::after { background: linear-gradient(0deg, var(--ink-2), transparent 50%); }
  .addons { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .media-shorts { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .faq-aside { position: static; }
}
@media (max-width: 720px) {
  .nav-links, .nav-social { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 4px; position: fixed; inset: var(--nav-h) 0 auto 0;
    background: rgba(11,11,11,.97); backdrop-filter: blur(14px); padding: 18px var(--gutter) 26px; border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links a { padding: 12px 0; font-size: 1.1rem; color: var(--cream); border-bottom: 1px solid var(--line-2); }
  .feat { columns: 1; }
  .media-shorts { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .addons { grid-template-columns: 1fr; }
  .form, .pkg-options { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

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