/* ============================================================================
   DOMINUM — Night Is Calling
   Design language derived from the album cover: a cold petrol-to-black night,
   warm bone/moon highlights. The hero's eyecatcher is the band itself —
   a full-bleed band photo behind the original cover lockup. No decorative
   fake moon: the moon already lives on the cover.
   Type: League Gothic (cover typeface) / Inter (body) / Space Mono (data).
   ========================================================================= */

/* Visually hidden — accessible to screen readers and search engines */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:root {
  --ink: #070D0E;        /* near-black with a teal undertone (cover shadow) */
  --petrol: #0E2024;     /* deep teal (cover mid) */
  --steel: #16292C;      /* raised panels */
  --line: rgba(242, 239, 226, 0.12);
  --bone-dim: #B9B6A8;   /* muted cream body text */
  --bone: #F2EFE2;       /* cream — exact lockup color */
  --moon: #EFE7C9;       /* warm moon glow — the accent */
  --moon-glow: rgba(239, 231, 201, 0.45);

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone-dim);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Analog horror patina — a barely-there dust/grain film over the whole page,
   so everything feels slightly decayed. Opacity kept tiny to never muddy text. */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 60;
  pointer-events: none; opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 200;
  background: var(--moon); color: var(--ink); padding: .6rem 1rem;
  font-family: 'Space Mono', monospace; font-size: .8rem; border-radius: 2px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--moon); outline-offset: 3px;
}

/* ============================ TYPOGRAPHY ================================== */
/* League Gothic is a single-weight condensed face; we lean on size + spacing. */
.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--moon); margin: 0 0 1rem;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: 'League Gothic', sans-serif;
  font-weight: 400; text-transform: uppercase;
  letter-spacing: .015em; line-height: .9;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  color: var(--bone); margin: 0;
}
.section-title.sm { font-size: clamp(2rem, 5vw, 3rem); }
.section-title.center { text-align: center; }


.section-lead {
  color: var(--bone-dim); max-width: 46ch; margin: 1rem 0 0; font-size: 1.05rem;
}
.tour-lines {
  margin: 1.8rem 0 0;
  display: flex; flex-direction: column; gap: .15rem;
}
.tour-lines p {
  font-family: 'League Gothic', sans-serif; text-transform: uppercase;
  letter-spacing: .03em; line-height: 1.05; margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.5rem); color: var(--bone-dim);
}
.tour-lines p:nth-child(2) {
  font-size: clamp(1.1rem, 2vw, 1.85rem); color: var(--bone);
  padding-left: clamp(.8rem, 1.5vw, 1.4rem);
}
.tour-lines-cta {
  font-size: clamp(1.6rem, 3.2vw, 3rem) !important; color: var(--moon) !important;
  padding-left: clamp(1.6rem, 3vw, 2.8rem) !important;
}

/* ============================ NAVIGATION ================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
  background: rgba(7,13,14,0.35);
  backdrop-filter: blur(4px);
}
.site-header.scrolled {
  background: rgba(7, 13, 14, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 1.05rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; flex: none; }
/* Logo-Gelb.png is already the brand cream colour — no recolour filter needed. */
.nav-logo-img { height: 26px; width: auto; display: block; }
.nav-menu {
  list-style: none; display: flex; align-items: center; gap: 1.9rem;
  margin: 0; padding: 0;
}
.nav-menu a {
  font-family: 'Space Mono', monospace; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--bone-dim);
  transition: color .2s var(--ease); position: relative;
}
.nav-menu a:not(.nav-cta):hover { color: var(--bone); }
.nav-menu a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--moon); transition: width .25s var(--ease);
}
.nav-menu a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--moon); color: var(--bone) !important;
  padding: .5rem 1.1rem; border-radius: 2px;
  transition: background .2s var(--ease), color .2s var(--ease) !important;
}
.nav-cta:hover { background: var(--moon); color: var(--ink) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: 0; cursor: pointer; padding: 6px; z-index: 110;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--bone);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================== HERO (adaptive image) ================== */
/* Ghost-style: the band photo scales to the screen WIDTH at its natural aspect
   (width:100%; height:auto). The whole band is always visible — NOTHING is ever
   cropped. No fixed height, no object-fit. A portrait file is swapped in on
   narrow screens. No text is laid over the photo. Photo pixels are NEVER filtered. */
.hero { position: relative; background: var(--ink); line-height: 0; }
.hero-media { display: block; }
.hero-media img {
  display: block; width: 100%; height: auto;
}

/* Fallback styling when an image is missing */
.art-fallback img { display: none; }
.art-fallback {
  display: grid; place-items: center; aspect-ratio: 1;
  background: linear-gradient(145deg, var(--steel), var(--petrol));
  border: 1px dashed var(--line); border-radius: 4px;
}
.art-fallback::after {
  content: 'ARTWORK'; font-family: 'Space Mono', monospace;
  font-size: .7rem; letter-spacing: .3em; color: var(--bone-dim);
}

/* ============================== BUTTONS ================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; padding: .9rem 1.8rem; border-radius: 2px;
  cursor: pointer; transition: transform .2s var(--ease), background .2s var(--ease),
    color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  border: 1px solid transparent; will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--moon); color: var(--ink); }
.btn-primary:hover { background: var(--bone); box-shadow: 0 12px 34px -10px var(--moon-glow); }
.btn-ghost { border-color: rgba(242,239,226,0.35); color: var(--bone); background: rgba(7,13,14,0.25); }
.btn-ghost:hover { border-color: var(--moon); color: var(--moon); }

/* ============================== MARQUEE ================================= */
.marquee {
  display: block; background: var(--moon); color: var(--ink);
  overflow: hidden; white-space: nowrap; padding: .8rem 0;
  position: relative; z-index: 5;
}
.marquee-track {
  display: inline-flex; align-items: center;
  font-family: 'League Gothic', sans-serif; font-size: 1.25rem;
  letter-spacing: .14em; text-transform: uppercase;
  animation: marquee 38s linear infinite; will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
/* Spacing lives in the separator margins (NOT flex gap), so the two identical
   halves are perfectly periodic and translateX(-50%) loops with zero jump. */
.marquee-sep { opacity: .5; font-size: .7em; margin: 0 2rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================== SECTIONS ================================ */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); position: relative; }
.section-alt { background: var(--petrol); border-block: 1px solid var(--line); position: relative; overflow: hidden; }

/* Atmospheric fog — two drifting radial-gradient blobs per petrol section. */
.section-alt:not(.newsletter)::before,
.section-alt:not(.newsletter)::after {
  content: ''; position: absolute; inset: -40%;
  z-index: 0; pointer-events: none;
}
.section-alt:not(.newsletter)::before {
  background:
    radial-gradient(ellipse 55% 48% at 35% 40%, rgba(22,130,158,0.95) 0%, transparent 70%),
    radial-gradient(ellipse 46% 58% at 66% 62%, rgba(16,108,135,0.85) 0%, transparent 70%);
  animation: fog-a 13s ease-in-out infinite alternate;
}
.section-alt:not(.newsletter)::after {
  background:
    radial-gradient(ellipse 60% 50% at 62% 34%, rgba(18,120,148,0.90) 0%, transparent 70%),
    radial-gradient(ellipse 48% 62% at 38% 65%, rgba(12,95,122,0.80) 0%, transparent 70%);
  animation: fog-b 19s ease-in-out infinite alternate;
}
@keyframes fog-a {
  0%   { transform: translate(0, 0);      }
  100% { transform: translate(12%, 10%);  }
}
@keyframes fog-b {
  0%   { transform: translate(0, 0);      }
  100% { transform: translate(-11%, -9%); }
}

/* Keep all real content above the fog layer */
.section-alt > .container { position: relative; z-index: 1; }
.section-head { margin-bottom: 3.5rem; position: relative; }
/* Distressed hairline under the heading block — a bone rule whose visibility is
   eaten away by the same noise texture, so it reads torn instead of clean. */
.section-head::after {
  content: ""; display: block; height: 2px; margin-top: 1.4rem;
  width: clamp(120px, 22vw, 240px);
  background: linear-gradient(90deg, var(--moon), rgba(239,231,201,0));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='6'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55 0.9' numOctaves='2'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 -1.4 1.1'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='6'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55 0.9' numOctaves='2'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 -1.4 1.1'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.section-head.center::after { margin-left: auto; margin-right: auto; }

/* ---------- Music ---------- */
.music-grid {
  display: grid; grid-template-columns: minmax(0, 380px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center; margin-bottom: 6rem;
}
.music-meta { display: flex; flex-direction: column; gap: 2rem; }
.music-cover img, .music-cover {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.85);
}
.music-album-title {
  font-family: 'League Gothic', sans-serif; text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--bone); margin: 0; line-height: .95;
}
.music-year { display: none; }
.music-blurb { color: var(--bone-dim); max-width: 50ch; }
.music-lines {
  font-family: 'League Gothic', sans-serif; text-transform: uppercase;
  font-size: clamp(2rem, 3.8vw, 3.4rem); letter-spacing: .02em; line-height: 1.1;
  color: var(--bone); margin: 0;
}
.music-out-now { color: var(--moon); }
.stream-links { display: flex; flex-wrap: wrap; gap: .8rem; }
.stream-btn {
  font-family: 'Space Mono', monospace; font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--bone);
  border: 1px solid var(--line); padding: .75rem 1.3rem; border-radius: 2px;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.stream-btn:hover { border-color: var(--moon); color: var(--moon); background: rgba(239,231,201,0.05); }

/* ---------- Videos ---------- */
.video-carousel {
  display: flex; align-items: center; gap: 1rem;
}
.vid-nav {
  width: 2.8rem; height: 2.8rem; border-radius: 50%; cursor: pointer;
  background: transparent; border: 1px solid var(--line); color: var(--bone);
  font-size: 1.4rem; line-height: 1; display: grid; place-items: center;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.vid-nav:hover { background: var(--moon); color: var(--ink); border-color: var(--moon); }

/* Horizontal carousel — click the arrows or swipe to move through all videos. */
.video-track {
  flex: 1; min-width: 0;
  display: flex; gap: 1.6rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: .5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
.video-track::-webkit-scrollbar { display: none; }
.video-card {
  position: relative; flex: 0 0 calc((100% - 2 * 1.6rem) / 3); scroll-snap-align: start;
  aspect-ratio: 16/9; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line); cursor: pointer; background: var(--steel);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), opacity .3s; }
.video-card:hover img { transform: scale(1.05); opacity: .8; }
.video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.video-play::before {
  content: ''; width: 68px; height: 68px; border-radius: 50%;
  background: rgba(7,13,14,0.55); backdrop-filter: blur(4px);
  border: 1px solid var(--moon); box-shadow: 0 0 30px -4px var(--moon-glow);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.video-card:hover .video-play::before { transform: scale(1.08); background: var(--moon); }
.video-play::after {
  content: ''; position: absolute;
  border-style: solid; border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--bone);
  margin-left: 5px; transition: border-left-color .25s var(--ease);
}
.video-card:hover .video-play::after { border-left-color: var(--ink); }
.video-title {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.1rem .9rem;
  font-family: 'League Gothic', sans-serif; letter-spacing: .04em;
  text-transform: uppercase; color: var(--bone); font-size: 1.15rem;
  background: linear-gradient(transparent, rgba(7,13,14,0.92));
}

/* ---------- Video lightbox (plays large & centered) ---------- */
body.modal-open { overflow: hidden; }
.video-modal {
  position: fixed; inset: 0; z-index: 300; display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal-backdrop {
  position: absolute; inset: 0; background: rgba(4, 7, 8, 0.86);
  backdrop-filter: blur(8px);
}
.video-modal-inner {
  position: relative; z-index: 1; width: min(960px, 92vw); max-height: 86vh;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(239, 231, 201, 0.35); border-radius: 6px; overflow: hidden;
  background: #000;
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.9), 0 0 70px -10px var(--moon-glow);
  transform: scale(.94); transition: transform .35s var(--ease);
}
.video-modal.open .video-modal-inner { transform: scale(1); }
.video-modal-frame { position: absolute; inset: 0; }
.video-modal-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-modal-close {
  position: absolute; top: -2.8rem; right: 0; z-index: 2;
  width: 2.4rem; height: 2.4rem; padding: 0; line-height: 1;
  background: transparent; border: 0; cursor: pointer;
  color: var(--bone); font-size: 2rem; font-family: 'Inter', sans-serif;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.video-modal-close:hover { color: var(--moon); transform: scale(1.1); }
@media (max-width: 560px) {
  .video-modal-close { top: -2.6rem; right: -.2rem; }
}

/* ---------- Tour page header (clears the fixed nav) ---------- */
.tour-hero { padding-top: clamp(8rem, 16vh, 12rem); padding-bottom: clamp(2rem, 5vw, 3.5rem); }

/* ---------- Tour list (native) ---------- */
.tour-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.tour-row {
  display: grid; grid-template-columns: 120px 1fr auto; align-items: center;
  gap: 1.5rem; padding: 1.15rem 0.5rem; border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease), padding-left .2s var(--ease);
}
.tour-row:hover { background: rgba(242,239,226,0.03); padding-left: 1.1rem; }
.tour-date { display: flex; flex-direction: column; line-height: 1; }
.tour-date b {
  font-family: 'League Gothic', sans-serif; font-weight: 400; font-size: 1.9rem;
  color: var(--bone); letter-spacing: .02em;
}
.tour-date i {
  font-family: 'Space Mono', monospace; font-style: normal; font-size: .68rem;
  letter-spacing: .2em; color: var(--moon); margin-top: .25rem;
}
.tour-place { display: flex; flex-direction: column; gap: .25rem; min-width: 0; }
.tour-place b {
  font-family: 'League Gothic', sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: 1.5rem; color: var(--bone); letter-spacing: .02em; line-height: 1;
}
.tour-place i {
  font-style: normal; font-size: .85rem; color: var(--bone-dim);
}
.tour-cta {
  font-family: 'Space Mono', monospace; font-size: .74rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--bone); border: 1px solid var(--line);
  padding: .6rem 1.3rem; border-radius: 2px; white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.tour-cta:hover { background: var(--moon); color: var(--ink); border-color: var(--moon); }
.tour-more { margin-top: 1.25rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* Tour: hand-and-moon PNG fills the whole section — screen blend makes black invisible */
#tour { overflow: hidden; position: relative; }
.tour-moon {
  position: absolute;
  inset: 0;
  background: url('assets/Tour Mond Hand V2.png') no-repeat center bottom / auto 100%;
  mix-blend-mode: screen;
  opacity: 0.22;
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* ---------- Bandsintown (used on tour.html) ---------- */
.bit-wrap { min-height: 60px; }
.bit-fallback { color: var(--bone-dim); font-family: 'Space Mono', monospace; font-size: .85rem; }
.bit-fallback a { color: var(--moon); }

/* ---------- About — full photo then text below ---------- */
.about-section { background: var(--ink); }

.about-photo { position: relative; line-height: 0; }
.about-photo img { width: 100%; height: auto; display: block; }
.about-photo-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent 0%, var(--ink) 100%);
  pointer-events: none;
}

.about-content { background: var(--ink); padding-block: clamp(2.5rem, 5vh, 4.5rem); }
.about-text { max-width: 600px; }
.about-text p { color: var(--bone-dim); margin: 1.1rem 0 0; max-width: 54ch; }
.about-text code {
  font-family: 'Space Mono', monospace; font-size: .85em; color: var(--moon);
  background: var(--steel); padding: .1em .4em; border-radius: 3px;
}

/* ---------- Newsletter ---------- */
.ember-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.newsletter {
  overflow: hidden; isolation: isolate; min-height: 820px; display: flex; align-items: center;
  background: #0D0806;
}
.newsletter-inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; z-index: 1; width: 100%; }

/* Golden "magic circle": a thin glowing gold ring (conic gradient + radial
   mask) that slowly rotates, with a small orbiting glow dot. Decorative only:
   absolutely centered, pointer-events:none, clipped by .newsletter overflow. */
.magic-ring {
  position: absolute; top: 50%; left: 50%; z-index: 0; pointer-events: none;
  width: min(760px, 116vw); aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      rgba(232,199,101,0) 0deg, rgba(232,199,101,.05) 60deg,
      rgba(232,199,101,.55) 150deg, rgba(245,220,140,.9) 200deg,
      rgba(232,199,101,.55) 250deg, rgba(232,199,101,.05) 320deg, rgba(232,199,101,0) 360deg);
  /* turn the disc into a thin ring */
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 3px), #000 calc(100% - 2px), #000 100%);
          mask: radial-gradient(closest-side, transparent calc(100% - 3px), #000 calc(100% - 2px), #000 100%);
  filter: drop-shadow(0 0 22px rgba(232,199,101,.65)) drop-shadow(0 0 6px rgba(232,199,101,.4));
  opacity: .9;
  animation: ringSpin 24s linear infinite, ringPulse 6s ease-in-out infinite;
}
/* Small glow dot riding along the ring (rotates WITH the parent ring). */
.magic-orbit {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.magic-orbit::before {
  content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle, #fff, #F5DC8C 55%, rgba(232,199,101,0) 75%);
  box-shadow: 0 0 16px 4px rgba(245,220,140,.7);
}
@keyframes ringSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes ringPulse { 0%,100% { opacity: .55; } 50% { opacity: .95; } }
.bone-rule {
  display: block; width: 64px; height: 1px; margin: 0 auto 2.4rem;
  background: linear-gradient(90deg, transparent, var(--moon), transparent);
}
.newsletter-lead { color: var(--bone-dim); margin: 1rem auto 2.4rem; max-width: 48ch; }
.newsletter-form { display: flex; gap: .7rem; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1 1 220px; background: var(--ink); border: 1px solid var(--line);
  color: var(--bone); padding: .9rem 1.1rem; border-radius: 2px;
  font-family: 'Inter', sans-serif; font-size: 1rem;
  transition: border-color .2s var(--ease);
}
.newsletter-form input::placeholder { color: var(--bone-dim); }
.newsletter-form input:focus { border-color: var(--moon); outline: none; }
.newsletter-cta-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
  margin-bottom: 0;
}
.newsletter-cta-wrap .btn { padding: 1.2rem 3rem; font-size: .95rem; }
.newsletter-note {
  font-family: 'Space Mono', monospace; font-size: .72rem; letter-spacing: .1em;
  color: var(--bone-dim); margin: 0;
}
.follow-row { display: flex; align-items: center; justify-content: center; gap: 1.1rem; margin-top: 2.4rem; }
.follow-or {
  font-family: 'Space Mono', monospace; font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--bone-dim);
}

/* ============================== CONTACT ================================== */
.contact-section .section-head { margin-bottom: 2rem; }
.contact-grid {
  display: block;
}
.contact-block {
  display: flex; flex-direction: column; gap: .6rem;
}
.contact-block .eyebrow { margin-bottom: 0; }
.contact-agent {
  font-family: 'Space Mono', monospace;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bone-dim); margin: .3rem 0 -.2rem;
}
.contact-email {
  font-family: 'League Gothic', sans-serif; text-transform: uppercase;
  font-size: clamp(1.4rem, 2.6vw, 2.5rem); letter-spacing: .02em; line-height: 1;
  color: var(--bone); text-decoration: none;
  transition: color .2s var(--ease);
}
.contact-email:hover { color: var(--moon); }
@media (max-width: 600px) {
  .contact-email { font-size: clamp(1.2rem, 5.5vw, 1.8rem); }
}

/* ============================== SITE CLOSING ============================== */
.site-sep {
  background: var(--ink);
  padding-block: 2.5rem;
  width: 100%;
  display: flex; align-items: center; gap: 1.5rem;
  color: var(--moon);
}
.site-sep::before,
.site-sep::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.site-sep-icon { height: 60px; width: auto; flex: none; display: block; }

/* ============================== FOOTER ================================= */
/* Tidy two-tier footer: socials (Space Mono) over a rule, then copy + legal
   (Inter). Two type styles only — no logo, no extra font mix. */
.site-footer { background: var(--ink); padding-block: 3rem; }
.footer-social {
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
}
.footer-social a {
  display: inline-flex; align-items: center;
  color: var(--moon); transition: color .2s var(--ease), transform .2s var(--ease);
}
.footer-social a:hover { color: var(--bone); transform: translateY(-2px); }
.footer-social svg { width: 1.5rem; height: 1.5rem; display: block; }
.footer-bar {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.footer-copy, .footer-links {
  font-family: 'Inter', sans-serif; font-size: .8rem; color: var(--bone-dim); margin: 0;
}
.footer-links a { color: var(--bone-dim); transition: color .2s var(--ease); }
.footer-links a + a { margin-left: 1.3rem; }
.footer-links a:hover { color: var(--moon); }

/* ============================= MERCH TEASER ============================ */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}
.merch-card {
  display: flex; flex-direction: column; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color .25s var(--ease), transform .3s var(--ease);
}
.merch-card:hover { border-color: rgba(239,231,201,0.35); transform: translateY(-4px); }

.merch-img {
  aspect-ratio: 1; overflow: hidden; background: var(--steel);
}
.merch-img.merch-placeholder { background: var(--steel); }
.merch-img img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease); }
.merch-card:hover .merch-img img { transform: scale(1.04); }

.merch-info {
  padding: .9rem 1rem 1rem;
  background: var(--petrol); flex: 1;
}
.merch-name {
  font-family: 'Space Mono', monospace; font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--bone-dim);
  display: block; line-height: 1.4; text-align: center;
}

/* ============================== REVEAL ================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================ RESPONSIVE =============================== */
@media (max-width: 900px) {
  .music-grid { grid-template-columns: 1fr; }
  .music-cover { max-width: 360px; }
  .footer-legal { text-align: left; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }

  /* Solid bg, no backdrop-filter: iOS Safari traps position:fixed children
     inside any ancestor with backdrop-filter, capping the nav drawer to
     header height. Solid 0.92 opacity needs no blur.
     z-index 300 > nav-menu 200 so the X button stays clickable above the drawer. */
  .site-header { background: rgba(7,13,14,0.92); backdrop-filter: none; z-index: 300; }
  /* .scrolled must also kill backdrop-filter — otherwise iOS Safari re-traps
     the fixed drawer inside the header once the user scrolls past 40px. */
  .site-header.scrolled { backdrop-filter: none; }

  /* Music section: center cover, text and buttons in single-column layout. */
  .music-cover { max-width: 360px; margin: 0 auto; }
  .music-meta  { text-align: center; align-items: center; }
  .stream-links { justify-content: center; }

  /* z-index 210 > nav-menu 200: both live inside the header's stacking context
     (header = position:fixed z-index:300), so z-index comparisons are local to
     that context. Toggle at 110 was below the drawer's 200 → X unreachable. */
  .nav-toggle { display: flex; z-index: 210; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.8rem; padding: 2rem 2.4rem; background: var(--petrol);
    border-left: 1px solid var(--line); z-index: 200;
    transform: translateX(100%); transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1rem; }
  .nav-cta-li { margin-top: .5rem; }
}

@media (max-width: 760px) {
  .tour-row { grid-template-columns: 64px 1fr; gap: .5rem 1rem; }
  .tour-date b { font-size: 1.5rem; }
  .tour-place b { font-size: 1.25rem; }
  .tour-cta { grid-column: 2; justify-self: start; margin-top: .4rem; }

  /* Ring fills section on mobile:
     ring = 90vw, section = ring + 6rem so padding-block 3rem = exact ring-top offset. */
  .newsletter { min-height: calc(90vw + 6rem); padding-block: 3rem; }
  .magic-ring { width: 90vw; }
  /* Tighter content so everything sits comfortably within the ring. */
  .bone-rule { margin-bottom: 1rem; }
  .newsletter-lead { font-size: .88rem; margin: 0 auto 1.1rem; }
  .newsletter-cta-wrap { gap: .75rem; }
  .newsletter-cta-wrap .btn { padding: .85rem 2rem; font-size: .85rem; }
  .newsletter-note { font-size: .68rem; }

  /* Music grid is the last thing in its section — drop its 6rem tail so the
     section padding alone controls the gap to Tour. */
  .music-grid { margin-bottom: 0; }
  .music-meta { gap: 1.2rem; }

  /* Section heads: less breathing room on mobile. */
  .section-head { margin-bottom: 2rem; }

  /* Tour: no decorative image on mobile. Widget hidden — it shows "No Upcoming
     Shows" + Play My City with uncontrollable internal padding; users reach
     the full list via the tour-more buttons below. */
  .tour-moon { display: none; }
  #tour { padding-bottom: 2rem; }
  .bit-wrap { display: block; }

  /* Video carousel: overlay arrows so video gets full width. */
  .video-card { flex: 0 0 100%; }
  .video-carousel { position: relative; }
  .video-track { flex: 0 0 100%; }
  .vid-nav {
    position: absolute; z-index: 2; top: 50%; transform: translateY(-50%);
    background: rgba(7,13,14,0.72);
  }
  .video-carousel .vid-nav:first-child { left: .5rem; }
  .video-carousel .vid-nav:last-child  { right: .5rem; }

  /* Videos + Contact: pure black on mobile (no petrol, no fog). */
  #videos.section-alt,
  #contact-info.section-alt { background: var(--ink); border-block-color: transparent; }
  #videos.section-alt::before, #videos.section-alt::after,
  #contact-info.section-alt::before, #contact-info.section-alt::after { display: none; }

  /* Fog on remaining petrol sections (Tour): match desktop intensity. */
  .section-alt:not(.newsletter)::before {
    background:
      radial-gradient(ellipse 55% 48% at 35% 40%, rgba(22,130,158,0.95) 0%, transparent 70%),
      radial-gradient(ellipse 46% 58% at 66% 62%, rgba(16,108,135,0.85) 0%, transparent 70%);
  }
  .section-alt:not(.newsletter)::after {
    background:
      radial-gradient(ellipse 60% 50% at 62% 34%, rgba(18,120,148,0.90) 0%, transparent 70%),
      radial-gradient(ellipse 48% 62% at 38% 65%, rgba(12,95,122,0.80) 0%, transparent 70%);
  }
  /* Tighter separator + footer padding on mobile so the coffin sits close to the social icons */
  .site-sep { padding-block: 1.5rem; }
  .site-footer { padding-block: 1.5rem; }
}

@media (max-width: 480px) {
  .merch-grid { grid-template-columns: 1fr; }

  /* Newsletter form stacks; reset input flex so it isn't read as a tall
     220px-high box in a column flex container. */
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { flex: 0 0 auto; width: 100%; }
  .newsletter-form .btn { width: 100%; }

  /* Tour-lines: flatten indents and bump sizes on small screens */
  .tour-lines p { font-size: clamp(1.2rem, 4.5vw, 1.5rem); }
  .tour-lines p:nth-child(2) { padding-left: 0; font-size: clamp(1.4rem, 5.5vw, 1.85rem); }
  .tour-lines-cta { padding-left: 0 !important; font-size: clamp(1.4rem, 6vw, 2rem) !important; }

  /* Music lines: scale up (was too small at 5.5vw). */
  .music-lines { font-size: clamp(1.9rem, 7vw, 2.6rem); }

  /* Section title: tighten for long titles like tour */
  .section-title { font-size: clamp(2.2rem, 9vw, 5.2rem); }

  /* Contact email fits narrow screens */
  .contact-email { font-size: clamp(1.2rem, 7vw, 1.9rem); word-break: break-word; }
}

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

/* ---- Legal pages (Impressum / Datenschutz) -------------------------------- */
.legal-section { padding-top: 8rem; }
.legal-container { max-width: 760px; }
.legal-body { margin-top: 3rem; }
.legal-body h2 {
  font-family: 'League Gothic', sans-serif; text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: .02em; line-height: 1;
  color: var(--bone); margin: 2.8rem 0 .8rem;
}
.legal-body h3 {
  font-family: 'Space Mono', monospace; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--moon); margin: 1.8rem 0 .5rem;
}
.legal-body p { margin: 0 0 1rem; line-height: 1.7; }
.legal-body ul { margin: .5rem 0 1rem 1.4rem; list-style: disc; }
.legal-body ul li { margin-bottom: .4rem; line-height: 1.65; }
.legal-body a { color: var(--moon); text-decoration: underline; }
.legal-body a:hover { color: var(--bone); }
.legal-body code {
  font-family: 'Space Mono', monospace; font-size: .8em;
  background: var(--steel); padding: .1em .35em; border-radius: 3px;
  color: var(--bone);
}

/* ---- Cookie Banner -------------------------------------------------------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999; background: var(--steel);
  border-top: 1px solid var(--line);
  padding: 1.1rem clamp(1.25rem, 5vw, 4rem);
  display: flex; flex-direction: column; align-items: center;
  gap: .75rem; text-align: center;
  box-shadow: 0 -8px 32px rgba(0,0,0,.5);
}
.cookie-banner.hidden { display: none; }
.merch-price {
  font-family: 'Space Mono', monospace; font-size: .8rem;
  color: var(--moon); letter-spacing: .05em; margin-top: .2rem;
}
.cookie-text { margin: 0; font-size: .9rem; color: var(--bone-dim); }
.cookie-link { color: var(--moon); text-decoration: underline; }
.cookie-actions { display: flex; gap: .8rem; align-items: center; }
.btn-sm { padding: .45rem 1.1rem; font-size: .85rem; }
#cookie-accept { padding: .6rem 2rem; box-shadow: 0 0 0 2px var(--moon), 0 0 18px -2px var(--moon-glow); }
.btn-ghost {
  background: transparent; border: 1px solid var(--line); color: var(--bone-dim);
}
.btn-ghost:hover { border-color: var(--bone-dim); color: var(--bone); background: transparent; }
