/* ============================================================
   LAVENDELFELD — Cinematic Editorial
   Gemeinsames Stylesheet für ALLE Seiten der Website.
   Weite, Licht, Ruhe, Sog. Grosse Bilder tragen alles.
   Palette hell: Creme + Weiss als Basis, Lavendel-Violett als
   Akzent, Weinrot fuer den Hauptbutton, botanisches Gruen, Gold.
   ============================================================ */

:root{
  /* Basis hell & licht */
  --creme:      #faf7f0;
  --creme-tief: #f2ecdf;
  --weiss:      #ffffff;
  --text:       #33302a;
  --text-dim:   #6a6459;

  /* Akzente */
  --lavendel:      #6d5a86;
  --lavendel-hell: #8a76a6;
  --wein:          #8a3324;
  --wein-tief:     #6f2519;
  --gruen:         #5a6b46;
  --gold:          #c6a052;

  /* Cremefarbene Haarlinie & Schatten */
  --linie:    rgba(109,90,134,0.28);
  --schatten: 0 34px 70px -40px rgba(51,48,42,0.55);

  --maxw: 1180px;
  --nav-h: 92px;
}

*{ box-sizing: border-box; }

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

body{
  margin: 0;
  background: var(--creme);
  color: var(--text);
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 20px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a{ color: inherit; }

/* Sichtbarer Fokus fuer Tastatur-Navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible{
  outline: 3px solid var(--lavendel);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Skip-Link — fuer Tastatur/Screenreader unsichtbar, bis er fokussiert wird */
.skip-link{
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--wein);
  color: var(--weiss);
  padding: 12px 20px;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus{
  top: 12px;
}

/* Eyebrow — weit gesperrte Kleinschrift */
.eyebrow{
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--lavendel);
  margin: 0 0 22px;
}
.eyebrow--hell{ color: rgba(255,255,255,0.86); }

/* Display-Ueberschriften — Cormorant, leicht & gross */
h1, h2, h3{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0.005em;
  margin: 0;
}

/* ============================================================
   NAVIGATION — fix, transparent ueber Hero, dann cremig
   Auf Unterseiten (ohne grossen Hero) von Anfang an cremig.
   ============================================================ */
.nav{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 56px);
  background: linear-gradient(to bottom, rgba(20,15,28,0.55) 0%, rgba(20,15,28,0) 100%);
  transition: background .45s ease, box-shadow .45s ease, backdrop-filter .45s ease;
}
.nav.gescrollt, .nav.hell{
  background: rgba(250,247,240,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--linie);
}
.nav__marke{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--weiss);
  text-decoration: none;
  transition: color .45s ease;
}
.nav.gescrollt .nav__marke, .nav.hell .nav__marke{ color: var(--text); }

.nav__links{
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: wrap;
}
.nav__links a{
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 6px 2px;
  position: relative;
  transition: color .45s ease;
}
.nav__links a::after{
  content:"";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s ease;
}
.nav__links a:hover::after{ width: 100%; }
.nav__links a[aria-current="page"]{ color: var(--gold); }
.nav__links a[aria-current="page"]::after{ width: 100%; }
.nav.gescrollt .nav__links a, .nav.hell .nav__links a{ color: var(--text); }
.nav.gescrollt .nav__links a[aria-current="page"], .nav.hell .nav__links a[aria-current="page"]{ color: var(--wein); }

/* Angebote-Dropdown (Desktop: Hover/Focus, klappt darunter auf) */
.nav__dropdown{ position: relative; }
.nav__dropdown-menu{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 230px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: var(--weiss);
  border-radius: 10px;
  box-shadow: var(--schatten);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 2px);
}
.nav__dropdown-menu a{
  display: block;
  color: var(--text) !important;
  padding: 10px 22px !important;
  font-size: 14px !important;
  white-space: nowrap;
}
.nav__dropdown-menu a::after{ content: none; }
.nav__dropdown-menu a:hover{ color: var(--wein) !important; background: var(--creme); }
.nav__dropdown-menu a[aria-current="page"]{ color: var(--wein) !important; }
.nav__dropdown:has(.nav__dropdown-menu a[aria-current="page"]) > a{ color: var(--gold); }
.nav.gescrollt .nav__dropdown:has(.nav__dropdown-menu a[aria-current="page"]) > a,
.nav.hell .nav__dropdown:has(.nav__dropdown-menu a[aria-current="page"]) > a{ color: var(--wein); }

/* Mobiles Menue */
.nav__burger{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  padding: 10px;
}
.nav__burger span{
  display: block;
  height: 2px;
  background: var(--weiss);
  margin: 5px 0;
  transition: transform .35s ease, opacity .35s ease, background .45s ease;
}
.nav.gescrollt .nav__burger span, .nav.hell .nav__burger span{ background: var(--text); }

@media (max-width: 1300px){
  .nav__burger{ display: block; }
  .nav__links{
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(250,247,240,0.98);
    backdrop-filter: blur(12px);
    padding: 28px 0 20px;
    box-shadow: var(--schatten);
    transform: translateY(-140%);
    transition: transform .5s cubic-bezier(.16,1,.3,1);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav__links.offen{ transform: translateY(0); }
  .nav__links a{
    color: var(--text);
    width: 100%;
    padding: 16px clamp(20px,5vw,56px);
    font-size: 18px;
    border-bottom: 1px solid var(--linie);
  }
  .nav__links a::after{ content: none; }
  .nav.gescrollt .nav__links a, .nav.hell .nav__links a{ color: var(--text); }
  .nav__burger.aktiv span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav__burger.aktiv span:nth-child(2){ opacity: 0; }
  .nav__burger.aktiv span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  /* Angebote-Dropdown mobil: keine Ueberlagerung, einfach eingerueckt aufgelistet */
  .nav__dropdown{ width: 100%; align-self: stretch; }
  .nav__dropdown-menu{
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    background: var(--creme-tief);
    padding: 4px 0;
  }
  .nav__dropdown-menu a{
    padding: 14px clamp(20px,5vw,56px) 14px calc(clamp(20px,5vw,56px) + 16px) !important;
    font-size: 16px !important;
    border-bottom: 1px solid var(--linie);
  }
}

/* ============================================================
   HERO — FULL-BLEED, volle Hoehe, Ken-Burns + Scrim
   ============================================================ */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #2b2536;
}
.hero__bild{
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  transform: scale(1.06);
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns{
  from{ transform: scale(1.06) translate(0,0); }
  to{   transform: scale(1.16) translate(-1.5%, -1.5%); }
}
.hero__scrim{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,15,28,0.50) 0%, rgba(20,15,28,0) 15%),
    linear-gradient(to top, rgba(20,15,28,0.32) 0%, rgba(20,15,28,0) 40%);
}
.hero__inhalt{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 56px) clamp(52px, 8vh, 96px);
}
.hero__panel{
  display: inline-block;
  max-width: 700px;
  background: rgba(18,13,26,0.56);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: clamp(26px, 3.2vw, 44px) clamp(26px, 3.4vw, 48px);
  box-shadow: 0 34px 70px -40px rgba(0,0,0,0.65);
}
.hero__titel{
  color: var(--creme);
  font-weight: 300;
  font-size: clamp(40px, 6.6vw, 74px);
  max-width: 17ch;
}
.hero__titel em{ font-style: italic; color: #e9dff5; }
.hero__titel small{
  display: block;
  font-size: clamp(19px, 2.6vw, 26px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  color: #e9dff5;
  margin-top: 16px;
}
.hero__story{
  color: rgba(255,255,255,0.95);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.6;
  max-width: 54ch;
  margin: 24px 0 0;
}
.hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

/* Helle Scrim-/Panel-Variante fuer einzelne Hero-Seiten (z.B. Natuerlich gut versorgt) */
.hero__scrim--hell{
  background:
    linear-gradient(to bottom, rgba(20,15,28,0.20) 0%, rgba(20,15,28,0) 15%),
    linear-gradient(to top, rgba(20,15,28,0.14) 0%, rgba(20,15,28,0) 40%);
}
.hero__panel--hell{
  background: rgba(250,247,240,0.86);
  border: 1px solid rgba(198,160,82,0.4);
  box-shadow: 0 34px 70px -40px rgba(51,48,42,0.35);
}
.hero__panel--hell .eyebrow{ color: var(--lavendel); }
.hero__panel--hell .hero__titel{ color: var(--text); }
.hero__panel--hell .hero__titel small{ color: var(--text-dim); }
.hero__panel--hell .hero__story{ color: var(--text); }

/* Kleinerer Hero fuer Unterseiten (kein Ken-Burns-Vollbild noetig) */
.hero--klein{ min-height: 56vh; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease;
  border: none;
}
.btn--voll{
  background: var(--wein);
  color: #fbeee9;
  border: 1px solid var(--wein);
  box-shadow: 0 18px 40px -18px rgba(138,51,36,0.75);
}
.btn--voll:hover{ background: var(--wein-tief); transform: translateY(-3px); }
.btn--linie{
  background: rgba(255,255,255,0.06);
  color: var(--creme);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.btn--linie:hover{ background: rgba(255,255,255,0.16); transform: translateY(-3px); }
.btn--linie-dunkel{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--linie);
}
.btn--linie-dunkel:hover{ background: rgba(109,90,134,0.08); transform: translateY(-3px); }
.btn--dunkel{
  background: var(--lavendel);
  color: #fbf9ff;
  border: 1px solid var(--lavendel);
}
.btn--dunkel:hover{ background: #5b4a72; transform: translateY(-3px); }
.btn svg{ width: 18px; height: 18px; flex: 0 0 auto; }

/* ============================================================
   SEKTIONS-GRUNDLAGEN
   ============================================================ */
.sektion{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 12vh, 140px) clamp(22px, 5vw, 56px);
}
.sektion--luft{ padding-top: clamp(88px, 14vh, 160px); padding-bottom: clamp(88px, 14vh, 160px); }
.sektion--eng{ padding-top: clamp(40px, 6vh, 64px); padding-bottom: clamp(40px, 6vh, 64px); }

.zentrum{ text-align: center; }
.zentrum .eyebrow{ display: block; }

.abschnitt-titel{
  font-size: clamp(36px, 5.5vw, 62px);
  max-width: 20ch;
}
.zentrum .abschnitt-titel{ margin-left: auto; margin-right: auto; }

.lead{
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 62ch;
  margin: 26px 0 0;
}
.zentrum .lead{ margin-left: auto; margin-right: auto; }

/* ============================================================
   FULL-WIDTH BILD-BAND — randlos, 60–78vh, Parallax + Scrim
   ============================================================ */
.band{
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.band--kurz{ min-height: 60vh; }
.band__bild{
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}
.band__scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,12,24,0.86) 0%, rgba(16,12,24,0.60) 38%, rgba(16,12,24,0.22) 68%, rgba(16,12,24,0) 100%);
}
.band__scrim--rechts{
  background: linear-gradient(270deg, rgba(16,12,24,0.86) 0%, rgba(16,12,24,0.60) 38%, rgba(16,12,24,0.22) 68%, rgba(16,12,24,0) 100%);
}
.band__inhalt{
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(22px, 5vw, 56px);
}
.band__text{ max-width: 46ch; }
.band--rechts .band__text{ margin-left: auto; text-align: right; }
.band__titel{
  color: var(--creme);
  font-size: clamp(34px, 5vw, 56px);
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.band__zeile{
  color: rgba(255,255,255,0.9);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.6;
  margin: 20px 0 0;
  text-shadow: 0 1px 18px rgba(0,0,0,0.4);
}

/* ============================================================
   KACHELN — grosse Bild-Kacheln, 8px Radius, Hover-Zoom
   (Thementage-Vorschau, Angebote)
   ============================================================ */
.kachel-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
  margin-top: clamp(44px, 6vh, 72px);
}
.kachel-grid--drei{ grid-template-columns: repeat(3, 1fr); }
.kachel{
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: clamp(320px, 42vh, 460px);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--schatten);
  isolation: isolate;
  text-decoration: none;
  color: inherit;
}
.kachel__bild{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .9s cubic-bezier(.16,1,.3,1);
}
.kachel::after{
  content:"";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top,
    rgba(16,12,24,0.58) 0%,
    rgba(16,12,24,0.40) 20%,
    rgba(16,12,24,0.16) 40%,
    rgba(16,12,24,0.03) 56%,
    rgba(16,12,24,0) 68%);
}
.kachel:hover .kachel__bild,
.kachel:focus-within .kachel__bild{ transform: scale(1.07); }
.kachel__text{
  padding: clamp(26px, 3.2vw, 40px);
  color: var(--creme);
}
.kachel__nummer{
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: #e0c079;
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 2px 14px rgba(0,0,0,0.75);
}
.kachel__titel{
  font-size: clamp(28px, 3.2vw, 38px);
  color: var(--weiss);
  margin-bottom: 12px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 2px 24px rgba(0,0,0,0.8);
}
.kachel__beschr{
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.94);
  max-width: 42ch;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 2px 18px rgba(0,0,0,0.8);
}
.kachel__link{
  display: inline-block;
  margin-top: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 2px 14px rgba(0,0,0,0.75);
}

/* --- Kachel als Karte: Foto oben unverdeckt, Text unten auf hellem Kartengrund ---
   Loest den Foto-vs-Lesbarkeit-Konflikt strukturell: kein Verlauf noetig, weil
   der Text nicht mehr auf dem Foto liegt, sondern auf der Karte darunter. */
.kachel--karte{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
  background: var(--weiss);
}
.kachel--karte::after{ content: none; }
.kachel--karte .kachel__bild{
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 5/4;
  z-index: auto;
}
.kachel--karte .kachel__text{
  color: var(--text);
}
.kachel--karte .kachel__nummer{
  color: var(--lavendel);
  text-shadow: none;
}
.kachel--karte .kachel__titel{
  color: var(--text);
  text-shadow: none;
}
.kachel--karte .kachel__beschr{
  color: var(--text-dim);
  text-shadow: none;
}
.kachel--karte .kachel__link{
  color: var(--wein);
  text-shadow: none;
}

/* ============================================================
   UEBER MICH / DAS BIN ICH — grosses Portrait-Rechteck neben Text
   ============================================================ */
.ueber{
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.ueber__portrait{
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--schatten);
}
.ueber__portrait img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.ueber__merkmale{
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.ueber__merkmale li{
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavendel);
  border: 1px solid var(--linie);
  border-radius: 40px;
  padding: 9px 20px;
}

/* ============================================================
   WAS SIND AETHERISCHE OELE — helle Sektion mit Rispe
   ============================================================ */
.oele-sektion{
  background: var(--creme-tief);
  position: relative;
  overflow: hidden;
}
.oele-wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 13vh, 150px) clamp(22px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.rispe{ width: clamp(90px, 12vw, 150px); height: auto; }

/* ============================================================
   ZITAT — grosse Stimmung, viel Luft
   ============================================================ */
.zitat{
  text-align: center;
  max-width: 24ch;
  margin: 0 auto;
}
.zitat blockquote{
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.22;
  color: var(--lavendel);
}
.zitat .strich{
  width: 64px; height: 2px;
  background: var(--gold);
  margin: 36px auto 0;
}
.zitat cite{
  display: block;
  margin-top: 18px;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   KONTAKT / NEWSLETTER / HINWEIS-KARTEN
   ============================================================ */
.kontakt-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
  margin-top: clamp(40px, 6vh, 64px);
}
.karte{
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 8px;
  padding: clamp(30px, 4vw, 46px);
  box-shadow: 0 24px 54px -40px rgba(51,48,42,0.4);
}
.karte h3{
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 14px;
}
.karte p{ color: var(--text-dim); margin: 0 0 22px; }
.nl-form{ display: flex; flex-wrap: wrap; gap: 12px; }
.nl-form input[type=email]{
  flex: 1 1 200px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  padding: 15px 18px;
  border: 1px solid var(--linie);
  border-radius: 4px;
  background: var(--creme);
  color: var(--text);
}
.nl-form input[type=email]::placeholder{ color: #9c9689; }
.nl-hinweis{
  font-size: 18px;
  color: var(--text-dim);
  margin-top: 14px;
}
.wa-inline{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #1c7d4d;
  font-weight: 500;
}
.wa-inline svg{ width: 26px; height: 26px; }

/* Hinweis-Box fuer Platzhalter-Seiten / Save-the-Date */
.hinweis-box{
  background: var(--creme-tief);
  border: 1px dashed var(--lavendel-hell);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
  max-width: 620px;
  margin: clamp(30px, 5vh, 50px) auto 0;
  font-size: 18px;
  color: var(--text-dim);
}
.hinweis-box strong{ display: block; color: var(--text); font-size: 20px; margin-bottom: 6px; font-family: 'Cormorant Garamond', serif; }

/* Video-Einbettung (16:9) mit Platzhalter, bis echte IDs vorliegen */
.video-embed{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--creme-tief);
  box-shadow: var(--schatten);
}
.video-embed iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-platzhalter{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--text-dim);
}

/* ============================================================
   TERMIN-LISTE (Thementage-Unterseite, einfache Liste)
   ============================================================ */
.termin-liste{ max-width: 640px; margin: clamp(40px,6vh,60px) auto 0; text-align: left; }
.termin-zeile{ display: flex; flex-direction: column; gap: 4px; padding: 20px 0; border-bottom: 1px solid var(--linie); }
.termin-zeile .datum{ font-family: 'Cormorant Garamond', serif; font-size: 23px; color: var(--wein); }
.termin-zeile .titel{ font-family: 'Jost', sans-serif; font-weight: 500; font-size: 17px; }
.termin-zeile .link{ font-family: 'Jost', sans-serif; font-size: 14px; color: var(--lavendel); text-decoration: none; }
.termin-zeile__label{
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gruen);
  background: var(--creme-tief);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 6px;
  width: fit-content;
}
.termin-zeile__label--vor-ort{ color: var(--wein); }

/* ============================================================
   PREISTABELLE (Natuerlich gut versorgt)
   ============================================================ */
.preis-tabelle{ width: 100%; max-width: 640px; margin: 32px auto 0; border-collapse: collapse; text-align: left; }
.preis-tabelle th, .preis-tabelle td{ padding: 14px 16px; border-bottom: 1px solid var(--linie); font-family: 'EB Garamond', serif; font-size: 17px; }
.preis-tabelle th{ font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); font-weight: 400; }
.preis-tabelle td:last-child, .preis-tabelle th:last-child{ text-align: right; }
.preis-tabelle td:first-child{ font-weight: 500; }

/* Datums-gesteuerte Phasen (Natuerlich gut versorgt) */
[data-phase]{ display: none; }
[data-phase].phase-aktiv{ display: block; }
.termin-zeile[data-phase].phase-aktiv{ display: flex; }

/* ============================================================
   WHATSAPP FIX-BUTTON — rund, ganze Seite, unten rechts
   ============================================================ */
.wa-fix{
  position: fixed;
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 200;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.7);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wa-fix:hover{ transform: translateY(-3px) scale(1.05); }
.wa-fix svg{ width: 34px; height: 34px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  background: var(--creme-tief);
  color: var(--text);
  padding: clamp(56px, 9vh, 90px) clamp(22px, 5vw, 56px) 40px;
  border-top: 1px solid var(--linie);
}
.footer__inner{ max-width: var(--maxw); margin: 0 auto; }
.footer__top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--linie);
}
.footer__marke{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: var(--lavendel);
}
.footer__links{ display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a{
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--lavendel);
  text-decoration: none;
}
.footer__links a:hover{ color: var(--wein); text-decoration: underline; }
.footer__hinweise{
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 74ch;
}
.footer__hinweise p{ margin: 0 0 8px; }

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.reveal{
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}
.reveal.sichtbar{ opacity: 1; transform: none; }
.reveal--sofort{ transition-delay: .1s; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1 !important; transform: none !important; transition: none; }
  .hero__bild{ animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px){
  .kachel-grid, .kachel-grid--drei{ grid-template-columns: 1fr; }
  .ueber{ grid-template-columns: 1fr; }
  .ueber__portrait{ max-width: 460px; }
  .kontakt-grid{ grid-template-columns: 1fr; }
  .oele-wrap{ grid-template-columns: 1fr; }
  .rispe{ justify-self: start; }
}
@media (max-width: 860px){
  .hero{ min-height: auto; align-items: flex-start; }
  .hero__inhalt{ padding-top: calc(var(--nav-h) + 22px); padding-bottom: clamp(40px, 7vh, 64px); }
  .hero__panel{ display: block; max-width: 100%; }
}
@media (max-width: 640px){
  body{ font-size: 19px; }
  .footer__top{ flex-direction: column; }
  .band__text{ max-width: 100%; }
  .band--rechts .band__text{ text-align: left; margin-left: 0; }
}
