/*
Theme Name: ENKAY
Theme URI: 
Author: ENKAY
Description: ENKAY Artist Website
Version: 1.0
*/

/* ═══════════════════════════════════════════════════════════
   ENKAY · Offizielle Website
   Design: Schwarz / Türkis-Blau (#00A0B8) · Avenir Next
   Multi-Page · Static · Strato-Hosting
   ═══════════════════════════════════════════════════════════ */

:root {
  --blue:       #00A0B8;
  --blue-dark:  #007A8C;
  --blue-light: #33BFD1;
  --black:      #0A0A0A;
  --dark:       #111111;
  --mid:        #1C1C1C;
  --text:       #FFFFFF;
  --text-muted: #A0A0A0;
  --warm:       #D4C4A8;
  --line:       rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);

  --font: "Avenir Next", "Avenir", "Trebuchet MS", "Gill Sans", sans-serif;

  --nav-h: 72px;
  --max-w: 1240px;
  --radius: 3px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; color: inherit; }
input, button { font-family: var(--font); }
iframe { display: block; border: 0; }

/* ── Container & Sections ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 60px 0;
}

.section-sm { padding: 80px 0; }

.section-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 56px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn:hover {
  background: var(--blue);
  color: var(--text);
}
.btn-solid {
  background: var(--blue);
  color: var(--text);
}
.btn-solid:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}
.btn-white {
  border-color: var(--text);
  color: var(--text);
}
.btn-white:hover {
  background: var(--text);
  color: var(--black);
}
.btn-sm { padding: 9px 18px; font-size: 0.72rem; }
.btn-lg { padding: 18px 40px; font-size: 0.88rem; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid var(--line);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  color: var(--text);
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.75; }
.nav-logo svg,
.nav-logo img {
  width: 100px;
  max-height: 42px;
  height: auto;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  z-index: 1002;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  margin: 0 auto;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════
   HOMEPAGE · HERO + TILES
   ═══════════════════════════════════════ */
.home-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 80px) 32px 80px;
  background: var(--black);
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(0, 160, 184, 0.22) 0%, transparent 70%),
    var(--black);
  z-index: 0;
}
.home-hero > * { position: relative; z-index: 1; }

.home-hero-logo {
  width: clamp(220px, 36vw, 380px);
  height: auto;
  color: var(--text);
  margin-bottom: 28px;
}
.home-hero-tag {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.home-hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text);
}
.home-hero-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 16px;
}

/* ── Countdown — 4 Spalten Grid, immer in einer Reihe ── */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  min-width: 0;
}
.countdown-value {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .countdown { gap: 6px; margin-top: 24px; max-width: 100%; }
  .countdown-item { padding: 12px 4px; }
  .countdown-label { font-size: 0.55rem; letter-spacing: 0.1em; margin-top: 6px; }
  .countdown-value { font-size: 1.4rem; }
}

/* Tile Grid */
.tiles-section {
  padding: 0 0 120px;
  background: var(--black);
}
.tile-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.tile {
  position: relative;
  overflow: hidden;
  background: var(--mid);
  border-radius: var(--radius);
  display: block;
  transition: transform var(--transition);
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
  cursor: pointer;
}
.tile:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.tile:nth-child(2) { grid-column: span 3; }
.tile:nth-child(3) { grid-column: span 3; }
.tile:nth-child(4) { grid-column: span 3; }
.tile:nth-child(5) { grid-column: span 3; }

.tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--mid);
  background-image: linear-gradient(135deg, #181818 0%, #0d0d0d 100%);
  transition: transform 0.6s ease;
}
@media (hover: hover) and (pointer: fine) {
  .tile:hover .tile-bg { transform: scale(1.05); }
}
@media (hover: none) {
  .tile, .tile-bg, .tile-arrow { transition: none !important; }
}

.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.tile-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.tile-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 14px;
}
.tile-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--text);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .tile:hover .tile-arrow {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateX(4px);
  }
}

/* ═══════════════════════════════════════
   PAGE HEADER (sub-pages)
   ═══════════════════════════════════════ */
.page-header {
  padding: calc(var(--nav-h) + 50px) 0 35px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.page-header .page-sub {
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 580px;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════
   SONGS PAGE
   ═══════════════════════════════════════ */
.songs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.songs-grid iframe {
  width: 100%;
  border-radius: 12px;
  min-width: 0;
}
.songs-cta {
  margin-top: 56px;
  text-align: center;
}

/* ═══════════════════════════════════════
   BUNDLES PAGE
   ═══════════════════════════════════════ */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bundle-card {
  position: relative;
  background: var(--mid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.bundle-card .bundle-card-body .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.bundle-card .bundle-card-body .btn { position: relative; }
@media (hover: hover) and (pointer: fine) {
  .bundle-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
  }
}
.bundle-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.bundle-card-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.bundle-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.bundle-card-body p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  flex: 1;
}
.bundle-card-body .btn { align-self: flex-start; }
.bundle-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue);
  color: var(--text);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius);
}

/* ═══════════════════════════════════════
   TICKETS PAGE
   ═══════════════════════════════════════ */
.event-group { margin-bottom: 0; }
.event-group:last-child { margin-bottom: 0; }

.event-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  padding: 32px 24px;
  margin-bottom: 0;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.event-logo {
  max-width: 380px;
  max-height: 220px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.4));
}
@media (max-width: 768px) {
  .event-logo { max-width: 240px; max-height: 140px; }
  .event-logo-wrap { padding: 24px 16px; min-height: 80px; }
}
.event-logo-placeholder {
  width: 320px;
  height: 180px;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}

.tour-list {
  display: flex;
  flex-direction: column;
}
.tour-row {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr 160px;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  border-top: 1px solid var(--line-strong);
  transition: background var(--transition);
  cursor: pointer;
}
.tour-row:last-child { border-bottom: 1px solid var(--line-strong); }
.tour-row:hover { background: rgba(255, 255, 255, 0.02); }
.tour-row > .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.tour-row > .btn { position: relative; }

.tour-date {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}
.tour-city {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}
.tour-row .btn { justify-self: end; }

/* ═══════════════════════════════════════
   VIDEOS PAGE
   ═══════════════════════════════════════ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video-card {
  display: block;
  transition: transform var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .video-card:hover { transform: translateY(-4px); }
}
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--mid);
  background-image: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  background-size: cover;
  background-position: center;
}
.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.video-thumb::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  padding-left: 5px;
  opacity: 0;
  transition: all var(--transition);
}
.video-card:hover .video-thumb::before { opacity: 1; }
.video-card:hover .video-thumb::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.video-title {
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════
   SHOP PAGE
   ═══════════════════════════════════════ */
.shop-category { margin-bottom: 80px; }
.shop-category:last-child { margin-bottom: 0; }
.shop-category-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover { transform: translateY(-4px); }
}

.product-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--mid);
  background-image: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
  transition: transform var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-img { transform: scale(1.02); }
}

.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.product-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-price-old {
  color: var(--text-muted);
  font-weight: 400;
  text-decoration: line-through;
  font-size: 0.85rem;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: var(--text);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
  z-index: 2;
}
.product-badge-sale { background: #B83A4F; }
.product-badge-sold { background: rgba(0,0,0,0.75); border: 1px solid var(--line-strong); }
.product-card.sold-out .product-img { opacity: 0.45; }
.product-card.sold-out .product-name { color: var(--text-muted); }
.product-card.sold-out .product-price { color: var(--text-muted); }

/* ═══════════════════════════════════════
   NEWSLETTER PAGE
   ═══════════════════════════════════════ */
.newsletter-wrap {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.newsletter-wrap .section-title { margin-bottom: 24px; }
.newsletter-wrap p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.newsletter-form .form-row {
  display: flex;
  gap: 12px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 16px 22px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  font-family: var(--font);
}
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }
.newsletter-form input[type="email"]:focus { border-color: var(--blue); }
.newsletter-form .btn { padding: 16px 32px; }
.newsletter-form .form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.newsletter-form .honey { position: absolute; left: -9999px; }

/* ═══════════════════════════════════════
   LEGAL PAGES (Impressum / Datenschutz)
   ═══════════════════════════════════════ */
.legal-content {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-content h2 {
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 40px 0 14px;
}
.legal-content p { margin-bottom: 14px; }
.legal-content a { color: var(--blue); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
#footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-logo {
  width: 110px;
  height: auto;
  color: var(--text);
  opacity: 0.9;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-socials a:hover {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links a { transition: color var(--transition); }
.footer-links a:hover { color: var(--blue); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .tile-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; }
  .tile:nth-child(1) { grid-column: span 4; }
  .tile:nth-child(2),
  .tile:nth-child(3),
  .tile:nth-child(4),
  .tile:nth-child(5) { grid-column: span 2; }

  .bundles-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .tour-row { grid-template-columns: 140px 1fr 140px; gap: 16px; }
  .container { padding: 0 24px; }
  .nav-container { padding: 0 24px; }
}

@media (max-width: 768px) {
  .section { padding: 40px 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    background: rgba(10, 10, 10, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
    padding: 0 20px;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .nav-links a {
    font-size: 1.05rem;
    padding: 16px 28px;
    letter-spacing: 0.2em;
    color: var(--text);
  }

  /* Hero */
  .home-hero { min-height: 50vh; }

  /* Tiles — exakte Bild-Aspect-Ratios (1:1 für Single = 1. Kachel, 29:14 für andere) */
  .tile-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
    padding: 0 20px;
  }
  .tile { aspect-ratio: 29 / 14; }
  .tile:nth-child(1) { aspect-ratio: 1 / 1; }
  .tile:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .tile-overlay { padding: 24px; }

  /* Reihenfolge NUR auf Mobile umsortieren — DOM bleibt unverändert.
     Mobile-Reihenfolge: Bundles → Tickets → Shop → Single → Newsletter */
  .tile-grid > .tile:nth-child(1) { order: 4; } /* Single an vorletzte Stelle */
  .tile-grid > .tile:nth-child(2) { order: 1; } /* Bundles */
  .tile-grid > .tile:nth-child(3) { order: 2; } /* Tickets */
  .tile-grid > .tile:nth-child(4) { order: 3; } /* Shop */
  .tile-grid > .tile:nth-child(5) { order: 5; } /* Newsletter */

  /* Songs - 1 Spalte auf Mobile, alle iframes ganze Breite */
  .songs-grid { grid-template-columns: 1fr; }
  .songs-grid > iframe { grid-column: 1 / -1 !important; }

  /* Bundles */
  .bundles-grid { grid-template-columns: 1fr; }

  /* Tickets */
  .tour-row {
    grid-template-columns: 110px 1fr;
    grid-template-areas: "date city" "btn btn";
    gap: 12px;
    padding: 18px 14px;
  }
  .tour-date { grid-area: date; font-size: 0.92rem; }
  .tour-city { grid-area: city; text-align: right; font-size: 1rem; }
  .tour-row .btn { grid-area: btn; justify-self: stretch; }

  /* Videos */
  .videos-grid { grid-template-columns: 1fr; }

  /* Shop */
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .shop-category-title { font-size: 1.3rem; }

  /* Newsletter */
  .newsletter-form .form-row { flex-direction: column; }

  /* Page header */
  .page-header { padding: calc(var(--nav-h) + 30px) 0 22px; }

  /* Footer */
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .home-hero-logo { width: 80vw; }
  .shop-grid { grid-template-columns: 1fr; }
}
