/* =====================================================================
   RAID Royal Studios — Premium Redesign
   Palette: warmes Schwarz + Champagner/Beige · Marke: Chrom-Silber
   Vanilla CSS · alle Klassen/IDs aus dem alten Markup beibehalten
   ===================================================================== */

:root {
  /* Flächen – edles Graphitgrau (nicht mehr fast-schwarz), zum Logo passend */
  --bg:           #1b1c1f;
  --bg-2:         #202126;
  --surface:      #26282d;
  --surface-2:    #2e3036;
  --surface-3:    #383b42;

  /* Platin / Silber – einziger UI-Akzent, abgestimmt auf das Chrom-Logo */
  --accent:       #c5cad2;
  --accent-light: #e9edf3;
  --accent-deep:  #939aa6;
  --accent-dim:   rgba(197, 202, 210, 0.12);
  --accent-glow:  rgba(197, 202, 210, 0.10);

  /* Hairlines */
  --line:         rgba(197, 202, 210, 0.16);
  --line-soft:    rgba(197, 202, 210, 0.09);
  --line-strong:  rgba(197, 202, 210, 0.30);

  /* Text – kühles Off-White */
  --cream:        #f0f2f6;
  --text:         #e8ebf1;
  --text-soft:    #b4bac6;
  --text-muted:   #868d9a;

  /* Funktional */
  --wa:           #25d366;
  --wa-deep:      #1eb457;
  --open:         #6fcf97;
  --closed:       #d6a08f;

  /* Chrom (Marke: Wortmarke + Logo-Fallback) */
  --chrome-1:     #f6f8fb;
  --chrome-2:     #c8cfd8;
  --chrome-3:     #8d95a0;

  /* Maße / Motion */
  --container:    1200px;
  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    22px;
  --radius-xl:    30px;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm:    0 2px 10px rgba(0, 0, 0, 0.35);
  --shadow:       0 18px 50px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 16px 44px rgba(0, 0, 0, 0.22);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:    "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* z-Index-Skala */
  --z-glow:    0;
  --z-grain:   40;
  --z-header:  50;
  --z-nav:     48;
  --z-cookie:  80;
  --z-modal:   90;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.cookie-banner-open,
body.legal-modal-open { overflow: hidden; }

img { max-width: 100%; display: block; }

/* [hidden] muss display-Regeln der Klassen schlagen (Modals, Banner, Status) */
[hidden] { display: none !important; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  color: var(--cream);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection { background: rgba(197, 202, 210, 0.28); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Atmosphäre: Grain + Ambient Glow ---------- */
.film-grain {
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ambient-glow {
  position: fixed;
  inset: 0;
  z-index: var(--z-glow);
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 78% 6%, rgba(197, 202, 210, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 12% 92%, rgba(197, 202, 210, 0.04) 0%, transparent 60%);
}

/* ---------- Skip-Link ---------- */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 0.7rem 1.1rem;
  background: var(--accent);
  color: #15171b;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Layout-Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  position: relative;
  padding-block: clamp(4.5rem, 11vw, 9rem);
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-head--left {
  margin-inline: 0;
  text-align: left;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.section-head:not(.section-head--left) .section-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-title {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.04;
  font-weight: 600;
}

.section-lead {
  margin: 1.5rem 0 0;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 0.95rem;
  --btn-pad-x: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease),
              border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 52%, var(--accent-deep) 100%);
  color: #15171b;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.btn-glow { position: relative; }
.btn-glow::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(233, 237, 243, 0.5), transparent 70%);
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity 0.3s var(--ease);
}
.btn-glow:hover::after { opacity: 1; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
              backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.9rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  transition: opacity 0.2s var(--ease);
}
.logo:hover { opacity: 0.85; }
.logo-img { display: block; height: 48px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
  color: var(--cream);
}
.logo-accent { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease-out);
}
.nav a:hover,
.nav a.is-active { color: var(--accent-light); }
.nav a:hover::after,
.nav a.is-active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}
.btn-book {
  --btn-pad-y: 0.72rem;
  --btn-pad-x: 1.35rem;
  font-size: 0.78rem;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 55%, var(--accent-deep) 100%);
  color: #15171b;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34); }
.header-book__short { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-toggle:hover { border-color: var(--accent); background: var(--accent-dim); }
.nav-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav.is-open ~ .header-actions .nav-toggle span:nth-child(1),
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 1.25rem 5rem;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-bg-parallax {
  position: absolute;
  inset: -6%;
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.45) brightness(0.6) contrast(1.05);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 42%, transparent 0%, rgba(8, 7, 6, 0.55) 78%, rgba(8, 7, 6, 0.92) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.72) 0%, rgba(10, 9, 8, 0.3) 35%, rgba(10, 9, 8, 0.55) 72%, var(--bg) 100%);
}
.hero-edge-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 28% at 50% 50%, rgba(197, 202, 210, 0.1) 0%, transparent 70%);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.hero-tagline {
  margin: 0 0 1.4rem;
  font-size: clamp(0.74rem, 2vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.9rem, 10vw, 6.6rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.hero-title-line { display: block; color: var(--cream); }
.hero-title-accent {
  display: block;
  background: linear-gradient(105deg, var(--chrome-1) 0%, var(--chrome-2) 30%, var(--chrome-3) 50%, var(--chrome-2) 70%, #ffffff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-shine 7s linear infinite;
  filter: drop-shadow(0 2px 24px rgba(0, 0, 0, 0.5));
}
@keyframes title-shine {
  to { background-position: 220% center; }
}
.hero-subtitle {
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.hero-actions {
  margin-top: 2.6rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2.4s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ---------- Section: Über uns ---------- */
.section-dark { background: var(--bg-2); }

.container-ueber {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.ueber-uns-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ueber-uns-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px var(--line);
  border-radius: inherit;
  pointer-events: none;
}
.ueber-uns-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.32) brightness(0.92);
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}
.ueber-uns-image-wrap:hover .ueber-uns-image {
  transform: scale(1.04);
  filter: grayscale(0) brightness(1.02);
}

/* ---------- Section: Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  counter-reset: service;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  counter-increment: service;
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.service-image-wrap {
  position: relative;
  overflow: hidden;
}
.service-image-wrap::before {
  content: counter(service, decimal-leading-zero);
  position: absolute;
  top: 0.9rem;
  left: 1.1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.service-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.35) 0%, transparent 40%, rgba(10, 9, 8, 0.5) 100%);
}
.service-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.88);
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}
.service-card:hover .service-image {
  transform: scale(1.06);
  filter: grayscale(0) brightness(0.95);
}
.service-card h3 {
  font-size: 1.5rem;
  margin: 1.4rem 1.5rem 0.55rem;
}
.service-card p {
  margin: 0 1.5rem 1.7rem;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ---------- Section: Preise ---------- */
.section-preise { background: var(--bg-2); }
.preisliste {
  max-width: 760px;
  margin: 0 auto;
}
.preisliste-row {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 1.15rem 0.3rem;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left 0.3s var(--ease-out), border-color 0.3s var(--ease);
}
.preisliste-row:hover {
  padding-left: 1rem;
  border-bottom-color: var(--line-strong);
}
.preis-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
}
.preis-leader {
  flex: 1;
  align-self: center;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-3px);
}
.preis-preis {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-light);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ---------- Buchungskalender (Live-Verfügbarkeit) ---------- */
.booking-cal {
  max-width: 880px;
  margin: 0 auto clamp(1.8rem, 4vw, 3rem);
  padding: clamp(1.3rem, 3vw, 2.1rem);
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.booking-cal__intro {
  margin: 0 0 1.4rem;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.98rem;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.cal-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.cal-nav {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.cal-nav:hover:not(:disabled) { border-color: var(--accent); background: var(--accent-dim); color: var(--accent-light); }
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.2rem;
  margin-bottom: 1.2rem;
  font-size: 0.76rem;
  color: var(--text-soft);
}
.cal-legend .dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.dot-free { background: #6fcf97; }
.dot-few { background: #e0b566; }
.dot-full { background: #d6877a; }
.dot-closed { background: var(--text-muted); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
}
.cal-wd {
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0.5rem;
}
.cal-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  color: var(--text-soft);
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  transition: transform 0.2s var(--ease-out), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.cal-num { font-size: 0.95rem; }
.cal-empty { border: none; }
.cal-past, .cal-closed { opacity: 0.38; }
.cal-free {
  background: rgba(111, 207, 151, 0.12);
  border-color: rgba(111, 207, 151, 0.36);
  color: #c6ebd5;
  cursor: pointer;
}
.cal-few {
  background: rgba(224, 181, 102, 0.13);
  border-color: rgba(224, 181, 102, 0.4);
  color: #eed6a6;
  cursor: pointer;
}
.cal-full {
  background: rgba(214, 135, 122, 0.1);
  border-color: rgba(214, 135, 122, 0.3);
  color: #e3aaa0;
}
button.cal-free:hover, button.cal-few:hover { transform: translateY(-2px); }
.cal-cell.is-active { box-shadow: 0 0 0 2px var(--accent); border-color: transparent; }

.cal-slots {
  margin-top: 1.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-soft);
}
.cal-slots-title {
  margin: 0 0 0.9rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.cal-slot-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cal-slot {
  padding: 0.55rem 1rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
  color: var(--cream);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease-out), color 0.2s var(--ease);
}
.cal-slot:hover { border-color: var(--accent); background: var(--accent-dim); transform: translateY(-1px); }
.cal-slot.is-sel {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  color: #15171b;
  border-color: transparent;
  font-weight: 600;
}
.cal-note { margin: 1.1rem 0 0; text-align: center; font-size: 0.84rem; color: var(--text-muted); }

@media (max-width: 600px) {
  .cal-grid { gap: 0.3rem; }
  .cal-num { font-size: 0.85rem; }
  .cal-cell { border-radius: 8px; }
}

/* ---------- Section: Termin ---------- */
.section-termin {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(197, 202, 210, 0.07) 0%, transparent 55%),
    var(--bg);
}
.termin-card {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.termin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: var(--wa);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.termin-lead {
  margin: 1.3rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}
.wa-icon { flex-shrink: 0; }

.termin-form { display: flex; flex-direction: column; gap: 1.1rem; }
.termin-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.termin-field { display: flex; flex-direction: column; gap: 0.5rem; }
.termin-field label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.termin-optional {
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
}
.termin-field select,
.termin-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--cream);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  appearance: none;
}
.termin-field input::placeholder { color: var(--text-muted); }
.termin-field select:focus,
.termin-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
  background: var(--surface);
}
/* eigener Chevron für Select */
.termin-field select {
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c5cad2' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
/* eigenes Kalender-Icon */
.termin-field input[type="date"] {
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c5cad2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.termin-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 2.6rem;
  height: 100%;
  cursor: pointer;
}
.termin-field input[type="date"] { position: relative; }

.termin-hint {
  margin: 0;
  padding: 0.7rem 0.95rem;
  font-size: 0.88rem;
  color: var(--closed);
  background: rgba(214, 160, 143, 0.1);
  border: 1px solid rgba(214, 160, 143, 0.35);
  border-radius: var(--radius-sm);
}

.termin-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.3rem;
  padding: 1rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #04190d;
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-deep) 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.28);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease);
}
.termin-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.42); }
.termin-submit:active { transform: translateY(0) scale(0.99); }

.termin-note {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.termin-direct {
  color: var(--accent);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.termin-direct:hover { color: var(--accent-light); border-bottom-color: var(--accent); }

/* ---------- Section: Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.contact-block {
  position: relative;
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-block:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.contact-block--map { padding: 0; overflow: hidden; }
.contact-map-link {
  display: block;
  height: 100%;
  padding: 2rem 1.25rem;
  border-radius: inherit;
  transition: background 0.3s var(--ease);
}
.contact-map-link:hover { background: var(--accent-dim); }

.contact-block h3 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}
.contact-block p { margin: 0; color: var(--text-soft); line-height: 1.75; }
.contact-map-address { font-size: 1.05rem; color: var(--text); }

.contact-map-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 260px;
  margin: 1.3rem auto 0;
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.contact-map-icon { flex-shrink: 0; color: var(--accent-light); }
.contact-map-arrow { font-weight: 700; transition: transform 0.25s var(--ease-out); }
.contact-map-link:hover .contact-map-cta {
  background: rgba(197, 202, 210, 0.2);
  border-color: var(--accent);
  color: #fff;
}
.contact-map-link:hover .contact-map-arrow { transform: translateX(4px); }

.contact-soon-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.34rem 0.85rem;
  border-radius: 6px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--line-strong);
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem !important;
  padding: 0.36rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  border: 1px solid transparent;
}
.open-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.open-status.is-open {
  color: var(--open);
  background: rgba(111, 207, 151, 0.1);
  border-color: rgba(111, 207, 151, 0.4);
}
.open-status.is-open .open-status__dot {
  background: var(--open);
  box-shadow: 0 0 0 3px rgba(111, 207, 151, 0.25);
}
.open-status.is-closed {
  color: var(--closed);
  background: rgba(214, 160, 143, 0.1);
  border-color: rgba(214, 160, 143, 0.35);
}
.open-status.is-closed .open-status__dot { background: var(--closed); }

.contact-hinweis { margin-top: 0.9rem !important; font-size: 0.9rem; color: var(--text-muted); }
.contact-external {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.3rem !important;
}
.contact-block a { color: var(--accent); transition: color 0.2s var(--ease); }
.contact-block a:hover { color: var(--accent-light); }
.contact-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 260px;
  white-space: nowrap;
  padding: 0.72rem 1.2rem;
  color: #04190d !important;
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-deep) 100%);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease);
}
.contact-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4); color: #04190d !important; }

/* ---------- Section: FAQ ---------- */
.section-faq { background: var(--bg-2); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-item[open] { border-color: var(--line-strong); background: var(--surface-2); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s var(--ease-spring);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 1.5rem 1.4rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.5rem;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: min(320px, 60%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer-logo-link { display: inline-block; margin-bottom: 1.6rem; transition: opacity 0.2s var(--ease); }
.footer-logo-link:hover { opacity: 0.85; }
.footer-logo { display: block; width: min(300px, 80%); height: auto; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 1.6rem;
}
.footer-address { margin: 0 0 1.3rem; color: var(--text-soft); line-height: 2; }
.footer-address-link { transition: color 0.2s var(--ease); }
.footer-address-link:hover { color: var(--accent-light); }
.footer-soon { color: var(--accent); font-weight: 600; }

.footer-links,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.85rem;
  margin: 0 0 1.1rem;
}
.footer-links a,
.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  transition: color 0.2s var(--ease);
}
.footer-links a:hover,
.footer-legal a:hover { color: var(--accent-light); }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); }
.footer-sep { color: var(--line-strong); }
.footer-copy { margin: 1.4rem 0 0; font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.03em; }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: clamp(1rem, 3vw, 2rem);
  transform: translateX(-50%);
  z-index: var(--z-cookie);
  width: min(640px, calc(100% - 2rem));
  background: rgba(21, 18, 14, 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  animation: cookie-rise 0.5s var(--ease-out);
}
@keyframes cookie-rise {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.cookie-banner__inner { padding: 1.5rem 1.6rem; }
.cookie-banner__title { font-size: 1.25rem; margin: 0 0 0.5rem; }
.cookie-banner__desc { margin: 0; font-size: 0.92rem; color: var(--text-soft); line-height: 1.65; }
.cookie-banner__desc a { color: var(--accent); border-bottom: 1px solid var(--line); }
.cookie-prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.cookie-prefs__title { margin: 0 0 0.6rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.cookie-prefs__list { margin: 0; padding-left: 1.1rem; font-size: 0.86rem; color: var(--text-soft); line-height: 1.7; }
.cookie-prefs__list strong { color: var(--cream); }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.3rem;
}
.cookie-banner__btn { --btn-pad-y: 0.72rem; --btn-pad-x: 1.2rem; font-size: 0.78rem; }
.cookie-banner__link {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
.cookie-banner__link:hover { color: var(--accent-light); }

/* ---------- Legal-Modals ---------- */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 3, 0.75);
  backdrop-filter: blur(6px);
  animation: fade-in 0.3s var(--ease);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.legal-modal__panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(82vh, 760px);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  animation: modal-rise 0.4s var(--ease-out);
}
@keyframes modal-rise {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.legal-modal__close {
  position: sticky;
  top: 0.8rem;
  margin: 0.8rem 0.8rem 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-soft);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 2;
}
.legal-modal__close:hover { color: var(--accent-light); border-color: var(--accent); transform: rotate(90deg); }
.legal-modal__body { padding: clamp(1.6rem, 4vw, 2.6rem); }
.legal-modal__heading { font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 0 0 0.5rem; }
.legal-meta { margin: 0 0 1.5rem; font-size: 0.85rem; color: var(--text-muted); }
.legal-sub {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin: 1.6rem 0 0.5rem;
}
.legal-modal__body p { margin: 0 0 1rem; color: var(--text-soft); font-size: 0.95rem; line-height: 1.75; }
.legal-modal__body a { color: var(--accent); border-bottom: 1px solid var(--line); }
.legal-modal__body strong { color: var(--cream); }

/* ---------- Reveal-Animationen ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* gestaffeltes Auftauchen in Grids */
.services-grid > [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.services-grid > [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.contact-grid > [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.contact-grid > [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.contact-grid > [data-reveal]:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-title-accent, .hero-scroll-line { animation: none !important; }
  .hero-bg-parallax { transition: none !important; }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 5rem 2.2rem;
    background: rgba(13, 11, 9, 0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    z-index: var(--z-nav);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 1.05rem; letter-spacing: 0.1em; }
  .nav a::after { bottom: -4px; }
  .nav-toggle { display: flex; }

  .container-ueber { grid-template-columns: 1fr; }
  .ueber-uns-image-wrap { max-width: 460px; margin-inline: auto; }
  .ueber-uns-image { aspect-ratio: 16 / 11; }

  .termin-card { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .services-grid > [data-reveal] { transition-delay: 0s !important; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .header-book__full { display: none; }
  .header-book__short { display: inline; }
  .logo-text { display: none; }
  .logo-img { height: 42px; }

  .hero { min-height: 92dvh; padding-top: 6rem; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; margin-inline: auto; }
  .hero-actions .btn { width: 100%; }

  .termin-row { grid-template-columns: 1fr; }
  .preisliste-row { gap: 0.6rem; }
  .preis-name { font-size: 1.15rem; white-space: normal; }

  .cookie-banner__actions { flex-direction: column; align-items: stretch; }
  .cookie-banner__btn { width: 100%; }
  .cookie-banner__link { margin-left: 0; text-align: center; margin-top: 0.3rem; }

  .footer-logo { width: min(230px, 72%); }
}

@media (max-width: 380px) {
  .preisliste-row { flex-wrap: wrap; }
  .preis-leader { display: none; }
  .preis-preis { margin-left: auto; }
}
