/* ==========================================================================
   FreshCut Darmstadt – Stylesheet
   Aufbau:
     01  Design Tokens
     02  Reset & Basis
     03  Layout-Primitives
     04  Typografie & Section-Header
     05  Buttons & Links
     06  Header / Navigation
     07  Hero
     08  Info-Bar
     09  Leistungen
     10  Warum FreshCut
     11  Preisliste
     12  Galerie & Lightbox
     13  FAQ
     14  Local-SEO-Text
     15  Kontakt / Karte
     16  Final-CTA & Footer
     17  Sticky Booking-Bar (Mobile)
     18  Rechtstexte & 404
     19  Motion / Reveal
   ========================================================================== */

/* ==========================================================================
   01  DESIGN TOKENS
   Markenfarben wurden aus img/freshcut_logo.png gesampelt.
   ========================================================================== */
:root {
  /* Flächen */
  --color-bg:            #0a0a0b;
  --color-bg-deep:       #060607;
  --color-surface:       #121214;
  --color-surface-2:     #1a1a1d;

  /* Text */
  /* Kontrastwerte auf --color-bg: text 17.8:1, muted 7.9:1, faint 5.1:1 (alle >= WCAG AA) */
  --color-text:          #f4f3f0;
  --color-muted:         #a6a49e;
  --color-faint:         #84817a;

  /* Marke (Logo-Gradient Gelb -> Orange -> Rot) */
  --color-brand-yellow:  #fcc000;
  --color-brand-gold:    #fcd800;
  --color-brand-amber:   #fc9024;
  --color-brand-orange:  #f06c30;
  --color-brand-red:     #e2492a;

  --gradient-brand: linear-gradient(100deg, var(--color-brand-gold) 0%, var(--color-brand-yellow) 26%, var(--color-brand-amber) 58%, var(--color-brand-orange) 82%, var(--color-brand-red) 100%);

  /* Linien & Glow */
  --line:                rgba(255, 255, 255, 0.10);
  --line-strong:         rgba(255, 255, 255, 0.20);
  --glow-warm:           rgba(252, 144, 36, 0.16);

  /* Typografie */
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "Cascadia Mono", Menlo, Consolas, monospace;

  /* Maße */
  --gutter: 1.25rem;
  --wrap: 1240px;
  --radius: 4px;
  --radius-lg: 10px;

  /* Rhythmus */
  --section-y: clamp(4rem, 9vw, 7.5rem);

  color-scheme: dark;
}

@media (min-width: 48rem) {
  :root { --gutter: 2rem; }
}

/* ==========================================================================
   02  RESET & BASIS
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Sticky-Header beim Ankersprung ausgleichen */
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Warmer Grundschimmer – ersetzt eine Hintergrund-Bilddatei */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60rem 40rem at 88% -8%, var(--glow-warm), transparent 62%),
    radial-gradient(46rem 34rem at -10% 4%, rgba(252, 192, 0, 0.07), transparent 60%);
}

img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { margin: 0; font-style: normal; }

a { color: inherit; text-decoration-color: var(--line-strong); text-underline-offset: 0.22em; }
a:hover { text-decoration-color: var(--color-brand-yellow); }

button { font: inherit; color: inherit; }

::selection { background: var(--color-brand-yellow); color: #101010; }

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

/* Skip-Link */
.skip-link {
  position: absolute;
  left: var(--gutter);
  top: 0;
  z-index: 200;
  padding: 0.75rem 1.1rem;
  background: var(--color-brand-yellow);
  color: #101010;
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 0.18s ease;
}
.skip-link:focus-visible { transform: translateY(0.6rem); }

/* Nur für Screenreader */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ==========================================================================
   03  LAYOUT-PRIMITIVES
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.022) 12%, rgba(255,255,255,0.022) 88%, transparent); }
.section--line { border-top: 1px solid var(--line); }

/* Kleine Utilities – bewusst wenige, damit kein Utility-Wildwuchs entsteht. */
.u-center  { justify-content: center; }
.u-mt-md   { margin-top: 2rem; }
.u-mt-lg   { margin-top: 2.5rem; }
.u-narrow  { max-width: 38ch; }
.u-strong  { color: var(--color-text); font-weight: 700; }

/* ==========================================================================
   04  TYPOGRAFIE & SECTION-HEADER
   ========================================================================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-brand-yellow);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  flex: none;
  background: var(--gradient-brand);
}

.display {
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-size: clamp(2.4rem, 8.5vw, 5.25rem);
  text-wrap: balance;
}

.h2 {
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-size: clamp(1.95rem, 5.2vw, 3.35rem);
  text-wrap: balance;
}

.h3 {
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
}

.lead {
  font-size: clamp(1.03rem, 1.6vw, 1.175rem);
  color: var(--color-muted);
  max-width: 46ch;
  text-wrap: pretty;
}

/* Gradient- und Konturschrift als Street-/Editorial-Akzent */
.t-grad {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.t-outline { color: var(--color-brand-yellow); }
@supports (-webkit-text-stroke: 2px currentColor) {
  .t-outline {
    color: transparent;
    -webkit-text-stroke: clamp(1.2px, 0.32vw, 2.2px) var(--color-brand-yellow);
  }
}

/* Section-Kopf mit laufender Nummer (Magazin-Anmutung) */
.sec-head {
  display: grid;
  gap: 1.1rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.75rem);
}
.sec-head__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-faint);
}
.sec-head__text { display: grid; gap: 0.9rem; }

@media (min-width: 60rem) {
  .sec-head {
    grid-template-columns: 1fr minmax(0, 30rem);
    align-items: end;
    gap: 2.5rem 3rem;
  }
  .sec-head__num { grid-column: 1 / -1; }
  .sec-head .lead { margin-bottom: 0.35rem; }
}

/* Variante ohne Fließtext-Spalte (steht bewusst nach der Media Query) */
.sec-head--stack { grid-template-columns: minmax(0, 1fr); }

/* ==========================================================================
   05  BUTTONS & LINKS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn svg { flex: none; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--gradient-brand);
  color: #141008;
  box-shadow: 0 0 0 0 rgba(252, 144, 36, 0);
}
.btn--primary:hover { box-shadow: 0 6px 30px -10px rgba(252, 144, 36, 0.75); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--color-text);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: var(--color-brand-yellow); }

/* min-height bleibt bei 44px – auch die kompakte Variante muss fingerfreundlich sein. */
.btn--sm { min-height: 2.75rem; padding: 0.55rem 1rem; font-size: 0.875rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Textlink mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-brand-yellow);
  text-decoration: none;
  min-height: 2.75rem;
}
.link-arrow svg { transition: transform 0.2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   06  HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.header.is-stuck {
  background: rgba(10, 10, 11, 0.86);
  border-bottom-color: var(--line);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.75rem;
  text-decoration: none;
  margin-right: auto;
}
.brand img { width: 40px; height: auto; }
.brand__name {
  display: block;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.brand__sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-faint);
}

.nav { display: flex; gap: 0.35rem; }
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 0.7rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  text-decoration: none;
  border-radius: var(--radius);
}
.nav a:hover { color: var(--color-text); background: rgba(255,255,255,0.05); }
.nav a[aria-current="page"] { color: var(--color-brand-yellow); }

.header__cta { display: flex; align-items: center; gap: 0.5rem; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle__bars { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 60rem) {
  .header__cta .btn span { display: none; }
  .header__cta .btn { padding-inline: 0.9rem; }

  /* Mit JS: echtes Ausklapp-Menü. Ohne JS: Navigation bleibt als scrollbare Zeile sichtbar. */
  .js .nav-toggle { display: inline-flex; }
  .js .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
    background: rgba(10, 10, 11, 0.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
  }
  .js .nav[data-open] { display: flex; }
  .js .nav a {
    min-height: 3.25rem;
    padding-inline: 0.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  html:not(.js) .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  html:not(.js) .header__inner { flex-wrap: wrap; }
}

/* ==========================================================================
   07  HERO
   ========================================================================== */
.hero { position: relative; isolation: isolate; overflow: hidden; }

.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 42%; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,7,0.86) 0%, rgba(6,6,7,0.72) 38%, rgba(6,6,7,0.93) 82%, var(--color-bg) 100%),
    linear-gradient(90deg, rgba(6,6,7,0.92) 0%, rgba(6,6,7,0.5) 52%, rgba(6,6,7,0.2) 100%);
}

.hero__inner {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  padding-block: clamp(3rem, 8vw, 6.5rem) clamp(3rem, 7vw, 5.5rem);
}

.hero__content { display: grid; gap: 1.5rem; max-width: 46rem; }
.hero__title > span { display: block; }
.hero__title .t-outline { font-size: 0.82em; }

.hero .btn-row { margin-top: 0.35rem; }

/* Fakten-Zeile unter den CTAs */
.hero__facts {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.75rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.hero__facts li { display: flex; align-items: center; gap: 0.65rem; color: var(--color-muted); }
.hero__facts a { color: var(--color-text); text-decoration: none; font-weight: 600; }
.hero__facts a:hover { color: var(--color-brand-yellow); }
.hero__facts svg { flex: none; color: var(--color-brand-yellow); }

.hero__claim {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Versetzte Foto-Karte (nur ab Desktop sichtbar) */
.hero__aside { display: none; }

@media (min-width: 64rem) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
  }
  .hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 2rem;
  }
  .hero__aside { display: block; position: relative; justify-self: end; width: min(100%, 25rem); }
  .hero__aside img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-strong);
  }
  /* Logo als Marken-Siegel über der Karte */
  .hero__seal {
    position: absolute;
    left: -2.25rem;
    bottom: -1.5rem;
    width: 8.5rem;
    padding: 0.9rem;
    background: rgba(10, 10, 11, 0.82);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(6px);
  }
  .hero__seal img { width: 100%; height: auto; aspect-ratio: auto; border: 0; border-radius: 0; }
}

/* ==========================================================================
   08  INFO-BAR
   ========================================================================== */
.infobar { border-block: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.infobar__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.infobar__list li {
  padding: 1.15rem 0.25rem;
  border-bottom: 1px solid var(--line);
}
.infobar__list li:nth-child(odd) { padding-right: 1rem; border-right: 1px solid var(--line); }
.infobar__list li:nth-child(odd) { padding-left: 0; }
.infobar__list li:nth-child(even) { padding-left: 1rem; }
.infobar__list li:nth-last-child(-n+2) { border-bottom: 0; }

.infobar__k {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-faint);
  margin-bottom: 0.3rem;
}
.infobar__v { font-weight: 700; font-size: 0.95rem; letter-spacing: -0.015em; }

@media (min-width: 56rem) {
  .infobar__list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .infobar__list li { border-bottom: 0; padding: 1.5rem 1.75rem; border-right: 1px solid var(--line); }
  .infobar__list li:first-child { padding-left: 0; }
  .infobar__list li:last-child { border-right: 0; padding-right: 0; }
  .infobar__list li:nth-child(odd) { padding-left: 1.75rem; }
  .infobar__list li:nth-child(even) { padding-left: 1.75rem; }
  .infobar__list li:first-child { padding-left: 0; }
}

/* ==========================================================================
   09  LEISTUNGEN
   ========================================================================== */
.services { display: grid; gap: 0; }
.service {
  display: grid;
  gap: 0.5rem 1.5rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
  transition: background-color 0.25s ease;
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service:hover { background: rgba(255,255,255,0.025); }
.service__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--color-brand-yellow);
}
.service__body { display: grid; gap: 0.4rem; }
.service p { color: var(--color-muted); font-size: 0.95rem; max-width: 52ch; }
.service__meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-text);
  white-space: nowrap;
}

@media (min-width: 48rem) {
  .service {
    grid-template-columns: 3.5rem minmax(0, 1fr) auto;
    align-items: baseline;
    padding-block: 2rem;
  }
  .service__meta { text-align: right; }
}

/* Leistungen mit Bildspalte */
.services-layout { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 64rem) {
  .services-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 21rem); align-items: start; }
  .services-layout__media { position: sticky; top: 6.5rem; }
}
.services-layout__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.services-layout__caption {
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-faint);
}

/* ==========================================================================
   10  WARUM FRESHCUT
   ========================================================================== */
.why { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.why__item { background: var(--color-bg); padding: clamp(1.6rem, 3.5vw, 2.4rem); display: grid; gap: 0.7rem; align-content: start; }
.why__icon { color: var(--color-brand-yellow); }
.why__item h3 { font-weight: 700; font-size: 1.08rem; letter-spacing: -0.02em; }
.why__item p { color: var(--color-muted); font-size: 0.94rem; }

@media (min-width: 40rem) { .why { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 68rem) { .why { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ==========================================================================
   11  PREISLISTE
   ========================================================================== */
.pricing { display: grid; gap: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 62rem) { .pricing { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3rem 4.5rem; } }

.price-group { display: grid; gap: 0.25rem; align-content: start; }
.price-group > h3 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-brand-yellow);
  padding-bottom: 0.9rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--line-strong);
}

.price-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0 0.75rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.price-item__name { font-weight: 600; letter-spacing: -0.015em; }
.price-item__price {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--color-brand-yellow);
  font-variant-numeric: tabular-nums;
}
.price-item__desc {
  grid-column: 1 / -1;
  margin-top: 0.2rem;
  font-size: 0.86rem;
  color: var(--color-muted);
  max-width: 44ch;
}

/* Punktlinie im Stil einer Barber-Karte (nur wo Platz ist) */
@media (min-width: 30rem) {
  .price-item__name { display: flex; align-items: baseline; gap: 0.6rem; }
  .price-item__name::after {
    content: "";
    flex: 1 1 auto;
    height: 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.22);
    transform: translateY(-0.22em);
  }
}

.price-group__lead { margin-block: 0.9rem 1.4rem; }

.price-note {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--color-muted);
}

/* ==========================================================================
   12  GALERIE & LIGHTBOX
   ========================================================================== */
/* Feste Zeilenhöhe + Spans ergeben ein lückenloses, asymmetrisches Mosaik. */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 30vw;
  gap: 0.6rem;
}
.shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--color-surface);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.shot:hover img { transform: scale(1.045); }

/* Bewusst unterschiedliche Formate für den Editorial-Look */
.shot--hero { grid-column: span 2; grid-row: span 2; }
.shot--tall { grid-row: span 2; }
.shot--wide { grid-column: span 2; grid-row: span 2; }

.shot__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(6,6,7,0.85));
}

/* Lightbox-Auslöser als echter Button über dem Bild */
.shot__zoom {
  position: absolute;
  inset: 0;
  width: 100%;
  background: transparent;
  border: 0;
  cursor: zoom-in;
  padding: 0;
}
.shot__zoom:focus-visible { outline-offset: -4px; }

@media (min-width: 48rem) {
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 11rem; gap: 0.85rem; }
  .shot--wide { grid-row: span 1; }
}
@media (min-width: 68rem) {
  .gallery { grid-auto-rows: 13.5rem; gap: 1rem; }
}

/* WICHTIG: <dialog> ist im Browser-Default display:none, solange es nicht offen ist.
   Die Anzeige darf deshalb ausschließlich über [open] gesetzt werden – sonst liegt
   der Overlay-Layer dauerhaft über der gesamten Seite. */
.lightbox {
  display: none;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(4, 4, 5, 0.94);
  border: 0;
  margin: 0;
}
.lightbox[open] {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.lightbox::backdrop { background: rgba(4, 4, 5, 0.9); }
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: clamp(0.75rem, 3vw, 1.5rem);
  right: clamp(0.75rem, 3vw, 1.5rem);
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(255,255,255,0.16); }

/* ==========================================================================
   13  FAQ
   ========================================================================== */
.faq { display: grid; max-width: 52rem; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 3.75rem;
  padding-block: 1.1rem;
  font-weight: 650;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--color-brand-yellow); }

.faq summary::after {
  content: "";
  flex: none;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid var(--color-brand-yellow);
  border-bottom: 2px solid var(--color-brand-yellow);
  transform: rotate(45deg) translate(-0.15rem, -0.15rem);
  transition: transform 0.22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-0.2rem, -0.2rem); }

.faq__a { padding-bottom: 1.5rem; color: var(--color-muted); max-width: 62ch; }
.faq__a p + p { margin-top: 0.75rem; }
.faq__a a { color: var(--color-brand-yellow); }

/* ==========================================================================
   14  LOCAL-SEO-TEXT
   ========================================================================== */
.prose-local { display: grid; gap: 1.15rem; max-width: 68ch; color: var(--color-muted); }
.prose-local p { text-wrap: pretty; }
.prose-local strong { color: var(--color-text); font-weight: 650; }
.prose-local a { color: var(--color-brand-yellow); }

.local-layout { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 64rem) {
  .local-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 24rem); align-items: start; }
}
.local-layout__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

/* ==========================================================================
   15  KONTAKT / KARTE
   ========================================================================== */
.contact { display: grid; gap: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 62rem) { .contact { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 4rem; } }

.contact__list { display: grid; gap: 0; }
.contact__list li { border-bottom: 1px solid var(--line); }
.contact__list li:first-child { border-top: 1px solid var(--line); }
.contact__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
  padding-block: 0.9rem;
  text-decoration: none;
}
.contact__row svg { flex: none; color: var(--color-brand-yellow); }
.contact__k {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-faint);
}
.contact__v { display: block; font-weight: 650; letter-spacing: -0.015em; }
a.contact__row:hover .contact__v { color: var(--color-brand-yellow); }

.hours { display: grid; gap: 0; margin-top: 2rem; }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours__row:first-child { border-top: 1px solid var(--line); }
.hours__row dt { color: var(--color-muted); }
.hours__row dd { font-weight: 650; font-variant-numeric: tabular-nums; }
.hours__row--closed dd { color: var(--color-faint); font-weight: 500; }

/* Datenschutzfreundlicher Karten-Platzhalter: lädt erst nach Klick */
.map {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px) 0 0 / 100% 2.75rem,
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px) 0 0 / 2.75rem 100%,
    radial-gradient(30rem 20rem at 70% 20%, rgba(252,144,36,0.14), transparent 70%),
    var(--color-surface);
  min-height: 22rem;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}
.map__inner { display: grid; gap: 1rem; justify-items: center; max-width: 30rem; }
.map__pin { color: var(--color-brand-yellow); }
.map__addr { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; }
/* Datenschutzhinweis bewusst in --color-muted: muss gut lesbar sein. */
.map__hint { font-size: 0.82rem; color: var(--color-muted); max-width: 34ch; }
.map iframe { width: 100%; height: 100%; min-height: 22rem; border: 0; }
.map.is-loaded { display: block; padding: 0; min-height: 0; background: var(--color-surface); }

/* ==========================================================================
   16  FINAL-CTA & FOOTER
   ========================================================================== */
.finalcta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(46rem 24rem at 50% 120%, rgba(252, 144, 36, 0.20), transparent 70%),
    var(--color-bg-deep);
}
.finalcta__inner {
  display: grid;
  gap: 1.75rem;
  justify-items: center;
  text-align: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}
.finalcta img { width: clamp(6rem, 14vw, 9rem); height: auto; }

.footer { border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 56rem) {
  .footer__grid { grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 3rem; }
}
.footer h2 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-faint);
  font-weight: 400;
  margin-bottom: 1rem;
}
.footer__nav { display: grid; gap: 0.1rem; }
.footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 0.94rem;
  color: var(--color-muted);
  text-decoration: none;
}
.footer__nav a:hover { color: var(--color-brand-yellow); }

.footer__brand { display: grid; gap: 1rem; align-content: start; }
.footer__brand img { width: 92px; height: auto; }
.footer__addr { font-style: normal; color: var(--color-muted); font-size: 0.94rem; line-height: 1.8; }
.footer__addr a { color: var(--color-text); text-decoration: none; }
.footer__addr a:hover { color: var(--color-brand-yellow); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--color-faint);
}

/* Agentur-Credit: bewusst zurückhaltend, aber als Link klar erkennbar. */
.footer__credit a {
  color: var(--color-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer__credit a:hover {
  color: var(--color-brand-yellow);
  border-bottom-color: var(--color-brand-yellow);
}

/* ==========================================================================
   17  STICKY BOOKING-BAR (MOBILE)
   ========================================================================== */
.bookbar { display: none; }

@media (max-width: 56rem) {
  /* Platz schaffen, damit die Leiste nie Inhalte verdeckt (Leiste ist ~70px hoch) */
  body { padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px)); }

  .bookbar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.5rem var(--gutter) calc(0.5rem + env(safe-area-inset-bottom, 0px));
    background: rgba(10, 10, 11, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
  }
  /* Einzeilig halten: eine umbrechende Leiste würde doppelt so hoch und
     mehr Inhalt verdecken, als das Body-Padding oben ausgleicht. */
  .bookbar .btn {
    min-height: 3rem;
    padding-inline: 0.7rem;
    gap: 0.45rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

/* Sehr schmale Geräte (320px): Labels bleiben vollständig, nur enger gesetzt. */
@media (max-width: 22.5rem) {
  .bookbar { gap: 0.4rem; padding-inline: 0.75rem; }
  .bookbar .btn { font-size: 0.8125rem; padding-inline: 0.5rem; gap: 0.35rem; }
  .bookbar .btn svg { width: 16px; height: 16px; }
}

/* ==========================================================================
   18  RECHTSTEXTE & 404
   ========================================================================== */
.pagehead { border-bottom: 1px solid var(--line); padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(2rem, 5vw, 3rem); }
.pagehead .display { font-size: clamp(2.1rem, 6.5vw, 3.75rem); margin-top: 1rem; }
.pagehead .lead { margin-top: 1rem; }

.legal { max-width: 46rem; padding-block: clamp(2.5rem, 6vw, 4rem); }
.legal h2 {
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 2.75rem;
  margin-bottom: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { margin-top: 1.5rem; }
.legal p { color: var(--color-muted); margin-bottom: 1rem; }
.legal p:last-child { margin-bottom: 0; }
.legal a { color: var(--color-brand-yellow); }
.legal strong { color: var(--color-text); font-weight: 650; }
.legal address { font-style: normal; color: var(--color-muted); line-height: 1.9; }
.legal address a { text-decoration: none; }

.notfound {
  min-height: 68vh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.5rem;
  padding-block: clamp(3rem, 10vw, 7rem);
}
.notfound img { width: clamp(7rem, 18vw, 11rem); height: auto; }
.notfound__code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: var(--color-faint);
}

/* ==========================================================================
   19  MOTION / REVEAL
   ========================================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.js .reveal.is-in { opacity: 1; transform: none; }

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