/* ============================================================
   CLARUS KONZERTKULTUR — Main Stylesheet
   Design tokens: Swiss minimalism + alpine editorial luxury
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Colors */
  --color-bg:          #0c0c0b;
  --color-bg-warm:     #f5f3ee;
  --color-surface:     #141413;
  --color-surface-2:   #1e1e1c;
  --color-border:      rgba(255,255,255,0.08);
  --color-border-warm: rgba(0,0,0,0.10);

  --color-text:        #f0ede6;
  --color-text-muted:  rgba(240,237,230,0.55);
  --color-text-dark:   #1a1917;
  --color-text-muted-dark: rgba(26,25,23,0.55);

  --color-ice:         #9bbfcf;
  --color-ice-light:   #c4dce8;
  --color-green:       #2d4a3e;
  --color-green-light: #3e6455;
  --color-amber:       #c4854a;
  --color-amber-light: #d4a070;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 9rem;

  /* Layout */
  --max-width:      1280px;
  --nav-height:     72px;
  --section-pad-y:  5rem;

  /* Motion */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast:   0.18s;
  --dur-mid:    0.35s;
  --dur-slow:   0.65s;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Scroll Progress ──────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-ice), var(--color-amber));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 var(--space-xl);
  transition: background var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out);
}

.nav.scrolled {
  background: rgba(12, 12, 11, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.nav__logo-svg {
  width: 36px;
  height: 36px;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: var(--color-text);
}

.nav__logo-text span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-weight: 300;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: color var(--dur-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--color-ice);
  transition: width var(--dur-mid) var(--ease-out);
}

.nav__link:hover,
.nav__link.active { color: var(--color-text); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lang-switch__btn {
  padding: 4px 8px;
  border-radius: 2px;
  color: var(--color-text-muted);
  transition: color var(--dur-fast), background var(--dur-fast);
  font-weight: 400;
}

.lang-switch__btn.active,
.lang-switch__btn:hover {
  color: var(--color-text);
  background: rgba(255,255,255,0.06);
}

.lang-switch__sep {
  color: var(--color-border);
  user-select: none;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-text);
  transition: transform var(--dur-mid) var(--ease-out),
              opacity var(--dur-fast);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12,12,11,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease-out);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--color-text-muted);
  transition: color var(--dur-fast);
  letter-spacing: 0.04em;
}

.nav__mobile-link:hover { color: var(--color-text); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 0.1s linear;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(12,12,11,0.25) 0%,
    rgba(12,12,11,0.55) 50%,
    rgba(12,12,11,0.88) 100%
  );
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl) var(--space-4xl);
}

.hero__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-ice);
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--color-text);
  max-width: 900px;
}

.hero__title em {
  font-style: italic;
  color: var(--color-ice-light);
}

.hero__subtitle {
  margin-top: var(--space-lg);
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--color-text-muted);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { width: 40px; opacity: 1; }
  50% { width: 20px; opacity: 0.4; }
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background: var(--color-surface);
}

.section--warm {
  background: var(--color-bg-warm);
  color: var(--color-text-dark);
}

/* ── Typography ───────────────────────────────────────────── */
.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-ice);
  font-weight: 400;
  margin-bottom: var(--space-md);
  display: block;
}

.eyebrow--amber { color: var(--color-amber); }
.eyebrow--green { color: var(--color-green-light); }
.eyebrow--dark  { color: var(--color-green); }

.heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
}

.heading-md {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
}

.heading-sm {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}

.body-lg {
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 300;
  color: var(--color-text-muted);
}

.body-md {
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  color: var(--color-text-muted);
}

.label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ── Link arrow ───────────────────────────────────────────── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: color var(--dur-fast), gap var(--dur-mid) var(--ease-out);
}

.link-arrow::after {
  content: '→';
  transition: transform var(--dur-mid) var(--ease-out);
}

.link-arrow:hover {
  color: var(--color-ice);
  gap: 16px;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.link-arrow--amber:hover { color: var(--color-amber); }
.link-arrow--green:hover { color: var(--color-green-light); }

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--color-border);
  margin: var(--space-lg) 0;
}

.divider--ice   { background: var(--color-ice); opacity: 0.5; }
.divider--amber { background: var(--color-amber); opacity: 0.6; }

/* ── Concert Cards ────────────────────────────────────────── */
.concerts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.concert-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.concert-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.concert-card:hover .concert-card__img {
  transform: scale(1.06);
}

.concert-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,11,0.92) 0%, rgba(12,12,11,0.1) 60%);
}

.concert-card__body {
  position: relative;
  padding: var(--space-xl);
}

.concert-card__num {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-sm);
}

.concert-card__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  transition: color var(--dur-fast);
}

.concert-card:hover .concert-card__title {
  color: var(--color-ice-light);
}

.concert-card__meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.concert-card__meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--color-amber);
}

/* ── Artists Grid ─────────────────────────────────────────── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-xl);
}

.artist-card {
  cursor: pointer;
}

.artist-card__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-surface-2);
  margin-bottom: var(--space-md);
}

.artist-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
  filter: grayscale(20%);
}

.artist-card:hover .artist-card__img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.artist-card__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.artist-card__genre {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-amber);
}

/* ── Artist Modal ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,12,11,0.88);
  backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease-out);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  transform: translateY(24px);
  transition: transform var(--dur-mid) var(--ease-out);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.modal__body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.modal__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}

.modal__close:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

/* ── Timeline ─────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--color-border);
}

.timeline__item {
  padding-left: var(--space-xl);
  padding-bottom: var(--space-2xl);
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--color-ice);
  background: var(--color-bg);
  transition: background var(--dur-fast), transform var(--dur-mid) var(--ease-out);
}

.timeline__item:hover::before {
  background: var(--color-ice);
  transform: scale(1.3);
}

.timeline__time {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-ice);
  margin-bottom: var(--space-sm);
}

.timeline__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.timeline__desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-sm);
}

.gallery__item { overflow: hidden; }
.gallery__item--wide { grid-column: span 8; }
.gallery__item--narrow { grid-column: span 4; }
.gallery__item--half { grid-column: span 6; }

.gallery__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-mid);
  filter: saturate(0.85);
}

.gallery__item:hover .gallery__img {
  transform: scale(1.04);
  filter: saturate(1);
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  height: 55vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,12,11,0.96) 0%,
    rgba(12,12,11,0.4) 100%
  );
}

.page-hero__content {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl) var(--space-2xl);
}

/* ── Concert Page ─────────────────────────────────────────── */
.concert-meta-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-3xl);
}

.concert-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.concert-meta-item__label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.concert-meta-item__value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
}

/* ── Two-col layout ───────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.two-col--3-2 {
  grid-template-columns: 3fr 2fr;
}

.two-col--wide-gap {
  gap: var(--space-4xl);
}

/* ── Contact Form ─────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 400;
}

.form-input,
.form-textarea,
.form-select {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: var(--space-md);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  transition: border-color var(--dur-fast), background var(--dur-fast);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-ice);
  background: rgba(155, 191, 207, 0.04);
}

.form-textarea { min-height: 140px; resize: vertical; }

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(240,237,230,0.25); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  border: 1px solid var(--color-text-muted);
  color: var(--color-text);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}

.btn-submit:hover {
  border-color: var(--color-ice);
  color: var(--color-ice);
}

.btn-submit:active { background: rgba(155,191,207,0.06); }

.form-success {
  display: none;
  padding: var(--space-lg);
  border: 1px solid rgba(155,191,207,0.3);
  background: rgba(155,191,207,0.06);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-ice-light);
  margin-top: var(--space-lg);
}

/* ── Map embed ────────────────────────────────────────────── */
.map-container {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--color-surface-2);
  overflow: hidden;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(60%) contrast(0.9) brightness(0.8);
  transition: filter var(--dur-mid);
}

.map-container:hover iframe { filter: grayscale(30%) contrast(1) brightness(0.9); }

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: var(--space-xl);
  left: var(--space-xl);
  right: var(--space-xl);
  max-width: 640px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-xl);
  z-index: 300;
  transform: translateY(120%);
  transition: transform var(--dur-slow) var(--ease-out);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.cookie-banner__text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.cookie-banner__text a {
  color: var(--color-ice);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--dur-fast);
}

.cookie-banner__text a:hover { text-decoration-color: var(--color-ice); }

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  width: 14px; height: 14px;
  accent-color: var(--color-ice);
}

.cookie-option__label { color: var(--color-text-muted); }
.cookie-option__label strong { color: var(--color-text); font-weight: 400; }

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all var(--dur-fast);
  flex: 1;
  min-width: 100px;
  text-align: center;
}

.cookie-btn:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

.cookie-btn--accept {
  background: var(--color-ice);
  border-color: var(--color-ice);
  color: var(--color-bg);
  font-weight: 500;
}

.cookie-btn--accept:hover {
  background: var(--color-ice-light);
  border-color: var(--color-ice-light);
  color: var(--color-bg);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand {}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer__brand-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
}

.footer__brand-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__link {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--dur-fast);
}

.footer__link:hover { color: var(--color-text); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  font-size: 0.72rem;
  color: rgba(240,237,230,0.28);
}

/* Easter egg */
.footer__easter-egg {
  cursor: pointer;
  transition: color var(--dur-fast);
}
.footer__easter-egg:hover { color: var(--color-amber); }
.footer__easter-egg.activated { color: var(--color-amber); animation: pulse 0.4s ease; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ── Fade-in animations ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.45s; }

/* ── Editorial pull-quote ─────────────────────────────────── */
.pull-quote {
  border-left: 2px solid var(--color-amber);
  padding: var(--space-md) var(--space-xl);
  margin: var(--space-2xl) 0;
}

.pull-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text);
}

.pull-quote__source {
  margin-top: var(--space-md);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-amber);
}

/* ── Concert page map location ────────────────────────────── */
.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.location-pill svg {
  width: 12px; height: 12px;
  color: var(--color-ice);
  flex-shrink: 0;
}

/* ── Highlight stats ──────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: var(--space-3xl);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color-ice);
  line-height: 1;
}

.stat__label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ── Legal pages ──────────────────────────────────────────── */
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--color-text);
}

.legal-content h3 {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ice);
  margin: var(--space-xl) 0 var(--space-sm);
}

.legal-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-content a {
  color: var(--color-ice);
  text-decoration: underline;
  text-decoration-color: rgba(155,191,207,0.4);
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  padding-top: calc(var(--nav-height) + var(--space-xl));
}

.breadcrumb a { transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--color-text); }
.breadcrumb__sep { opacity: 0.35; }

/* ── About page ───────────────────────────────────────────── */
.about-manifesto {
  max-width: 760px;
}

.about-value {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.about-value__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-ice);
  opacity: 0.5;
  line-height: 1;
}

/* ── Page padding ─────────────────────────────────────────── */
.page-content {
  padding-top: var(--nav-height);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad-y: 4rem; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .concerts-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }

  .gallery__item--wide  { grid-column: span 12; }
  .gallery__item--narrow { grid-column: span 12; }
  .gallery__item--half  { grid-column: span 6; }
}

@media (max-width: 768px) {
  :root {
    --section-pad-y: 3rem;
    --space-4xl: 5rem;
  }

  .nav { padding: 0 var(--space-lg); }
  .container { padding: 0 var(--space-lg); }
  .hero__content { padding: 0 var(--space-lg) var(--space-3xl); }

  .two-col { grid-template-columns: 1fr; gap: var(--space-xl); }
  .two-col--3-2 { grid-template-columns: 1fr; }
  .concerts-grid { grid-template-columns: 1fr; }

  .stats-row { flex-wrap: wrap; gap: var(--space-xl); }
  .concert-meta-bar { flex-wrap: wrap; gap: var(--space-lg); }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-md); text-align: center; }

  .modal { grid-template-columns: 1fr; }
  .modal__img { aspect-ratio: 16/9; }

  .gallery__item--half { grid-column: span 12; }

  .cookie-banner { left: var(--space-md); right: var(--space-md); bottom: var(--space-md); }

  .breadcrumb { padding-top: calc(var(--nav-height) + var(--space-md)); }
}

@media (max-width: 480px) {
  .artists-grid { grid-template-columns: 1fr 1fr; }
  .cookie-actions { flex-direction: column; }
}
