/* ========================================================================
   Die Flohristen — Editorial concert site
   v3 — clean, hierarchical, professional
   ======================================================================== */

:root {
  /* Palette */
  --bg:        #0E0A0B;
  --bg-2:      #15100F;
  --bg-3:      #1F1815;
  --paper:     #F2EAD7;
  --paper-2:   #E8DEC6;
  --ink:       #F0E7D4;
  --ink-mute:  #A89B83;
  --ink-dim:   #6F644F;
  --line:      rgba(240, 231, 212, 0.08);
  --line-2:    rgba(240, 231, 212, 0.16);

  /* Accents — single dominant accent */
  --gold:      #F2C14E;
  --gold-2:    #E8A933;
  --wine:      #8E2E3F;  /* used on cream backgrounds only */
  --plum:      #3A1F1F;

  /* Layout */
  --maxw:      1280px;
  --pad-x:     32px;
  --pad-s:     120px;

  /* Type */
  --f-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --f-body:    "DM Sans", "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle vignette */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 800px at 80% -10%, oklch(0.65 0.13 80 / 0.05), transparent 60%),
    radial-gradient(900px 600px at -10% 60%, oklch(0.55 0.10 30 / 0.05), transparent 60%);
  z-index: 0;
}

::selection { background: var(--gold); color: var(--bg); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== Layout primitives ===== */

.wrap { max-width: var(--maxw); padding: 0 var(--pad-x); margin: 0 auto; }
section { position: relative; z-index: 1; }
.section-pad { padding: var(--pad-s) 0; }

/* ===== Type helpers ===== */

.label {
  font-family: var(--f-body);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1;
}
.label-gold { color: var(--gold); }
.label-mute { color: var(--ink-mute); }

.lede {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 56ch;
  margin: 0;
}

/* Headline scale */
.h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.h2 em, .h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0;
}

/* ===== Section header pattern ===== */

.sect-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.sect-head .meta { display: flex; flex-direction: column; gap: 12px; }
.sect-head .num {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold);
}
.sect-head .meta .lede { font-size: 15px; margin-top: 8px; max-width: 32ch; }
.sect-head .h2 { max-width: 16ch; }

/* ===== Nav ===== */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  align-items: center;
  gap: 16px;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 10, 11, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav .logo {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  display: inline-flex; align-items: center; gap: 10px;
  justify-self: start;
}
.nav .logo .ast {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  animation: spin 16s linear infinite;
  transform-origin: center;
}
.nav .logo-image,
.nav .custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.nav .custom-logo {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 52px;
  object-fit: contain;
}
.nav .fallback-logo {
  display: block;
  width: auto;
  max-width: 220px;
  height: 38px;
  object-fit: contain;
}
@keyframes spin { to { transform: rotate(360deg); } }
.nav ul {
  list-style: none; display: flex; justify-content: center; gap: 28px; padding: 0; margin: 0;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  justify-self: center;
}
.nav ul a {
  color: var(--ink-mute);
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
.nav ul a:hover, .nav ul a.active { color: var(--ink); }
.nav ul a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px; height: 1px;
  background: var(--gold);
}
.nav .burger {
  display: none;
  appearance: none; border: 0; background: transparent;
  width: 42px; height: 42px; border-radius: 8px;
  color: var(--ink); cursor: pointer;
  justify-self: end;
}
.nav .burger:hover { background: var(--line); }
.nav .burger svg { width: 22px; height: 22px; }

/* ===== Buttons ===== */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover { background: oklch(from var(--gold) calc(l + 0.04) c h); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(240, 231, 212, 0.04); }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ===== Hero — full-bleed image with overlay text ===== */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: var(--flohristen-hero-image, url('../media/band-stage.jpg'));
  background-size: cover;
  background-position: center 30%;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 76%, rgba(14,10,11,.24) 92%, var(--bg) 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: 150px 0 34px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  width: fit-content;
  max-width: calc(100vw - 40px);
  padding: 14px 22px;
  border: 1px solid oklch(from var(--gold) l c h / 0.62);
  background: rgba(14, 10, 11, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 99px;
  box-shadow: 0 14px 44px rgba(0,0,0,.28);
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 0 4px oklch(from var(--gold) l c h / 0.20);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.3); opacity: .7; }
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0;
  text-shadow: 0 10px 50px rgba(0,0,0,.5);
}
.hero h1 .line { display: block; }
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero p.lead {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 68ch;
  margin: 0;
  padding: 18px 24px;
  background: rgba(14, 10, 11, 0.72);
  border: 1px solid rgba(240, 231, 212, 0.18);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
.hero p.lead b { color: var(--gold); font-weight: 500; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-subline {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px var(--pad-x);
  font-family: var(--f-body);
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
  background: var(--bg);
  border-top: 1px solid rgba(240, 231, 212, 0.16);
  border-bottom: 1px solid rgba(240, 231, 212, 0.16);
}
.hero-subline .dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 0 5px oklch(from var(--gold) l c h / 0.20);
}

/* ===== Marquee ===== */

.marquee {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--bg);
  padding: 16px 0;
  z-index: 3;
  border-top: 1px solid var(--bg);
  border-bottom: 1px solid var(--bg);
}
.marquee-track {
  display: flex; gap: 48px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  letter-spacing: -0.015em;
  display: inline-flex; align-items: center; gap: 48px;
}
.marquee-item::after {
  content: "✺";
  color: var(--bg);
  opacity: .5;
  font-size: 20px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== About ===== */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-pull {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  text-wrap: balance;
  margin: 0 0 32px;
}
.about-pull em { color: var(--gold); font-style: italic; font-weight: 400; }
.about-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-mute);
  margin: 0 0 18px;
}
.about-body p:first-child { color: var(--ink); }
.about-body p.sig {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--gold);
  line-height: 1.3;
  margin-top: 12px;
}

.band-members {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.band-members-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.band-members-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
}
.band-member {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.band-member-name {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.05;
  color: var(--ink);
}
.band-member-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
}

.stats {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats > div {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--line);
}
.stats > div:last-child { border-right: 0; padding-right: 0; }
.stats .n {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.025em;
}
.stats .l {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 12px;
}

.about-portrait {
  margin-top: 96px;
  position: relative;
}
.about-portrait img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: contrast(1.05);
}
.about-portrait .cap {
  position: absolute;
  left: 0; bottom: -36px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ===== Repertoire — setlist style ===== */

.rep-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.rep-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(180px, 0.7fr) 160px;
  gap: 18px;
  padding: 18px 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background .25s, padding .25s;
  position: relative;
}
.rep-row::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, oklch(from var(--gold) l c h / 0.04), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.rep-row:hover { padding-left: 12px; }
.rep-row:hover::before { opacity: 1; }
.rep-row .rnum {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
}
.rep-row .rname {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--ink);
  transition: color .2s;
}
.rep-row:hover .rname { color: var(--gold); }
.rep-row .rnote {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.4;
}
.rep-row .rtags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.rep-row .rtag {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid var(--line-2);
  border-radius: 99px;
  color: var(--ink-mute);
}

.rep-footer {
  margin-top: 40px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.rep-footer .note {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-mute);
  max-width: 460px;
}

/* ===== Tour Dates ===== */

.tour {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tour-list { border-top: 1px solid var(--line); }
.tour-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1.4fr) minmax(0, 1fr) 170px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .2s, background .25s;
  position: relative;
}
.tour-row:hover { padding-left: 12px; background: rgba(240, 231, 212, 0.02); }
.tour-date { display: flex; flex-direction: column; gap: 4px; }
.tour-date .d {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.tour-date .m {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.tour-venue {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.tour-venue .sub {
  display: block;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0;
  margin-top: 6px;
  font-weight: 400;
}
.tour-loc {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink-mute);
}
.tour-cta { justify-self: end; }
.tour-status {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 99px;
  border: 1px solid var(--line-2);
  color: var(--ink-mute);
}
.tour-status.open { color: var(--gold); border-color: oklch(from var(--gold) l c h / 0.5); }
.tour-status.sold { color: var(--ink-dim); }

.tour-foot {
  margin-top: 36px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--ink-mute);
  font-size: 14px;
}

/* ===== Anlässe — clean grid ===== */

.anl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.anl-card {
  background: var(--bg);
  padding: 36px 32px;
  min-height: 220px;
  display: flex; flex-direction: column;
  gap: 18px;
  transition: background .25s;
}
.anl-card:hover { background: var(--bg-2); }
.anl-card .anum {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.anl-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.anl-card p {
  color: var(--ink-mute);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

/* ===== Gallery ===== */

.gallery { background: var(--bg); }
.gal-grid {
  column-count: 3;
  column-gap: 16px;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: block;
  background: var(--bg-3);
}
.gal-item img,
.gal-item video {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.02);
  transition: transform .5s ease, filter .3s;
}
.gal-item:hover img,
.gal-item:hover video { transform: scale(1.03); filter: contrast(1.05) saturate(1.1); }
.gal-item .cap {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 6px 10px;
  background: rgba(14, 10, 11, 0.65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 99px;
  opacity: 0;
  transition: opacity .25s;
}
.gal-item:hover .cap { opacity: 1; }
.gal-item .play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
}
.gal-item .play span {
  width: 64px; height: 64px;
  border-radius: 99px;
  background: var(--gold);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  color: var(--bg);
  transition: transform .25s;
}
.gal-item:hover .play span { transform: scale(1.08); }
.gal-item .play span::after {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 4px;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 5, 5, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 200;
  display: grid; place-items: center;
  padding: 32px;
  animation: lbFade .25s ease;
}
.lightbox[hidden] {
  display: none !important;
}
@keyframes lbFade { from { opacity: 0 } to { opacity: 1 } }
.lightbox-inner {
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  position: relative;
}
.lightbox img,
.lightbox video {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.lightbox iframe {
  width: min(92vw, 1120px);
  aspect-ratio: 16 / 9;
  max-height: 88vh;
  border: 0;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.lightbox .lb-close,
.lightbox .lb-nav {
  appearance: none;
  background: rgba(255,255,255,.08);
  color: var(--paper);
  border: 1px solid var(--line-2);
  cursor: pointer;
  border-radius: 99px;
  display: grid; place-items: center;
  transition: background .15s, color .15s, border-color .15s;
}
.lightbox .lb-close {
  position: absolute;
  top: -56px; right: 0;
  width: 44px; height: 44px;
  font-size: 18px;
}
.lightbox .lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  font-size: 20px;
}
.lightbox .lb-prev { left: -68px; }
.lightbox .lb-next { right: -68px; }
.lightbox .lb-close:hover,
.lightbox .lb-nav:hover {
  background: var(--gold); color: var(--bg); border-color: var(--gold);
}
.lightbox .lb-counter {
  position: absolute;
  bottom: -42px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ===== Live Quote section ===== */

.live {
  position: relative;
  margin-top: var(--pad-s);
}
.live-inner {
  position: relative;
  height: 65vh;
  min-height: 480px;
  display: grid; place-items: center;
  overflow: hidden;
}
.live-bg {
  position: absolute; inset: 0;
  background-image: var(--flohristen-live-image, url('../media/gallery/04.jpg'));
  background-size: cover;
  background-position: center 40%;
  filter: contrast(1.05) brightness(0.55);
}
.live-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.live-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 50%, transparent 0%, rgba(14, 10, 11, 0.7) 80%, var(--bg) 100%);
}
.live-quote {
  position: relative; z-index: 1;
  max-width: 980px;
  text-align: center;
  padding: 0 32px;
}
.live-quote .q {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.live-quote .q em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.live-quote .attr {
  margin-top: 24px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ===== Booking ===== */

.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 32px;
  align-items: start;
}
.book-left h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.book-left p { color: var(--ink-mute); font-size: 16px; line-height: 1.65; margin: 0 0 16px; }
.book-info {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.book-info .row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.book-info .row .k {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.6;
}
.book-info .row .v {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.book-info .row .v a {
  color: var(--ink);
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

/* Form */
.form { display: flex; flex-direction: column; gap: 22px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-grid .full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  font: inherit;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  transition: border-color .2s;
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-dim); }
.field textarea { min-height: 90px; resize: vertical; padding-top: 8px; }
.field select {
  appearance: none;
  color: var(--ink);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3e%3cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A89B83' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
}
.field select option { background: var(--bg-2); color: var(--ink); }
.field .err {
  font-family: var(--f-body);
  font-size: 12px;
  color: oklch(0.7 0.18 25);
  margin-top: 2px;
}
.field.has-err input,
.field.has-err select,
.field.has-err textarea { border-bottom-color: oklch(0.7 0.18 25); }

.form-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.form-foot .hint {
  color: var(--ink-dim); font-size: 12px;
  max-width: 380px;
  line-height: 1.5;
}

.toast {
  padding: 14px 18px;
  border-radius: 4px;
  background: oklch(0.32 0.10 145);
  border: 1px solid oklch(0.5 0.15 145);
  color: oklch(0.95 0.05 145);
  font-size: 14px;
  font-weight: 500;
}

/* ===== Footer ===== */

.foot {
  margin-top: var(--pad-s);
  padding: 96px 0 32px;
  border-top: 1px solid var(--line);
  position: relative;
}
.foot-mark {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin: 0 0 48px;
}
.foot-mark em { font-style: italic; font-weight: 400; color: var(--gold); }
.foot-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.foot-cols h5 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.foot-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-cols a, .foot-cols li {
  color: var(--ink); font-size: 14px;
  font-family: var(--f-body);
  transition: color .15s;
}
.foot-cols a:hover { color: var(--gold); }
.foot-cols p { color: var(--ink-mute); font-size: 14px; line-height: 1.65; margin: 0; max-width: 360px; }
.foot-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px;
  color: var(--ink-dim); font-size: 12px;
  flex-wrap: wrap;
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(14, 10, 11, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex; flex-direction: column;
  padding: 100px 32px 32px;
  transform: translateY(-100%);
  transition: transform .3s ease;
  gap: 6px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 40px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.02em;
}

/* ===== Responsive ===== */

@media (max-width: 1180px) {
  :root { --pad-s: 88px; }
  .nav ul { display: none; }
  .nav .burger { display: grid; place-items: center; }
  .nav .custom-logo,
  .nav .fallback-logo { max-width: 180px; }
  .hero {
    min-height: auto;
    padding-top: 74px;
    display: block;
    background: #050303;
  }
  .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1672 / 940;
    background-image: none;
    background-size: contain;
    background-position: center top;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
  }
  .hero-bg::after { display: none; }
  .hero-grid { display: none; }
  .sect-head { grid-template-columns: 1fr; gap: 24px; }
  .sect-head .h2 { max-width: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .band-members-list { grid-template-columns: 1fr; }
  .about-portrait { margin-top: 40px; }
  .about-portrait img { height: 420px; }
  .rep-row { grid-template-columns: 60px minmax(0, 1fr); gap: 16px; padding: 22px 0; }
  .rep-row .rnote, .rep-row .rtags { display: none; }
  .tour-row { grid-template-columns: 90px minmax(0, 1fr); gap: 16px; row-gap: 6px; padding: 20px 0; }
  .tour-loc, .tour-cta { grid-column: 2; justify-self: start; }
  .anl-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { column-count: 2; }
  .book-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 1180px) and (max-height: 700px) and (orientation: landscape) {
  .nav {
    grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.6fr);
    padding: 12px 20px;
    background: rgba(14, 10, 11, 0.72);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    backdrop-filter: blur(16px) saturate(140%);
  }
  .nav ul {
    display: flex;
    justify-content: flex-end;
    gap: clamp(14px, 2.4vw, 26px);
    font-size: clamp(12px, 1.65vw, 15px);
  }
  .nav .burger { display: none; }
  .nav .fallback-logo,
  .nav .custom-logo {
    max-width: min(160px, 34vw);
    height: 34px;
  }
  .nav .logo { justify-self: start; }
  .mobile-menu {
    display: none !important;
  }
  .hero { padding-top: 58px; }
}

@media (max-width: 720px) {
  :root { --pad-x: 20px; --pad-s: 64px; }
  .nav { padding: 14px 20px; }
  .nav .fallback-logo,
  .nav .custom-logo {
    max-width: min(180px, 58vw);
    height: 34px;
  }
  .nav ul, .nav .cta { display: none; }
  .nav .burger { display: grid; place-items: center; }
  .hero {
    min-height: auto;
    padding-top: 70px;
    display: block;
    background: #050303;
  }
  .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1672 / 940;
    background-image: none;
    background-size: contain;
    background-position: center;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .hero-bg::after { display: none; }
  .hero-grid { display: none; }
  .hero-tag {
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 11px 14px;
  }
  .hero-subline {
    font-size: 12px;
    letter-spacing: 0.10em;
    padding: 14px var(--pad-x);
  }
  .label { font-size: 15px; letter-spacing: 0.18em; }
  .lede { font-size: 16px; }
  .h1 { font-size: clamp(44px, 13vw, 68px); }
  .h2 { font-size: clamp(36px, 11vw, 56px); }
  .sect-head {
    margin-bottom: 40px;
    padding-bottom: 24px;
  }
  .sect-head .meta .lede { max-width: none; }
  .marquee-item { font-size: 24px; gap: 32px; }
  .about-pull { font-size: clamp(30px, 9vw, 42px); }
  .about-body p { font-size: 16px; }
  .band-members { margin-top: 36px; padding-top: 22px; }
  .band-member { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .band-member-role { text-align: left; }
  .about-portrait img { height: auto; aspect-ratio: 4 / 3; }
  .rep-row .rname { font-size: 22px; }
  .anl-grid { grid-template-columns: 1fr; }
  .anl-card {
    min-height: auto;
    padding: 28px 22px;
  }
  .stats { grid-template-columns: 1fr; }
  .stats > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .stats > div:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .gal-grid { column-count: 1; }
  .gal-item .cap { opacity: 1; }
  .tour-date .d { font-size: 28px; }
  .tour-venue { font-size: 20px; }
  .tour-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }
  .tour-loc,
  .tour-cta {
    grid-column: auto;
    justify-self: start;
  }
  .tour-cta .btn { padding: 12px 18px; }
  .live-inner {
    min-height: 360px;
    height: 54vh;
  }
  .live-quote { padding: 0 var(--pad-x); }
  .live-quote .q { font-size: clamp(34px, 10vw, 52px); }
  .book-info .row { grid-template-columns: 1fr; gap: 4px; }
  .form-foot {
    align-items: stretch;
  }
  .form-foot .btn {
    width: 100%;
    justify-content: center;
  }
  .lightbox {
    padding: 20px;
  }
  .lightbox .lb-close {
    top: 12px;
    right: 12px;
    z-index: 2;
  }
  .lightbox .lb-prev,
  .lightbox .lb-next {
    top: auto;
    bottom: -60px;
    transform: none;
  }
  .lightbox .lb-prev { left: 50%; margin-left: -58px; }
  .lightbox .lb-next { right: 50%; margin-right: -58px; }
  .foot {
    padding-top: 64px;
  }
  .foot-mark {
    margin-bottom: 34px;
  }
  .foot-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  :root { --pad-x: 16px; --pad-s: 52px; }
  .nav { padding: 12px 16px; }
  .hero { padding-top: 62px; }
  .hero-subline {
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .hero-subline .dot {
    margin-top: 4px;
  }
  .mobile-menu {
    padding: 86px 22px 28px;
  }
  .mobile-menu a {
    font-size: clamp(30px, 10vw, 40px);
    padding: 12px 0;
  }
  .marquee {
    padding: 12px 0;
  }
  .marquee-track {
    gap: 28px;
  }
  .marquee-item {
    font-size: 20px;
    gap: 28px;
  }
  .sect-head {
    margin-bottom: 32px;
  }
  .rep-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .rep-row .rnum {
    font-size: 10px;
  }
  .stats .n {
    font-size: 44px;
  }
  .foot-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .foot-mark {
    font-size: clamp(58px, 19vw, 88px);
  }
  .foot-bottom > div:last-child {
    flex-wrap: wrap;
  }
}

@media (max-width: 1180px) and (max-height: 700px) and (orientation: landscape) {
  .nav ul { display: flex !important; }
  .nav .burger { display: none !important; }
  .mobile-menu {
    display: none !important;
    transform: translateY(-100%) !important;
  }
  .mobile-menu.open {
    transform: translateY(-100%) !important;
  }
}
