/* =========================================================
   AVDAR BARBERSHOP — Stylesheet
   Farbwelt: Tiefschwarz, warmes Gold, gebrochenes Weiß
   ========================================================= */

:root {
  --black:        #0a0a0b;
  --black-soft:   #111114;
  --black-card:   #16161a;
  --line:         #26262c;
  --line-soft:    #1d1d22;

  --gold:         #c9a227;
  --gold-bright:  #e2c464;
  --gold-deep:    #8f6f14;

  --cream:        #f4f1ea;
  --muted:        #9a978f;
  --muted-dim:    #6f6d68;

  --ff-display: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1200px;
  --radius: 4px;
  --radius-lg: 8px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
svg { fill: currentColor; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1.1em; }
a { color: inherit; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; cursor: pointer; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  z-index: 999;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1405;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-bright); }

.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--cream);
  border-color: rgba(244,241,234,.28);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--cream); }

.btn-outline {
  background: transparent;
  color: var(--gold-bright);
  border-color: rgba(201,162,39,.45);
}
.btn-outline:hover { background: rgba(201,162,39,.12); border-color: var(--gold); }

.btn-lg { padding: 16px 34px; font-size: 0.86rem; }
.btn-block { display: flex; width: 100%; }

.link-gold {
  color: var(--gold-bright);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(226,196,100,.35);
  padding-bottom: 1px;
  transition: border-color .25s var(--ease);
}
.link-gold:hover { border-color: var(--gold-bright); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .4s var(--ease), border-color .4s var(--ease),
              backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(10,10,11,.9);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--ff-display);
  font-size: 1.32rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.brand-text em {
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a:not(.btn) {
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav > a:not(.btn):hover { color: var(--gold-bright); }
.nav > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav > a.is-active { color: var(--gold-bright); }
.nav > a.is-active::after { transform: scaleX(1); }

.nav-cta { padding: 11px 22px; font-size: 0.76rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 90px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("../gallery/img_0112.jpg") center 30% / cover no-repeat;
  transform: scale(1.06);
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translateY(0); }
  to   { transform: scale(1.13) translateY(-14px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(10,10,11,.12), rgba(10,10,11,.48) 70%),
    linear-gradient(to bottom, rgba(10,10,11,.5) 0%, rgba(10,10,11,.15) 35%, rgba(10,10,11,.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 190px;
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,.7));
  animation: fadeUp 1s var(--ease) both;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.74rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  animation: fadeUp 1s .1s var(--ease) both;
}
.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: clamp(24px, 6vw, 64px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-kicker::after { background: linear-gradient(to left, transparent, var(--gold)); }

.hero-title {
  font-size: clamp(3rem, 9vw, 6.4rem);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
  animation: fadeUp 1s .2s var(--ease) both;
}

.hero-sub {
  max-width: 620px;
  color: #d8d5cd;
  font-size: 1.06rem;
  margin: 0 0 34px;
  text-shadow: 0 2px 18px rgba(0,0,0,.75);
  animation: fadeUp 1s .3s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  animation: fadeUp 1s .4s var(--ease) both;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
  margin-top: 42px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-shadow: 0 2px 14px rgba(0,0,0,.8);
  animation: fadeUp 1s .5s var(--ease) both;
}
.hero-badges li { display: flex; align-items: center; gap: 9px; }

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--muted-dim);
  flex: none;
}
.dot.is-open {
  background: #57c96b;
  box-shadow: 0 0 0 4px rgba(87,201,107,.18);
}
.dot.is-closed {
  background: #d0563f;
  box-shadow: 0 0 0 4px rgba(208,86,63,.16);
}

/* Dezente Social-Icons unter den Hero-Buttons */
.hero-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
  animation: fadeUp 1s .6s var(--ease) both;
}
.hero-social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(244,241,234,.22);
  border-radius: 50%;
  color: rgba(244,241,234,.75);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
  transition: color .3s var(--ease), border-color .3s var(--ease),
              background-color .3s var(--ease), transform .3s var(--ease);
}
.hero-social svg { width: 18px; height: 18px; }
.hero-social a:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(201,162,39,.14);
  transform: translateY(-3px);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid rgba(244,241,234,.3);
  border-radius: 14px;
  z-index: 2;
}
.scroll-hint span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollDot 1.9s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { opacity: 0; transform: translateY(0); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(17px); }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: clamp(72px, 11vw, 130px) 0; }
.section-alt { background: var(--black-soft); }

/* Erste Sektion direkt unter dem fixierten Header (Unterseiten ohne Hero-Bild) */
.section-first { padding-top: calc(var(--header-h) + 60px); }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  margin: 0 0 20px;
}

.section-lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.03rem;
  margin-bottom: 52px;
}

/* Reveal-Animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media, .hero-logo, .hero-kicker, .hero-title,
  .hero-sub, .hero-actions, .hero-badges, .scroll-hint span { animation: none; }
}

/* ---------- Leistungen ---------- */
/* 6 Karten in 3 Spalten = zwei volle Reihen, keine Lücken im Raster */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.service {
  background: var(--black);
  padding: 42px 34px;
  transition: background-color .4s var(--ease);
}
.service:hover { background: var(--black-card); }

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border: 1px solid rgba(201,162,39,.32);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 22px;
  transition: border-color .4s var(--ease), background-color .4s var(--ease);
}
.service:hover .service-icon {
  border-color: var(--gold);
  background: rgba(201,162,39,.09);
}
.service-icon svg { width: 25px; height: 25px; }

.service h3 { font-size: 1.42rem; margin-bottom: 10px; }
.service p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Split (Über uns) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.split-media {
  position: relative;
  border: 1px solid var(--line);
}
.split-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,162,39,.28);
  pointer-events: none;
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split-body p { color: var(--muted); }

.usp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.usp li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--cream);
}
.usp li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 12px; height: 6px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}

/* ---------- Preise ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--black-card);
  border: 1px solid var(--line);
  padding: 38px 32px;
  position: relative;
}

.price-card-feature {
  border-color: rgba(201,162,39,.45);
  background:
    linear-gradient(160deg, rgba(201,162,39,.09), transparent 55%),
    var(--black-card);
}

.badge-deal {
  position: absolute;
  top: -12px;
  left: 32px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1405;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.price-card-title {
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--ff-body);
  font-weight: 700;
  color: var(--gold);
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 11px 0;
  font-size: 0.97rem;
}
.pl-name { flex: none; max-width: 74%; }
.pl-name em {
  display: block;
  font-style: normal;
  font-size: 0.79rem;
  color: var(--muted-dim);
  letter-spacing: 0.02em;
}
.pl-dots {
  flex: 1 1 auto;
  min-width: 14px;
  border-bottom: 1px dotted #3b3b44;
  transform: translateY(-4px);
}
.pl-price {
  flex: none;
  font-weight: 700;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}

.package {
  margin-top: 26px;
  padding: 24px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(201,162,39,.24);
}
.package-label {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
}
.package-price {
  font-family: var(--ff-display);
  font-size: 2.9rem;
  line-height: 1;
  color: var(--gold-bright);
  margin: 0 0 16px;
}
.package-items li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.package-items li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 9px; height: 5px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.price-card-feature .btn { margin-top: 26px; }

/* ---------- Galerie ---------- */
/* Alle Motive stehen hochkant — so wie sie aufgenommen wurden. Das grosse
   Leitmotiv überspannt 2×2 Kacheln und behält dadurch dasselbe Hochformat. */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--black-card);
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
}

/* Leitmotiv: doppelte Breite und Höhe, dadurch wieder 3:4 */
.gallery-item.g-feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
  filter: saturate(.86) brightness(.82);
}

/* Farbverlauf, damit die Bildunterschrift immer lesbar bleibt */
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(6,6,7,.9) 0%, rgba(6,6,7,.25) 42%, transparent 70%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(201,162,39,0);
  transition: border-color .35s var(--ease);
  pointer-events: none;
}

.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.82rem;
  color: #d8d5cd;
  /* Hält den Text auch über hellen Bildstellen lesbar */
  text-shadow: 0 1px 12px rgba(0,0,0,.85), 0 1px 3px rgba(0,0,0,.7);
  transform: translateY(10px);
  opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.gallery-caption em {
  font-family: var(--ff-display);
  font-style: normal;
  font-size: 1.16rem;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.g-feature .gallery-caption { padding: 26px 28px; }
.g-feature .gallery-caption em { font-size: 1.6rem; }

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}
.gallery-item:hover::before,
.gallery-item:focus-visible::before { opacity: 1; }
.gallery-item:hover::after,
.gallery-item:focus-visible::after { border-color: rgba(201,162,39,.65); }
.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
  transform: none;
}

/* Auf Touch-Geräten gibt es kein Hover — dort dauerhaft zeigen.
   Der Verlauf muss kräftiger sein, weil die Kacheln flacher sind. */
@media (hover: none) {
  .gallery-item img { filter: saturate(.95) brightness(.82); }
  .gallery-item::before {
    opacity: 1;
    background: linear-gradient(to top, rgba(6,6,7,.97) 0%, rgba(6,6,7,.75) 28%, rgba(6,6,7,.3) 60%, transparent 88%);
  }
  .gallery-caption { opacity: 1; transform: none; }

  /* In den flachen Kacheln reicht der Titel — der Zusatz würde nur gedrängt wirken */
  .gallery-item:not(.g-feature) .gallery-caption {
    font-size: 0;
    padding: 14px 16px;
  }
  .gallery-item:not(.g-feature) .gallery-caption em { font-size: 1rem; }
}

/* ---------- Social Media ---------- */
.section-social {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,162,39,.07), transparent 70%),
    var(--black);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.social-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 26px;
  background: var(--black-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.social-card:hover { transform: translateY(-4px); border-color: rgba(201,162,39,.5); }

/* Farbiger Schimmer je Plattform — erscheint erst beim Hover */
.social-glow {
  position: absolute;
  inset: -40%;
  z-index: -1;
  opacity: 0;
  transition: opacity .45s var(--ease);
  background: radial-gradient(circle at 20% 20%, var(--brand, var(--gold)), transparent 62%);
}
.social-card:hover .social-glow { opacity: .3; }

.social-ig { --brand: #d6249f; }
.social-tt { --brand: #25f4ee; }
.social-fb { --brand: #1877f2; }

.social-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.4);
  color: var(--cream);
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.social-icon svg { width: 26px; height: 26px; }
.social-card:hover .social-icon {
  color: var(--brand);
  border-color: var(--brand);
}

.social-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.social-name {
  font-family: var(--ff-display);
  font-size: 1.34rem;
  font-weight: 600;
  color: var(--cream);
}
.social-handle {
  font-size: 0.86rem;
  color: var(--gold-bright);
  letter-spacing: 0.03em;
  word-break: break-word;
}
.social-desc { font-size: 0.82rem; color: var(--muted-dim); }

.social-go {
  margin-left: auto;
  flex: none;
  font-size: 1.3rem;
  color: var(--muted-dim);
  transition: transform .35s var(--ease), color .35s var(--ease);
}
.social-card:hover .social-go { transform: translateX(5px); color: var(--gold-bright); }

/* ---------- Bewertungen ---------- */
.center { text-align: center; }
.section-title.center { margin-inline: auto; }

/* Gesamtwertung, groß und mittig */
.bewertung-kopf {
  text-align: center;
  margin: 0 auto 52px;
  max-width: 620px;
}
.bewertung-kopf[hidden] { display: none; }

.bewertung-sterne {
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.12em;
}
.bewertung-sterne .star { font-size: 2.5rem; }

.bewertung-zahl {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 20px;
}
.bewertung-zahl strong {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--cream);
  vertical-align: -2px;
  margin-right: 4px;
}

.bewertung-quelle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
}
.bewertung-quelle svg { width: 19px; height: 19px; }

/* Karten */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-bottom: 44px;
}
.reviews[hidden] { display: none; }

.review {
  background: var(--black-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 13px;
}
.review-avatar {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0;
}
.review-person-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.review-person cite {
  font-style: normal;
  font-weight: 600;
  color: var(--cream);
  font-size: 0.98rem;
}
.review-zeit { font-size: 0.82rem; color: var(--muted-dim); }

.review-stars { letter-spacing: 0.04em; }
.review-stars .star { font-size: 1.05rem; }

.review blockquote {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.62;
  color: #d5d2ca;
}

/* Sterne allgemein */
.star { color: #3a3a42; }
.star.is-full { color: #f5b731; }

/* Bewertungs-Widget */
.widget-wrap { margin-bottom: 44px; }
.widget-wrap[hidden] { display: none; }

.widget-consent {
  text-align: center;
  padding: 48px 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,.25);
}
.widget-consent h3 { font-size: 1.4rem; margin-bottom: 8px; }
.widget-consent p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 46ch;
  margin: 0 auto 20px;
}

.review-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background:
    linear-gradient(160deg, rgba(201,162,39,.1), transparent 60%),
    var(--black-card);
  border: 1px solid rgba(201,162,39,.32);
  border-radius: var(--radius-lg);
}

/* Trägt die Sektion allein, solange noch keine Bewertungen hinterlegt sind */
.review-cta.is-solo {
  flex-direction: column;
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 32px;
}
.review-cta.is-solo .review-cta-text { max-width: 52ch; }
.review-cta.is-solo .review-cta-text h3 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.review-cta.is-solo .review-cta-text p { font-size: 1rem; }

.review-cta-mark {
  flex: none;
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
}
.review-cta-mark svg { width: 30px; height: 30px; }

.review-cta-text { max-width: 46ch; }
.review-cta-text h3 { font-size: 1.5rem; margin-bottom: 6px; }
.review-cta-text p { color: var(--muted); margin: 0; font-size: 0.94rem; }

.review-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: auto;
}
.review-cta.is-solo .review-cta-actions { margin: 8px auto 0; }

/* ---------- Kalender ---------- */
.calendar-card {
  background: var(--black-card);
  border: 1px solid var(--line);
  padding: 30px;
  margin-bottom: 34px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.calendar-range { text-align: center; }
.calendar-month {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
}
.calendar-hint {
  display: block;
  font-size: 0.76rem;
  color: var(--muted-dim);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.cal-nav {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex: none;
  transition: border-color .25s var(--ease), color .25s var(--ease), background-color .25s var(--ease);
}
.cal-nav svg { width: 20px; height: 20px; }
.cal-nav:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(201,162,39,.08);
}
.cal-nav:disabled { opacity: .3; cursor: not-allowed; }

.calendar-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.cal-day {
  border: 1px solid var(--line);
  background: var(--black-soft);
  border-radius: var(--radius);
  padding: 14px 8px;
  text-align: center;
  width: 100%;
  transition: border-color .25s var(--ease), background-color .25s var(--ease),
              transform .2s var(--ease);
}
.cal-day:hover:not(:disabled) { border-color: rgba(201,162,39,.55); transform: translateY(-2px); }
.cal-day:disabled { cursor: default; opacity: .5; }

.cal-dow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 6px;
}
.cal-date {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 8px;
}
.cal-status {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: #57c96b;
}
.cal-day.is-closed .cal-status { color: var(--muted-dim); }
.cal-day.is-closed .cal-date { color: var(--muted-dim); }

.cal-day.is-today {
  border-color: var(--gold);
  background: rgba(201,162,39,.1);
}
.cal-day.is-today .cal-dow { color: var(--gold); }

.cal-day.is-selected {
  border-color: var(--gold-bright);
  background: rgba(201,162,39,.18);
  box-shadow: inset 0 0 0 1px rgba(226,196,100,.4);
}

.cal-day.is-past { opacity: .34; }

.calendar-detail {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  min-height: 96px;
}
.detail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-bottom: 16px;
}
.detail-day {
  font-family: var(--ff-display);
  font-size: 1.35rem;
}
.detail-hours { color: var(--gold-bright); font-size: 0.92rem; letter-spacing: 0.04em; }
.detail-empty { color: var(--muted); font-size: 0.95rem; margin: 0; }

.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.slot {
  border: 1px solid var(--line);
  background: var(--black-soft);
  border-radius: var(--radius);
  padding: 9px 15px;
  font-size: 0.86rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  color: var(--cream);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}
.slot:hover {
  border-color: var(--gold);
  background: rgba(201,162,39,.12);
  color: var(--gold-bright);
}
.slot.is-past {
  opacity: .34;
  pointer-events: none;
  text-decoration: line-through;
}

.calendar-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 16px;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}
.lg {
  display: inline-block;
  width: 11px; height: 11px;
  border-radius: 2px;
  border: 1px solid var(--line);
  vertical-align: -1px;
}
.lg-open { background: var(--black-soft); border-color: #57c96b; }
.lg-closed { background: var(--black-soft); opacity: .5; }
.lg-today { background: rgba(201,162,39,.3); border-color: var(--gold); }
.calendar-note { font-size: 0.76rem; color: var(--muted-dim); margin: 0; }

/* ---------- Buchungs-Widget (echte freie Zeiten) ---------- */
.booking-embed { margin-bottom: 34px; }
.booking-embed[hidden] { display: none; }

.embed-consent {
  text-align: center;
  padding: clamp(38px, 6vw, 60px) 28px;
  border: 1px solid rgba(201,162,39,.32);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(201,162,39,.09), transparent 60%),
    var(--black-card);
}
.embed-consent h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.embed-consent p {
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 52ch;
  margin: 0 auto 22px;
}
.embed-alt { font-size: 0.84rem; margin: 18px auto 0 !important; }

/* Der Kalender kommt von Google und liegt in einem iframe — dessen Inhalt
   lässt sich von aussen nicht gestalten. Über einen Filter drehen wir die
   Helligkeit um: Weiss wird dunkel, die Farbtöne bleiben durch das
   Zurückdrehen der Farbachse erhalten. */
.embed-frame {
  position: relative;
  border: 1px solid rgba(201,162,39,.28);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-card);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}

/* Goldener Schimmer an der Oberkante, damit der Kasten zur Seite gehört */
.embed-frame::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  pointer-events: none;
}

/* Die Seite ist durchgehend dunkel, deshalb greift der Filter immer —
   unabhängig davon, was am Gerät eingestellt ist. */
.embed-frame iframe {
  display: block;
  width: 100%;
  height: 660px;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) contrast(0.9) saturate(1.2) brightness(1.05);
}

/* ---------- Buchung ---------- */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.booking-card {
  background: var(--black-card);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.booking-card-primary {
  border-color: rgba(201,162,39,.45);
  background: linear-gradient(160deg, rgba(201,162,39,.08), transparent 55%), var(--black-card);
}
.booking-card h3 { font-size: 1.42rem; margin-bottom: 10px; }
.booking-card p { color: var(--muted); font-size: 0.94rem; }
.booking-card .btn { margin-top: auto; }
.booking-hint {
  font-size: 0.78rem;
  color: var(--muted-dim);
  margin: 14px 0 0;
  text-align: center;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.info-block {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.info-block:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.info-block h3 {
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.info-block p { margin-bottom: 12px; }

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.hours th, .hours td { padding: 8px 0; text-align: left; font-weight: 400; }
.hours td { text-align: right; color: var(--gold-bright); font-variant-numeric: tabular-nums; }
.hours tr + tr th, .hours tr + tr td { border-top: 1px solid var(--line-soft); }
.hours .is-closed th, .hours .is-closed td { color: var(--muted-dim); }

.socials { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 0.94rem;
  color: var(--cream);
  transition: color .25s var(--ease);
}
.socials svg { width: 19px; height: 19px; color: var(--gold); flex: none; }
.socials a:hover { color: var(--gold-bright); }

.map-wrap {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  background: var(--black-card);
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; filter: grayscale(.35) contrast(1.05); }

.map-consent {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(rgba(10,10,11,.86), rgba(10,10,11,.94)),
    url("../gallery/img_0114.jpg") center / cover no-repeat;
}
.map-consent-inner { max-width: 380px; }
.map-consent h3 { font-size: 1.4rem; }
.map-consent p { color: var(--muted); font-size: 0.9rem; }
.map-consent .btn { margin-bottom: 14px; }
.map-consent .link-gold { display: inline-block; font-size: 0.84rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  padding-top: 68px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
}
.footer-brand img { width: 78px; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.site-footer h4 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav, .footer-legal-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-legal-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color .25s var(--ease);
  width: fit-content;
}
.footer-nav a:hover, .footer-legal-nav a:hover { color: var(--gold-bright); }
.footer-contact p { color: var(--muted); font-size: 0.92rem; margin-bottom: 10px; }
.footer-contact a { color: var(--gold-bright); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  padding-bottom: 24px;
}
.footer-bottom p { margin: 0; font-size: 0.82rem; color: var(--muted-dim); }

/* =========================================================
   RECHTSSEITEN (Impressum / Datenschutz)
   ========================================================= */
.legal-page { background: var(--black); }

.nav-simple { display: flex; align-items: center; gap: 24px; }
.nav-simple > a:not(.btn) {
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .25s var(--ease);
}
.nav-simple > a:not(.btn):hover { color: var(--gold-bright); }

.legal { padding: calc(var(--header-h) + 70px) 0 90px; }
.legal-wrap { max-width: 800px; }

.legal h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 12px;
}

.legal-lead {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 34px;
}

.legal-notice {
  background: rgba(201,162,39,.07);
  border: 1px solid rgba(201,162,39,.32);
  border-left-width: 3px;
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.92rem;
  color: #ddd9d0;
  margin-bottom: 48px;
}
.legal-notice strong { color: var(--gold-bright); }

.legal section {
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid var(--line-soft);
}
.legal section:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }

.legal h2 {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.legal p { color: var(--muted); font-size: 0.98rem; }
.legal p strong { color: var(--cream); font-weight: 600; }

.legal-list {
  list-style: none;
  margin: 0 0 1.1em;
  padding: 0;
}
.legal-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 9px;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.66em;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.legal-list strong { color: var(--cream); }

.legal mark {
  background: rgba(201,162,39,.16);
  color: var(--gold-bright);
  padding: 2px 6px;
  border-radius: 2px;
  border: 1px dashed rgba(201,162,39,.45);
  font-style: italic;
}

.legal-stand { font-size: 0.88rem; margin-top: 20px; }

.legal-back {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.footer-bottom-solo {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  align-items: center;
  border-top: 0;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a {
  color: var(--muted-dim);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color .25s var(--ease);
}
.footer-legal-links a:hover { color: var(--gold-bright); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6,6,7,.96);
  display: grid;
  place-items: center;
  padding: 5vh 6vw;
  backdrop-filter: blur(6px);
  animation: lbIn .25s var(--ease);
}
.lightbox[hidden] { display: none; }
@keyframes lbIn { from { opacity: 0 } to { opacity: 1 } }

.lb-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid var(--line);
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(244,241,234,.2);
  color: var(--cream);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  line-height: 1;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(201,162,39,.2);
  border-color: var(--gold);
}
.lb-close { top: 20px; right: 20px; font-size: 1.6rem; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* =========================================================
   FAB (mobil)
   ========================================================= */
.fab {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1405;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split-media { max-width: 520px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 380px; }
  .map-wrap iframe { min-height: 380px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(0,0,0,.6);
    padding: 12px 24px 28px;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .nav > a:not(.btn) {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.95rem;
  }
  .nav > a:not(.btn)::after { display: none; }
  .nav-cta { margin-top: 20px; padding: 15px 22px; }

  .hero { min-height: 92svh; padding-bottom: 110px; }
  .hero-kicker {
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    gap: 12px;
  }
  .hero-kicker::before, .hero-kicker::after { display: none; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .scroll-hint { display: none; }

  .calendar-card { padding: 22px 16px; }
  .calendar-week { grid-template-columns: repeat(4, 1fr); }
  .cal-date { font-size: 1.4rem; }
  .calendar-month { font-size: 1.3rem; }

  .price-card { padding: 30px 24px; }
  .pl-name { max-width: 68%; }

  .social-card { padding: 22px 20px; gap: 14px; }
  .social-icon { width: 48px; height: 48px; }
  .social-icon svg { width: 22px; height: 22px; }

  .embed-frame iframe { height: 560px; }
  .embed-consent { padding: 32px 20px; }

  .review-cta { flex-direction: column; align-items: flex-start; padding: 26px 22px; }
  .review-cta-actions { width: 100%; }
  .review-cta-actions .btn { flex: 1 1 auto; }
  .bewertung-sterne .star { font-size: 1.9rem; }

  .usp { grid-template-columns: 1fr; }

  .fab { display: flex; }
  /* Bei offenem Menü würde der Button doppelt erscheinen */
  body:has(.nav.is-open) .fab { display: none; }
  body { padding-bottom: 78px; }
  .site-footer { padding-bottom: 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 18px; }
  /* Zwei Spalten — das Leitmotiv nimmt die volle Breite ein */
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item.g-feature { grid-column: span 2; grid-row: auto; aspect-ratio: 4 / 5; }
  .g-feature .gallery-caption em { font-size: 1.3rem; }

  .calendar-week { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .service { padding: 32px 26px; }
  .lb-prev, .lb-next { width: 42px; height: 42px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* =========================================================
   SCHNIPP! — kleines Spiel auf spiel.html
   ========================================================= */
.spiel-karte {
  background: var(--black-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 34px;
}

.spiel-kopf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.spiel-wert {
  text-align: center;
  padding: 14px 8px;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
}
.spiel-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 4px;
}
.spiel-wert strong {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--gold-bright);
}
#restzeit.is-knapp { color: #e0563f; }

/* Spielfläche */
.spiel-feld {
  position: relative;
  height: min(58vh, 460px);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,162,39,.07), transparent 70%),
    #0d0d0f;
  border: 1px solid var(--line-soft);
  touch-action: manipulation;   /* kein Zoom beim schnellen Tippen */
  user-select: none;
}
.spiel-feld.is-aktiv { cursor: crosshair; }

/* Einzelne Strähne */
.straehne {
  position: absolute;
  padding: 0;
  border: 0;
  background: none;
  color: #d8d4cb;
  cursor: pointer;
  animation: straehneRein .18s var(--ease) both,
             straehneWippen var(--dauer, 3s) ease-in-out infinite alternate .18s;
  transform-origin: 50% 20%;
}
.straehne svg { width: 100%; height: 100%; display: block; pointer-events: none; }
.straehne:hover { color: var(--gold-bright); }
.straehne:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.straehne.is-weg {
  animation: straehneWeg .26s var(--ease) forwards;
  pointer-events: none;
}
.straehne.is-verpasst {
  animation: straehneVerpasst .3s var(--ease) forwards;
  pointer-events: none;
}

@keyframes straehneRein {
  from { opacity: 0; transform: scale(.5) rotate(var(--dreh, 0deg)); }
  to   { opacity: 1; transform: scale(1) rotate(var(--dreh, 0deg)); }
}
@keyframes straehneWippen {
  from { transform: scale(1) rotate(calc(var(--dreh, 0deg) - 6deg)); }
  to   { transform: scale(1) rotate(calc(var(--dreh, 0deg) + 6deg)); }
}
@keyframes straehneWeg {
  to { opacity: 0; transform: scale(1.5) rotate(calc(var(--dreh, 0deg) + 40deg)); }
}
@keyframes straehneVerpasst {
  to { opacity: 0; transform: translateY(16px) scale(.75); }
}

/* Bonusanzeige bei einer Serie */
.bonus {
  position: absolute;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--gold-bright);
  pointer-events: none;
  animation: bonusHoch .7s var(--ease) forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,.8);
}
@keyframes bonusHoch {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-42px); }
}

/* Start- und Endbildschirm */
.spiel-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 28px;
  background: rgba(10,10,11,.9);
  backdrop-filter: blur(3px);
}
.spiel-overlay[hidden] { display: none; }
.spiel-overlay h3 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin: 0; }
.spiel-overlay p {
  color: var(--muted);
  margin: 0;
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.6;
}
.spiel-overlay strong { color: var(--gold-bright); font-size: 1.25rem; }

.spiel-hinweis {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: var(--muted-dim);
  text-align: center;
}

/* Überleitung zur Buchung */
.spiel-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px;
  background:
    linear-gradient(160deg, rgba(201,162,39,.1), transparent 60%),
    var(--black-card);
  border: 1px solid rgba(201,162,39,.3);
  border-radius: var(--radius-lg);
}
.spiel-cta h3 { font-size: 1.4rem; margin-bottom: 4px; }
.spiel-cta p { color: var(--muted); margin: 0; font-size: 0.92rem; }

@media (max-width: 640px) {
  .spiel-karte { padding: 16px; }
  .spiel-wert { padding: 10px 6px; }
  .spiel-wert strong { font-size: 1.5rem; }
  .spiel-feld { height: min(62vh, 420px); }
  .spiel-cta { flex-direction: column; align-items: flex-start; padding: 24px 22px; }
  .spiel-cta .btn { width: 100%; }
}

/* Wer Bewegung reduziert haben will, bekommt keine Wackelanimation */
@media (prefers-reduced-motion: reduce) {
  .straehne { animation: straehneRein .18s var(--ease) both; }
}
