/* ==========================================================================
   Sunnehof Mettmenstetten – Designsystem
   Farm-to-table · warm · natürlich · Schweizer Zurückhaltung
   Selbst gehostet, keine externen Requests. Mobile first.
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Farbwelt */
  --creme:        #FBF7EF;   /* Primär: warmes Off-White */
  --creme-2:      #FFFDF8;   /* helles Karten-Weiss */
  --creme-3:      #F2EADC;   /* sanftes Beige */
  --sand:         #E7DCC6;   /* Beige / Erde hell */
  --erde:         #9C8768;   /* Erdton */

  --gruen:        #274232;   /* Sekundär: dunkles natürliches Grün */
  --gruen-tief:   #1C3325;   /* fast schwarzgrün */
  --gruen-hell:   #6E8B62;   /* helles Blattgrün */
  --gruen-blass:  #DCE6D2;   /* zartes Grün */

  --rot:          #C43A31;   /* Akzent: Erdbeerrot */
  --rot-tief:     #A32A22;
  --rot-blass:    #F6E0DC;

  --amber:        #E0A73B;   /* Reife / Sonne */

  --text:         #24291F;   /* fast schwarz, warm */
  --text-soft:    #55574D;   /* gedämpft */
  --text-mute:    #7C7E72;   /* leise */
  --linie:        #E3D9C7;   /* Trennlinien */

  --ok:           #4C8C3F;   /* Status offen */
  --zu:           #9A9488;   /* Status zu */
  --warn:         #D8892B;   /* Status Hinweis */

  /* Typografie */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Fluid Type Scale */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --fs-lg:   clamp(1.125rem, 1.05rem + 0.4vw, 1.3rem);
  --fs-xl:   clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
  --fs-2xl:  clamp(1.9rem, 1.5rem + 2vw, 2.9rem);
  --fs-3xl:  clamp(2.4rem, 1.7rem + 3.4vw, 4.2rem);

  /* Raster & Rhythmus */
  --wrap:   1180px;
  --wrap-n: 820px;
  --gap:    clamp(1rem, 0.6rem + 2vw, 2rem);
  --sp:     clamp(3.5rem, 2rem + 6vw, 7rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(40,35,20,.04), 0 8px 30px rgba(40,35,20,.06);
  --shadow-lg: 0 4px 12px rgba(40,35,20,.06), 0 24px 60px rgba(40,35,20,.10);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset-Ergänzungen ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { max-width: 100%; display: block; height: auto; }
a { color: var(--gruen); text-underline-offset: 3px; }
a:hover { color: var(--rot); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; color: var(--gruen-tief); letter-spacing: -0.01em; margin: 0 0 .5em; }
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
p { margin: 0 0 1em; }

:focus-visible { outline: 3px solid var(--gruen-hell); outline-offset: 2px; border-radius: 4px; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 5vw, 2.5rem); }
.wrap--narrow { max-width: var(--wrap-n); }
.section { padding-block: var(--sp); }
.center { text-align: center; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--gruen); color: #fff; padding: .7rem 1.1rem; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color: #fff; }

.eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: var(--fs-xs);
  letter-spacing: .16em; text-transform: uppercase; color: var(--rot);
  margin: 0 0 .9rem; display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--rot); display: inline-block; }
.center .eyebrow { justify-content: center; }
.lead { font-size: var(--fs-lg); color: var(--text-soft); max-width: 62ch; }
.center .lead { margin-inline: auto; }
.muted { color: var(--text-mute); font-size: var(--fs-sm); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gruen); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-weight: 650; font-size: var(--fs-sm);
  line-height: 1; padding: .95rem 1.5rem; border-radius: 100px;
  background: var(--bg); color: var(--fg); border: 2px solid var(--bg);
  cursor: pointer; text-decoration: none; transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { color: var(--fg); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--accent { --bg: var(--rot); }
.btn--accent:hover { --bg: var(--rot-tief); }
.btn--ghost { --bg: transparent; --fg: var(--gruen); border-color: var(--gruen); }
.btn--ghost:hover { --fg: #fff; background: var(--gruen); }
.btn--light { --bg: rgba(255,255,255,.18); --fg: #fff; border-color: rgba(255,255,255,.55); }
.btn--light:hover { --bg: #fff; --fg: var(--gruen-tief); border-color:#fff; }
.btn--sm { padding: .6rem 1rem; font-size: var(--fs-xs); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.center .btn-row { justify-content: center; }

/* ==========================================================================
   Kopfnavigation
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,239,.97);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-stuck { border-color: var(--linie); box-shadow: 0 6px 24px rgba(40,35,20,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--gruen-tief); font-family: var(--serif); font-weight: 600; font-size: 1.35rem; letter-spacing: -.01em; }
.brand:hover { color: var(--gruen-tief); }
.brand svg { flex: none; }
.brand small { display: block; font-family: var(--sans); font-weight: 600; font-size: .62rem; letter-spacing: .17em; text-transform: uppercase; color: var(--text-mute); margin-top: 1px; }

.nav-links { display: flex; align-items: center; flex-wrap: nowrap; gap: .1rem; list-style: none; margin: 0; padding: 0; }
.nav-links li { flex: none; }
.nav-links a {
  display: inline-block; padding: .55rem .7rem; border-radius: 8px; white-space: nowrap;
  font-size: var(--fs-sm); font-weight: 600; color: var(--text-soft); text-decoration: none;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gruen-tief); background: var(--creme-3); }
/* CTA-Button in der Linkliste behält seine weisse Schrift (nicht die dunkle Link-Farbe) */
.nav-links a.btn, .nav-links a.btn:hover { color: #fff; background: var(--rot); }
.nav-links a.btn:hover { background: var(--rot-tief); }
/* Auf Desktop nur der Button in .nav-cta – das Listen-Duplikat ist fürs mobile Menü */
.nav-links > li:last-child { display: none; }
.nav-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .5rem;
  color: var(--gruen-tief); border-radius: 8px;
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1040px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav[data-open="true"] .nav-links {
    display: flex; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .1rem;
    background: var(--creme-2); border-bottom: 1px solid var(--linie);
    padding: .8rem clamp(1.1rem, 5vw, 2.5rem) 1.4rem; box-shadow: var(--shadow-lg);
  }
  .nav[data-open="true"] .nav-links a { padding: .85rem .8rem; font-size: 1.05rem; }
  .nav[data-open="true"] .nav-links > li:last-child { display: block; margin-top: .6rem; }
  .nav[data-open="true"] .nav-links .btn { display: inline-flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; isolation: isolate; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(20,30,20,.78) 0%, rgba(20,30,20,.32) 45%, rgba(20,30,20,.30) 100%),
    linear-gradient(to right, rgba(20,30,20,.45), rgba(20,30,20,0) 60%);
}
.hero__inner { padding-block: clamp(3.5rem, 8vw, 7rem); min-height: min(84vh, 760px); display: flex; flex-direction: column; justify-content: flex-end; }
.hero__tag { font-family: var(--sans); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; font-size: var(--fs-xs); color: #fff; opacity: .92; margin-bottom: 1.1rem; display: flex; align-items: center; gap: .6rem; }
.hero__tag::before { content:""; width: 30px; height: 2px; background: var(--rot); display:inline-block; }
.hero h1 { color: #fff; font-size: var(--fs-3xl); max-width: 15ch; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.hero__sub { font-size: var(--fs-lg); max-width: 46ch; color: #fff; opacity: .95; margin-bottom: 1.8rem; }
.hero .btn-row { margin-bottom: 1.4rem; }
.hero__meta { font-size: var(--fs-sm); opacity: .85; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.hero__meta span::after { content: "·"; margin-left: .5rem; opacity: .6; }
.hero__meta span:last-child::after { content: ""; }

/* ==========================================================================
   Status – "Heute auf dem Sunnehof"
   ========================================================================== */
.status { position: relative; z-index: 2; margin-top: calc(var(--sp) * -.55); }
.status__card {
  background: var(--creme-2); border: 1px solid var(--linie); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(1.3rem, 3vw, 2.2rem);
}
.status__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem 1rem; margin-bottom: 1.3rem; }
.status__head h2 { margin: 0; font-size: var(--fs-xl); }
.status__updated { font-size: var(--fs-xs); color: var(--text-mute); display: inline-flex; align-items: center; gap: .4rem; }
.status__updated .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gruen-hell); }

.status__banner {
  display: none; gap: .7rem; align-items: flex-start;
  background: var(--rot-blass); border: 1px solid #edc9c3; color: var(--rot-tief);
  border-radius: var(--radius); padding: .9rem 1.1rem; margin-bottom: 1.2rem; font-size: var(--fs-sm);
}
.status__banner[data-show="true"] { display: flex; }
.status__banner svg { flex: none; margin-top: 2px; }

.status__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: .9rem; }
.status-item {
  display: flex; gap: .85rem; align-items: flex-start;
  background: var(--creme); border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 1.05rem 1.15rem;
}
.status-item__icon { font-size: 1.6rem; line-height: 1; flex: none; filter: saturate(1.05); }
.status-item__body { min-width: 0; }
.status-item__name { font-weight: 700; font-size: var(--fs-sm); letter-spacing: .05em; text-transform: uppercase; color: var(--text-soft); margin-bottom: .3rem; }
.status-badge { display: inline-flex; align-items: center; gap: .45rem; font-weight: 650; font-size: 1.02rem; color: var(--gruen-tief); }
.status-badge .dot { width: 11px; height: 11px; border-radius: 50%; flex: none; position: relative; }
.status-badge--offen .dot { background: var(--ok); box-shadow: 0 0 0 0 rgba(76,140,63,.5); animation: pulse 2.4s infinite; }
.status-badge--zu .dot { background: var(--zu); }
.status-badge--hinweis .dot { background: var(--warn); }
.status-badge--zu { color: var(--text-mute); }
.status-item__note { font-size: var(--fs-xs); color: var(--text-mute); margin-top: .3rem; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(76,140,63,.45);} 70%{box-shadow:0 0 0 9px rgba(76,140,63,0);} 100%{box-shadow:0 0 0 0 rgba(76,140,63,0);} }

.status__stale {
  display: none; margin-top: 1.1rem; padding: .85rem 1.1rem; border-radius: var(--radius);
  background: #fbf1dc; border: 1px solid #ecd6a6; color: #7a5a12; font-size: var(--fs-sm);
}
.status__stale[data-show="true"] { display: block; }
.status__foot { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; justify-content: space-between; }

/* ==========================================================================
   Allgemeine Bausteine
   ========================================================================== */
.section-head { max-width: 60ch; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }

/* Split (Text/Bild) */
.split { display: grid; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 820px) { .split { grid-template-columns: 1fr 1fr; } .split--reverse .split__media { order: 2; } }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }

/* Ablauf-Schritte */
.steps { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); counter-reset: step; margin: 0; padding: 0; list-style: none; }
.step { background: var(--creme-2); border: 1px solid var(--linie); border-radius: var(--radius); padding: 1.4rem 1.3rem; position: relative; }
.step::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--gruen); color: #fff; font-family: var(--serif); font-weight: 600; margin-bottom: .9rem; }
.step h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.step p { margin: 0; font-size: var(--fs-sm); color: var(--text-soft); }

/* Tipps-Liste */
.tips { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }
.tips li { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--text-soft); }
.tips svg { flex: none; margin-top: 3px; color: var(--gruen-hell); }

/* Produktkarten */
.cards { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--creme-2); border: 1px solid var(--linie); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__pill { position: absolute; top: .8rem; left: .8rem; background: rgba(255,253,248,.92); color: var(--gruen-tief); font-size: var(--fs-xs); font-weight: 700; padding: .3rem .7rem; border-radius: 100px; letter-spacing: .03em; }
.card__body { padding: 1.3rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__body h3 { margin: 0; }
.card__body p { margin: 0; color: var(--text-soft); font-size: var(--fs-sm); flex: 1; }
.card__link { margin-top: .5rem; font-weight: 650; font-size: var(--fs-sm); color: var(--rot); text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.card__link svg { transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(3px); }

/* Farbige Sektionen */
.section--creme { background: var(--creme-3); }
.section--green { background: var(--gruen); color: #fff; }
.section--green h2, .section--green h3 { color: #fff; }
.section--green .lead, .section--green p { color: rgba(255,255,255,.85); }
.section--green .eyebrow { color: var(--amber); }
.section--green .eyebrow::before { background: var(--amber); }

/* Kategorien-Grid (Mehr als Früchte) */
.tiles { display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); overflow: hidden; }
.tile { background: var(--gruen); padding: 1.6rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; transition: background .2s var(--ease); }
.tile:hover { background: var(--gruen-tief); }
.tile__icon { font-size: 1.7rem; }
.tile h3 { font-size: 1.08rem; color: #fff; margin: 0; }
.tile p { font-size: var(--fs-xs); color: rgba(255,255,255,.75); margin: 0; }

/* ==========================================================================
   Saisonkalender
   ========================================================================== */
.season { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: .5rem; }
.season table { border-collapse: separate; border-spacing: 0; width: 100%; min-width: 720px; }
.season th, .season td { padding: .55rem .35rem; text-align: center; }
.season thead th { font-family: var(--sans); font-size: var(--fs-xs); font-weight: 700; color: var(--text-mute); text-transform: uppercase; letter-spacing: .04em; border-bottom: 1px solid var(--linie); }
.season tbody th { text-align: left; font-family: var(--sans); font-weight: 650; font-size: var(--fs-sm); color: var(--gruen-tief); white-space: nowrap; padding-right: .9rem; }
.season tbody tr + tr th, .season tbody tr + tr td { border-top: 1px solid var(--creme-3); }
.season .cell { display: block; height: 20px; border-radius: 6px; background: transparent; }
.season .cell--on { background: linear-gradient(90deg, var(--gruen-hell), #85a276); }
.season .cell--peak { background: linear-gradient(90deg, var(--rot), #d6564c); }
.season .cell--edge { background: var(--gruen-blass); }
.season td.is-current { background: rgba(224,167,59,.10); }
.season thead th.is-current { color: var(--rot); }
.season-legend { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; margin-top: 1.2rem; font-size: var(--fs-xs); color: var(--text-soft); }
.season-legend span { display: inline-flex; align-items: center; gap: .45rem; }
.season-legend i { width: 16px; height: 12px; border-radius: 3px; display: inline-block; }

/* ==========================================================================
   Geschichte / Timeline
   ========================================================================== */
.timeline { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); }
.tl-item { position: relative; padding-top: 1.6rem; }
.tl-item::before { content: ""; position: absolute; top: 0; left: 0; width: 46px; height: 4px; border-radius: 4px; background: var(--rot); }
.tl-year { font-family: var(--serif); font-size: 2rem; color: var(--gruen); font-weight: 600; line-height: 1; margin-bottom: .5rem; }
.tl-item h3 { font-size: 1.15rem; }
.tl-item p { font-size: var(--fs-sm); color: var(--text-soft); margin: 0; }

/* ==========================================================================
   Galerie
   ========================================================================== */
.gallery { display: grid; gap: .7rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 1; }
.gallery figure.tall { aspect-ratio: 1; }
@media (min-width: 720px) { .gallery figure.wide { grid-column: span 2; aspect-ratio: 2/1; } }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: .8rem; font-size: var(--fs-xs); color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.55)); }

/* ==========================================================================
   FAQ (native details, kein JS)
   ========================================================================== */
.faq { max-width: 800px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--linie); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem .3rem; font-weight: 650;
  font-size: var(--fs-lg); color: var(--gruen-tief); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--serif); font-size: 1.6rem; color: var(--rot); flex: none; transition: transform .2s var(--ease); line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 .3rem 1.3rem; color: var(--text-soft); font-size: var(--fs-base); max-width: 68ch; }
.faq .tbc { font-size: var(--fs-xs); color: var(--warn); font-style: italic; }

/* ==========================================================================
   Anfahrt / Karte
   ========================================================================== */
.contact-grid { display: grid; gap: clamp(1.4rem, 4vw, 2.5rem); }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; } }
.info-block { display: grid; gap: 1.3rem; }
.info-row { display: flex; gap: .9rem; align-items: flex-start; }
.info-row svg { flex: none; color: var(--gruen-hell); margin-top: 3px; }
.info-row h3 { font-size: 1.05rem; margin: 0 0 .15rem; }
.info-row p, .info-row a { margin: 0; font-size: var(--fs-sm); color: var(--text-soft); text-decoration: none; }
.info-row a:hover { color: var(--rot); }

/* Datenschutzfreundliche Karten-Vorschau */
.map-embed { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--linie); background: var(--creme-3); aspect-ratio: 4/3; }
.map-consent {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .9rem; text-align: center; padding: 1.5rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(110,139,98,.18), transparent 60%),
    repeating-linear-gradient(45deg, var(--creme-3) 0 22px, var(--sand) 22px 44px);
}
.map-consent p { max-width: 34ch; font-size: var(--fs-sm); color: var(--text-soft); margin: 0; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Öffnungszeiten-Tabelle */
.hours { list-style: none; margin: 0; padding: 0; border: 1px solid var(--linie); border-radius: var(--radius); overflow: hidden; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 1.1rem; font-size: var(--fs-sm); background: var(--creme-2); }
.hours li + li { border-top: 1px solid var(--linie); }
.hours li.is-today { background: var(--gruen-blass); font-weight: 650; }
.hours .day { color: var(--text-soft); }
.hours .time { color: var(--gruen-tief); font-weight: 600; text-align: right; }
.hours .time.zu { color: var(--text-mute); font-weight: 500; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--gruen-tief); color: rgba(255,255,255,.8); padding-block: clamp(3rem, 6vw, 4.5rem) 6rem; }
.footer a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand { font-family: var(--serif); font-size: 1.5rem; color: #fff; margin-bottom: .6rem; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: var(--fs-xs); letter-spacing: .13em; text-transform: uppercase; margin: 0 0 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: var(--fs-sm); }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); font-size: var(--fs-xs); color: rgba(255,255,255,.55); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }

/* ==========================================================================
   Mobile Sticky Bottom Bar
   ========================================================================== */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: var(--creme-2); border-top: 1px solid var(--linie);
  box-shadow: 0 -6px 24px rgba(40,35,20,.08);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: .2rem; padding: .6rem .3rem; font-size: .7rem; font-weight: 650; color: var(--gruen-tief); text-decoration: none; }
.mobile-bar a + a { border-left: 1px solid var(--linie); }
.mobile-bar svg { width: 22px; height: 22px; color: var(--gruen); }
.mobile-bar a:active { background: var(--creme-3); }
@media (max-width: 720px) { .mobile-bar { display: grid; } body { padding-bottom: 64px; } }

/* ==========================================================================
   Platzhalter-Bilder
   ========================================================================== */
.ph { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--creme-3); color: var(--erde); font-family: var(--sans); }
.ph[data-tone="green"] { background: var(--gruen-blass); color: var(--gruen); }
.ph[data-tone="red"] { background: var(--rot-blass); color: var(--rot-tief); }
.ph[data-tone="sand"] { background: var(--sand); color: var(--erde); }
.ph__inner { display: grid; gap: .4rem; padding: 1rem; }
.ph__emoji { font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1; }
.ph__label { font-size: var(--fs-xs); font-weight: 650; letter-spacing: .03em; opacity: .8; }
.ph__tag { position: absolute; top: .6rem; right: .6rem; background: rgba(0,0,0,.35); color: #fff; font-size: .6rem; font-weight: 700; letter-spacing: .05em; padding: .2rem .5rem; border-radius: 5px; text-transform: uppercase; }

/* ==========================================================================
   Fade-in (progressive enhancement)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ==========================================================================
   Innenseiten-Kopf
   ========================================================================== */
.page-hero { background: var(--gruen); color: #fff; padding-block: clamp(2.8rem, 7vw, 5rem); }
.page-hero .eyebrow { color: var(--amber); }
.page-hero .eyebrow::before { background: var(--amber); }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 56ch; margin: 0; font-size: var(--fs-lg); }
.breadcrumb { font-size: var(--fs-xs); color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }

/* Prose (Rechtstexte) */
.prose { max-width: 70ch; }
.prose h2 { font-size: var(--fs-xl); margin-top: 2.2rem; }
.prose h3 { font-size: var(--fs-lg); margin-top: 1.6rem; }
.prose ul { padding-left: 1.2rem; }
.prose a { color: var(--rot); }
