/* =========================================================================
   Bootshaus bei Pana – Stylesheet
   Mobile-first, DSGVO-freundlich (lokale Schriften), Premium-Look 2026.
   ========================================================================= */

/* ---------- Lokale Schriften (kein externes CDN) ---------- */
@font-face {
  font-family: "EB Garamond";
  src: url("assets/fonts/EBGaramond.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Albert Sans";
  src: url("assets/fonts/AlbertSans.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  /* Farbwelt: Neckar-Wasser, mediterrane Wärme, Marbacher Sand */
  --ink: #16302e;
  --ink-soft: #43605d;
  --petrol: #0e6b70;
  --petrol-600: #0b585c;
  --petrol-700: #0a4a4e;
  --water: #1f97b8;
  --sun: #dd9a2e;
  --sun-600: #c6851d;
  --sand: #f5efe3;
  --sand-deep: #ece3d1;
  --cream: #fdfaf3;
  --surface: #ffffff;
  --line: rgba(22, 48, 46, 0.12);
  --line-strong: rgba(22, 48, 46, 0.2);
  --on-dark: #f4efe4;
  --on-dark-soft: rgba(244, 239, 228, 0.78);

  /* Typografie */
  --font-display: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Albert Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radien & Schatten */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(22, 48, 46, 0.06);
  --shadow-md: 0 14px 40px -18px rgba(22, 48, 46, 0.28);
  --shadow-lg: 0 30px 70px -30px rgba(22, 48, 46, 0.4);

  /* Layout */
  --container: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --header-h: 74px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset & Basis ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--petrol); text-decoration: none; }
a:hover { color: var(--petrol-700); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background: var(--petrol);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Layout-Helfer ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--sand { background: var(--sand-deep); }
.section--petrol {
  background: linear-gradient(160deg, var(--petrol) 0%, var(--petrol-700) 100%);
  color: var(--on-dark);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--petrol);
  margin: 0 0 0.9rem;
}
.eyebrow--light { color: var(--sun); }
.hero .eyebrow--light { color: #f6c66a; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5); }

.section__head { max-width: 640px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section__head--light .section__title { color: var(--on-dark); }
.section__title { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem); }
.section__intro {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.section--petrol .section__intro { color: var(--on-dark-soft); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--petrol);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--sun); --btn-fg: #2a1c05; }
.btn--primary:hover { --btn-bg: var(--sun-600); }

.btn--ghost {
  --btn-bg: rgba(9, 42, 44, 0.4);
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { --btn-bg: rgba(9, 42, 44, 0.62); }

.btn--lg { min-height: 54px; padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 243, 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.site-header.is-stuck {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 40px; width: auto; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: 1.75rem; }
.nav__link {
  position: relative;
  font-weight: 500;
  color: var(--ink);
  padding: 0.4rem 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__link:hover { color: var(--petrol); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }

/* ---------- Burger ---------- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.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); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 40, 38, 0.5);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.nav-overlay.is-open { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--on-dark);
  isolation: isolate;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  padding-block: clamp(6rem, 16vh, 11rem) clamp(4rem, 10vh, 7rem);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 36, 38, 0.4) 0%, rgba(10, 36, 38, 0.28) 35%, rgba(9, 42, 44, 0.88) 100%),
    linear-gradient(90deg, rgba(9, 42, 44, 0.72) 0%, rgba(9, 42, 44, 0.15) 55%, rgba(9, 42, 44, 0) 78%);
}
.hero__inner { max-width: 660px; }
.hero__title {
  color: #fff;
  font-size: clamp(2.6rem, 1.6rem + 5.2vw, 5rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero__lead {
  margin-top: 1.35rem;
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.94);
  max-width: 34ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0.55rem 1.05rem;
  background: rgba(9, 42, 44, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
}
.status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #9aa8a6; flex: none;
  box-shadow: 0 0 0 0 rgba(120, 200, 120, 0.6);
}
.status-dot.is-open { background: #58c66b; animation: pulse 2.4s var(--ease) infinite; }
.status-dot.is-closed { background: #e5806a; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(88, 198, 107, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(88, 198, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(88, 198, 107, 0); }
}
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: -1; line-height: 0; }
.hero__wave svg { width: 100%; height: clamp(45px, 7vw, 90px); display: block; }
.hero__wave path { fill: var(--sand); }

/* ---------- Fakten ---------- */
.facts { background: var(--sand); padding-block: clamp(2rem, 5vw, 3rem); }
.facts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fact {
  background: var(--cream);
  padding: 1.5rem clamp(1.1rem, 3vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.fact__value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--petrol); }
.fact__label { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Karten / Angebote ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.6rem);
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(14, 107, 112, 0.14), rgba(31, 151, 184, 0.14));
  color: var(--petrol);
  margin-bottom: 1.1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: 1.35rem; margin-bottom: 0.5rem; }
.card__text { color: var(--ink-soft); margin: 0; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.card__link svg { width: 1.05em; height: 1.05em; transition: transform 0.2s var(--ease); }
.card__link:hover svg { transform: translateX(3px); }

/* ---------- Über uns ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.about__badge {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: var(--sun);
  color: #2a1c05;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.about__body p { color: var(--ink-soft); }

/* ---------- Accordion ---------- */
.accordion { margin-top: 1.6rem; border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  padding: 1.1rem 0.2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.accordion__chevron { width: 22px; height: 22px; color: var(--petrol); transition: transform 0.3s var(--ease); flex: none; }
.accordion__trigger[aria-expanded="true"] .accordion__chevron { transform: rotate(180deg); }
.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease);
}
.accordion__panel p { padding: 0 0.2rem 1.2rem; margin: 0; color: var(--ink-soft); }

/* ---------- Küche / Gerichte ---------- */
.dishes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9rem, 2.5vw, 1.5rem);
}
.dish { margin: 0; }
.dish__img {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
}
.dish__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.dish:hover .dish__img img { transform: scale(1.06); }
.dish__cap { display: flex; flex-direction: column; padding: 0.75rem 0.2rem 0; }
.dish__name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.dish__note { font-size: 0.88rem; color: var(--ink-soft); }
.kueche__note {
  margin-top: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--ink-soft);
  max-width: 60ch;
}
.kueche__placeholder {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--sun-600);
  font-style: italic;
}

/* ---------- Warum wir ---------- */
.reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.4rem, 3vw, 2rem);
}
.reason {
  padding-top: 1.4rem;
  border-top: 2px solid rgba(255, 255, 255, 0.28);
}
.reason__num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sun);
  letter-spacing: 0.05em;
}
.reason__title { color: #fff; font-size: 1.35rem; margin: 0.5rem 0 0.5rem; }
.reason__text { color: var(--on-dark-soft); margin: 0; }

/* ---------- CTA-Band (Gutschein) ---------- */
.cta-band { background: var(--sand); padding-block: var(--section-y); }
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
}
.cta-band__title { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); margin-bottom: 0.6rem; }
.cta-band__text p { color: var(--ink-soft); margin-bottom: 1.5rem; }
.cta-band__media img { border-radius: var(--r-md); box-shadow: var(--shadow-sm); width: 100%; }

/* ---------- Standort ---------- */
.standort {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.info-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.6rem 0; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list__ico {
  flex: none;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--petrol);
}
.info-list__ico svg { width: 22px; height: 22px; }
.info-list a { font-weight: 500; }

.hours {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.3rem 1.4rem;
  margin-bottom: 1.6rem;
}
.hours__title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.8rem; }
.hours__list { margin: 0; }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--line);
}
.hours__row:last-of-type { border-bottom: none; }
.hours__row dt { color: var(--ink-soft); margin: 0; }
.hours__row dd { margin: 0; font-weight: 600; font-variant-numeric: tabular-nums; }
.hours__row.is-today {
  background: rgba(14, 107, 112, 0.07);
  margin-inline: -0.7rem;
  padding-inline: 0.7rem;
  border-radius: 8px;
  border-bottom-color: transparent;
}
.hours__hint { margin: 0.9rem 0 0; font-size: 0.9rem; font-weight: 600; }
.hours__hint.is-open { color: #1f8a3b; }
.hours__hint.is-closed { color: #c0563c; }

/* Statischer Karten-Platzhalter */
.map-placeholder {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-height: 320px;
  background: #e7eddf;
}
.map-placeholder__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-placeholder__pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--surface);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.map-placeholder__pin svg { width: 20px; height: 20px; }
.map-placeholder__hint {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  margin: 0;
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  background: rgba(253, 250, 243, 0.9);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--line);
  text-align: center;
}

/* ---------- Kontakt ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact__intro p { color: var(--ink-soft); }
.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--petrol);
}
.contact__phone svg { width: 1.2em; height: 1.2em; }

.contact__form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.req { color: var(--sun-600); }
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 0.8rem 0.95rem;
  min-height: 48px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(14, 107, 112, 0.16);
}
.field input.is-invalid,
.field textarea.is-invalid { border-color: #c0563c; box-shadow: 0 0 0 3px rgba(192, 86, 60, 0.14); }
.field__error {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: #c0563c;
  min-height: 1em;
}

/* Checkbox */
.field--check { margin-top: 0.5rem; }
.checkbox { display: flex; gap: 0.75rem; align-items: flex-start; cursor: pointer; font-size: 0.92rem; color: var(--ink-soft); }
.checkbox input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.checkbox__box {
  flex: none;
  width: 26px; height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  margin-top: 1px;
}
.checkbox__box svg { width: 16px; height: 16px; opacity: 0; transform: scale(0.6); transition: opacity 0.15s var(--ease), transform 0.15s var(--ease); }
.checkbox input:checked + .checkbox__box { background: var(--petrol); border-color: var(--petrol); }
.checkbox input:checked + .checkbox__box svg { opacity: 1; transform: scale(1); }
.checkbox input:focus-visible + .checkbox__box { outline: 3px solid var(--water); outline-offset: 2px; }
.checkbox__text a { font-weight: 600; text-decoration: underline; }

.form-note { margin: 1rem 0 0; font-size: 0.9rem; font-weight: 600; }
.form-note.is-success { color: #1f8a3b; }
.form-note.is-error { color: #c0563c; }
.form-note--muted { color: var(--ink-soft); font-weight: 500; font-style: italic; font-size: 0.82rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--on-dark);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 4vw, 2.5rem);
  padding-bottom: 2.5rem;
}
.footer__brand p { color: var(--on-dark-soft); font-size: 0.95rem; max-width: 40ch; }
.footer__logo { height: 40px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(0.92); }
.footer__head {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sun);
  margin: 0 0 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a,
.footer__address a { color: var(--on-dark-soft); }
.footer__links a:hover,
.footer__address a:hover { color: #fff; }
.footer__address { font-style: normal; color: var(--on-dark-soft); line-height: 1.9; font-size: 0.95rem; }
.social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.social__link {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--on-dark);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.social__link svg { width: 20px; height: 20px; }
.social__link:hover { background: rgba(255, 255, 255, 0.1); color: #fff; transform: translateY(-2px); }

.footer__bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer__copy { margin: 0; font-size: 0.85rem; color: var(--on-dark-soft); }
.footer__powered { margin: 0; font-size: 0.9rem; color: var(--on-dark-soft); }
.footer__powered a { color: #22b8e0; font-weight: 600; }
.footer__powered a:hover { color: #22b8e0; text-decoration: underline; }

/* ---------- Rechtliche Seiten ---------- */
.legal { padding-block: clamp(2.5rem, 6vw, 4rem) var(--section-y); }
.legal__inner { max-width: 780px; }
.legal__title { font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); margin-bottom: 1.5rem; }
.legal h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.legal p { color: var(--ink-soft); }
.legal a { font-weight: 500; text-decoration: underline; }
.legal__note {
  margin-top: 2.5rem;
  padding: 1.2rem 1.4rem;
  background: rgba(221, 154, 46, 0.1);
  border: 1px solid rgba(221, 154, 46, 0.35);
  border-radius: var(--r-md);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.legal__note strong { color: var(--ink); }

/* ---------- Reveal-Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================================
   Responsive – Tablet ab 640px
   ========================================================================= */
@media (min-width: 640px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .dishes { grid-template-columns: repeat(4, 1fr); }
  .cta-band__inner { grid-template-columns: 1.1fr 0.9fr; }
}

/* Ab 860px: Desktop-Navigation, mehrspaltige Layouts */
@media (min-width: 860px) {
  .facts__grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .about { grid-template-columns: 1fr 1fr; }
  .reasons { grid-template-columns: repeat(2, 1fr); }
  .standort { grid-template-columns: 1.05fr 0.95fr; }
  .contact { grid-template-columns: 0.85fr 1.15fr; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1.2fr 1fr; }
  .footer__bar { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1040px) {
  .reasons { grid-template-columns: repeat(4, 1fr); }
  .about__media img { aspect-ratio: 4 / 5; }
}

/* =========================================================================
   Mobile-Navigation (unter 860px)
   ========================================================================= */
@media (max-width: 859px) {
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(84vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 1.5rem) 1.6rem 2rem;
    background: var(--cream);
    box-shadow: -20px 0 60px -30px rgba(0, 0, 0, 0.5);
    transform: translateX(105%);
    transition: transform 0.35s var(--ease);
    z-index: 95;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__link {
    display: block;
    padding: 1rem 0.2rem;
    font-size: 1.15rem;
    font-family: var(--font-display);
  }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 1.5rem; width: 100%; }
}

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