/* ===== Design Tokens ===== */
:root {
  --color-bg: #000000;
  --color-surface: #FCFCFC;
  --color-surface-warm: #F5EDE5;
  --color-text: #FCFCFC;
  --color-text-dark: #312F2E;
  --color-text-muted: #75726F;
  --color-accent-cream: #F9E5B5;
  --color-accent-yellow: #FFC657;
  --color-accent-green: #266445;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-ui: 'Poppins', system-ui, sans-serif;

  --max-w: 1200px;
  --section-py-desktop: 120px;
  --section-py-mobile: 64px;
  --bp-mobile: 768px;
  --bp-tablet: 1024px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ===== Utility ===== */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

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

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  color: var(--color-accent-cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

/* Blur + fade the bottom edge of the hero image into the black page below
   for a smooth transition into the polaroid/dune section. */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--color-bg) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 70%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 70%);
}

.hero__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(20px, 3vw, 40px) clamp(20px, 4vw, 60px);
  z-index: 2;
}

.hero__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: 0.02em;
  color: var(--color-accent-cream);
}

.hero__logo-fallback {
  display: inline-block;
}

.hero__social {
  display: flex;
  gap: clamp(12px, 1.6vw, 22px);
  align-items: center;
}

.hero__social .icon {
  width: clamp(22px, 2.2vw, 28px);
  height: clamp(22px, 2.2vw, 28px);
  color: var(--color-accent-cream);
  transition: opacity 0.2s ease;
}

.hero__social a:hover .icon {
  opacity: 0.7;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: 20px;
  max-width: 900px;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 36px);
  margin-bottom: 4px;
}

.hero__title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  margin-bottom: 8px;
}

.hero__subline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 36px);
  margin-bottom: clamp(24px, 4vw, 40px);
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--pill {
  display: inline-block;
  border: 1px solid var(--color-accent-cream);
  color: var(--color-accent-cream);
  padding: 12px 32px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn--pill:hover {
  background: var(--color-accent-cream);
  color: var(--color-bg);
}

/* ===== Polaroid Nav ===== */
.polaroid-nav {
  position: relative;
  isolation: isolate;
  padding-block: clamp(80px, 11vw, 180px) clamp(190px, 28vw, 400px);
  background: var(--color-bg);
  overflow: hidden;
}

/* Dune image: full-width, anchored to the bottom. Its transparent sky
   blends into the black page above; the dunes rise from ~mid-polaroids
   down to the Come Alive section. */
.polaroid-nav__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  pointer-events: none;
}

.polaroid-nav__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
  flex-wrap: wrap;
}

.polaroid {
  position: relative;
  flex: 0 0 auto;
  width: clamp(200px, 21vw, 300px);
}

/* Photos sit upright (no rotation). Photo 2 slightly overlaps photo 1;
   "live dates" sits a bit apart to the right — as on the original site. */
.polaroid--music { z-index: 3; }
.polaroid--about { margin-left: -28px; z-index: 1; }
.polaroid--live  { margin-left: 56px; z-index: 2; }

.polaroid a {
  display: block;
  position: relative;
}

/* Background video shows through the transparent cut-out of the About and
   Live polaroid PNGs (subjects + film border stay opaque on top). */
.polaroid__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Soft pink/orange wash laid over the background video on hover. */
.polaroid__tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 138, 170, 0.4), rgba(255, 148, 86, 0.4));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.polaroid__img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Second photo stacked on top, cross-faded in on hover for a smooth swap. */
.polaroid__img--hover {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.polaroid:hover .polaroid__img,
.polaroid:hover .polaroid__img--hover,
.polaroid:hover .polaroid__video,
.polaroid:hover .polaroid__tint {
  transform: scale(1.03);
}

.polaroid:hover .polaroid__img--hover,
.polaroid:hover .polaroid__tint {
  opacity: 1;
}

/* Bottom-right label straddling the photo's bottom edge: Manrope italic,
   yellow fill, thin black outline, on a white rectangle. */
.polaroid__label {
  position: absolute;
  right: 5%;
  bottom: -5%;
  z-index: 5;
  background: #ffffff;
  padding: 3px 18px 6px;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(23px, 2.8vw, 35px);
  line-height: 1.1;
  color: var(--color-accent-yellow);
  -webkit-text-stroke: 0.8px var(--color-bg);
  paint-order: stroke fill;
  pointer-events: none;
}

@media (max-width: 768px) {
  .polaroid-nav__list { flex-direction: column; align-items: center; }
  .polaroid { width: min(320px, 90%); }
  .polaroid--about, .polaroid--live { margin-left: 0; }
}

/* ===== Come Alive ===== */
/* Section is transparent and pulled up so the banner overlaps the dune above. */
.come-alive {
  position: relative;
  z-index: 1;
  background: transparent;
  margin-top: clamp(-130px, -8vw, -60px);
  padding-block: 0 clamp(40px, 6vw, 72px);
  padding-inline: clamp(16px, 3vw, 44px);
}

/* Contained banner box (not full-width) over a grey-blue base; the dune
   video sits on top, desaturated, giving a grainy blue-grey tone. */
.come-alive__banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 1260px;
  margin-inline: auto;
  background: #5b6f80;
  padding: clamp(44px, 5.5vw, 72px) clamp(14px, 1.9vw, 26px);
}

.come-alive__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(0.65) contrast(1.05);
  z-index: -1;
  pointer-events: none;
}

.come-alive__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

/* Extra breathing room between the text and the left edge of the box. */
.come-alive__text {
  padding-left: clamp(16px, 3vw, 48px);
}

.come-alive__title {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.come-alive__sub {
  font-family: var(--font-body);
  font-style: normal;
  font-size: clamp(14px, 1.4vw, 17px);
  color: #ffffff;
  margin-bottom: 12px;
}

.come-alive__body {
  font-family: var(--font-body);
  font-style: normal;
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.5;
  color: #ffffff;
  max-width: 38ch;
}

.come-alive__embed {
  background: transparent;
  margin-right: clamp(20px, 3.5vw, 44px);
}

.come-alive__embed iframe {
  display: block;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .come-alive__inner { grid-template-columns: 1fr; }
}

/* ===== Section label (Manrope Medium, yellow fill, thin black outline) ===== */
.section-label {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--color-accent-yellow);
  -webkit-text-stroke: 1px var(--color-bg);
  paint-order: stroke fill;
  display: inline-block;
}

/* ===== Music ===== */
.music {
  background: var(--color-bg);
  padding-block: var(--section-py-mobile);
  text-align: center;
}

@media (min-width: 768px) {
  .music { padding-block: var(--section-py-desktop); }
}

.music__links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  flex-wrap: wrap;
  margin-block: 24px 40px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--color-text);
}

.music__links a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.music__links a:hover {
  border-color: var(--color-accent-cream);
}

.music__embed {
  max-width: 720px;
  margin-inline: auto;
}

.music__embed iframe {
  border-radius: 12px;
  display: block;
}

/* ===== About ===== */
.about {
  background: var(--color-bg);
  padding-block: var(--section-py-mobile);
}

@media (min-width: 768px) {
  .about { padding-block: var(--section-py-desktop); }
}

.about__label {
  margin-bottom: 32px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.about__text {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--color-text);
  max-width: 520px;
}

.about__text p + p {
  margin-top: 1em;
}

.about__sparkle {
  width: 28px;
  height: 28px;
  color: var(--color-accent-cream);
  margin-top: 32px;
  opacity: 0.85;
}

.about__image {
  width: 100%;
  border-radius: 8px;
}

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

/* ===== Instagram ===== */
.instagram {
  background: var(--color-bg);
  padding-block: var(--section-py-mobile);
}

@media (min-width: 768px) {
  .instagram { padding-block: var(--section-py-desktop); }
}

.instagram__inner behold-widget {
  display: block;
  width: 100%;
}

.instagram__fallback {
  text-align: center;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
}

.instagram__fallback a {
  color: var(--color-accent-cream);
  border-bottom: 1px solid currentColor;
}

/* ===== Live Dates ===== */
.live {
  background: var(--color-bg);
  padding-block: var(--section-py-mobile);
}

@media (min-width: 768px) {
  .live { padding-block: var(--section-py-desktop); }
}

.live__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.live__badge {
  width: 100px;
  height: 36px;
  color: var(--color-accent-cream);
}

.live__sparkle {
  width: 40px;
  height: 40px;
  color: var(--color-accent-yellow);
  opacity: 0.85;
}

.accordion {
  margin-block: 32px;
  border-block: 0;
}

.accordion__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--color-text);
  list-style: none;
  user-select: none;
}

.accordion__head::-webkit-details-marker { display: none; }

.accordion__plus {
  display: inline-block;
  width: 1ch;
  font-weight: 400;
  color: var(--color-accent-cream);
}

.accordion__sub {
  margin-top: 8px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
}

.dates {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-body);
}

.dates__row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 24px;
  padding-block: 16px;
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
}

.dates__date { font-weight: 600; }

.dates__row.past { opacity: 0.35; }
.dates__row.past .btn--tickets { pointer-events: none; }

.btn--tickets {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border: 1px solid var(--color-text-muted);
  border-radius: 6px;
  color: var(--color-text);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn--tickets:hover {
  border-color: var(--color-accent-cream);
  background: rgba(249, 229, 181, 0.08);
}

.live__poster {
  display: block;
  max-width: 280px;
  margin: 48px auto 0;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .dates__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .btn--tickets { justify-self: start; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-bg);
  color: var(--color-text);
}

.site-footer__hero {
  width: 100%;
  height: clamp(220px, 25vw, 360px);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.site-footer__inner {
  padding-block: clamp(40px, 6vw, 80px);
  display: grid;
  gap: 32px;
}

.site-footer__legal {
  display: flex;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 14px;
}

.site-footer__legal a {
  border-bottom: 1px solid currentColor;
}

.site-footer__contact {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer__contact h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.site-footer__contact a {
  border-bottom: 1px dashed var(--color-text-muted);
  transition: border-color 0.2s ease;
}

.site-footer__contact a:hover {
  border-color: var(--color-accent-cream);
}

.site-footer__copy {
  font-size: 12px;
  opacity: 0.5;
}

/* ===== Legal pages (Impressum / Datenschutz) ===== */
.legal-header {
  padding-block: clamp(24px, 4vw, 44px);
}

.legal-header__logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 0.04em;
  color: var(--color-accent-cream);
}

.legal {
  max-width: 820px;
  padding-block: clamp(16px, 3vw, 32px) clamp(64px, 9vw, 110px);
}

.legal h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--color-accent-cream);
  margin-bottom: clamp(20px, 3vw, 32px);
}

.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 23px);
  color: var(--color-text);
  margin-top: clamp(26px, 4vw, 40px);
  margin-bottom: 10px;
}

.legal p,
.legal address {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.75;
  color: var(--color-text);
  font-style: normal;
  opacity: 0.85;
  margin-bottom: 14px;
}

.legal address {
  margin-bottom: 24px;
}

.legal a {
  border-bottom: 1px dashed var(--color-text-muted);
  transition: border-color 0.2s ease;
  word-break: break-word;
}

.legal a:hover {
  border-color: var(--color-accent-cream);
}

.legal__back {
  display: inline-block;
  margin-top: clamp(32px, 5vw, 48px);
  font-size: 15px;
  color: var(--color-accent-yellow);
  border-bottom: 0;
}
