/* ============================================================
   GEMÜSEHOF HOFSTÄTTER — styles.css
   Palette: Feldweiß (#f7f4ee), Salatgrün (#4a7c35),
            Erdbraun (#5c3d1e), Karotte (#e07020), Nacht (#1a1a14)
   Fonts: Zilla Slab (Serif), Inter (Body)
   Struktur: Seite-an-Seite Hero, Farb-Kacheln für Saison,
             breite Betrieb-Absätze, 4-Spalten Lieferung
   ============================================================ */

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

:root {
  --feld:     #f7f4ee;
  --feld2:    #ede9de;
  --gruen:    #4a7c35;
  --gruen2:   #2f5220;
  --gruen-l:  #7eb86a;
  --erde:     #5c3d1e;
  --karotte:  #e07020;
  --nacht:    #1a1a14;
  --text:     #2a2a1e;
  --muted:    #6a6a54;
  --white:    #ffffff;
  --radius:   3px;
  --shadow:   0 4px 24px rgba(42,42,30,0.10);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--feld);
  color: var(--text);
  padding-bottom: 56px;
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 3px solid var(--gruen);
  box-shadow: 0 2px 12px rgba(42,42,30,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--nacht);
}
.logo-mark {
  width: 192px; height: 104px;
  background: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px 6px;
}
.logo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.logo-main {
  display: block;
  font-family: 'Zilla Slab', serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--nacht);
}
.logo-sub {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-nav { display: flex; gap: 0; }
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: color 0.18s, background 0.18s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--gruen2); background: rgba(74,124,53,0.08); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--nacht); border-radius: 2px; }

/* ── HERO SPLIT ─────────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 88vh;
}
.hs-img {
  position: relative;
  background: linear-gradient(160deg, #2f5220 0%, #4a7c35 50%, #6aab50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hs-img-inner {
  font-size: 14rem;
  color: rgba(255,255,255,0.07);
  user-select: none;
}
.hs-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hs-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
}
.hs-text {
  background: var(--feld);
  padding: 4rem 3rem 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.overline {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gruen);
  margin-bottom: 0.9rem;
}
.hs-text h1 {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--nacht);
  margin-bottom: 1.2rem;
}
.hs-text h1 em { font-style: italic; color: var(--gruen); }
.hs-text p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.hs-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--feld2);
}
.hs-meta-item { display: flex; flex-direction: column; gap: 0.1rem; }
.hs-meta-item strong { font-family: 'Zilla Slab', serif; font-size: 1.3rem; color: var(--gruen2); }
.hs-meta-item span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }
.hs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gruen2);
  color: var(--white);
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 600;
  width: fit-content;
  transition: background 0.2s;
}
.hs-btn:hover { background: var(--gruen); }

/* ── SAISON-GRID ─────────────────────────────────────────── */
.section-saison {
  background: var(--nacht);
  padding: 5rem 2rem;
}
.saison-inner { max-width: 1200px; margin: 0 auto; }
.saison-head {
  margin-bottom: 2.5rem;
}
.saison-head .overline { color: var(--gruen-l); }
.saison-head h2 {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.saison-hint {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.saison-hint i { color: var(--gruen-l); }
.saison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
}
.sg-item {
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: filter 0.2s;
}
.sg-item:hover { filter: brightness(1.12); }
.sg-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.sg-photo {
  margin: -1.8rem -1.5rem 1rem;
  height: 130px;
  overflow: hidden;
}
.sg-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.sg-item:hover .sg-photo img { transform: scale(1.05); }
.sg-item h3 { font-family: 'Zilla Slab', serif; font-size: 1.1rem; line-height: 1.2; }
.sg-item p  { font-size: 0.8rem; line-height: 1.6; flex: 1; }
.sg-avail {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  width: fit-content;
}
.sg-avail--ja   { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.sg-avail--bald { background: rgba(224,112,32,0.25); color: #f0a060; }

/* Farben der Kacheln */
.sg-green  { background: #2d5a20; color: #c8e8b8; }
.sg-green  .sg-icon { color: #80c860; }
.sg-red    { background: #5a1a10; color: #f0b8a8; }
.sg-red    .sg-icon { color: #e05040; }
.sg-purple { background: #2a1a40; color: #c8b8e8; }
.sg-purple .sg-icon { color: #9070d0; }
.sg-yellow { background: #4a3808; color: #f0e098; }
.sg-yellow .sg-icon { color: #d0a820; }
.sg-dark   { background: #1a2a1a; color: #a8d0a0; }
.sg-dark   .sg-icon { color: #60a850; }
.sg-pale   { background: #1e2e14; color: #b8d8a0; }
.sg-pale   .sg-icon { color: #78c050; }
.sg-orange { background: #3c2008; color: #f0c898; }
.sg-orange .sg-icon { color: #d07030; }
.sg-teal   { background: #0c2c28; color: #98d8c8; }
.sg-teal   .sg-icon { color: #40b8a0; }

/* ── BETRIEB ─────────────────────────────────────────────── */
.section-betrieb { background: var(--feld); }
.betrieb-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  border-bottom: 1px solid var(--feld2);
}
.betrieb-row--rev .betrieb-img  { order: 2; }
.betrieb-row--rev .betrieb-text { order: 1; }
.betrieb-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--gruen2), var(--gruen));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(255,255,255,0.12);
  overflow: hidden;
}
.betrieb-img-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.betrieb-text h2 {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  color: var(--nacht);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.betrieb-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.betrieb-liste {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.betrieb-liste li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text);
}
.betrieb-liste li i { color: var(--gruen); margin-top: 0.15rem; flex-shrink: 0; }

/* ── LIEFERUNG ───────────────────────────────────────────── */
.section-lieferung {
  background: var(--feld2);
  padding: 5rem 2rem;
}
.lieferung-inner { max-width: 1200px; margin: 0 auto; }
.lieferung-head { margin-bottom: 3rem; }
.lieferung-head h2 {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  color: var(--nacht);
}
.lieferung-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.lk-col {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--gruen);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lk-col:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(42,42,30,0.14); }
.lk-icon {
  width: 44px; height: 44px;
  background: rgba(74,124,53,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gruen);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.lk-col h3 {
  font-family: 'Zilla Slab', serif;
  font-size: 1.05rem;
  color: var(--nacht);
  margin-bottom: 0.6rem;
}
.lk-col p { font-size: 0.87rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.5rem; }
.lk-addr { font-size: 0.8rem !important; color: var(--gruen) !important; display: flex; align-items: flex-start; gap: 0.4rem; }
.lk-addr i { margin-top: 0.15rem; flex-shrink: 0; }

/* ── KONTAKT ─────────────────────────────────────────────── */
.section-kontakt { background: var(--feld); padding: 5rem 2rem; }
.kontakt-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.kontakt-left h2 {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  color: var(--nacht);
  margin-bottom: 1.5rem;
}
.k-daten { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.k-daten p { display: flex; align-items: center; gap: 0.75rem; font-size: 0.92rem; color: var(--text); }
.k-daten i { color: var(--gruen); width: 16px; flex-shrink: 0; }
.k-daten a { color: var(--text); text-decoration: none; }
.k-daten a:hover { color: var(--gruen); }
.k-zeiten h4 {
  font-family: 'Zilla Slab', serif;
  font-size: 0.92rem;
  color: var(--erde);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.k-zeiten table { border-collapse: collapse; width: 100%; }
.k-zeiten td { padding: 0.45rem 0; font-size: 0.88rem; color: var(--muted); border-bottom: 1px solid var(--feld2); }
.k-zeiten td:last-child { text-align: right; font-weight: 600; color: var(--text); }
.kontakt-form { display: flex; flex-direction: column; gap: 1rem; }
.kf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.kf-group { display: flex; flex-direction: column; gap: 0.3rem; }
.kf-group label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--erde);
}
.kf-group input,
.kf-group select,
.kf-group textarea {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(92,61,30,0.18);
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.kf-group input:focus,
.kf-group select:focus,
.kf-group textarea:focus { border-color: var(--gruen); }
.kf-btn {
  background: var(--gruen2);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  transition: background 0.2s;
}
.kf-btn:hover { background: var(--gruen); }

/* ── ABO ─────────────────────────────────────────────────── */
.section-abo {
  background: var(--gruen2);
  padding: 5rem 2rem;
}
.abo-inner { max-width: 1100px; margin: 0 auto; }
.abo-head { margin-bottom: 3rem; }
.abo-head .overline { color: var(--gruen-l); }
.abo-head h2 {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.abo-lead {
  max-width: 700px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}
.abo-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.abo-tier {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: calc(var(--radius) + 2px);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background 0.2s;
}
.abo-tier:hover { background: rgba(255,255,255,0.09); }
.abo-tier--featured {
  background: var(--karotte);
  border-color: transparent;
}
.abo-tier--featured:hover { background: #ea7a28; }
.abo-tier-badge {
  position: absolute;
  top: -12px; left: 1.75rem;
  background: var(--white);
  color: var(--karotte);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
}
.abo-tier-label {
  font-family: 'Zilla Slab', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.abo-tier-for {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.abo-tier--featured .abo-tier-for { color: rgba(255,255,255,0.7); }
.abo-tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.abo-tier-price strong {
  font-family: 'Zilla Slab', serif;
  font-size: 2rem;
  color: var(--white);
}
.abo-tier-price span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.abo-tier--featured .abo-tier-price span { color: rgba(255,255,255,0.65); }
.abo-tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  margin-bottom: 1.5rem;
}
.abo-tier-list li {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.abo-tier-list i { color: var(--gruen-l); margin-top: 0.15rem; flex-shrink: 0; }
.abo-tier--featured .abo-tier-list i { color: rgba(255,255,255,0.9); }
.abo-tier-delivery {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.abo-tier-delivery i { flex-shrink: 0; color: var(--gruen-l); }
.abo-tier--featured .abo-tier-delivery { color: rgba(255,255,255,0.65); }
.abo-tier--featured .abo-tier-delivery i { color: rgba(255,255,255,0.8); }
.abo-btn {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 600;
  transition: background 0.2s;
}
.abo-btn:hover { background: rgba(255,255,255,0.22); }
.abo-tier--featured .abo-btn { background: rgba(0,0,0,0.18); }
.abo-tier--featured .abo-btn:hover { background: rgba(0,0,0,0.28); }
.abo-hinweis {
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.abo-hinweis > i { color: var(--gruen-l); font-size: 1rem; margin-top: 0.2rem; flex-shrink: 0; }
.abo-hinweis p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.8; }

/* lk-more link in Lieferung card */
.lk-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gruen);
  text-decoration: none;
}
.lk-more:hover { color: var(--gruen2); }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--gruen2); padding: 1.75rem 2rem; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-name { font-family: 'Zilla Slab', serif; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.footer-links { display: flex; gap: 0.75rem; align-items: center; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-links span { color: rgba(255,255,255,0.2); }
.footer-copy { font-size: 0.77rem; color: rgba(255,255,255,0.4); }
.footer-copy a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-copy a:hover { color: var(--white); }

/* ── DISCLAIMER ──────────────────────────────────────────── */
.escape-disclaimer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(15,20,10,0.92);
  backdrop-filter: blur(4px);
}
.escape-disclaimer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.escape-disclaimer__inner a { color: rgba(255,255,255,0.85); }
.escape-disclaimer__inner strong { color: var(--white); }

/* ── FADE-IN ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .saison-grid { grid-template-columns: repeat(4, 1fr); }
  .betrieb-row { gap: 3rem; }
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hs-img { min-height: 50vw; }
  .hs-text { padding: 3rem 2rem; }
  .saison-grid { grid-template-columns: repeat(2, 1fr); }
  .betrieb-row { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 2rem; }
  .betrieb-row--rev .betrieb-img,
  .betrieb-row--rev .betrieb-text { order: unset; }
  .lieferung-cols { grid-template-columns: 1fr 1fr; }
  .abo-tiers { grid-template-columns: 1fr; max-width: 460px; }
  .kontakt-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 120px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--gruen);
    padding: 0.75rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  }
  .site-nav.open { display: flex; }
  .burger { display: flex; }
  .saison-grid { grid-template-columns: 1fr 1fr; }
  .lieferung-cols { grid-template-columns: 1fr; }
  .kf-row { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .saison-grid { grid-template-columns: 1fr; }
}
