/* =============================================================================
   Crumbs & Kisses – Tagescafé München
   Global styles | Dark luxury editorial layout
   Fonts: Playfair Display (headings), Inter (UI/body), Great Vibes (accent)
   ============================================================================= */

:root {
  --bg-primary: #0b0b0b;
  --bg-secondary: #111111;
  --bg-elevated: #1a1a1a;
  --bg-warm: #2b211c;
  --text: #f5f2ee;
  --text-muted: #b8b3ad;
  --accent: #c6a47e;
  --accent-soft: rgba(198, 164, 126, 0.22);
  --overlay-dark: rgba(11, 8, 7, 0.72);
  /**
   * Hero-Overlay (multiply auf dem Hero-Bild). Navigation hat kein zweites Overlay —
   * gleiche wahrgenommene „Opazität“ wie im Hero.
   */
  --overlay-hero-top-a: 0.46;
  --overlay-hero-mid-a: 0.72;
  --overlay-hero-bottom-a: 0.9;
  --overlay-hero: linear-gradient(
    180deg,
    rgba(11, 11, 11, var(--overlay-hero-top-a)) 0%,
    rgba(11, 11, 11, var(--overlay-hero-mid-a)) 52%,
    rgba(11, 11, 11, var(--overlay-hero-bottom-a)) 100%
  );
  --border-subtle: rgba(245, 242, 238, 0.08);
  --radius-soft: 14px;
  --radius-pill: 999px;
  /* Fallback; wird per JS an echte Header-Höhe angeglichen */
  --header-h: 112px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1180px, 92vw);
  --section-space: clamp(4.5rem, 10vw, 7.5rem);
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-accent: "Great Vibes", cursive;
}

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

html {
  scroll-behavior: smooth;
}

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

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

:focus:not(:focus-visible) {
  outline: none;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

address {
  font-style: normal;
}

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--bg-primary);
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* -----------------------------------------------------------------------------
   Typography
   ----------------------------------------------------------------------------- */

.font-accent {
  font-family: var(--font-accent);
  font-weight: 400;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
.section__title,
.visit-card__title,
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--text);
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  font-weight: 500;
}

.eyebrow--on-dark {
  color: rgba(245, 242, 238, 0.92);
}

.section__title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  margin: 0 0 1.25rem;
}

.section__title--subtle {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

.section__lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}

.section__text {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.section__text strong {
  color: var(--text);
  font-weight: 500;
}

.subsection-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

/* -----------------------------------------------------------------------------
   Layout helpers
   ----------------------------------------------------------------------------- */

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
  background: var(--bg-primary);
}

.section--dark {
  background: var(--bg-secondary);
}

.section--intro {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section--story {
  background: var(--bg-primary);
}

.section--food {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

/* Abstand zwischen Full-Bleed-Split und darunter liegendem .container (feature-grid) */
.section--food .split-bleed + .container {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.section--social {
  background: var(--bg-secondary);
}

.section--reviews {
  background: var(--bg-primary);
}

/* Full-Bleed-Splits (50/50, volle Viewport-Breite) */
.section--split-bleed {
  padding-inline: 0;
}

.section--visit {
  padding-block: clamp(3rem, 8vw, 5rem);
  background: var(--bg-secondary);
}

.section--contact {
  background: var(--bg-warm);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split--reverse .split__text {
    order: 2;
  }

  .split--reverse .split__media {
    order: 1;
  }
}

/* Scroll offset for sticky header */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* -----------------------------------------------------------------------------
   Header & navigation
   ----------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  /**
   * Kein zweites Overlay / kein zweites multiply: Der Hero nutzt bereits
   * var(--overlay-hero) + multiply auf dem Bild — der Header liegt nur darüber.
   * Zusätzliche Schicht würde die Leiste unnötig dunkler als den Hero wirken.
   */
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out),
    backdrop-filter 0.45s var(--ease-out);
  border-bottom: 1px solid transparent;
}

/* Lesbarkeit der Links auf hellem Bild-Ausschnitt (nur über Hero, ohne Scroll-State) */
.site-header:not(.is-scrolled) .nav__link,
.site-header:not(.is-scrolled) .mobile-nav__link {
  text-shadow: 0 0 1px rgba(11, 11, 11, 0.9), 0 2px 24px rgba(11, 11, 11, 0.65);
}

.site-header:not(.is-scrolled) .brand__logo {
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.55)) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.site-header.is-scrolled {
  background-color: rgba(11, 11, 11, var(--overlay-hero-bottom-a));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.site-header.is-scrolled .nav__link,
.site-header.is-scrolled .mobile-nav__link {
  text-shadow: none;
}

.site-header.is-scrolled .brand__logo {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.header-inner {
  position: relative;
  z-index: 1;
  /* Gleiche äußere Logik wie .container – gleiche Seitenränder wie Seiteninhalt */
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  /* Mehr Luft nach oben (vgl. Luxury-Index-Header über Hero) */
  padding-top: clamp(0.9rem, 2.2vh, 1.35rem);
  padding-bottom: clamp(0.45rem, 1.2vh, 0.85rem);
  padding-inline: clamp(0.5rem, 2vw, 1rem);
}

@media (min-width: 960px) {
  /**
   * 1fr auto 1fr: Logo sitzt exakt in der Mitte (wie Hero-Text, viewport-zentriert).
   * Flex + justify-center war verzogen, weil links/rechts unterschiedlich breit sind.
   * column-gap: etwas mehr Abstand Menü ↔ Logo (symmetrisch beidseits).
   */
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: clamp(1.35rem, 2.6vw, 2.85rem);
    row-gap: 0.5rem;
    padding-top: clamp(1.35rem, 3vh, 2.5rem);
    padding-bottom: clamp(0.55rem, 1.4vh, 1rem);
  }

  .nav--left {
    justify-self: end;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .nav--right {
    justify-self: start;
  }
}

.nav {
  display: none;
  flex-shrink: 0;
  gap: clamp(0.75rem, 1.35vw, 1.2rem);
  align-items: center;
}

.nav--left,
.nav--right {
  flex-shrink: 0;
}

.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

@media (min-width: 960px) {
  .nav {
    display: flex;
  }
}

.nav__link {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245, 242, 238, 0.82);
  position: relative;
  padding-block: 0.35rem;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.nav__link:hover {
  color: var(--text);
}

.nav__link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.brand__logo {
  width: clamp(64px, 8vw, 88px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
  transition: transform 0.5s var(--ease-out);
}

.brand:hover .brand__logo {
  transform: translateY(-2px) scale(1.02);
}

.nav-toggle {
  flex-shrink: 0;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(11, 11, 11, 0.22);
  border-radius: 10px;
  /* Hell wie gewünscht — Balken darunter schwarz für klaren Kontrast */
  background: #f5f2ee;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
    margin-left: 0;
  }
}

.nav-toggle__bar {
  width: 20px;
  height: 2.5px;
  background: #0b0b0b;
  border-radius: 1px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}

.site-header.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 2;
  background: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.site-header.nav-open .mobile-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem 2.5rem;
  gap: 1.25rem;
}

.mobile-nav__link {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding-block: 0.35rem;
  border-bottom: 1px solid rgba(245, 242, 238, 0.06);
}

body.nav-locked {
  overflow: hidden;
}

/* -----------------------------------------------------------------------------
   Hero
   ----------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -12%;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
  mix-blend-mode: multiply;
}

.hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Dezentes Gold nur noch schwach, damit die Szene insgesamt nicht zu hell wirkt */
  background: radial-gradient(60% 80% at 50% 20%, rgba(198, 164, 126, 0.055), transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(820px, 90vw);
  padding-block: calc(var(--header-h) + 2rem) 4rem;
}

@media (max-width: 959px) {
  .hero {
    align-items: start;
    justify-items: center;
    /* Höhe folgt dem Inhalt — kein erzwungener Leerraum unter den CTAs */
    min-height: auto;
    /* Abstand kommt aus .hero__content (symmetrisch zum Top) */
    padding-bottom: 0;
  }

  .hero__content {
    /* Luft unter fixer Navigation */
    padding-top: calc(var(--header-h) + 1.35rem);
    /* Identisch zu padding-top (fixer Header + gleicher vertikaler Rhythmus) */
    padding-bottom: calc(var(--header-h) + 1.35rem);
    width: min(820px, 92vw);
  }

  .hero__title {
    font-size: clamp(1.95rem, 9.2vw, 2.65rem);
    margin-bottom: 0.65rem;
  }

  .hero__title-accent {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero__lead {
    margin: 0 auto 0.75rem;
    font-size: clamp(0.95rem, 3.8vw, 1.08rem);
  }

  .hero__actions {
    gap: 0.55rem;
  }

  /* Verhindert große Lücke zwischen CTAs und unterem Rand (war position:absolute) */
  .hero__scroll-hint {
    display: none;
  }
}

.hero .eyebrow {
  color: rgba(245, 242, 238, 0.78);
}

.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

.hero__title-accent {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--accent);
  display: inline-block;
  margin-inline: 0.08em;
  line-height: 0.85;
  transform: rotate(-3deg);
}

.hero__lead {
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  color: rgba(245, 242, 238, 0.78);
  max-width: 46ch;
  margin: 0 auto 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.45);
}

.hero__scroll-hint span {
  display: inline-block;
  animation: floatHint 2.8s ease-in-out infinite;
}

@keyframes floatHint {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  50% {
    transform: translateY(6px);
    opacity: 0.85;
  }
}

/* -----------------------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.45s var(--ease-out), transform 0.35s var(--ease-out);
}

.btn--primary {
  /* Deckender Goldton — auf dem Hero sonst zu durchscheinend */
  background: linear-gradient(125deg, #dcc39f 0%, var(--accent) 48%, #b89265 100%);
  color: var(--bg-primary);
  border-color: rgba(255, 248, 240, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 14px 42px rgba(0, 0, 0, 0.35),
    0 8px 28px rgba(198, 164, 126, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 20px 52px rgba(0, 0, 0, 0.38),
    0 12px 36px rgba(198, 164, 126, 0.48);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(245, 242, 238, 0.35);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(198, 164, 126, 0.12) inset;
}

.btn--small {
  padding: 0.75rem 1.35rem;
  font-size: 0.68rem;
}

.btn--block {
  width: 100%;
}

/* -----------------------------------------------------------------------------
   Media frames & grids
   ----------------------------------------------------------------------------- */

.frame {
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.frame--soft {
  border-radius: calc(var(--radius-soft) + 6px);
}

.frame--tight {
  max-width: 520px;
  margin-inline: auto;
}

.frame img,
.collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.frame:hover img,
.collage__item:hover img {
  transform: scale(1.045);
}

.collage {
  display: grid;
  gap: 1.25rem;
}

.collage__item {
  margin: 0;
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.collage__item--top img {
  aspect-ratio: 4 / 3;
}

.collage__item--bottom img {
  aspect-ratio: 4 / 3;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  opacity: 0.85;
}

/* -----------------------------------------------------------------------------
   Split-Parallax (Bild sticky, Text scrollt — Luxury-Template-Anmutung)
   ----------------------------------------------------------------------------- */

.split-bleed {
  width: 100%;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.split-parallax {
  display: grid;
  width: 100%;
  max-width: 100%;
  align-items: stretch;
}

@media (min-width: 960px) {
  .split-parallax {
    grid-template-columns: 1fr 1fr;
  }
}

/**
 * WICHTIG: kein overflow:hidden auf dieser Fläche — sonst greift position:sticky
 * für das Bild nicht mehr wie gewünscht (Scrollport wird „eingeschlossen“).
 * Clipping nur auf .split-parallax__pin.
 */
.split-parallax__visual {
  position: relative;
  overflow: visible;
  background: var(--bg-primary);
}

.split-parallax__pin {
  position: relative;
  height: min(52vh, 440px);
  overflow: hidden;
}

.split-parallax__pin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

@media (min-width: 960px) {
  .split-parallax__pin {
    position: sticky;
    top: var(--header-h);
    height: calc(100svh - var(--header-h));
    min-height: 520px;
    max-height: calc(100svh - var(--header-h));
    align-self: start;
  }
}

.split-parallax__body {
  background: var(--bg-secondary);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--border-subtle);
}

@media (min-width: 960px) {
  .split-parallax__body {
    border-top: none;
    border-left: 1px solid var(--border-subtle);
    /**
     * Textspalte deutlich höher als das Sticky-Bild → genug Scrollweg,
     * damit das Bild „stehen bleibt“ und nur der Text wandert.
     */
    min-height: calc(100svh + min(48vh, 620px));
    justify-content: flex-start;
    padding-top: clamp(3.5rem, 8vh, 5.5rem);
    padding-bottom: clamp(4rem, 12vh, 8rem);
  }

  .split-parallax--img-right .split-parallax__body {
    border-left: none;
    border-right: 1px solid var(--border-subtle);
  }
}

.split-parallax--img-right .split-parallax__visual {
  border-top: 1px solid var(--border-subtle);
}

@media (min-width: 960px) {
  .split-parallax--img-right .split-parallax__visual {
    border-top: none;
  }
}

@media (max-width: 959px) {
  .split-parallax--img-right .split-parallax__visual {
    order: -1;
    border-top: none;
  }

  .split-parallax__body {
    border-left: none;
    border-right: none;
  }
}

.split-parallax__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  margin: 0 0 1rem;
  font-weight: 500;
}

.split-parallax__intro {
  margin-bottom: 2rem;
}

/* Menüzeilen (Drinks/Food) */
.menu-rows {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid var(--border-subtle);
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.menu-row__text {
  min-width: 0;
}

.menu-row__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text);
}

.menu-row__desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.menu-row__price {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  white-space: nowrap;
}

.btn--menu {
  align-self: flex-start;
}

@media (prefers-reduced-motion: reduce) {
  .split-parallax__pin {
    position: relative;
    top: auto;
    height: min(58vh, 480px);
    max-height: none;
  }
}

/* -----------------------------------------------------------------------------
   Testimonials (3 Karten, Editorial)
   ----------------------------------------------------------------------------- */

.reviews-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.reviews-head__stat {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--accent);
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
  line-height: 1;
}

.reviews-head__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  font-weight: 500;
}

.reviews-head__lead {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-soft);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  cursor: default;
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.review-card:hover {
  border-color: rgba(198, 164, 126, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.review-card__top {
  margin-bottom: 1.25rem;
}

.review-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.review-card__badge-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.review-card__badge--google {
  color: var(--text);
}

.review-card__badge--neutral {
  letter-spacing: 0.2em;
}

.review-card__badge--trust {
  color: var(--text);
}

.review-card__quote {
  margin: 0 0 auto;
  padding: 0;
  flex-grow: 1;
}

.review-card__quote p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(245, 242, 238, 0.92);
}

.review-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.review-card__who {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-card__name {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.review-card__date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.stars {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}

.stars--gold {
  color: var(--accent);
}

.stars--trust {
  color: #00b67a;
}

.stars svg {
  flex-shrink: 0;
  display: block;
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-soft);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(160deg, rgba(26, 26, 26, 0.9), rgba(17, 17, 17, 0.35));
}

.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.65rem;
}

.feature-card__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* -----------------------------------------------------------------------------
   Parallax bands
   ----------------------------------------------------------------------------- */

.parallax-band {
  position: relative;
  min-height: clamp(320px, 52vh, 520px);
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.parallax-band__bg {
  position: absolute;
  inset: -14%;
  background-image: var(--parallax-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}

.parallax-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.35), rgba(11, 11, 11, 0.82));
}

.parallax-band__overlay--deep {
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.55), rgba(11, 11, 11, 0.88));
}

.parallax-band__quote {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  color: rgba(245, 242, 238, 0.88);
  text-align: center;
  max-width: 34ch;
  padding-inline: 1.5rem;
}

/* -----------------------------------------------------------------------------
   Visit / hours card
   ----------------------------------------------------------------------------- */

.visit-card {
  position: relative;
  width: min(1100px, 92vw);
  margin-inline: auto;
  border-radius: calc(var(--radius-soft) + 8px);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  min-height: clamp(420px, 58vh, 560px);
}

.visit-card__bg {
  position: absolute;
  inset: -12%;
  background-image: var(--parallax-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  will-change: transform;
}

.visit-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 11, 11, 0.75), rgba(43, 33, 28, 0.82));
}

.visit-card__inner {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 6vw, 4rem);
  max-width: 520px;
}

.visit-card__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
}

.visit-card__lead {
  color: rgba(245, 242, 238, 0.78);
  margin: 0 0 2rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.hours-grid__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.hours-grid__value {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

/* -----------------------------------------------------------------------------
   Contact
   ----------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.contact-address a {
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 164, 126, 0.35);
}

.contact-address a:hover {
  color: var(--accent);
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius-soft);
  border: 1px solid rgba(245, 242, 238, 0.08);
  background: rgba(11, 11, 11, 0.35);
}

.contact-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin: 0 0 0.75rem;
}

/* -----------------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------------- */

.site-footer {
  background: #0a0908;
  border-top: 1px solid var(--border-subtle);
  padding-block: clamp(2.75rem, 6vw, 4rem);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr 1fr;
    align-items: start;
  }
}

.footer-brand__logo {
  width: 64px;
  height: auto;
  margin-bottom: 0.75rem;
}

.footer-brand__tagline {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  color: var(--accent);
}

.footer-brand__text {
  margin: 0;
  color: var(--text-muted);
  max-width: 36ch;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.72);
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-meta a {
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 164, 126, 0.35);
}

.footer-copy {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* -----------------------------------------------------------------------------
   Reveal on scroll
   ----------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal--left {
  transform: translateX(-28px);
}

.reveal--right {
  transform: translateX(28px);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  /* none statt translate(0,0) — vermeidet neue Containing Blocks (u. a. für sticky) */
  transform: none;
}

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

  .reveal,
  .reveal--left,
  .reveal--right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero__scroll-hint span {
    animation: none;
  }
}
