/* ============================================================
   PDLX – Padel Sports Berlin · One-Pager
   Design v0.1 · "Premium Nightcourt" — dunkel, Azur-Akzent, Chrom
   Brand: Azurblau #2995D9 / tief #136AAC · Chrom-Silber #A1A3A5
   ============================================================ */

:root {
  /* Brand */
  --blue: #2AA0E6;
  --blue-deep: #136AAC;
  --blue-bright: #38B6FF;
  --chrome: #C7CDD2;
  --chrome-dim: #8A9099;

  /* RAL 7024 Graphitgrau + Abstufungen */
  --graphite: #45494E;
  --graphite-d: #34383C;
  --graphite-l: #565B61;

  /* Surfaces (dark = Graphit / RAL-7024-Familie) */
  --bg: #1E2124;
  --bg-2: #24272B;
  --bg-3: #2C3035;
  --card: #262A2F;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.17);

  /* Text */
  --ink: #F4F7FA;
  --ink-soft: #AEB7C2;
  --ink-dim: #7C8794;

  /* System */
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);
  --shadow: 0 20px 50px -20px rgba(0,0,0,.7);
  --glow: 0 0 40px -8px rgba(42,160,230,.55);
  --ease: cubic-bezier(.16,.84,.44,1);
  --font: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--blue); opacity: .6; }
h1, h2, h3 { line-height: 1.08; font-weight: 700; letter-spacing: -.02em; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.8rem, 4.5vw, 2.9rem); margin: .8rem 0 .6rem; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  cursor: pointer; border: 1px solid transparent; transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .25s;
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
  color: #fff; box-shadow: var(--glow);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 55px -6px rgba(56,182,255,.75); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--blue); background: rgba(42,160,230,.08); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11,14,19,.78); backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.nav-logo { display: flex; align-items: center; gap: .6rem; font-weight: 700; letter-spacing: .04em; }
.nav-logo img { height: 66px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .93rem; color: var(--ink-soft); transition: color .2s; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--blue); transition: width .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-burger { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; }

/* Theme-Toggle */
.theme-toggle {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-strong); color: var(--ink);
  cursor: pointer; transition: background .2s, border-color .2s, transform .18s var(--ease);
}
.theme-toggle:hover { transform: translateY(-2px); border-color: var(--blue); color: var(--blue-bright); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .ico-sun { display: block; }
.theme-toggle .ico-moon { display: none; }
body.light .theme-toggle .ico-sun { display: none; }
body.light .theme-toggle .ico-moon { display: block; }
body.light .theme-toggle { background: #fff; }
@media (max-width: 920px){ .theme-toggle { width: 38px; height: 38px; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 88px; overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 30%;
  opacity: .28; filter: saturate(.85) contrast(1.02);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(1200px 600px at 75% 15%, rgba(42,160,230,.20), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(19,106,172,.22), transparent 55%),
    linear-gradient(180deg, rgba(30,33,36,.72), rgba(30,33,36,.86) 55%, #1E2124 92%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .35;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, #000 30%, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero-visual {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
  aspect-ratio: 4/3.1;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); border-radius: 22px; pointer-events: none; }
.hero-open { display: flex; flex-wrap: wrap; align-items: flex-start; gap: .55rem;
  margin-top: .9rem; font-size: .9rem; line-height: 1.45; color: var(--ink-soft); max-width: 100%; }
/* Punkt darf nie gestaucht werden (sonst Ellipse statt Kreis) und sitzt
   auf der ERSTEN Textzeile, nicht mittig neben einem mehrzeiligen Block. */
.hero-open .dot { flex: 0 0 auto; margin-top: .32em; }
.hero-open #heroStatusText { flex: 0 1 auto; }
.hero-open .hero-addr { flex: 0 1 auto; }
/* Schmales Handy: Adresse auf eigene Zeile, buendig unter den Text. */
@media (max-width: 560px) {
  .hero-open .hero-addr { flex-basis: 100%; margin-left: calc(9px + .55rem); }
  /* Auf eigener Zeile ist der Trennpunkt sinnlos - er haengt sonst vorne. */
  .hero-open .hero-addr .sep { display: none; }
}
.hero-open .dot { width: 9px; height: 9px; border-radius: 50%; background: #34d17a; box-shadow: 0 0 0 4px rgba(52,209,122,.18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 4px rgba(52,209,122,.18);} 50%{ box-shadow: 0 0 0 7px rgba(52,209,122,.06);} }

/* Status-Ampel "geschlossen": ruhiger roter Punkt, kein Puls.
   Die Farbe ist nur Zusatzinfo - den Zustand sagt der Text daneben. */
.hero-open.is-closed .dot {
  background: #ff7a7a;
  box-shadow: 0 0 0 4px rgba(255,122,122,.18);
  animation: none;
}
@media (max-width: 900px){
  .hero-split { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/10; order: 2; }
}
.hero h1 {
  font-size: clamp(2.6rem, 7.5vw, 5.6rem); letter-spacing: -.03em; margin: 1.2rem 0;
  max-width: 15ch;
}
.hero h1 .x { color: var(--blue-bright); }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--ink-soft); max-width: 46ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badge {
  position: absolute; right: 4vw; top: 50%; transform: translateY(-50%);
  width: min(38vw, 440px); opacity: .95; z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.6));
  pointer-events: none;
}
@media (max-width: 900px){ .hero-badge { display: none; } }
.hero-scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  color: var(--ink-dim); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero-scroll span { width: 1px; height: 34px; background: linear-gradient(var(--blue), transparent); animation: drop 1.8s var(--ease) infinite; }
@keyframes drop { 0%{transform:scaleY(0);transform-origin:top} 45%{transform:scaleY(1);transform-origin:top} 55%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ---------- Trust bar ---------- */
.trust { border-block: 1px solid var(--line); background: var(--bg-2); }
.trust-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; padding: 1.6rem 0; }
.trust-item { text-align: center; }
.trust-item b { display: block; font-size: 1.5rem; color: var(--ink); }
.trust-item span { font-size: .82rem; color: var(--ink-dim); }
@media (max-width: 760px){ .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; } .trust-item:last-child{ grid-column: 1 / -1; } }

/* ---------- Cards / Vorteile ---------- */
.grid { display: grid; gap: 1.2rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){ .grid-4 { grid-template-columns: repeat(2,1fr); } .grid-3, .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px){ .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(56,182,255,.18), rgba(19,106,172,.12)); color: var(--blue-bright);
}
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.card p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Über / split ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; }
@media (max-width: 900px){ .split { grid-template-columns: 1fr; } }
.split p { color: var(--ink-soft); margin-bottom: 1rem; }
.media-frame {
  border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2)); aspect-ratio: 4/3;
  display: grid; place-items: center; color: var(--ink-dim); position: relative;
}
.media-frame.tall { aspect-ratio: 3/4; }
.media-frame .ph { text-align: center; font-size: .85rem; padding: 1rem; }
.media-frame .ph svg { width: 40px; height: 40px; opacity: .5; margin: 0 auto .5rem; }

/* ---------- Courts ---------- */
.court-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 260px;
  background: linear-gradient(160deg, #2c363d, #232a30); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; transition: transform .25s var(--ease), box-shadow .25s; }
.court-card::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 200px at 70% 0%, rgba(42,160,230,.25), transparent 60%); }
.court-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.court-card .tag { position: relative; font-size: .75rem; letter-spacing:.14em; text-transform: uppercase; color: var(--blue-bright); }
.court-card h3 { position: relative; font-size: 1.4rem; margin-top: .3rem; }
.court-card p { position: relative; color: var(--ink-soft); font-size: .9rem; }

/* ---------- Galerie (Bento) ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 14px; border: 1px solid var(--line); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery .g-lg { grid-column: span 2; grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }
@media (max-width: 760px){
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery .g-lg { grid-column: span 2; grid-row: span 1; }
  .gallery .g-wide { grid-column: span 2; }
}

/* ---------- Court Showcase ---------- */
.court-showcase { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.court-showcase img { width: 100%; height: clamp(300px, 46vw, 560px); object-fit: cover; display: block; }
.court-showcase-body {
  position: absolute; inset: auto 0 0 0; padding: clamp(1.4rem, 3vw, 2.4rem);
  background: linear-gradient(to top, rgba(8,10,14,.92), rgba(8,10,14,.5) 55%, transparent);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: flex-end;
}
.court-showcase-body h3 { color: #fff; font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
.court-showcase-body p { color: rgba(255,255,255,.82); font-size: .98rem; max-width: 46ch; margin-top: .3rem; }
.court-pills { display: flex; flex-wrap: wrap; gap: .55rem; }
.court-pills a {
  padding: .55rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: .9rem; color: #fff;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px);
  transition: background .2s, transform .18s var(--ease), border-color .2s;
}
.court-pills a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }

/* ---------- Booking ---------- */
.booking { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.booking-box {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(56,182,255,.08), rgba(19,106,172,.04)); padding: clamp(1.6rem,4vw,3rem);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center;
}
@media (max-width: 800px){ .booking-box { grid-template-columns: 1fr; } }
.booking-box h2 { font-size: clamp(1.6rem,4vw,2.5rem); margin-bottom: .6rem; }
.booking-box p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.booking-steps { list-style: none; display: grid; gap: .7rem; }
.booking-steps li { display: flex; gap: .8rem; align-items: center; color: var(--ink-soft); font-size: .95rem; }
.booking-steps .n { width: 26px; height: 26px; border-radius: 50%; background: rgba(42,160,230,.16); color: var(--blue-bright); display: grid; place-items: center; font-size: .8rem; font-weight: 700; flex: none; }

/* ---------- Preise ---------- */
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--blue); box-shadow: var(--glow); }
.price-card .amt { font-size: 2.4rem; font-weight: 700; margin: .4rem 0; }
.price-card .amt small { font-size: .95rem; color: var(--ink-dim); font-weight: 400; }
.price-card ul { list-style: none; margin: 1rem 0 1.4rem; display: grid; gap: .5rem; }
.price-card li { color: var(--ink-soft); font-size: .92rem; display: flex; gap: .5rem; }
.price-card li::before { content: "✓"; color: var(--blue-bright); }
.price-card .btn { margin-top: auto; }
.badge-pop { align-self: flex-start; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-bright); background: rgba(42,160,230,.14); padding: .25rem .6rem; border-radius: 999px; margin-bottom: .4rem; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--ink); font: inherit; font-weight: 600; font-size: 1.05rem; padding: 1.2rem 0; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; }
.faq-q .pm { color: var(--blue-bright); transition: transform .25s; flex: none; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); color: var(--ink-soft); }
.faq-a p { padding-bottom: 1.2rem; }

/* ---------- Anfrage / Formular ---------- */
.anfrage-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: start; }
@media (max-width: 860px){ .anfrage-grid { grid-template-columns: 1fr; } }
.anfrage-intro h2 { font-size: clamp(1.7rem,4vw,2.6rem); margin: .8rem 0 .8rem; }
.anfrage-intro p { color: var(--ink-soft); }
.anfrage-usp { list-style: none; margin-top: 1.4rem; display: grid; gap: .7rem; }
.anfrage-usp li { display: flex; gap: .6rem; align-items: center; color: var(--ink-soft); font-size: .95rem; }
.anfrage-usp svg { width: 18px; height: 18px; color: var(--blue-bright); flex: none; }
.anfrage-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem,3vw,2rem); display: grid; gap: 1rem; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px){ .field-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field > span { font-size: .82rem; color: var(--ink-soft); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; border-radius: 10px; border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.03); color: var(--ink); font: inherit; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(42,160,230,.18); }
.field textarea { resize: vertical; }
.check { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--ink-soft); }
.check input { margin-top: .2rem; accent-color: var(--blue); flex: none; }
.check a { color: var(--blue); }
.anfrage-form .btn { justify-self: start; }
.form-status { font-size: .92rem; margin: 0; }
.form-status.ok { color: #34d17a; }
.form-status.err { color: #ff7a7a; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 800px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: grid; gap: 1.2rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-row .ico { color: var(--blue-bright); flex: none; margin-top: .2rem; }
.contact-row b { display: block; }
.contact-row span { color: var(--ink-soft); font-size: .95rem; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 320px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(.3) invert(.9) hue-rotate(180deg); }

/* ---------- Partner ---------- */
.partners { padding: clamp(2.5rem, 5vw, 4rem) 0; border-top: 1px solid var(--line); background: var(--bg); }
.partners-label { text-align: center; font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 1.6rem; }
.partners-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(1.5rem, 5vw, 4rem); }
.partner { display: grid; place-items: center; width: 170px; height: 66px; }
.partner img {
  max-width: 100%; max-height: 54px; object-fit: contain;
  filter: grayscale(1); opacity: .55;
  transition: opacity .25s var(--ease), transform .18s var(--ease), filter .25s var(--ease);
}
.partner:hover img { opacity: 1; filter: grayscale(0); transform: translateY(-2px); }
/* Dark Mode: Logos auf sauberen weißen Chips (Original-Farben bleiben korrekt) */
body:not(.light) a.partner {
  background: #fff; border-radius: 12px; width: auto; min-width: 150px; height: 60px; padding: 0 20px;
  box-shadow: 0 8px 22px -10px rgba(0,0,0,.6);
}
body:not(.light) a.partner img { filter: grayscale(1); opacity: .7; }
body:not(.light) a.partner:hover img { filter: none; opacity: 1; }
.partner-ph { width: 170px; height: 66px; display: grid; place-items: center; font-weight: 600; font-size: 1rem; color: var(--ink-dim); opacity: .55; border: 1px dashed var(--line-strong); border-radius: 12px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 3rem 0 6rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; }
.footer img { height: 66px; margin-bottom: 1rem; display: block; }
.footer p { color: var(--ink-dim); font-size: .9rem; max-width: 32ch; }
.footer-cols { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: .8rem; }
.footer-col a { display: block; color: var(--ink-soft); font-size: .92rem; padding: .25rem 0; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 1.4rem; padding-top: 1.5rem; color: var(--ink-dim); font-size: .82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* ---------- Mobile bottom bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 760px){
  .mobile-bar {
    position: fixed; inset: auto 0 0 0; z-index: 90; display: grid; grid-template-columns: 1fr; gap: .6rem;
    padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom)); background: rgba(11,14,19,.92);
    backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  }
  .mobile-bar .btn { width: 100%; padding: .8rem; font-size: .9rem; }
}

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ [data-reveal]{ opacity:1; transform:none; transition:none; } }

/* ---------- Mobile nav drawer ---------- */
@media (max-width: 920px){
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-drawer {
    position: fixed; inset: 88px 0 auto 0; background: rgba(11,14,19,.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line); padding: 1.2rem 1.4rem 2rem; display: none; flex-direction: column; gap: .4rem; z-index: 99;
  }
  .nav-drawer.open { display: flex; }
  .nav-drawer a { padding: .8rem 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
}
@media (min-width: 921px){ .nav-drawer { display: none !important; } }

/* ================= Mobile-Feinschliff (Revision 2026-08-18) ================= */
@media (max-width: 760px){
  /* Header entrümpeln: CTA raus – steckt bereits in der Bottom-Bar */
  .nav-cta .btn-primary { display: none; }
  .nav-logo img { height: 56px; }
  .nav-cta { gap: .5rem; }
  .theme-toggle { width: 40px; height: 40px; }
  .nav-burger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }

  /* Typografie: nicht mehr erschlagend */
  .hero h1 { font-size: clamp(1.95rem, 8.4vw, 2.55rem); line-height: 1.14; margin: .9rem 0; hyphens: none; }
  .hero .lead { font-size: 1rem; line-height: 1.6; }
  .section-head h2 { font-size: clamp(1.5rem, 6.4vw, 2rem); line-height: 1.2; }
  .eyebrow { font-size: .72rem; letter-spacing: .16em; }

  /* Buttons: volle Breite, nie zweizeilig */
  .btn { white-space: nowrap; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: .7rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Bottom-Bar verdeckt keine Inhalte mehr */
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }

  /* Tippziele auf mind. 44px (Apple/Google-Richtwert) */
  .nav-drawer a { min-height: 48px; display: flex; align-items: center; }
  .footer-col a { display: block; padding: .5rem 0; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
}
@media (max-width: 920px) and (min-width: 761px){
  .nav-cta .btn-primary { white-space: nowrap; padding: .6rem 1.1rem; font-size: .9rem; }
}


/* ---- Karte: Laden erst nach Klick (DSGVO) ---- */
.map-consent {
  position: relative; overflow: hidden;
  min-height: 320px;            /* waechst mit dem Inhalt, wird NICHT beschnitten */
  border-radius: 16px; border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(42,160,230,.10), rgba(42,160,230,.02) 55%, transparent);
  display: grid; place-items: center;
}
/* dezentes Stadtplan-Raster im Hintergrund */
.map-consent-grid {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(42,160,230,.13) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(42,160,230,.13) 1px, transparent 1px),
    linear-gradient(to right, rgba(42,160,230,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(42,160,230,.07) 1px, transparent 1px);
  background-size: 88px 88px, 88px 88px, 22px 22px, 22px 22px;
  -webkit-mask-image: radial-gradient(circle at 50% 42%, #000 0%, rgba(0,0,0,.35) 62%, transparent 88%);
          mask-image: radial-gradient(circle at 50% 42%, #000 0%, rgba(0,0,0,.35) 62%, transparent 88%);
}
.map-consent-body {
  position: relative; z-index: 1;
  display: grid; justify-items: center; gap: .55rem;
  text-align: center; padding: 2.2rem 1.6rem; max-width: 42ch;
}
.map-pin {
  display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: .3rem;
  border-radius: 999px; color: #fff;
  background: linear-gradient(140deg, var(--blue-bright), var(--blue));
  box-shadow: 0 10px 26px -10px rgba(42,160,230,.85);
}
.map-pin svg { width: 26px; height: 26px; }
.map-consent-title { margin: 0; font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.map-consent-text  { margin: 0; font-size: .9rem; color: var(--ink-soft); }
.map-consent .btn  { margin-top: .7rem; }
.map-consent-note  { margin: .5rem 0 0; font-size: .76rem; line-height: 1.5; color: var(--ink-soft); opacity: .8; }
.map-consent-note a { color: inherit; text-decoration: underline; }
.map-consent-alt   { margin: 0; font-size: .82rem; }
.map-consent-alt a { color: var(--blue-bright); text-decoration: none; font-weight: 600; }
.map-consent-alt a:hover { text-decoration: underline; }
@media (max-width: 560px){
  .map-consent { min-height: 0; }
  .map-consent-body { padding: 1.7rem 1.1rem; gap: .45rem; }
  .map-pin { width: 46px; height: 46px; }
  .map-pin svg { width: 22px; height: 22px; }
  .map-consent-title { font-size: .98rem; }
  .map-consent-text { font-size: .85rem; }
  .map-consent-note { font-size: .73rem; }
}


/* ---- Einwilligungs-Banner ---- */
.consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  padding: 1.1rem 1.2rem calc(1.1rem + env(safe-area-inset-bottom));
  background: rgba(11,14,19,.97); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-strong);
  transform: translateY(110%); transition: transform .35s var(--ease);
}
body.light .consent { background: rgba(255,255,255,.98); box-shadow: 0 -12px 34px -18px rgba(24,52,86,.5); }
.consent.show { transform: none; }
.consent-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 1.4rem; align-items: center;
}
.consent-text { color: var(--ink-soft); }
.consent-lead { margin: 0 0 .25rem; font-size: .97rem; color: var(--ink); }
.consent-sub  { margin: 0; font-size: .84rem; line-height: 1.55; }
.consent-sub strong { color: var(--ink); }
.consent-sub a { color: var(--blue-bright); text-decoration: underline; white-space: nowrap; }
.consent-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.consent-actions .btn { padding: .62rem 1.15rem; font-size: .88rem; white-space: nowrap; }
@media (max-width: 860px){
  .consent-inner { grid-template-columns: 1fr; gap: .9rem; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .consent-actions .btn { width: 100%; justify-content: center; }
}

/* Solange das Einwilligungs-Banner sichtbar ist, tritt die Buchen-Leiste zurueck */
body.consent-open .mobile-bar { display: none; }

/* Banner auf kleinen Schirmen kompakter */
@media (max-width: 560px){
  .consent { padding: .85rem .9rem calc(.85rem + env(safe-area-inset-bottom)); }
  .consent-lead { font-size: .92rem; }
  .consent-sub { font-size: .79rem; line-height: 1.5; }
  .consent-actions .btn { padding: .55rem .8rem; font-size: .84rem; }
}

/* ---- Footer: Kontaktbereich ---- */
.footer-contact { font-style: normal; display: grid; gap: .75rem; margin-top: 1.4rem; }
.footer-contact > a, .footer-contact-item {
  display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: .65rem;
  color: var(--ink-soft); font-size: .9rem; line-height: 1.5; text-decoration: none;
}
.footer-contact svg { width: 18px; height: 18px; margin-top: .15rem; color: var(--blue); opacity: .9; }
.footer-contact > a:hover { color: var(--blue-bright); }
.footer-contact > a:hover svg { color: var(--blue-bright); opacity: 1; }

/* ---- Footer: Mobil aufgeraeumt ---- */
@media (max-width: 760px){
  .footer { padding: 2.6rem 0 6rem; }
  .footer-inner { display: block; }
  .footer p { max-width: none; }
  .footer-contact { gap: .85rem; margin-bottom: 2.4rem; }
  .footer-cols {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 1.2rem;
    padding-top: 1.8rem; border-top: 1px solid var(--line);
  }
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-col h4 { margin-bottom: .5rem; }
}
@media (max-width: 330px){
  .footer-cols { grid-template-columns: 1fr; gap: 1.4rem; }
  .footer-col:last-child { grid-column: auto; }
}

/* ---- Footer: Credit + Bildhinweis ---- */
.footer-imagenote {
  margin: 2.2rem 0 0; padding-top: 1.4rem; border-top: 1px solid var(--line);
  font-size: .76rem; line-height: 1.5; color: var(--ink-dim); opacity: .75; max-width: none;
}
.footer-bottom { align-items: center; }
.footer-credit a { color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.footer-credit a:hover { color: var(--blue-bright); border-bottom-color: var(--blue-bright); }
@media (max-width: 760px){
  .footer-imagenote { margin-top: 1.8rem; font-size: .74rem; }
  .footer-credit { line-height: 1.6; }
}

/* Scroll-Hinweis nur am Desktop – auf Touchgeraeten sinnlos und er landet
   im gestapelten Layout mitten auf dem Hero-Foto */
@media (max-width: 900px){ .hero-scroll { display: none; } }
@media (hover: none){ .hero-scroll { display: none; } }

/* ---- Preise: Mehrwertsteuer-Hinweis (PAngV) ---- */
.price-card .vat {
  margin: -.35rem 0 1rem; font-size: .78rem; color: var(--ink-dim); letter-spacing: .01em;
}
.price-note {
  margin: 1.6rem 0 0; text-align: center;
  font-size: .8rem; color: var(--ink-dim); opacity: .85;
}
@media (max-width: 760px){ .price-note { text-align: left; } }

/* ---- Social-Links im Footer ---- */
.socials { display: flex; gap: .6rem; margin-top: 1.1rem; }
.social {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .85rem .5rem .65rem; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--ink-soft);
  font-size: .86rem; text-decoration: none;
  transition: color .2s, border-color .2s, transform .18s var(--ease);
}
.social svg { width: 18px; height: 18px; }
.social:hover { color: var(--blue-bright); border-color: var(--blue-bright); transform: translateY(-1px); }

/* ============================================================
   PREISE – "in Kürze"-Zustand (bis die Tarife freigegeben sind)
   ============================================================ */

/* Platzhalter im Preisfeld – gleiche Höhe wie ein echter Preis */
.price-card .amt.is-soon,
.price-card .amt.is-text { font-size: 1.75rem; letter-spacing: -.01em; }
.soon-val {
  background: linear-gradient(100deg,
              var(--ink) 20%, var(--blue-bright) 50%, var(--ink) 80%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: soonSheen 4s var(--ease) infinite;
}
@keyframes soonSheen {
  0%, 100% { background-position: 130% 0; }
  50%      { background-position: -30% 0; }
}

/* Barrierefreiheit: keine Bewegung, wenn der Nutzer das so eingestellt hat */
@media (prefers-reduced-motion: reduce) {
  .soon-val {
    animation: none; background: none;
    -webkit-text-fill-color: var(--blue-bright); color: var(--blue-bright);
  }
}


/* ---- Preise: Zeitfenster-Staffel der Einzelbuchung ---- */
.price-card .amt .amt-from {
  font-size: 1.05rem; font-weight: 500; color: var(--ink-dim);
  margin-right: .3rem; letter-spacing: 0;
}
.price-card ul.price-tiers {
  list-style: none; margin: 0 0 1.2rem; padding: .75rem 0 0;
  border-top: 1px solid var(--line);
  display: grid; gap: .4rem;
}
.price-card ul.price-tiers li {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: .9rem; font-size: .84rem; color: var(--ink-soft);
}
.price-card ul.price-tiers li::before { content: none; }
.price-card ul.price-tiers .tier-price {
  font-weight: 600; color: var(--ink); white-space: nowrap;
}
