/* =========================================================================
   Ivona's Blumenladen – Konstanz
   Stylesheet, statisch, ohne Build-Schritt.

   Aufbau
   1  Schriften
   2  Design-Tokens
   3  Grundlagen und Reset
   4  Typografie
   5  Layout-Hilfen
   6  Schaltflächen
   7  Kopfbereich und Navigation
   8  Hero (2.5D)
   9  Sektionen
   10 Karten, Ablauf, Zitat, Galerie
   11 Häufige Fragen
   12 Kontakt, Formular, Karte, Buchung
   13 Fußbereich und mobile Kontaktleiste
   14 Rechtsseiten
   15 Bewegung und Reduced Motion
   16 Druck
   ========================================================================= */

/* 1 -------------------------------------------------------- Schriften ---
   Selbst gehostet. Bewusst kein Google-Fonts-CDN, damit beim Seitenaufruf
   keine IP-Adressen an Dritte übertragen werden (DSGVO).
   Lizenz beider Familien: SIL Open Font License 1.1                        */

@font-face {
  font-family: 'Inter var';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/inter-400-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-300-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* 2 --------------------------------------------------- Design-Tokens ---
   Farben aus dem Referenzbild abgeleitet, siehe phase2_markenanalyse.md.
   Kontraste dort gegen WCAG 2.1 AA geprüft.                               */

:root {
  --c-forest: #0b1814;
  --c-forest-soft: #16261f;
  --c-cream: #f3eee5;
  --c-blush: #f6e9e3;
  --c-rose: #d7a5a2;
  --c-rose-line: rgba(215, 165, 162, 0.45);
  --c-burgundy: #5d2635;
  --c-brass: #b8955a;
  --c-brass-dark: #96703e;
  --c-ink: #0b1814;
  --c-ink-soft: #3a4a44;
  --c-white: #fffdfa;

  --font-head: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype',
    Palatino, Georgia, 'Times New Roman', serif;
  --font-body: 'Inter var', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, 'Helvetica Neue', Arial, sans-serif;

  --fs-base: clamp(1.0625rem, 0.99rem + 0.32vw, 1.1875rem);
  --fs-lead: clamp(1.1875rem, 1.09rem + 0.44vw, 1.375rem);
  --fs-h1: clamp(2.5rem, 1.72rem + 3.5vw, 4.5rem);
  --fs-h2: clamp(1.875rem, 1.5rem + 1.6vw, 2.75rem);
  --fs-h3: clamp(1.25rem, 1.15rem + 0.45vw, 1.5rem);
  --fs-small: clamp(0.9375rem, 0.9rem + 0.16vw, 1rem);

  --space-section: clamp(4rem, 2.6rem + 6vw, 8rem);
  --wrap: 78rem;
  --wrap-narrow: 46rem;

  --radius-s: 0.75rem;
  --radius-m: 1.125rem;
  --radius-l: 1.75rem;

  /* Warm getönte, weiche Schatten – kein neutrales Schwarz */
  --shadow-s: 0 1px 2px rgba(11, 24, 20, 0.08), 0 4px 12px rgba(11, 24, 20, 0.06);
  --shadow-m: 0 2px 6px rgba(11, 24, 20, 0.08), 0 14px 34px rgba(11, 24, 20, 0.1);
  --shadow-l: 0 4px 10px rgba(11, 24, 20, 0.09), 0 26px 60px rgba(11, 24, 20, 0.14);

  --header-h: 5.25rem;
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 3 ------------------------------------------- Grundlagen und Reset --- */

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

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

body {
  margin: 0;
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.75;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
picture,
svg,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--c-burgundy);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--c-brass-dark);
}

:focus-visible {
  outline: 3px solid var(--c-burgundy);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

::selection {
  background: var(--c-rose);
  color: var(--c-forest);
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -6rem;
  z-index: 200;
  padding: 0.85rem 1.4rem;
  background: var(--c-forest);
  color: var(--c-cream);
  border-radius: 0 0 var(--radius-s) var(--radius-s);
  font-weight: 500;
  text-decoration: none;
  transition: top 0.2s var(--ease-soft);
}

.skip-link:focus {
  top: 0;
  color: var(--c-cream);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* 4 ------------------------------------------------------ Typografie --- */

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 300;
  line-height: 1.03;
}

h2 {
  font-size: var(--fs-h2);
  font-weight: 300;
}

h3 {
  font-size: var(--fs-h3);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.35;
  hyphens: auto;
  text-wrap: wrap;
}

p {
  margin: 0 0 1.15em;
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--c-ink-soft);
}

.eyebrow {
  display: block;
  margin-bottom: 1.1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-burgundy);
}

.eyebrow::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  margin-top: 0.9rem;
  background: var(--c-rose);
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.5rem, 1.8rem + 2.6vw, 4rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow::after {
  margin-inline: auto;
}

/* 5 --------------------------------------------------- Layout-Hilfen --- */

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

@media (max-width: 30rem) {
  .wrap {
    width: min(100% - 2rem, var(--wrap));
  }
}

.section {
  padding-block: var(--space-section);
  position: relative;
}

.section--blush {
  background: var(--c-blush);
}

.section--forest {
  background: var(--c-forest);
  color: var(--c-cream);
}

.section--forest .eyebrow {
  color: var(--c-rose);
}

.section--forest h2,
.section--forest .lead {
  color: var(--c-cream);
}

.section--blush::before,
.section--blush::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 4rem;
  pointer-events: none;
}

.section--blush::before {
  top: 0;
  background: linear-gradient(var(--c-cream), transparent);
}

.section--blush::after {
  bottom: 0;
  background: linear-gradient(transparent, var(--c-cream));
}

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

@media (min-width: 56rem) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2--media-first > :first-child {
    order: 2;
  }
}

/* 6 ------------------------------------------------- Schaltflächen --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.9rem 1.85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-soft), background-color 0.25s,
    border-color 0.25s, box-shadow 0.25s, color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* Messing-Fläche erreicht mit heller Schrift nur 2,4:1 – deshalb immer
   dunkle Waldgrün-Schrift, siehe phase2_markenanalyse.md */
.btn--primary {
  background: var(--c-brass);
  color: var(--c-forest);
  box-shadow: var(--shadow-s);
}

.btn--primary:hover {
  background: #c7a56a;
  color: var(--c-forest);
  box-shadow: var(--shadow-m);
}

.btn--ghost {
  background: rgba(255, 253, 250, 0.12);
  border-color: rgba(243, 238, 229, 0.4);
  color: inherit;
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 253, 250, 0.22);
  border-color: var(--c-rose);
}

.section:not(.section--forest) .btn--ghost {
  background: rgba(255, 253, 250, 0.7);
  border-color: var(--c-rose-line);
  color: var(--c-ink);
}

.section:not(.section--forest) .btn--ghost:hover {
  background: var(--c-white);
  border-color: var(--c-rose);
}

.btn__icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s var(--ease-soft);
}

/* Blatt-Icon wandert beim Hover/Fokus dezent nach rechts – Vorgabe aus
   dem Hero-Bewegungskonzept, hier auf alle Primär-Buttons übertragen. */
.btn--primary:hover .btn__icon,
.btn--primary:focus-visible .btn__icon {
  transform: translateX(4px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* 7 ------------------------------------- Kopfbereich und Navigation --- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 238, 229, 0.85);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.header.is-stuck {
  border-bottom-color: var(--c-rose-line);
  box-shadow: 0 2px 20px rgba(11, 24, 20, 0.08);
}

/* Auf der Startseite beginnt der Hero dunkel: Header startet transparent
   mit hellem Text und wechselt beim Scrollen in die helle Fassung.       */
.header--on-dark:not(.is-stuck) {
  background: rgba(11, 24, 20, 0.28);
  border-bottom-color: transparent;
}

.header--on-dark:not(.is-stuck) .nav__link,
.header--on-dark:not(.is-stuck) .logo,
.header--on-dark:not(.is-stuck) .nav-toggle {
  color: var(--c-cream);
}

.header--on-dark:not(.is-stuck) .nav-toggle {
  border-color: rgba(243, 238, 229, 0.4);
}

.header--on-dark:not(.is-stuck) .logo__sub {
  color: var(--c-rose);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.4rem + 2vw, 2.5rem);
  min-height: var(--header-h);
}

/* Logo ganz links – Vorgabe aus dem Briefing */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
  color: var(--c-ink);
  text-decoration: none;
  flex: none;
  transition: color 0.3s;
}

.logo__mark {
  width: 2.6rem;
  height: 2.6rem;
  flex: none;
  border-radius: 999px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.logo__name {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.logo__sub {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-burgundy);
  transition: color 0.3s;
}

/* Navigation: jeder Punkt genau einzeilig, identischer Abstand über gap */
.nav {
  display: none;
}

@media (min-width: 64rem) {
  .nav {
    display: flex;
    align-items: center;
    gap: clamp(1.35rem, 0.4rem + 1.5vw, 2.25rem);
  }
}

.nav__link {
  position: relative;
  padding-block: 0.4rem;
  white-space: nowrap;
  color: var(--c-ink);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-soft);
}

.nav__link:hover,
.nav__link[aria-current='page'],
.nav__link.is-active {
  color: var(--c-brass-dark);
}

.header--on-dark:not(.is-stuck) .nav__link:hover,
.header--on-dark:not(.is-stuck) .nav__link[aria-current='page'] {
  color: var(--c-rose);
}

.nav__link:hover::after,
.nav__link[aria-current='page']::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.header__phone {
  display: none;
  flex: none;
}

@media (min-width: 48rem) {
  .header__phone {
    display: inline-flex;
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex: none;
  padding: 0;
  background: none;
  border: 1px solid var(--c-rose-line);
  border-radius: 999px;
  color: var(--c-ink);
  cursor: pointer;
}

@media (min-width: 64rem) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-soft), opacity 0.2s;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: '';
  position: absolute;
}

.nav-toggle__bars::before {
  transform: translateY(-0.375rem);
}

.nav-toggle__bars::after {
  transform: translateY(0.375rem);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars::after {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--c-rose-line);
  background: var(--c-cream);
}

.mobile-nav.is-open {
  display: block;
}

@media (min-width: 64rem) {
  .mobile-nav,
  .mobile-nav.is-open {
    display: none;
  }
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 1.5rem;
}

.mobile-nav__list a {
  display: block;
  padding: 0.9rem 0.25rem;
  border-bottom: 1px solid var(--c-rose-line);
  color: var(--c-ink);
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
}

/* 8 ----------------------------------------------------- Hero (2.5D) ---
   Drei fotografische Tiefenebenen aus dem Referenzbild
   (siehe tools/build-assets.py), darüber Partikel- und Lichtebene.
   assets/js/hero.js bewegt sie per transform. Ohne JavaScript bzw. bei
   prefers-reduced-motion bleibt nur das statische Poster stehen.        */

.hero {
  position: relative;
  isolation: isolate;
  background: var(--c-forest);
  padding-bottom: clamp(3rem, 1rem + 6vw, 6rem);
}

/* Zieht die Hero-Bühne unter die sticky Kopfleiste, damit diese
   transparent über dem dunklen Bild schwebt statt darüber zu stehen. */
@media (min-width: 56.01rem) {
  .hero {
    margin-top: calc(-1 * var(--header-h));
  }

  .hero__content {
    padding-top: calc(var(--header-h) + clamp(2.75rem, 1.5rem + 5.5vw, 5rem));
  }
}

.hero__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(160deg, #0f2019 0%, #0b1814 55%, #0a1512 100%);
}

.hero__layer {
  position: absolute;
  inset: -6%;
  background-position: 62% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  backface-visibility: hidden;
}

.hero__layer--bg {
  background-image: url('../img/hero-bg.webp');
  transform: scale(1.14);
  opacity: 0.9;
}

.hero__layer--plate {
  background-image: url('../img/hero-plate.webp');
  background-position: 58% 50%;
  transform: scale(1);
}

.hero__layer--fg {
  inset: -6%;
  background-image: url('../img/hero-fg.webp');
  background-position: 100% 42%;
  background-size: 62% auto;
  background-repeat: no-repeat;
  transform: scale(1.04);
}

/* Wandernder, weicher Lichtreflex – steht stellvertretend für die im
   Konzeptdossier beschriebenen Glanzmasken auf einzelnen Blüten. Echte
   Einzelblüten-Masken liegen nicht vor, siehe docs/hero-implementation.md */
.hero__sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 244, 230, 0.16) 46%,
    rgba(255, 244, 230, 0.22) 50%,
    rgba(255, 244, 230, 0.16) 54%,
    transparent 70%
  );
  background-size: 260% 100%;
  background-position: 120% 0;
  transition: opacity 0.4s;
}

.hero__light {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      55% 55% at 82% 18%,
      rgba(255, 244, 230, 0.35),
      rgba(255, 244, 230, 0) 68%
    ),
    radial-gradient(70% 60% at 15% 92%, rgba(93, 38, 53, 0.35), rgba(93, 38, 53, 0) 70%);
  mix-blend-mode: soft-light;
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Lesbarkeitsschleier: sichert Textkontrast über der linken, dunklen
   Bildhälfte ab; rechts bleibt der Strauß frei sichtbar.                */
.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(11, 24, 20, 0.55) 0%,
    rgba(11, 24, 20, 0.4) 30%,
    rgba(11, 24, 20, 0.12) 52%,
    rgba(11, 24, 20, 0) 68%
  );
}

@media (max-width: 56rem) {
  .hero {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }

  .hero > .wrap {
    order: 1;
  }

  .hero__stage {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .hero__content {
    min-height: 0;
    padding-block: clamp(2.5rem, 1.5rem + 5vw, 4rem) 2rem;
  }

  .hero__scrim {
    display: none;
  }

  .hero__fade {
    height: 30%;
  }
}

.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  pointer-events: none;
  background: linear-gradient(transparent, var(--c-cream));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(72vh, 40rem);
  padding-block: clamp(2.75rem, 1.5rem + 5.5vw, 5rem);
  max-width: 34rem;
  color: var(--c-cream);
}

@media (max-width: 56rem) {
  .hero__content {
    min-height: min(88vh, 44rem);
    max-width: 100%;
  }
}

.hero__title {
  margin-bottom: 0.5em;
  color: var(--c-cream);
}

.hero__title em {
  display: block;
  font-style: normal;
  color: var(--c-rose);
}

.hero__text {
  max-width: 30rem;
  color: rgba(243, 238, 229, 0.86);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.4rem;
  margin-top: 2.5rem;
  font-size: var(--fs-small);
  color: rgba(243, 238, 229, 0.8);
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__meta svg {
  width: 1.05em;
  height: 1.05em;
  stroke: var(--c-rose);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 0.2rem + 2vw, 2.25rem);
  z-index: 2;
  display: none;
  transform: translateX(-50%);
  color: rgba(243, 238, 229, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (min-width: 56rem) and (min-height: 40rem) {
  .hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 2.75rem;
  background: linear-gradient(var(--c-rose), transparent);
  animation: scroll-hint 2.6s var(--ease-soft) infinite;
  transform-origin: top;
}

@keyframes scroll-hint {
  0%,
  100% {
    transform: scaleY(0.35);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.hero__static {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-poster.webp');
  background-position: 60% center;
  background-size: cover;
  display: none;
}

/* 9 ------------------------------------------------------- Sektionen --- */

.intro-quote {
  max-width: var(--wrap-narrow);
  margin-inline: auto;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.25rem);
  font-weight: 300;
  line-height: 1.4;
}

.media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
  background: var(--c-rose);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-soft);
}

.media:hover img {
  transform: scale(1.03);
}

.media-stack {
  position: relative;
  padding-bottom: 3.5rem;
  padding-right: 3.5rem;
}

.media-stack__main {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
}

.media-stack__accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  max-width: 13rem;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 6px solid var(--c-cream);
  box-shadow: var(--shadow-m);
}

.media-stack img {
  width: 100%;
  height: auto;
  display: block;
}

/* Vertrauensbadge: Google-Bewertung mit Quellenangabe */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.3rem;
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid var(--c-rose-line);
  border-radius: 999px;
  box-shadow: var(--shadow-s);
}

.section--forest .rating {
  background: rgba(243, 238, 229, 0.1);
  border-color: rgba(243, 238, 229, 0.28);
}

.rating__stars {
  display: flex;
  gap: 0.15rem;
  color: var(--c-brass);
}

.rating__stars svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.rating__text {
  font-size: var(--fs-small);
  line-height: 1.35;
}

.rating__text strong {
  display: block;
  font-size: 1.05rem;
}

.rating__text a {
  color: inherit;
  text-decoration-color: var(--c-rose);
}

/* 10 -------------------------------- Karten, Ablauf, Zitat, Galerie --- */

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  background: var(--c-white);
  border: 1px solid var(--c-rose-line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  transition: transform 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft),
    border-color 0.4s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--c-rose);
  box-shadow: var(--shadow-m);
}

.card__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.35rem;
  padding: 0.7rem;
  background: var(--c-blush);
  border-radius: 999px;
  stroke: var(--c-burgundy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card p {
  color: var(--c-ink-soft);
  font-size: var(--fs-small);
}

.card__price {
  margin-top: auto;
  padding-top: 1.4rem;
  font-family: var(--font-head);
  font-size: 1.375rem;
  color: var(--c-burgundy);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-top: 4.25rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--c-rose);
  border-radius: 999px;
  background: var(--c-cream);
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--c-burgundy);
}

.steps li::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 3.5rem;
  right: -1.75rem;
  height: 1px;
  background: var(--c-rose-line);
}

.steps li:last-child::after {
  display: none;
}

@media (max-width: 47.99rem) {
  .steps li::after {
    display: none;
  }
}

.steps h3 {
  margin-bottom: 0.4em;
}

.steps p {
  color: var(--c-ink-soft);
  font-size: var(--fs-small);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.checklist li {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 0.85rem;
  align-items: start;
}

.checklist svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.15rem;
  padding: 0.35rem;
  background: var(--c-blush);
  border-radius: 999px;
  stroke: var(--c-burgundy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Galerie: gestaffeltes Raster statt starrem Quadratraster */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 0.5rem + 1vw, 1.5rem);
}

@media (min-width: 40rem) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery__item:nth-child(3n + 1) {
    grid-row: span 2;
  }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
  background: var(--c-rose);
  box-shadow: var(--shadow-s);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-soft);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.1rem 0.9rem;
  background: linear-gradient(transparent, rgba(11, 24, 20, 0.78));
  color: var(--c-cream);
  font-size: 0.875rem;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.35s, transform 0.35s;
}

.gallery__item:hover .gallery__caption,
.gallery__item:focus-within .gallery__caption {
  opacity: 1;
  transform: none;
}

/* 11 ------------------------------------------------ Häufige Fragen --- */

.faq {
  max-width: 52rem;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--c-rose-line);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0.25rem;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.45;
  list-style: none;
  transition: color 0.25s;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary:hover {
  color: var(--c-brass-dark);
}

.faq__sign {
  position: relative;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--c-rose);
}

.faq__sign::before,
.faq__sign::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6rem;
  height: 1px;
  background: var(--c-burgundy);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-soft), opacity 0.3s;
}

.faq__sign::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__sign::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq__answer {
  padding: 0 0.25rem 1.6rem;
  max-width: 44rem;
  color: var(--c-ink-soft);
}

/* 12 ------------------------------- Kontakt, Formular, Karte, Buchung --- */

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

@media (min-width: 62rem) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

.contact-card {
  padding: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem);
  background: var(--c-white);
  border: 1px solid var(--c-rose-line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
}

.contact-list {
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.contact-list dt {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-burgundy);
  margin-bottom: 0.3rem;
}

.contact-list dd {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.contact-phone {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.25rem);
  font-weight: 400;
  color: var(--c-ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.contact-phone:hover {
  color: var(--c-brass-dark);
}

.note {
  padding: 1.1rem 1.35rem;
  background: var(--c-blush);
  border-left: 3px solid var(--c-rose);
  border-radius: var(--radius-s);
  font-size: var(--fs-small);
  color: var(--c-ink-soft);
}

.form {
  display: grid;
  gap: 1.35rem;
}

.form__row {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 40rem) {
  .form__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: var(--fs-small);
  font-weight: 500;
}

.field .req {
  color: var(--c-burgundy);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  background: var(--c-white);
  border: 1px solid var(--c-rose-line);
  border-radius: var(--radius-s);
  color: var(--c-ink);
  font-family: inherit;
  font-size: 1.0625rem;
  line-height: 1.5;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: var(--c-rose);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--c-burgundy);
  box-shadow: 0 0 0 3px rgba(93, 38, 53, 0.14);
  outline: none;
}

.field__hint {
  margin-top: 0.4rem;
  font-size: 0.875rem;
  color: var(--c-ink-soft);
}

.checkbox {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--c-ink-soft);
}

.checkbox input {
  width: 1.35rem;
  height: 1.35rem;
  margin: 0.2rem 0 0;
  accent-color: var(--c-burgundy);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-s);
  font-size: var(--fs-small);
}

.form__status[data-state='error'] {
  background: #fbeae6;
  border: 1px solid #e2b3a8;
  color: #7c3a2c;
}

.form__status[data-state='ok'] {
  background: #eaf2ea;
  border: 1px solid #b6cfb6;
  color: #2f5233;
}

.map {
  position: relative;
  margin-top: clamp(2.5rem, 1.8rem + 2.6vw, 4rem);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
  background: var(--c-blush);
}

.map__consent {
  display: grid;
  place-items: center;
  gap: 1.25rem;
  padding: clamp(2.5rem, 1.8rem + 4vw, 5rem) 1.5rem;
  text-align: center;
  background: linear-gradient(rgba(11, 24, 20, 0.82), rgba(11, 24, 20, 0.88)),
    url('../img/foto-textur.webp') center / cover;
  color: var(--c-cream);
}

.map__consent p {
  max-width: 34rem;
  color: rgba(243, 238, 229, 0.85);
  font-size: var(--fs-small);
}

.map__frame {
  display: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 20rem;
  border: 0;
}

.map.is-loaded .map__consent {
  display: none;
}

.map.is-loaded .map__frame {
  display: block;
}

/* Calendly-Platzhalter – standardmäßig inaktiv, siehe phase4_umsetzung.md */
.booking {
  margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  padding: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  border: 1px dashed var(--c-rose);
  border-radius: var(--radius-l);
  background: rgba(215, 165, 162, 0.12);
}

.booking__slot {
  min-height: 4rem;
  display: grid;
  place-items: center;
  margin-top: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-m);
  background: var(--c-white);
  border: 1px solid var(--c-rose-line);
  color: var(--c-ink-soft);
  font-size: 0.9375rem;
  text-align: center;
}

/* 13 ------------------- Fußbereich und mobile Kontaktleiste --- */

.footer {
  padding-top: clamp(3.5rem, 2.5rem + 4vw, 6rem);
  padding-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
  background: var(--c-forest);
  color: #e7ddcf;
}

.footer a {
  color: #e7ddcf;
  text-decoration-color: rgba(231, 221, 207, 0.4);
}

.footer a:hover {
  color: var(--c-white);
  text-decoration-color: currentColor;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(231, 221, 207, 0.18);
}

.footer h2,
.footer h3 {
  color: var(--c-white);
}

.footer h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  color: #e7ddcf;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  font-size: var(--fs-small);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: 0.875rem;
  color: rgba(231, 221, 207, 0.75);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  color: var(--c-white);
  text-decoration: none;
}

.footer__logo .logo__mark {
  width: 2.4rem;
  height: 2.4rem;
}

/* Feste Kontaktleiste auf kleinen Geräten */
.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(243, 238, 229, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-rose-line);
}

@media (min-width: 48rem) {
  .callbar {
    display: none;
  }
}

@media (max-width: 47.99rem) {
  body {
    padding-bottom: 4.75rem;
  }
}

.callbar .btn {
  min-height: 3.25rem;
  padding-inline: 1rem;
  font-size: 1rem;
}

/* 14 ---------------------------------------------------- Rechtsseiten --- */

.page-head {
  padding-top: clamp(3rem, 2rem + 4vw, 5rem);
  padding-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
  background: var(--c-blush);
}

.legal {
  max-width: var(--wrap-narrow);
  margin-inline: auto;
}

.legal h2 {
  margin-top: 2.5em;
  font-size: clamp(1.5rem, 1.3rem + 0.9vw, 1.875rem);
}

.legal h3 {
  margin-top: 2em;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal ul {
  padding-left: 1.25rem;
}

.legal li {
  margin-bottom: 0.5rem;
}

.draft-notice {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  margin-bottom: 2.5rem;
  background: #fdf3e7;
  border: 1px solid #e5c9a2;
  border-left: 4px solid #c98a2e;
  border-radius: var(--radius-m);
  color: #6b4a15;
  font-size: var(--fs-small);
  line-height: 1.65;
}

.draft-notice svg {
  width: 2.25rem;
  height: 2.25rem;
  stroke: #c98a2e;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.draft-notice strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #5a3d10;
}

.fill-in {
  padding: 0.1em 0.4em;
  background: #fdf3e7;
  border-bottom: 1px dashed #c98a2e;
  border-radius: 3px;
  font-style: normal;
  color: #6b4a15;
}

/* 15 ------------------------------------ Bewegung und Reduced Motion --- */

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay='1'] {
  transition-delay: 0.09s;
}

.reveal[data-delay='2'] {
  transition-delay: 0.18s;
}

.reveal[data-delay='3'] {
  transition-delay: 0.27s;
}

.no-js .reveal {
  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;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__static {
    display: block;
  }

  .hero__layer,
  .hero__particles,
  .hero__light,
  .hero__sheen {
    display: none;
  }

  .hero__scroll::after {
    animation: none;
    transform: scaleY(1);
    opacity: 0.7;
  }

  .media:hover img {
    transform: none;
  }
}

/* 16 ------------------------------------------------------------ Druck --- */

@media print {
  .header,
  .callbar,
  .hero__stage,
  .hero__scroll,
  .map,
  .booking,
  .form,
  .nav-toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
    padding-bottom: 0;
  }

  .section {
    padding-block: 1.5rem;
    page-break-inside: avoid;
  }

  a[href^='http']::after {
    content: ' (' attr(href) ')';
    font-size: 9pt;
    word-break: break-all;
  }
}
