/* ==========================================================================
   Vodafone Shop Bad Vilbel – Stylesheet
   Keine externen Ressourcen (System-Fonts, keine CDNs) → DSGVO-freundlich.
   ========================================================================== */

:root {
  color-scheme: dark;

  /* Farben */
  --bg: #06070b;
  --bg-2: #0b0d14;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f3f4f8;
  --muted: #a3a8b8;
  --faint: #6b7084;

  --brand: #e60000;          /* Buttons, Flächen (weiße Schrift, AA) */
  --brand-hi: #ff4d4d;       /* Rot als Textfarbe auf Dunkel (AA) */
  --brand-glow: rgba(230, 0, 0, 0.45);
  --magenta: #ff2d75;
  --ok: #3ddc97;
  --ok-glow: rgba(61, 220, 151, 0.45);
  --closed: #ff8a4d;

  /* Typografie */
  --font: "Segoe UI Variable Display", "Segoe UI Variable", "SF Pro Display",
          -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "SF Mono", "JetBrains Mono",
          Menlo, Consolas, monospace;

  /* Maße */
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 72px;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.1; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--brand-hi);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  padding: 10px 16px; border-radius: 10px;
  background: var(--brand); color: #fff; font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 16px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* --- Hintergrund: Aurora + Raster -------------------------------------- */
.bg-fx {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.bg-fx::before {                 /* Raster */
  content: ""; position: absolute; inset: -2px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  opacity: .55;
}
.bg-fx .orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55;
  animation: drift 18s var(--ease) infinite alternate;
}
.bg-fx .orb-1 { width: 520px; height: 520px; left: -140px; top: -160px; background: radial-gradient(circle, var(--brand) 0%, transparent 70%); }
.bg-fx .orb-2 { width: 460px; height: 460px; right: -160px; top: 120px; background: radial-gradient(circle, var(--magenta) 0%, transparent 70%); opacity: .35; animation-delay: -6s; }
.bg-fx .orb-3 { width: 600px; height: 600px; left: 30%; bottom: -380px; background: radial-gradient(circle, #5b1bff 0%, transparent 70%); opacity: .22; animation-delay: -12s; }

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(60px, 40px, 0) scale(1.12); }
}

/* --- Layout-Helfer ------------------------------------------------------ */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 128px); }

.glass {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 30px 60px -30px rgba(0,0,0,.7);
}

/* Leuchtende Kante bei Hover */
.glow-edge { position: relative; isolation: isolate; }
.glow-edge::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; z-index: -1;
  background: linear-gradient(135deg, var(--brand), transparent 40%, transparent 60%, var(--magenta));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s var(--ease);
}
.glow-edge:hover::before, .glow-edge:focus-within::before { opacity: 1; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: linear-gradient(90deg, var(--brand-hi), transparent);
}

.section-head { display: grid; gap: 14px; margin-bottom: clamp(32px, 5vw, 56px); max-width: 720px; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
.section-head p { color: var(--muted); }
.idx { color: var(--brand-hi); }

.gradient-text {
  background: linear-gradient(100deg, #fff 10%, var(--brand-hi) 55%, var(--magenta) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Platzhalter sichtbar markieren */
.ph {
  font-family: var(--mono); font-size: .88em;
  color: #ffd166; background: rgba(255, 209, 102, .08);
  border: 1px dashed rgba(255, 209, 102, .45); border-radius: 6px;
  padding: 0 .35em;
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  --h: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--h); padding: 0 24px; border-radius: 999px;
  font: 600 1rem/1 var(--font); text-decoration: none; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #b80000);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset, 0 10px 30px -8px var(--brand-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,.14) inset, 0 16px 40px -8px var(--brand-glow); }
.btn-ghost {
  background: var(--surface); color: var(--text); border-color: var(--line-strong);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.35); background: var(--surface-2); transform: translateY(-2px); }
.btn-sm { --h: 42px; padding: 0 18px; font-size: .92rem; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(6, 7, 11, .55);
  backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.site-header .container { height: 100%; display: flex; align-items: center; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand img { width: 36px; height: 36px; }
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-size: 1rem; letter-spacing: -.01em; }
.brand-text span { font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.nav ul { display: flex; gap: 4px; }
.nav a {
  display: block; padding: 10px 14px; border-radius: 999px;
  color: var(--muted); text-decoration: none; font-size: .95rem; font-weight: 500;
  transition: color .2s, background .2s;
}
.nav a:hover, .nav a[aria-current="true"] { color: var(--text); background: var(--surface-2); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line-strong); color: var(--text); cursor: pointer;
  place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* --- Hero --------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(56px, 9vw, 120px) clamp(64px, 9vw, 112px); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.hero h1 {
  font-size: clamp(2.75rem, 8vw, 5.75rem);
  font-weight: 800; letter-spacing: -0.045em; line-height: .98;
  margin: 22px 0 24px;
}
.hero-lead { font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: var(--muted); max-width: 540px; }
.hero-lead strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.chip {
  font-family: var(--mono); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px; color: var(--muted);
  border: 1px solid var(--line); background: var(--surface);
}

/* Status-Pille */
.status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px; border-radius: 999px;
  font-size: .88rem; font-weight: 500;
  border: 1px solid var(--line-strong); background: var(--surface);
}
.status-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--faint); flex: none; }
.status[data-state="open"] .status-dot { background: var(--ok); box-shadow: 0 0 12px var(--ok-glow); }
.status[data-state="open"] .status-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--ok);
  animation: ping 1.8s var(--ease) infinite;
}
.status[data-state="closed"] .status-dot { background: var(--closed); }

@keyframes ping { from { transform: scale(1); opacity: .9; } to { transform: scale(2.8); opacity: 0; } }

/* HUD-Panel rechts im Hero */
.hud { position: relative; padding: 28px; overflow: hidden; }
.hud-orbit { position: relative; aspect-ratio: 1; width: 100%; max-width: 360px; margin: 0 auto 8px; }
.hud-orbit svg { width: 100%; height: 100%; overflow: visible; }
.hud-orbit .spin { transform-origin: 200px 200px; animation: spin 40s linear infinite; }
.hud-orbit .spin-rev { transform-origin: 200px 200px; animation: spin 28s linear infinite reverse; }
.hud-orbit .pulse { transform-origin: 200px 200px; animation: pulse 3.2s var(--ease) infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity: .55; transform: scale(.96); } 50% { opacity: 1; transform: scale(1.04); } }

.hud-clock {
  position: absolute; inset: 0; display: grid; place-content: center; text-align: center; gap: 4px;
}
.hud-clock time { font-family: var(--mono); font-size: clamp(2rem, 5vw, 2.75rem); font-weight: 600; letter-spacing: .02em; font-variant-numeric: tabular-nums; }
.hud-clock small { font-family: var(--mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.hud-rows { display: grid; gap: 1px; background: var(--line); border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.hud-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 16px; background: var(--bg-2); font-size: .92rem; }
.hud-row span:first-child { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); align-self: center; }
.hud-row span:last-child { text-align: right; }

.hud::after {  /* Scanline */
  content: ""; position: absolute; left: 0; right: 0; height: 120px; top: -120px; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255,77,77,.08), transparent);
  animation: scan 6s linear infinite;
}
@keyframes scan { to { top: 100%; } }

/* Laufband */
.marquee {
  border-block: 1px solid var(--line); overflow: hidden; background: rgba(255,255,255,.015);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display: flex; width: max-content; gap: 48px; padding: 18px 0; animation: marquee 40s linear infinite; }
.marquee-track span { font-family: var(--mono); font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); white-space: nowrap; display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after { content: "✦"; color: var(--brand-hi); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --- Öffnungszeiten ----------------------------------------------------- */
.hours-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: start; }
.hours-card { padding: 12px; }
.hours-table { width: 100%; border-collapse: separate; border-spacing: 0 4px; font-variant-numeric: tabular-nums; }
.hours-table th, .hours-table td { padding: 16px 20px; text-align: left; font-weight: 500; }
.hours-table td { text-align: right; font-family: var(--mono); color: var(--muted); white-space: nowrap; }
.hours-table tr { transition: background .3s; }
.hours-table tr > * { border-block: 1px solid transparent; }
.hours-table tr > :first-child { border-left: 1px solid transparent; border-radius: 12px 0 0 12px; }
.hours-table tr > :last-child  { border-right: 1px solid transparent; border-radius: 0 12px 12px 0; }
.hours-table tr.is-today > * {
  background: linear-gradient(90deg, rgba(230,0,0,.16), rgba(255,45,117,.06));
  border-color: rgba(255,77,77,.35);
  color: var(--text);
}
.hours-table tr.is-today th::after {
  content: "Heute"; margin-left: 10px; padding: 3px 8px; border-radius: 999px; vertical-align: 2px;
  font: 600 .66rem/1 var(--mono); letter-spacing: .12em; text-transform: uppercase;
  background: var(--brand); color: #fff;
}
.hours-table .closed { color: var(--faint); }

.hours-side { display: grid; gap: 24px; }
.info-card { padding: 28px; display: grid; gap: 14px; }
.info-card h3 { font-size: 1.2rem; }
.info-card p { color: var(--muted); }
.big-status { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 700; letter-spacing: -.02em; }
.big-status[data-state="open"] { color: var(--ok); }
.big-status[data-state="closed"] { color: var(--closed); }

/* --- Im Shop ------------------------------------------------------------ */
.shop-card { margin-top: 24px; padding: 28px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.shop-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.shop-card p { color: var(--muted); font-size: .98rem; }
.shop-col + .shop-col { border-left: 1px solid var(--line); padding-left: 28px; }
.shop-sub { margin-top: 20px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 6px 12px; border-radius: 999px; font-size: .9rem;
  border: 1px solid var(--line-strong); background: var(--surface);
}

.section-tight { padding-top: 0; }
.hero-cta-tight { margin-top: 4px; }
.cta-wrap { padding-bottom: clamp(48px, 8vw, 96px); }
.footer-name { color: var(--text); }

/* --- Wartung ------------------------------------------------------------ */
.maint { min-height: calc(100vh - 140px); display: grid; align-items: center; padding-block: clamp(48px, 10vw, 110px); }
.maint-inner { max-width: 880px; text-align: center; display: grid; justify-items: center; gap: 18px; }
.maint-logo { width: 72px; height: 72px; filter: drop-shadow(0 10px 40px var(--brand-glow)); }
.maint-title { font-size: clamp(2.4rem, 7vw, 4.4rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.maint-text { color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.25rem); max-width: 620px; }
.maint-until .status-dot { background: var(--brand-hi); box-shadow: 0 0 12px var(--brand-glow); }
.maint-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: 100%; margin-top: 18px; text-align: left; }
.maint-grid h2 { font-size: 1.15rem; }
.maint-grid a:not(.btn) { color: var(--brand-hi); }
.maint-hours th, .maint-hours td { padding: 8px 4px; }
.maint-preview { font-size: .9rem; color: #ffd166; border: 1px dashed rgba(255,209,102,.45); border-radius: 999px; padding: 6px 16px; }
.maint-preview a { color: inherit; }
.admin-bar {
  position: relative; z-index: 60; padding: 10px var(--gutter); text-align: center; font-size: .92rem;
  color: #1a1300; background: #ffd166;
}
.admin-bar a { color: inherit; font-weight: 600; }
@media (max-width: 700px) { .maint-grid { grid-template-columns: 1fr; } }

/* --- Anfahrt & Kontakt -------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.map-card { padding: 0; overflow: hidden; display: grid; grid-template-rows: auto 1fr; }
.map-visual { position: relative; aspect-ratio: 16 / 10; background: radial-gradient(ellipse at 50% 55%, rgba(230,0,0,.18), transparent 60%), var(--bg-2); border-bottom: 1px solid var(--line); }
.map-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin {
  position: absolute; left: 52%; top: 50%; transform: translate(-50%, -100%);
  width: 44px; height: 44px; filter: drop-shadow(0 8px 20px var(--brand-glow));
}
.map-pin::after {
  content: ""; position: absolute; left: 50%; bottom: -10px; width: 60px; height: 18px; transform: translateX(-50%);
  border-radius: 50%; border: 2px solid var(--brand-hi); opacity: .6; animation: ripple 2.4s var(--ease) infinite;
}
@keyframes ripple { from { transform: translateX(-50%) scale(.3); opacity: .9; } to { transform: translateX(-50%) scale(2.2); opacity: 0; } }
.map-note {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint);
}

.map-body { padding: 28px; display: grid; gap: 20px; align-content: start; }
.address { font-style: normal; font-size: 1.15rem; line-height: 1.5; }
.address strong { display: block; font-size: 1.35rem; margin-bottom: 4px; }
.meta-list { display: grid; gap: 12px; color: var(--muted); font-size: .98rem; }
.meta-list li { display: flex; gap: 12px; }
.meta-list svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--brand-hi); }

.contact-list { display: grid; gap: 16px; align-content: start; }
.contact-item {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px;
  padding: 22px 24px; text-decoration: none;
  transition: transform .3s var(--ease), background .3s;
}
.contact-item:hover { transform: translateX(4px); background: var(--surface-2); }
.contact-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(230,0,0,.25), rgba(255,45,117,.12));
  border: 1px solid rgba(255,77,77,.3); color: #fff;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-item small { display: block; font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 2px; }
.contact-item strong { font-size: 1.08rem; font-weight: 600; word-break: break-word; }
.contact-item .arrow { width: 20px; height: 20px; color: var(--faint); transition: color .3s, transform .3s var(--ease); }
.contact-item:hover .arrow { color: var(--brand-hi); transform: translateX(3px); }

/* --- Team --------------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.member { padding: 28px; text-align: center; display: grid; justify-items: center; gap: 6px; }
.avatar {
  position: relative; width: 112px; height: 112px; margin-bottom: 14px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 25%, #2a2d3a, #11131b);
  font: 700 2rem/1 var(--font); letter-spacing: -.02em; color: var(--text);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.avatar::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--brand), var(--magenta), transparent 55%, var(--brand));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  animation: spin 8s linear infinite;
}
.member h3 { font-size: 1.15rem; }
.member .role { font-family: var(--mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-hi); }
.member p { color: var(--muted); font-size: .95rem; margin-top: 6px; }

/* --- CTA-Band ----------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden; padding: clamp(36px, 6vw, 64px);
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(230,0,0,.35), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(255,45,117,.2), transparent 55%),
    var(--bg-2);
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
.cta-band p { color: var(--muted); margin-top: 10px; }
.cta-band .hero-cta { margin-top: 0; }

/* --- Footer ------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); padding-block: 48px; margin-top: 32px; color: var(--muted); font-size: .94rem; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 24px 48px; justify-content: space-between; align-items: flex-start; }
.footer-grid nav ul { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--text); }
.footer-note { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; color: var(--faint); margin-top: 28px; }

/* --- Rechtstexte -------------------------------------------------------- */
.legal { padding-block: clamp(48px, 8vw, 96px); }
.legal .glass { padding: clamp(24px, 5vw, 56px); max-width: 860px; }
.prose h1 { font-size: clamp(2.2rem, 6vw, 3.5rem); font-weight: 800; margin: 14px 0 32px; }
.prose h2 { font-size: 1.3rem; margin: 40px 0 12px; }
.prose h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.prose p, .prose ul { color: var(--muted); margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 1.3em; }
.prose a { color: var(--brand-hi); }
.prose strong { color: var(--text); }
.notice {
  margin-bottom: 32px; padding: 14px 18px; border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 209, 102, .45); background: rgba(255, 209, 102, .06);
  color: #ffd166 !important; font-size: .92rem;
}

/* --- Scroll-Reveal ------------------------------------------------------ */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s !important; }
.reveal-d2 { transition-delay: .16s !important; }
.reveal-d3 { transition-delay: .24s !important; }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid, .hours-grid, .contact-grid { grid-template-columns: 1fr; }
  .hud { max-width: 520px; }
  .cta-band { grid-template-columns: 1fr; }
  .shop-card { grid-template-columns: 1fr; gap: 20px; }
  .shop-col + .shop-col { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: grid; }
  .header-cta { display: none; }
  .nav {
    position: fixed; left: 0; right: 0; top: var(--header-h);
    padding: 16px var(--gutter) 28px;
    background: rgba(6, 7, 11, .96);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav-open .nav { transform: none; opacity: 1; visibility: visible; }
  .nav ul { flex-direction: column; gap: 4px; }
  .nav a { padding: 14px 16px; font-size: 1.1rem; border-radius: 12px; }
  .nav .nav-call { display: block; margin-top: 12px; }
  .nav .nav-call a { display: flex; justify-content: center; color: #fff; border-radius: 999px; }
}
@media (min-width: 821px) { .nav .nav-call { display: none; } }

@media (max-width: 480px) {
  .hero-cta .btn { flex: 1 1 100%; }
  .hours-card { padding: 8px; }
  .hours-table th, .hours-table td { padding: 14px 10px; }
  .hours-table td { font-size: .9rem; }
  .hours-table tr.is-today th::after { margin-left: 6px; padding: 3px 6px; }
  .hours-grid > * { min-width: 0; }
  .contact-item { padding: 18px; gap: 14px; }
  .contact-icon { width: 44px; height: 44px; }
  .brand-text span { display: none; }
}

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