/* =====================================================================
   Jägerstüble Affalterbach – Stylesheet
   Mobile-first · lokale Schriften · DSGVO-freundlich (keine externen CDNs)
   Palette: Loden-Grün + warmes Messing/Bernstein auf cremefarbenem Papier
   ===================================================================== */

/* ---------- Lokale Schriften ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-400-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-900.woff2") format("woff2");
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/instrument-sans-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/instrument-sans-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/instrument-sans-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  --green:        #1f3d30;
  --green-deep:   #142a20;
  --green-soft:   #2c5140;
  --amber:        #b9803a;
  --amber-bright: #d7a24c;
  --cream:        #f5efe3;
  --cream-2:      #ece2cf;
  --paper:        #fbf8f1;
  --ink:          #21332a;
  --ink-soft:     #4a5b51;
  --line:         #e0d6c2;
  --line-dark:    rgba(245,239,227,.16);
  --white:        #ffffff;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(28, 42, 32, .06);
  --shadow-md: 0 14px 34px -18px rgba(20, 42, 32, .28);
  --shadow-lg: 0 30px 60px -28px rgba(20, 42, 32, .40);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 68px;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--amber-bright); outline-offset: 3px; border-radius: 4px; }

.visually-hidden {
  position: absolute; 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: 12px; top: -60px; z-index: 200;
  background: var(--green); color: var(--cream); padding: .7rem 1.1rem;
  border-radius: 10px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Typografie ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 900; line-height: 1.08; letter-spacing: -.01em; color: var(--green); }
h3 { font-weight: 600; }
p { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1rem;
}
.eyebrow--light { color: var(--amber-bright); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(185,128,58,.16); }

.section { padding-block: clamp(3.75rem, 9vw, 7rem); }
.section--muted { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.section--dark { background: var(--green); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark p { color: rgba(245,239,227,.78); }

.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section__head--light { color: var(--cream); }
.section__title { font-size: clamp(1.9rem, 5vw, 3rem); }
.section__intro { margin-top: 1rem; font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--green); --btn-fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.4rem;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  border: 1px solid transparent; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--amber); --btn-fg: #2a1c08; }
.btn--primary:hover { --btn-bg: var(--amber-bright); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--green); border-color: transparent; min-height: 44px; }
.btn--ghost:hover { --btn-bg: rgba(31,61,48,.07); box-shadow: none; transform: none; }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--green); border-color: rgba(31,61,48,.28); }
.btn--outline:hover { border-color: var(--green); --btn-bg: rgba(31,61,48,.05); }
.section--dark .btn--outline { --btn-fg: var(--cream); border-color: rgba(245,239,227,.4); }
.section--dark .btn--outline:hover { --btn-bg: rgba(245,239,227,.1); }
.btn--lg { min-height: 54px; padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,239,227,.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck { border-color: var(--line); box-shadow: var(--shadow-sm); }
.site-header--solid { background: var(--cream); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--green); }
.brand__mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--green); color: var(--amber-bright); box-shadow: var(--shadow-sm); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 900; font-size: 1.28rem; letter-spacing: -.01em; }
.brand__place { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--amber); margin-top: .18rem; }

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav__list { display: none; list-style: none; padding: 0; gap: .35rem; }
.nav__list a { display: inline-block; padding: .5rem .8rem; border-radius: 10px; font-weight: 500; color: var(--ink); transition: background .2s var(--ease), color .2s var(--ease); }
.nav__list a:hover { background: rgba(31,61,48,.07); color: var(--green); }
.nav__cta { display: none; gap: .5rem; }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 0 12px; background: transparent; border: 0; border-radius: 12px;
}
.burger span { height: 2px; width: 100%; background: var(--green); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobiles Nav-Panel */
.nav-scrim { position: fixed; inset: 0; z-index: 90; background: rgba(20,42,32,.5); opacity: 0; transition: opacity .3s var(--ease); }
.nav-scrim.is-open { opacity: 1; }

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 95;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none; visibility: hidden;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; visibility: visible; }
  .nav__list { display: flex; flex-direction: column; width: 100%; }
  .nav__list a { padding: .95rem .4rem; font-size: 1.1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__cta { display: flex; flex-direction: column; width: 100%; margin-top: 1rem; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(2.5rem, 7vw, 5rem) clamp(3rem, 8vw, 6rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 85% 8%, rgba(215,162,76,.18), transparent 60%),
    radial-gradient(50% 45% at 5% 92%, rgba(31,61,48,.10), transparent 55%);
}
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero__title { font-size: clamp(2.6rem, 8.5vw, 4.6rem); letter-spacing: -.02em; }
.hero__title em { font-style: italic; font-weight: 600; color: var(--amber); }
.hero__lead { margin-top: 1.4rem; font-size: clamp(1.05rem, 2.4vw, 1.22rem); max-width: 34rem; color: var(--ink-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.hero__status {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.9rem;
  padding: .55rem 1rem; border-radius: var(--radius-pill);
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: .95rem; font-weight: 500; color: var(--ink);
}
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-soft); flex: none; }
.status-dot.is-open { background: #3f9e5a; box-shadow: 0 0 0 4px rgba(63,158,90,.18); }
.status-dot.is-closed { background: #c0553f; box-shadow: 0 0 0 4px rgba(192,85,63,.16); }

.hero__media { position: relative; }
.hero__img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__badge {
  position: absolute; left: -8px; bottom: -16px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: .75rem 1.1rem; box-shadow: var(--shadow-md); text-align: left;
}
.hero__badge strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--green); line-height: 1; }
.hero__badge span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); }

/* ---------- Trust-Bar ---------- */
.trust { background: var(--green); color: var(--cream); }
.trust__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; padding-block: clamp(1.75rem, 5vw, 2.5rem); }
.trust__item { display: flex; align-items: center; gap: .9rem; }
.trust__item svg { width: 30px; height: 30px; flex: none; color: var(--amber-bright); }
.trust__item strong { display: block; font-weight: 600; color: var(--cream); }
.trust__item span { font-size: .88rem; color: rgba(245,239,227,.7); }

/* ---------- Karten-Raster ---------- */
.cards { display: grid; gap: clamp(1.1rem, 3vw, 1.75rem); grid-template-columns: 1fr; }

/* Speisen */
.dish { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dish__media { aspect-ratio: 5 / 4; overflow: hidden; background: var(--cream-2); }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.04); }
.dish__body { padding: 1.35rem 1.4rem 1.6rem; }
.dish__body h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.dish__body p { font-size: .98rem; }

/* Speisekarte-Accordion */
.menu-accordion { margin-top: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-sm); }
.accordion__item + .accordion__item { border-top: 1px solid var(--line); }
.accordion__header { margin: 0; }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; background: transparent; border: 0; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--green);
  min-height: 56px;
}
.accordion__trigger:hover { background: rgba(31,61,48,.04); }
.accordion__icon { width: 22px; height: 22px; flex: none; color: var(--amber); transition: transform .3s var(--ease); }
.accordion__trigger[aria-expanded="true"] .accordion__icon { transform: rotate(180deg); }
.accordion__panel { overflow: hidden; height: 0; transition: height .32s var(--ease); }
.accordion__panel-inner, .menu-list { padding: 0 1.3rem; }
.menu-list { list-style: none; padding-top: .2rem; padding-bottom: .4rem; }
.menu-list li { display: flex; align-items: baseline; gap: .6rem; padding: .5rem 0; border-bottom: 1px dashed var(--line); color: var(--ink); }
.menu-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex: none; transform: translateY(-2px); }
.menu-list li:last-child { border-bottom: 0; }
.menu-note { padding: .2rem 1.3rem 1.3rem; font-size: .88rem; color: var(--ink-soft); font-style: italic; }

/* ---------- Über uns ---------- */
.about__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.about__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about__content p + p { margin-top: 1rem; }
.about__content .section__title { margin-bottom: 1.3rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; border-top: 1px solid var(--line); padding-top: 1.5rem; }
.stats dt { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.4rem, 4vw, 1.9rem); color: var(--green); line-height: 1; }
.stats dt span { font-size: .6em; color: var(--amber); margin-left: .15em; }
.stats dd { font-size: .82rem; color: var(--ink-soft); margin-top: .35rem; }

/* ---------- Vorteile ---------- */
.benefit { padding: 1.75rem 1.6rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.benefit__ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(185,128,58,.12); color: var(--amber); margin-bottom: 1.1rem; }
.benefit__ic svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.3rem; margin-bottom: .55rem; }

/* ---------- Ablauf / Steps ---------- */
.steps { list-style: none; counter-reset: none; padding: 0; display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.step { position: relative; padding: 1.75rem 1.6rem; background: rgba(245,239,227,.06); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); }
.step__num { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--amber); color: #2a1c08; font-family: var(--font-display); font-weight: 900; font-size: 1.25rem; margin-bottom: 1rem; }
.step h3 { font-size: 1.25rem; margin-bottom: .5rem; }

/* ---------- Stimmen ---------- */
.quote { position: relative; padding: 2rem 1.7rem 1.7rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.quote__mark { font-family: var(--font-display); font-size: 4rem; line-height: .6; color: var(--amber); opacity: .4; height: 2rem; }
.quote blockquote { font-family: var(--font-display); font-size: 1.18rem; font-weight: 400; color: var(--green); line-height: 1.45; margin-bottom: 1rem; }
.quote figcaption { font-size: .85rem; font-weight: 600; letter-spacing: .04em; color: var(--amber); text-transform: uppercase; }
.disclaimer { margin-top: 1.75rem; font-size: .84rem; color: var(--ink-soft); text-align: center; font-style: italic; }

/* ---------- Öffnungszeiten ---------- */
.hours__grid { display: grid; gap: clamp(1.75rem, 5vw, 3rem); align-items: center; }
.hours__intro .section__title { margin-bottom: 1rem; }
.hours__status {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.5rem;
  padding: .6rem 1.05rem; border-radius: var(--radius-pill);
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-weight: 500;
}
.hours__table { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.hours__table tr { border-bottom: 1px solid var(--line); transition: background .2s var(--ease); }
.hours__table tr:last-child { border-bottom: 0; }
.hours__table tr.is-today { background: rgba(185,128,58,.10); }
.hours__table th, .hours__table td { padding: 1.1rem 1.3rem; text-align: left; }
.hours__table th { font-weight: 600; color: var(--green); }
.hours__table td { font-variant-numeric: tabular-nums; color: var(--ink); text-align: right; }

/* ---------- Standort ---------- */
.location { display: grid; gap: clamp(1.25rem, 3vw, 2rem); align-items: stretch; }
.location__map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.location__map img { width: 100%; height: 100%; object-fit: cover; }
.location__card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.location__card h3 { font-size: 1.5rem; margin-bottom: .8rem; }
.location__card address { font-style: normal; color: var(--ink); line-height: 1.75; }
.location__row { display: flex; align-items: center; gap: .5rem; margin: 1rem 0 1.5rem; color: var(--ink); font-weight: 500; }
.location__row svg { color: var(--amber); }
.location__hint { margin-top: .8rem; font-size: .8rem; color: var(--ink-soft); }
.location__card .btn { margin-top: auto; }

/* ---------- Kontakt ---------- */
.contact__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact__list { list-style: none; padding: 0; margin-top: 1.75rem; display: grid; gap: 1rem; }
.contact__list li { display: flex; align-items: center; gap: .75rem; color: rgba(245,239,227,.9); }
.contact__list svg { width: 22px; height: 22px; flex: none; color: var(--amber-bright); }
.contact__list a:hover { color: var(--amber-bright); }

.contact__form { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.25rem); box-shadow: var(--shadow-lg); color: var(--ink); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
.field label { display: block; font-size: .9rem; font-weight: 600; color: var(--green); margin-bottom: .4rem; }
.field input, .field textarea {
  width: 100%; min-height: 48px; padding: .75rem .9rem;
  font: inherit; color: var(--ink); background: var(--white);
  border: 1px solid var(--line); border-radius: 12px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(185,128,58,.18); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #c0553f; box-shadow: 0 0 0 3px rgba(192,85,63,.15); }
.field__error { margin-top: .4rem; font-size: .82rem; color: #b0402c; font-weight: 500; }

.field--check { margin-top: .4rem; }
.checkbox { display: flex; align-items: flex-start; gap: .75rem; cursor: pointer; font-size: .9rem; color: var(--ink-soft); line-height: 1.5; }
.checkbox input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.checkbox__box { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border: 1.5px solid var(--line); border-radius: 8px; background: var(--white); transition: background .2s var(--ease), border-color .2s var(--ease); }
.checkbox__box svg { width: 18px; height: 18px; color: var(--white); opacity: 0; transform: scale(.5); transition: opacity .2s var(--ease), transform .2s var(--ease); }
.checkbox input:checked + .checkbox__box { background: var(--amber); border-color: var(--amber); }
.checkbox input:checked + .checkbox__box svg { opacity: 1; transform: scale(1); }
.checkbox input:focus-visible + .checkbox__box { outline: 3px solid var(--amber-bright); outline-offset: 2px; }
.checkbox__label a { color: var(--amber); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.field--check .field__error { margin-left: calc(26px + .75rem); }

.form__status { margin-top: 1rem; padding: .85rem 1rem; border-radius: 12px; font-weight: 500; font-size: .95rem; }
.form__status.is-success { background: rgba(63,158,90,.14); color: #2c6d41; }
.form__status.is-error { background: rgba(192,85,63,.12); color: #b0402c; }
.form__note { margin-top: 1rem; font-size: .8rem; color: var(--ink-soft); }
.contact__form .btn--block { margin-top: .5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: var(--cream); }
.footer__grid { display: grid; gap: clamp(2rem, 5vw, 3rem); padding-block: clamp(2.75rem, 6vw, 4rem); grid-template-columns: 1fr; }
.brand--footer { color: var(--cream); }
.brand--footer .brand__mark { background: rgba(245,239,227,.08); color: var(--amber-bright); }
.footer__tag { margin-top: 1rem; max-width: 22rem; color: rgba(245,239,227,.7); font-size: .95rem; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(245,239,227,.08); color: var(--cream); transition: background .2s var(--ease), transform .2s var(--ease); }
.social:hover { background: var(--amber); color: #2a1c08; transform: translateY(-2px); }
.social svg { width: 22px; height: 22px; }

.footer__nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1rem; }
.footer__nav h3 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber-bright); margin-bottom: .9rem; }
.footer__nav ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer__nav a, .footer__nav li { color: rgba(245,239,227,.78); font-size: .95rem; }
.footer__nav a:hover { color: var(--cream); }

.footer__bar { border-top: 1px solid var(--line-dark); }
.footer__bar-inner { display: flex; flex-direction: column; align-items: center; gap: .6rem; padding-block: 1.4rem; text-align: center; }
.footer__copy { font-size: .85rem; color: rgba(245,239,227,.6); }
.footer__powered { font-size: .9rem; color: rgba(245,239,227,.7); }
.wowobot { color: #22b8e0; font-weight: 600; text-decoration: none; }
.wowobot:hover { text-decoration: underline; }

/* ---------- Legal / 404 ---------- */
.legal { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.legal__inner { max-width: 46rem; }
.legal h1 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 1.25rem; }
.legal h2 { font-family: var(--font-display); font-size: 1.3rem; color: var(--green); margin: 2rem 0 .6rem; }
.legal p { color: var(--ink); margin-bottom: .6rem; }
.legal__note { background: rgba(185,128,58,.1); border-left: 3px solid var(--amber); padding: 1rem 1.2rem; border-radius: 10px; font-size: .95rem; color: var(--ink-soft) !important; margin-bottom: 1.5rem; }
.legal__ph { color: var(--amber); font-style: italic; }
.legal__back { margin-top: 2.5rem; }
.legal__back a { color: var(--amber); font-weight: 600; }

.error-page { min-height: 80vh; display: grid; place-items: center; text-align: center; padding-block: 4rem; }
.error-page h1 { font-size: clamp(2rem, 7vw, 3.25rem); margin: .5rem 0 1rem; }
.error-page p { max-width: 30rem; margin: 0 auto 2rem; }

/* ---------- Reveal-Animationen ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal[data-reveal-delay="1"] { transition-delay: .09s; }
.reveal[data-reveal-delay="2"] { transition-delay: .18s; }
.reveal[data-reveal-delay="3"] { transition-delay: .27s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   Breakpoints
   ===================================================================== */
@media (min-width: 560px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.75rem; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.4fr 2fr; }
  .footer__nav { grid-template-columns: repeat(3, 1fr); }
  .footer__bar-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .location { grid-template-columns: 1.5fr 1fr; }
  .hours__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 901px) {
  :root { --header-h: 76px; }
  .nav__list { display: flex; }
  .nav__cta { display: flex; }
  .burger { display: none; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .about__grid { grid-template-columns: 1fr 1.1fr; }
  .contact__grid { grid-template-columns: 1fr 1.15fr; }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .hero__title { font-size: clamp(3.4rem, 5vw, 4.6rem); }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .dish:hover, .benefit:hover, .social:hover { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .burger, .nav, .hero__actions, .contact__form, .footer__social { display: none !important; }
  body { background: #fff; color: #000; }
}
