/* =====================================================================
   Erdbeer-Feld Wangen - Design-System
   Natürlich · hochwertig · freundlich. Inspiriert vom Stil von agriviva.ch,
   mit eigener Erdbeer-Bildsprache (Rot · Blattgrün · Creme).
   ===================================================================== */

/* ----------------- Schriften (selbst gehostet, DSGVO/DSG-konform) ----------------- */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/raleway-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/raleway-italic-latin.woff2") format("woff2");
}

/* --------------------------- Design Tokens --------------------------- */
:root {
  /* Farben */
  --red: #e63558;
  --red-deep: #c42348;
  --red-soft: #fbe0e6;
  --green: #2e7d4f;
  --green-deep: #1f5e3b;
  --green-soft: #d9efe1;
  --leaf: #6fbf8b;
  --cream: #fff8f3;
  --cream-2: #fdf1e7;
  --sun: #f4c95d;
  --ink: #2a1a1f;
  --ink-soft: #6b5a5f;
  --white: #ffffff;

  /* Typografie */
  --font-display: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Form */
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(42, 26, 31, 0.06);
  --shadow: 0 14px 40px rgba(42, 26, 31, 0.10);
  --shadow-lg: 0 30px 70px rgba(42, 26, 31, 0.16);

  /* Layout */
  --maxw: 1180px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  letter-spacing: -0.006em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* ----------------------------- Helpers ------------------------------ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: clamp(72px, 9vw, 130px);
  position: relative;
}

.section--tint {
  background: var(--cream-2);
}

.section--green {
  background: linear-gradient(160deg, #234e36, var(--green-deep));
  color: #f3fbf5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section--green .eyebrow {
  color: var(--sun);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2.1rem, 4.7vw, 3.6rem);
  max-width: 15ch;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.section-head {
  margin-bottom: clamp(48px, 6vw, 86px);
  max-width: 760px;
}

.section-head .lead {
  margin-top: 22px;
  font-size: 1.22rem;
  line-height: 1.5;
  max-width: 46ch;
  color: var(--ink-soft);
}

.section--green .lead {
  color: rgba(243, 251, 245, 0.82);
}

/* ------------------------------ Buttons ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
  will-change: transform;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(230, 53, 88, 0.32);
}

.btn--primary:hover {
  background: var(--red-deep);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(230, 53, 88, 0.4);
}

.btn--primary:hover svg {
  transform: translateX(4px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1.5px solid rgba(42, 26, 31, 0.12);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn--light {
  background: #fff;
  color: var(--green-deep);
}

.btn--light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ===================================================================
   NAVBAR
   =================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
    height 0.3s var(--ease);
}

.nav.is-scrolled {
  background: rgba(255, 248, 243, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(42, 26, 31, 0.06), var(--shadow-sm);
}

.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand__mark {
  width: 38px;
  height: 38px;
  flex: none;
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__links a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}

.nav__links a:hover,
.nav__links a.is-active {
  background: var(--red-soft);
  color: var(--red-deep);
}

.nav__cta {
  display: inline-flex;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.nav__toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav.is-open .nav__toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav__toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: radial-gradient(120% 90% at 80% 10%, #ffe6ec 0%, var(--cream) 55%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.86rem;
  margin-bottom: 26px;
}

.hero__badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(46, 125, 79, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 125, 79, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(46, 125, 79, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 125, 79, 0);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.hero h1 .accent {
  color: var(--red);
  font-style: italic;
  position: relative;
  white-space: nowrap;
}

.hero__lead {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__stats {
  margin-top: 46px;
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-deep);
  line-height: 1;
}

.hero__stat span {
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* Hero-Illustration */
.hero__art {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero__art-circle {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: linear-gradient(160deg, #ffd0db, #ffe9c9);
  box-shadow: var(--shadow-lg);
}

.hero__art svg {
  position: relative;
  width: 78%;
  filter: drop-shadow(0 24px 30px rgba(196, 35, 72, 0.25));
  animation: float 6s ease-in-out infinite;
}

/* Hero mit echtem Video/Foto */
.hero__art--media {
  aspect-ratio: auto;
  display: block;
}
.hero__video,
.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  background: #ffe3ea;
}

/* ===================================================================
   HERO - Wallpaper mit diagonalem Übergang (agriviva-Stil)
   =================================================================== */
.hero--wallpaper {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/hero.jpg") center 45% / cover no-repeat;
  transform: scale(1.02);
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.12); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(98deg, rgba(28,14,18,0.84) 0%, rgba(28,14,18,0.55) 42%, rgba(28,14,18,0.12) 78%),
    linear-gradient(to top, rgba(28,14,18,0.6) 0%, rgba(28,14,18,0) 42%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 860px;
  padding-top: calc(var(--nav-h) + 4vh);
  padding-bottom: clamp(90px, 11vw, 170px);
}
.hero--wallpaper h1 {
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.hero--wallpaper .hero__lead {
  color: rgba(255, 255, 255, 0.92);
}
.hero--wallpaper .hero__stat strong {
  color: #fff;
}
.hero--wallpaper .hero__stat span {
  color: rgba(255, 255, 255, 0.8);
}
.hero--wallpaper .hero__badge {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}
.hero--wallpaper .btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  backdrop-filter: blur(6px);
}
.hero--wallpaper .btn--ghost:hover {
  background: #fff;
  color: var(--ink);
}
/* Diagonaler 4°-Übergang in die nächste (cremefarbene) Sektion */
.hero__divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  height: calc(100vw * tan(4deg));
  background: var(--cream-2);
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
}

/* Navigation hell, solange über dem dunklen Hero (nicht gescrollt) */
.nav:not(.is-scrolled) .brand {
  color: #fff;
}
.nav:not(.is-scrolled) .brand small {
  color: var(--sun);
}
.nav:not(.is-scrolled) .nav__links a {
  color: rgba(255, 255, 255, 0.9);
}
.nav:not(.is-scrolled) .nav__links a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.nav:not(.is-scrolled) .nav__toggle span {
  background: #fff;
}
/* Im geöffneten Mobile-Menü (cremefarbenes Panel) wieder dunkle Links */
.nav.is-open:not(.is-scrolled) .nav__links a {
  color: var(--ink);
}

/* ===================================================================
   PAGE-HERO - kompaktes Foto-Banner für Unterseiten
   =================================================================== */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(28, 14, 18, 0.82) 0%, rgba(28, 14, 18, 0.4) 60%, rgba(28, 14, 18, 0.15) 100%),
    linear-gradient(to top, rgba(28, 14, 18, 0.7) 0%, rgba(28, 14, 18, 0) 55%);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: calc(var(--nav-h) + 5vh);
  padding-bottom: clamp(54px, 7vw, 96px);
}
.page-hero .eyebrow {
  color: var(--sun);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  max-width: 20ch;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.page-hero p {
  margin-top: 16px;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}
.page-hero__divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  height: calc(100vw * tan(3deg));
  background: var(--cream);
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
}

/* ===================================================================
   SECTION--PHOTO - abgedunkelter Foto-Hintergrund (Kontakt, Newsletter …)
   =================================================================== */
.section--photo {
  position: relative;
  color: #f7f3ee;
  background: var(--ink);
  isolation: isolate;
}
.section--photo .section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.section--photo .section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(20, 10, 13, 0.82) 0%, rgba(20, 10, 13, 0.66) 100%);
}
.section--photo > .container {
  position: relative;
  z-index: 1;
}
.section--photo .section-title {
  color: #fff;
}
.section--photo .eyebrow {
  color: var(--sun);
}
.section--photo .lead,
.section--photo .section-head .lead {
  color: rgba(255, 255, 255, 0.86);
}

/* ===================================================================
   TEASER - "Entdecke mehr" Karten zu den Unterseiten (Startseite)
   =================================================================== */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.teaser-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  color: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.teaser-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s var(--ease);
}
.teaser-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(18, 9, 12, 0.9) 0%, rgba(18, 9, 12, 0.25) 55%, rgba(18, 9, 12, 0.1) 100%);
}
.teaser-card__label {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.teaser-card__label strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
}
.teaser-card__label svg {
  width: 22px;
  height: 22px;
  flex: none;
  transition: transform 0.25s var(--ease);
}
.teaser-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.teaser-card:hover img {
  transform: scale(1.07);
}
.teaser-card:hover .teaser-card__label svg {
  transform: translateX(4px);
}
@media (max-width: 860px) {
  .teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 440px) {
  .teaser-grid {
    grid-template-columns: 1fr;
  }
  .teaser-card {
    aspect-ratio: 16 / 10;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(-2deg);
  }
}

.hero__float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.86rem;
  animation: float 5s ease-in-out infinite;
}

.hero__float .ico {
  font-size: 1.3rem;
}

.hero__float--1 {
  top: 10%;
  left: -4%;
  animation-delay: 0.4s;
}

.hero__float--2 {
  bottom: 12%;
  right: -2%;
  animation-delay: 1.2s;
}

.hero__float small {
  display: block;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

/* Organischer Wellen-Trenner */
.wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
}
.wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================================================
   LIVE-STATUS
   =================================================================== */
.status {
  margin-top: -2px;
}

.status__card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(42, 26, 31, 0.05);
}

.status__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  flex: none;
}

.status__icon.open {
  background: var(--green-soft);
}
.status__icon.closed {
  background: var(--red-soft);
}

.status__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status__label .pip {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.status__label.open {
  color: var(--green);
}
.status__label.open .pip {
  background: var(--green);
  animation: pulse 2s infinite;
}
.status__label.closed {
  color: var(--red);
}
.status__label.closed .pip {
  background: var(--red);
}

.status__headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 4px 0 4px;
}

.status__sub {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.status__channels {
  display: flex;
  gap: 10px;
}

.status__chan {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream-2);
  transition: transform 0.2s, background 0.2s;
}
.status__chan:hover {
  transform: translateY(-3px);
  background: var(--red-soft);
}
.status__chan svg {
  width: 21px;
  height: 21px;
}

/* ===================================================================
   ANGEBOT - Karten
   =================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42, 26, 31, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card__ico {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  background: var(--red-soft);
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.32rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.card__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-soft);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}

/* Saison-Kalender */
.season {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.season__col {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--red);
}
.season__col.autumn {
  border-top-color: var(--sun);
}

.season__col h3 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.season__when {
  font-weight: 700;
  color: var(--red);
  font-size: 0.85rem;
  margin: 4px 0 18px;
}
.season__col.autumn .season__when {
  color: #c79324;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.chip {
  padding: 7px 14px;
  background: var(--cream-2);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Preisliste */
.pricelist {
  margin-top: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(42, 26, 31, 0.05);
}
.pricelist__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 22px;
}
.pricelist__head h3 {
  font-size: 1.5rem;
}
.pricelist__head p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.pricelist__items {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 36px;
}
.pricelist__items li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(42, 26, 31, 0.14);
}
.pricelist__items span {
  font-weight: 600;
}
.pricelist__items b {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--red);
  white-space: nowrap;
}
.pricelist__items b small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 4px;
}
.pricelist__note {
  margin-top: 20px;
  background: var(--green-soft);
  color: var(--green-deep);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
}
@media (max-width: 820px) {
  .pricelist__items {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
  }
}
@media (max-width: 520px) {
  .pricelist__items {
    grid-template-columns: 1fr;
  }
}

/* ===================================================================
   GEFRIERGETROCKNET (grüne Sektion)
   =================================================================== */
.freeze {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.freeze__products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.freeze__prod {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(4px);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.freeze__prod:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}
.freeze__prod .emoji {
  font-size: 2rem;
}
.freeze__prod strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.freeze__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sun);
  color: #4a3410;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  margin: 22px 0;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-list .tick {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sun);
  color: #4a3410;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ===================================================================
   ANREISE / KARTE
   =================================================================== */
.travel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 28px;
}

.travel__photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 320px;
}
.travel__photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.travel__photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
}

.travel__info {
  display: grid;
  gap: 16px;
  align-content: start;
}

.info-row {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.info-row .info-ico {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.info-row h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 3px;
}
.info-row p {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  border: 6px solid #fff;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 408px;
  border: 0;
  display: block;
}

/* ===================================================================
   GESCHICHTE - Timeline
   =================================================================== */
.timeline {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--red), var(--leaf));
  transform: translateX(-50%);
  border-radius: 3px;
}

.tl-item {
  position: relative;
  width: 50%;
  padding: 16px 40px;
}
.tl-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.tl-item:nth-child(even) {
  left: 50%;
}

.tl-item .tl-dot {
  position: absolute;
  top: 24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 2px var(--red);
}
.tl-item:nth-child(odd) .tl-dot {
  right: -9px;
}
.tl-item:nth-child(even) .tl-dot {
  left: -9px;
}

.tl-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.tl-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--red);
  line-height: 1;
}
.tl-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ===================================================================
   REGELN & TIPPS
   =================================================================== */
.rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.panel h3 {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.panel ul {
  list-style: none;
  display: grid;
  gap: 14px;
}
.panel li {
  display: flex;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.panel li b {
  color: var(--ink);
}
.panel .mk {
  flex: none;
  font-size: 1.05rem;
  line-height: 1.5;
}

.notice {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--red-soft);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 24px;
  font-weight: 600;
}
.notice .ico {
  font-size: 1.6rem;
}

/* ===================================================================
   GALERIE
   =================================================================== */
.gallery {
  columns: 3;
  column-gap: 16px;
}
.gallery__item {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__cap {
  position: absolute;
  left: 14px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ===================================================================
   REZEPTE
   =================================================================== */
.recipe-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.filter-chip {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1.5px solid rgba(42, 26, 31, 0.1);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.filter-chip:hover {
  border-color: var(--red);
  color: var(--red);
}
.filter-chip.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.recipe-search {
  position: relative;
}
.recipe-search input {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 18px 12px 44px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(42, 26, 31, 0.1);
  background: #fff;
  width: 260px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.recipe-search input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}
.recipe-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.5;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.recipe-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(42, 26, 31, 0.05);
}
.recipe-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.recipe-card__top {
  height: 120px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--red-soft), #ffe9c9);
  position: relative;
}
.recipe-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.85);
  color: var(--red-deep);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.recipe-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.recipe-card__body h3 {
  font-size: 1.12rem;
  line-height: 1.2;
  font-family: var(--font-display);
}
.recipe-card__meta {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 600;
}
.recipe-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.recipe-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
  grid-column: 1 / -1;
}

/* Rezept-Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open {
  display: flex;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 26, 31, 0.55);
  backdrop-filter: blur(4px);
  animation: fade 0.3s;
}
@keyframes fade {
  from {
    opacity: 0;
  }
}
.modal__box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: pop 0.35s var(--ease);
}
@keyframes pop {
  from {
    transform: translateY(24px) scale(0.97);
    opacity: 0;
  }
}
.modal__hero {
  height: 130px;
  display: grid;
  place-items: center;
  font-size: 3.4rem;
  background: linear-gradient(135deg, var(--red-soft), #ffe9c9);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  transition: transform 0.2s;
}
.modal__close:hover {
  transform: rotate(90deg);
}
.modal__content {
  padding: 28px 30px 34px;
}
.modal__content h3 {
  font-size: 1.7rem;
}
.modal__tags {
  display: flex;
  gap: 14px;
  margin: 12px 0 22px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.88rem;
}
.modal__tags span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.modal h4 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--red);
  margin: 22px 0 12px;
}
.modal ul.ingredients {
  list-style: none;
  display: grid;
  gap: 8px;
}
.modal ul.ingredients li {
  display: flex;
  gap: 10px;
  font-size: 0.96rem;
}
.modal ul.ingredients li::before {
  content: "🍓";
  font-size: 0.8rem;
}
.modal ol.steps {
  display: grid;
  gap: 12px;
  padding-left: 0;
  list-style: none;
  counter-reset: step;
}
.modal ol.steps li {
  display: flex;
  gap: 14px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.modal ol.steps li::before {
  counter-increment: step;
  content: counter(step);
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

/* ===================================================================
   ERDBEERSPIEL
   =================================================================== */
.game {
  max-width: 760px;
  margin-inline: auto;
}
.game__hud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}
.game__stat {
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: 0.9rem;
}
.game__stat span {
  color: var(--red);
}
.game__stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
  background: #ffe3ea;
}
#game-canvas {
  width: 100%;
  height: auto;
  display: block;
}
.game__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 243, 245, 0.92);
  backdrop-filter: blur(3px);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 30px;
  gap: 8px;
  transition: opacity 0.3s;
}
.game__overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.game__overlay h3 {
  font-size: 2rem;
}
.game__overlay p {
  color: var(--ink-soft);
  max-width: 42ch;
  margin-inline: auto;
}
.game__overlay .btn {
  margin-top: 16px;
  justify-self: center;
}

/* ===================================================================
   KONTAKT + NEWSLETTER
   =================================================================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.contact__cards {
  display: grid;
  gap: 16px;
  align-content: start;
}
.contact__card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px;
  border-radius: var(--radius);
}
.contact__card .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex: none;
}
.contact__card small {
  display: block;
  opacity: 0.7;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact__card strong {
  font-size: 1.05rem;
}

.form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.form p.sub {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: 22px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 7px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.96rem;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(42, 26, 31, 0.12);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
  background: #fff;
}
.form__msg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.92rem;
  display: none;
}
.form__msg.is-visible {
  display: block;
  animation: pop 0.3s var(--ease);
}

/* Newsletter-Band (auf Foto-Hintergrund, zentriert) */
.newsletter-band {
  text-align: center;
  color: #fff;
  max-width: 640px;
  margin-inline: auto;
}
.newsletter-band h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  color: #fff;
}
.newsletter-band p {
  max-width: 48ch;
  margin: 14px auto 26px;
  color: rgba(255, 255, 255, 0.9);
}
.newsletter-band form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin-inline: auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-band input[type="email"] {
  flex: 1;
  min-width: 220px;
  font-family: inherit;
  font-size: 0.98rem;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  border: none;
  outline: none;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: #221216;
  color: #f3e7ea;
  padding-top: 70px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer .brand {
  color: #fff;
  margin-bottom: 16px;
}
.footer p {
  color: rgba(243, 231, 234, 0.6);
  font-size: 0.92rem;
  max-width: 32ch;
}
.footer h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--sun);
}
.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer ul a {
  color: rgba(243, 231, 234, 0.7);
  font-size: 0.93rem;
  transition: color 0.2s;
}
.footer ul a:hover {
  color: #fff;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}
.footer__social a:hover {
  background: var(--red);
  transform: translateY(-3px);
}
.footer__social svg {
  width: 18px;
  height: 18px;
}
.footer__pay {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.footer__pay span {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(243, 231, 234, 0.5);
}

/* ===================================================================
   SCROLL-REVEAL
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .hero__grid,
  .freeze,
  .travel,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero__art {
    max-width: 420px;
    margin-inline: auto;
    order: -1;
  }
  .rules {
    grid-template-columns: 1fr;
  }
  .gallery {
    columns: 2;
  }
  .status__card {
    grid-template-columns: auto 1fr;
  }
  .status__channels {
    grid-column: 1 / -1;
    justify-content: center;
  }
  .timeline::before {
    left: 18px;
  }
  .tl-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 50px;
    padding-right: 0;
  }
  .tl-item .tl-dot {
    left: 9px !important;
    right: auto !important;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  /* Ein gemeinsames Dropdown-Panel: Links + CTA gestapelt */
  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 248, 243, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    padding: 16px 24px 22px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.3s var(--ease),
      visibility 0.3s;
    z-index: -1;
  }
  .nav.is-open .nav__menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
  }
  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav__links a {
    padding: 13px 16px;
    font-size: 1rem;
  }
  .nav__cta {
    display: flex;
    margin-top: 12px;
  }
  .nav__cta .btn {
    flex: 1;
    justify-content: center;
  }
  .nav__toggle {
    display: flex;
  }
}

@media (max-width: 620px) {
  .gallery {
    columns: 1;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .recipe-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .recipe-search input {
    width: 100%;
  }
  .hero__stats {
    gap: 24px;
  }
}

/* =====================================================================
   HIGH-END VISUAL LAYER
   Editorial-Luxury-Veredelung: haptische Tiefe, schwebende Insel-Nav,
   Doppelrand-Anmutung, Button-in-Button, Film-Grain, Reveal mit Blur.
   (Vanilla-Override-Schicht, veraendert keine Struktur.)
   ===================================================================== */
:root {
  --radius-lg: 2rem;
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);
}

/* Tastatur-Fokus sichtbar (a11y) */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 6px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* --- Film-Grain (fix, GPU-schonend, pointer-events-none) --- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Schwebende Insel-Navigation (Glass-Pill) --- */
.nav {
  height: auto;
  padding-block: 16px;
  pointer-events: none;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.nav.is-scrolled {
  padding-block: 10px;
}
.nav__inner {
  pointer-events: auto;
  width: max-content;
  max-width: calc(100% - 28px);
  margin-inline: auto;
  gap: 20px;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.72);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(42, 26, 31, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 14px 40px -18px rgba(42, 26, 31, 0.30);
  transition: background 0.5s var(--ease-fluid), box-shadow 0.5s var(--ease-fluid),
    padding 0.4s var(--ease-fluid);
}
.nav.is-scrolled .nav__inner {
  background: rgba(255, 250, 246, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 48px -16px rgba(42, 26, 31, 0.34);
}
/* Pill trägt eigenes Glas → Schrift immer dunkel (Hero-Hell-Overrides aus) */
.nav .brand,
.nav:not(.is-scrolled) .brand {
  color: var(--ink);
}
.nav .brand small,
.nav:not(.is-scrolled) .brand small {
  color: var(--red);
}
.nav__links a,
.nav:not(.is-scrolled) .nav__links a {
  color: var(--ink);
}
.nav__toggle span,
.nav:not(.is-scrolled) .nav__toggle span {
  background: var(--ink);
}

/* --- Button-in-Button + magnetische Haptik --- */
.btn {
  transition: transform 0.4s var(--ease-fluid), background 0.3s var(--ease-fluid),
    box-shadow 0.3s var(--ease-fluid);
}
.btn svg {
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-sizing: border-box;
  transition: transform 0.45s var(--ease-fluid);
}
.btn--ghost svg,
.btn--light svg {
  background: rgba(42, 26, 31, 0.08);
}
.btn:hover svg,
.btn--primary:hover svg {
  transform: translate(3px, -1px) scale(1.06);
}
.btn:active {
  transform: scale(0.985);
}

/* --- Haptische Karten (Doppelrand-Anmutung: Innenkante + diffuser Schatten) --- */
.card,
.pricelist,
.status__card,
.season__col,
.panel,
.info-row,
.form,
.tl-card,
.freeze__prod,
.contact__card,
.map-wrap {
  border: 1px solid rgba(42, 26, 31, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(42, 26, 31, 0.04),
    0 24px 50px -28px rgba(42, 26, 31, 0.26);
}
.card:hover,
.recipe-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 34px 60px -28px rgba(42, 26, 31, 0.34);
}
/* Karten in dunklen Sektionen: Innenkante hell auf Transparenz, kein heller Boden */
.section--green .freeze__prod,
.section--photo .contact__card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}
/* Icon-Kachel als echter Doppelrand (Außenschale + Kern) */
.card__ico {
  border: 1px solid rgba(230, 53, 88, 0.12);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.7),
    inset 0 -2px 6px rgba(230, 53, 88, 0.12);
}

/* --- Eyebrow als Pill-Badge (statt Linie) --- */
.eyebrow {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(230, 53, 88, 0.08);
  border: 1px solid rgba(230, 53, 88, 0.16);
  font-size: 0.72rem;
  margin-bottom: 18px;
}
.eyebrow::before {
  display: none;
}
.section--green .eyebrow,
.section--photo .eyebrow,
.page-hero .eyebrow {
  background: rgba(244, 201, 93, 0.16);
  border-color: rgba(244, 201, 93, 0.32);
  color: var(--sun);
}

/* --- Asymmetrisches Bento für das Angebot (statt 3 gleicher Karten) --- */
@media (min-width: 760px) {
  #angebot .cards {
    grid-template-columns: 1.45fr 1fr;
    grid-auto-rows: 1fr;
    align-items: stretch;
  }
  #angebot .cards .card:first-child {
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(165deg, #ffffff 0%, #ffe7ee 100%);
    padding: 38px;
  }
  #angebot .cards .card:first-child .card__ico {
    width: 72px;
    height: 72px;
    font-size: 2rem;
  }
  #angebot .cards .card:first-child h3 {
    font-size: 1.7rem;
  }
}

/* --- Reveal: schwere Fade-Up mit Blur --- */
.reveal {
  filter: blur(7px);
  transition: opacity 0.85s var(--ease-fluid), transform 0.85s var(--ease-fluid),
    filter 0.85s var(--ease-fluid);
}
.reveal.is-in {
  filter: blur(0);
}

/* --- Mehr Atemraum --- */
.section {
  padding-block: clamp(88px, 10vw, 150px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    filter: none !important;
  }
}

/* Insel-Nav auf Mobile: Pill bleibt kompakt, Dropdown als deckendes Panel darunter */
@media (max-width: 1024px) {
  .nav__menu {
    top: 84px;
    left: 14px;
    right: 14px;
    z-index: 40;
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 246, 0.99) !important;
    box-shadow: 0 24px 60px -20px rgba(42, 26, 31, 0.4);
    border: 1px solid rgba(42, 26, 31, 0.06);
  }
}

/* =====================================================================
   ERDBEER-REGEN (über die ganze "Rund ums Erdbeer-Feld"-Sektion)
   ===================================================================== */
#entdecken {
  overflow: hidden;
}
#entdecken > .container {
  position: relative;
  z-index: 1;
}
.berry-rain {
  position: absolute;
  inset: 0;
  z-index: 4; /* vor dem Inhalt */
  overflow: hidden;
  pointer-events: none;
}
.berry-rain__drop {
  position: absolute;
  top: 0;
  left: var(--x);
  font-size: var(--s, 26px);
  opacity: var(--o, 0.8);
  line-height: 1;
  filter: drop-shadow(0 6px 8px rgba(196, 35, 72, 0.18));
  transform: translateY(-90px);
  animation: berry-fall var(--t, 6s) linear var(--d, 0s) infinite;
  will-change: transform;
}
@keyframes berry-fall {
  0% {
    transform: translateY(-90px) rotate(0deg);
  }
  100% {
    transform: translateY(min(950px, 105vh)) rotate(var(--r, 200deg));
  }
}
@media (prefers-reduced-motion: reduce) {
  .berry-rain {
    display: none; /* kein Regen bei reduzierter Bewegung */
  }
}

/* =====================================================================
   PROSA / RECHTSSEITEN (Impressum, Datenschutz)
   ===================================================================== */
.prose {
  max-width: 760px;
}
.prose > p:first-child {
  font-size: 1.1rem;
  color: var(--ink);
}
.prose h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 40px 0 12px;
}
.prose h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.08rem;
  margin: 26px 0 8px;
}
.prose p,
.prose li {
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.prose ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.prose a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose strong {
  color: var(--ink);
}
.prose .legal-note {
  margin-top: 8px;
  padding: 14px 18px;
  background: var(--cream-2);
  border-radius: var(--radius);
  font-size: 0.92rem;
}

/* Footer-Rechtslinks */
.footer__legal a {
  color: rgba(243, 231, 234, 0.72);
  text-decoration: none;
}
.footer__legal a:hover {
  color: #fff;
  text-decoration: underline;
}

/* =====================================================================
   DYNAMIK-LAYER
   Hero-Entrance-Choreografie, Scroll-Parallax (progressive enhancement),
   Timeline-Draw, Chip-Stagger. Nur transform/opacity, reduced-motion-safe.
   ===================================================================== */

/* --- Hero: gestaffelter Auftritt beim Laden --- */
@media (prefers-reduced-motion: no-preference) {
  .hero__inner > * {
    opacity: 0;
    transform: translateY(26px);
    animation: hero-in 0.9s var(--ease-fluid) forwards;
  }
  .hero__inner > :nth-child(1) { animation-delay: 0.08s; }
  .hero__inner > :nth-child(2) { animation-delay: 0.18s; }
  .hero__inner > :nth-child(3) { animation-delay: 0.3s; }
  .hero__inner > :nth-child(4) { animation-delay: 0.42s; }
  .hero__inner > :nth-child(5) { animation-delay: 0.54s; }
  @keyframes hero-in {
    to { opacity: 1; transform: translateY(0); }
  }
}

/* --- Hero: Inhalt gleitet beim Wegscrollen sanft nach unten weg
       (CSS scroll-driven animation; Browser ohne Support: statisch) --- */
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero--wallpaper .hero__inner {
      animation: hero-in-container 0.01s linear forwards,
        hero-scroll-out linear both;
      animation-timeline: auto, scroll();
      animation-range: normal, 0 90vh;
    }
    @keyframes hero-in-container {
      to { opacity: 1; }
    }
    @keyframes hero-scroll-out {
      to { opacity: 0.05; transform: translateY(64px) scale(0.985); }
    }
  }
}

/* --- Timeline: Linie zeichnet sich beim Scrollen --- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .timeline::before {
      transform-origin: top;
      animation: line-draw linear both;
      animation-timeline: view();
      animation-range: entry 5% cover 80%;
    }
    @keyframes line-draw {
      from { transform: translateX(-50%) scaleY(0); }
      to { transform: translateX(-50%) scaleY(1); }
    }
  }
}

/* --- Saison-Chips: gestaffeltes Aufpoppen --- */
@media (prefers-reduced-motion: no-preference) {
  .reveal .chip {
    opacity: 0;
    transform: scale(0.8) translateY(6px);
  }
  .reveal.is-in .chip {
    animation: chip-pop 0.5s var(--ease-fluid) forwards;
  }
  .reveal.is-in .chip:nth-child(1) { animation-delay: 0.05s; }
  .reveal.is-in .chip:nth-child(2) { animation-delay: 0.1s; }
  .reveal.is-in .chip:nth-child(3) { animation-delay: 0.15s; }
  .reveal.is-in .chip:nth-child(4) { animation-delay: 0.2s; }
  .reveal.is-in .chip:nth-child(5) { animation-delay: 0.25s; }
  .reveal.is-in .chip:nth-child(6) { animation-delay: 0.3s; }
  .reveal.is-in .chip:nth-child(7) { animation-delay: 0.35s; }
  .reveal.is-in .chip:nth-child(8) { animation-delay: 0.4s; }
  .reveal.is-in .chip:nth-child(9) { animation-delay: 0.45s; }
  .reveal.is-in .chip:nth-child(10) { animation-delay: 0.5s; }
  @keyframes chip-pop {
    to { opacity: 1; transform: scale(1) translateY(0); }
  }
}

/* --- Karten-Icons kippen verspielt beim Hover --- */
.card__ico {
  transition: transform 0.45s var(--ease-fluid);
}
.card:hover .card__ico {
  transform: rotate(-6deg) scale(1.1);
}

/* --- Teaser-Bilder entsättigt -> Farbe beim Hover --- */
.teaser-card img {
  filter: saturate(0.85);
}
.teaser-card:hover img {
  filter: saturate(1.1);
}

/* =====================================================================
   WHATSAPP-HINWEIS (Öffnungszeiten) + QUALITAET + SIGNATUR
   ===================================================================== */

/* --- Hinweis-Band unter der Status-Karte --- */
.wa-notice {
  margin-top: 20px;
  background: linear-gradient(135deg, #ffffff 0%, var(--green-soft) 100%);
  border: 1px solid rgba(46, 125, 79, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 44px -30px rgba(31, 94, 59, 0.5);
}
.wa-notice__main {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 340px;
}
.wa-notice__ico {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green-deep);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.wa-notice__ico svg {
  width: 26px;
  height: 26px;
}
.wa-notice h3 {
  font-size: 1.24rem;
  margin-bottom: 5px;
}
.wa-notice p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  max-width: 56ch;
}
.btn--wa {
  background: var(--green-deep);
  color: #fff;
  flex: none;
  box-shadow: 0 12px 26px -12px rgba(31, 94, 59, 0.65);
}
.btn--wa:hover {
  background: #17492d;
  transform: translateY(-3px);
}
.btn--wa svg {
  background: rgba(255, 255, 255, 0.18);
}

/* --- "Warum schmecken unsere Erdbeeren so gut?" --- */
.quality {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}
.quality__intro .lead {
  margin-top: 18px;
  max-width: 34ch;
}
.quality__list {
  list-style: none;
  display: grid;
  gap: 4px;
}
.quality__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 2px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.quality__list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.quality__mark {
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 1.7rem;
  line-height: 1;
}
.quality__list strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  color: #fff;
}
.quality__list span:not(.quality__mark) {
  color: rgba(243, 251, 245, 0.8);
  font-size: 0.98rem;
}

/* --- Persönliche Grussformel --- */
.signature {
  margin: clamp(48px, 6vw, 80px) auto 0;
  max-width: 620px;
  text-align: center;
}
.signature blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
  letter-spacing: -0.02em;
}
.signature figcaption {
  margin-top: 12px;
  font-weight: 600;
  color: var(--sun);
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .quality {
    grid-template-columns: 1fr;
  }
  .wa-notice {
    flex-direction: column;
    align-items: stretch;
  }
  .btn--wa {
    justify-content: center;
  }
}

/* Status-Karte auf schmalen Screens gestapelt (Icon oben, Text volle Breite) */
@media (max-width: 700px) {
  .status__card {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }
  .status__icon {
    width: 58px;
    height: 58px;
    font-size: 1.6rem;
  }
  .status__headline {
    font-size: 1.35rem;
  }
  .status__channels {
    grid-column: auto;
    justify-content: flex-start;
  }
}

/* --- QR-Code im WhatsApp-Hinweis (Desktop: scannen, Mobile: tippen) --- */
.wa-notice__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: none;
}
.wa-qr {
  margin: 0;
  text-align: center;
  padding: 10px 10px 8px;
  background: #fff;
  border: 1px solid rgba(42, 26, 31, 0.08);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 30px -20px rgba(42, 26, 31, 0.4);
}
.wa-qr img {
  width: 132px;
  height: 132px;
  display: block;
}
.wa-qr figcaption {
  margin-top: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  /* Auf kleinen Geräten ist der Button der direkte Weg, QR waere unnoetig */
  .wa-qr {
    display: none;
  }
}

/* =====================================================================
   FEINSCHLIFF: Lesbarkeit + Touch-Ziele
   ===================================================================== */

/* Zeilenlaenge begrenzen (war 99ch bzw. 146ch, unangenehm zu lesen) */
.status__sub {
  max-width: 62ch;
}
.pricelist__note {
  max-width: 78ch;
}
.wa-notice p {
  max-width: 52ch;
}

/* Info-Badges auf Karten etwas groesser (sind Inhalt, nicht Deko) */
.card__tag {
  font-size: 0.74rem;
  padding: 6px 12px;
}

@media (max-width: 900px) {
  /* Footer-Links waren nur 18px hoch, zu klein zum Antippen */
  .footer ul a {
    display: inline-block;
    padding: 9px 0;
  }
  .footer ul {
    gap: 2px;
  }
  .footer__legal a {
    display: inline-block;
    padding: 11px 4px;
  }
  /* Hamburger auf volle 44x44 */
  .nav__toggle {
    padding: 13px 10px;
  }
  /* Filter-Chips bequemer treffen */
  .filter-chip {
    padding: 11px 18px;
  }
  /* Social-Icons im Footer etwas groesser */
  .footer__social a {
    width: 44px;
    height: 44px;
  }
}

/* Aktuell laufende Saison hervorheben */
.season__col.is-aktuell {
  position: relative;
  border-top-width: 5px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 2px rgba(46, 125, 79, 0.28),
    0 26px 54px -30px rgba(31, 94, 59, 0.5);
}
.season__aktuell {
  position: absolute;
  top: -13px;
  right: 22px;
  background: var(--green-deep);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(31, 94, 59, 0.7);
}
