@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ============================================================
   CSS-VARIABLEN
   ============================================================ */

:root {
  --waldgruen:          #2d5a30;
  --wiesengruen:        #5a8f50;
  --herbstgold:         #c8a96e;
  --leinenweiss:        #f5f0e8;
  --hellsalbei:         #eaf2e4;
  --dunkelerde:         #1c2b1d;
  --hellerde:           #e0d8cc;
  --text-mittel:        #555;
  --text-leicht:        #888;
  --text-noch-leichter: #aaa;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--leinenweiss);
  color: var(--dunkelerde);
  font-size: 15px;
  line-height: 1.65;
}

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

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

h1 { font-size: 52px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: #eaf2e4;
}

.section--dark {
  background: #1c2b1d;
  color: white;
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #1c2b1d;
}

.section--dark .section__title {
  color: white;
}

.section__link {
  color: #5a8f50;
  font-size: 13px;
}

/* ============================================================
   PAGE HEADER (Unterseiten)
   ============================================================ */

.page-header {
  background: linear-gradient(135deg, #1c3a1e 0%, #2d5a30 60%, #3d6a40 100%);
  padding: 60px 0;
}

.page-header__eyebrow {
  color: #c8a96e;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.page-header__title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: white;
}

.page-header__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin-top: 12px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  background: #2d5a30;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.3s;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.nav__brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.nav__logo {
  height: 42px;
  width: auto;
}

.nav__name {
  display: block;
  color: white;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.nav__sub {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav__links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 3px;
  transition: color 0.2s;
  display: block;
}

.nav__links a:hover {
  color: white;
}

.nav__links a.active {
  color: white;
  font-weight: 600;
}

.nav__cta {
  background: #c8a96e !important;
  color: white !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.nav__cta:hover {
  background: #b8956a !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  line-height: 1;
}

.btn--gold {
  background: #c8a96e;
  color: white;
}

.btn--gold:hover {
  background: #b8956a;
}

.btn--green {
  background: #2d5a30;
  color: white;
}

.btn--green:hover {
  background: #3a6e3d;
}

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: white;
  background: transparent;
}

.btn--outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.btn--outline-dark {
  border: 1.5px solid #2d5a30;
  color: #2d5a30;
  background: transparent;
}

.btn--outline-dark:hover {
  background: #2d5a30;
  color: white;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 12px;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 520px;
  background: linear-gradient(160deg, #1c3a1e 0%, #2d5a30 30%, #4a7a3a 60%, #6b9a50 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 80% 40%, rgba(107, 154, 80, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(45, 90, 48, 0.6) 0%, transparent 50%),
    linear-gradient(to right, rgba(28, 43, 29, 0.75) 0%, rgba(28, 43, 29, 0.1) 60%, transparent 100%);
}

.hero__split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 0 70px;
}

.hero__logo-wrap {
  flex-shrink: 0;
}

.hero__logo-img {
  width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 0 0 70px;
  max-width: 560px;
}

.hero__eyebrow {
  color: #c8a96e;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.hero__title {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 420px;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   EVENT BANNER
   ============================================================ */

.event-banner {
  background: #1c2b1d;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
}

.event-banner__label {
  color: #c8a96e;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 24px;
  flex-shrink: 0;
}

.event-banner__list {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
}

.event-banner__item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.event-banner__date {
  color: #c8a96e;
  font-size: 11px;
}

.event-banner__all {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  margin-left: 24px;
  flex-shrink: 0;
}

/* ============================================================
   QUICKLINKS
   ============================================================ */

.quicklinks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #e0d8cc;
}

.quicklink {
  background: white;
  padding: 28px 24px;
  border-right: 1px solid #e8e0d4;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  display: block;
  color: inherit;
  text-decoration: none;
}

.quicklink:last-child {
  border-right: none;
}

.quicklink:hover {
  background: #eaf2e4;
}

.quicklink__icon {
  font-size: 32px;
  color: var(--waldgruen);
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.quicklink__title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: bold;
  color: #1c2b1d;
  margin-bottom: 4px;
  display: block;
}

.quicklink__desc {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}

/* ============================================================
   CARDS
   ============================================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-grid--featured {
  grid-template-columns: 2fr 1fr 1fr;
}

.card {
  background: white;
  border-radius: 8px;
  border: 1px solid #e8e0d4;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.card--highlight {
  background: #2d5a30;
  border-color: #2d5a30;
}

.card__img {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #3d6a40, #6b9a50);
  flex-shrink: 0;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--featured .card__img {
  height: 240px;
}

.card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__tag {
  font-size: 10px;
  color: #c8a96e;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 7px;
}

.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #1c2b1d;
  line-height: 1.3;
  margin-bottom: 8px;
}

.card__title--lg {
  font-size: 22px;
}

.card--highlight .card__title {
  color: white;
}

.card__excerpt {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  flex: 1;
}

.card--highlight .card__excerpt {
  color: rgba(255, 255, 255, 0.7);
}

.card__date {
  font-size: 11px;
  color: #aaa;
  margin-top: 12px;
  display: block;
}

.card--highlight .card__date {
  color: rgba(255, 255, 255, 0.4);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2d5a30;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

.card--highlight .card__link {
  color: #c8a96e;
}

/* ============================================================
   TERMIN CARDS
   ============================================================ */

.termine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.termin-card {
  background: white;
  border-radius: 8px;
  padding: 22px;
  border: 1px solid #d5e8cc;
  border-left: 4px solid #c8a96e;
}

.termin-card--highlight {
  background: #2d5a30;
  border-color: #2d5a30;
  border-left-color: #c8a96e;
}

.termin-card__date {
  font-size: 11px;
  color: #c8a96e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.termin-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: bold;
  color: #1c2b1d;
  line-height: 1.3;
  margin-bottom: 6px;
  display: block;
}

.termin-card--highlight .termin-card__title {
  color: white;
}

.termin-card__loc {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.termin-card--highlight .termin-card__loc {
  color: rgba(255, 255, 255, 0.6);
}

.termin-card__cat {
  display: inline-block;
  background: #eaf2e4;
  color: #3d6a40;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
}

.termin-card--highlight .termin-card__cat {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   WISSEN TEASER
   ============================================================ */

.wissen-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.wissen-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wissen-item {
  background: white;
  border: 1px solid #e8e0d4;
  border-radius: 6px;
  padding: 14px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  color: inherit;
}

.wissen-item:hover {
  border-color: #5a8f50;
  background: #f8fdf5;
}

.wissen-item__icon {
  width: 36px;
  height: 36px;
  background: #eaf2e4;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #2d5a30;
  font-size: 13px;
}

.wissen-item__title {
  font-size: 14px;
  font-weight: 600;
  color: #1c2b1d;
  display: block;
  margin-bottom: 2px;
}

.wissen-item__desc {
  font-size: 12px;
  color: #999;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #1c2b1d;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer__logo {
  height: 36px;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-top: 12px;
}

.footer__col h4 {
  color: white;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  font-family: 'Lato', sans-serif;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   FORMS
   ============================================================ */

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1c2b1d;
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d0c8bc;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--dunkelerde);
  appearance: none;
}

.form-control:focus {
  border-color: #2d5a30;
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 90, 48, 0.1);
}

.form-control.error {
  border-color: #c0392b;
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.form-error {
  color: #c0392b;
  font-size: 12px;
  margin-top: 4px;
}

.form-success {
  background: #eaf2e4;
  color: #2d5a30;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ============================================================
   TIMELINE
   ============================================================ */

.timeline {
  position: relative;
  padding-left: 36px;
  max-width: 700px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #c8a96e, #5a8f50);
}

.timeline__item {
  position: relative;
  padding-bottom: 28px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2d5a30;
  border: 2px solid #c8a96e;
}

.timeline__year {
  font-size: 11px;
  color: #c8a96e;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.timeline__name {
  font-size: 16px;
  font-weight: 600;
  color: #1c2b1d;
  display: block;
  font-family: 'Playfair Display', serif;
  margin-bottom: 4px;
}

.timeline__desc {
  font-size: 13px;
  color: #888;
}

/* ============================================================
   ACCORDION
   ============================================================ */

.accordion {
  margin-top: 16px;
}

.accordion__item {
  border: 1px solid #e8e0d4;
  border-radius: 6px;
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion__trigger {
  width: 100%;
  padding: 16px 20px;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #1c2b1d;
  font-family: 'Playfair Display', serif;
  transition: background 0.2s;
}

.accordion__trigger:hover {
  background: #f5f0e8;
}

.accordion__trigger[aria-expanded="true"] {
  background: #eaf2e4;
  color: #2d5a30;
}

.accordion__icon {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
  flex-shrink: 0;
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
}

.accordion__content {
  display: none;
  padding: 20px;
  background: white;
  border-top: 1px solid #e8e0d4;
}

.accordion__content.open {
  display: block;
}

.accordion__content p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.accordion__content h5 {
  font-size: 14px;
  font-weight: 600;
  color: #2d5a30;
  margin: 16px 0 8px;
}

.accordion__content ul {
  margin-left: 20px;
  margin-bottom: 12px;
}

.accordion__content li {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}

/* ============================================================
   FILTER BAR
   ============================================================ */

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid #c8a96e;
  background: white;
  color: #1c2b1d;
  cursor: pointer;
  font-size: 13px;
  font-family: 'Lato', sans-serif;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: #eaf2e4;
}

.filter-btn.active {
  background: #2d5a30;
  color: white;
  border-color: #2d5a30;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-grid {
  columns: 4;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item__caption {
  opacity: 1;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: white;
  font-size: 28px;
  padding: 16px 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
  line-height: 1;
}

.lightbox__nav--prev {
  left: 16px;
}

.lightbox__nav--next {
  right: 16px;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* ============================================================
   SEASON CALENDAR
   ============================================================ */

.season-cal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.season-month {
  background: white;
  border: 1px solid #e8e0d4;
  border-radius: 6px;
  padding: 14px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.season-month:hover {
  border-color: #5a8f50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.season-month.active {
  background: #eaf2e4;
  border-color: #2d5a30;
}

.season-month__name {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}

.season-month__items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.season-month__item {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 3px;
}

.season-month__item--bloom {
  background: #fdf3e3;
  color: #c8a96e;
}

.season-month__item--harvest {
  background: #eaf2e4;
  color: #2d5a30;
}

.season-month__item--prune {
  background: #e8eef8;
  color: #4a6a9a;
}

.season-month__item--default {
  background: #f0ebe0;
  color: #555;
}

.season-detail {
  background: white;
  border: 1px solid #e8e0d4;
  border-radius: 8px;
  padding: 24px;
  margin-top: 16px;
  display: none;
}

.season-detail.open {
  display: block;
}

/* ============================================================
   RECIPE CARDS
   ============================================================ */

.recipe-card {
  background: white;
  border-radius: 8px;
  border: 1px solid #e8e0d4;
  overflow: hidden;
}

.recipe-card__header {
  height: 140px;
  background: linear-gradient(135deg, #3d6a40, #c8a96e 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.recipe-card__header h2 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  text-align: center;
  line-height: 1.2;
}

.recipe-card__body {
  padding: 24px;
}

.recipe-card__story {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  border-left: 3px solid #c8a96e;
  padding-left: 14px;
}

.recipe-ingredients h4,
.recipe-steps h4 {
  font-size: 12px;
  font-weight: 600;
  color: #2d5a30;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Lato', sans-serif;
}

.recipe-ingredients ul {
  list-style: none;
  margin-bottom: 24px;
}

.recipe-ingredients li {
  font-size: 13px;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px solid #f0ebe0;
}

.recipe-steps ol {
  padding-left: 20px;
}

.recipe-steps li {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 8px;
}

.recipe-print-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d5a30;
  font-size: 13px;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 16px;
  padding: 0;
  font-family: 'Lato', sans-serif;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1c2b1d;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner__text a {
  color: #c8a96e;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-center {
  text-align: center;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c8a96e;
  display: block;
  margin-bottom: 12px;
}

.lead {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }

.prose p {
  margin-bottom: 16px;
  color: #555;
  line-height: 1.75;
}

.prose h3 {
  margin: 28px 0 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-tile {
  background: white;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid #e8e0d4;
  border-top: 3px solid #c8a96e;
}

.value-tile__icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.value-tile__title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: bold;
  color: #1c2b1d;
  margin-bottom: 6px;
  display: block;
}

.value-tile__desc {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

.download-list {
  list-style: none;
}

.download-item {
  background: white;
  border: 1px solid #e8e0d4;
  border-radius: 6px;
  padding: 14px 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.download-item__icon {
  font-size: 24px;
  color: #2d5a30;
  flex-shrink: 0;
}

.download-item__name {
  font-size: 14px;
  font-weight: 600;
  color: #1c2b1d;
  display: block;
}

.download-item__meta {
  font-size: 12px;
  color: #888;
}

/* ============================================================
   RESPONSIVE — max-width: 768px
   ============================================================ */

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Navigation */
  .nav__links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #2d5a30;
    flex-direction: column;
    padding: 20px;
    display: none;
    z-index: 199;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 400px;
    align-items: center;
    text-align: center;
  }

  .hero__split {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 0 0 48px;
  }

  .hero__logo-img {
    width: 160px;
  }

  .hero__inner {
    max-width: 100%;
    padding: 0;
  }

  .hero__btns {
    justify-content: center;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  /* Quicklinks */
  .quicklinks {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Cards */
  .cards-grid,
  .cards-grid--featured {
    grid-template-columns: 1fr;
  }

  .cards-grid--2 {
    grid-template-columns: 1fr;
  }

  /* Termine */
  .termine-grid {
    grid-template-columns: 1fr;
  }

  /* Wissen */
  .wissen-teaser {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer__bottom {
    padding: 16px 20px;
  }

  /* Event Banner */
  .event-banner {
    height: auto;
    padding: 12px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .event-banner__list {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Season Calendar */
  .season-cal {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Gallery */
  .gallery-grid {
    columns: 2;
  }

  /* Page Header */
  .page-header {
    padding: 40px 0;
  }

  .page-header__title {
    font-size: 32px;
  }

  /* Section */
  .section {
    padding: 52px 0;
  }

  /* Cookie Banner */
  .cookie-banner {
    padding: 14px 20px;
    flex-direction: column;
    gap: 12px;
  }

  /* Values */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Timeline */
  .timeline {
    padding-left: 28px;
  }
}

/* ============================================================
   RESPONSIVE — max-width: 480px
   ============================================================ */

@media (max-width: 480px) {
  .season-cal {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    columns: 1;
  }

  .quicklinks {
    grid-template-columns: 1fr 1fr;
  }

  .hero__title {
    font-size: 28px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  .nav,
  .event-banner,
  .quicklinks,
  .footer,
  .cookie-banner,
  .filter-bar,
  .lightbox {
    display: none !important;
  }

  body {
    background: white;
  }

  .recipe-card {
    border: none;
    page-break-inside: avoid;
  }
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
}

.faq-accordion details {
  border: 1px solid rgba(45,90,48,0.2);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.faq-accordion details[open] {
  border-color: var(--waldgruen);
}

.faq-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--dunkelerde);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 16px;
}

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

.faq-accordion summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--waldgruen);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-accordion details[open] summary::after {
  content: '−';
}

.faq-accordion summary:hover {
  background: rgba(45,90,48,0.04);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  color: var(--dunkelerde);
  font-size: 15px;
  line-height: 1.65;
}

.faq-accordion details[open] .faq-answer {
  max-height: 400px;
  padding: 0 20px 16px;
}
