/* =========================================================================
   RÖSSLE Rudersberg — styles.css
   Warm-hearth Palette: deep pine green + warm brass on soft paper.
   Mobile-first. Lokale Schriften, keine externen Ressourcen (DSGVO).
   ========================================================================= */

/* ---------- Lokale Schriften (self-hosted, kein CDN) --------------------- */
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/Fraunces-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/Fraunces-Italic-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/InstrumentSans-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Tokens ------------------------------------------------ */
:root {
  /* Farbwelt */
  --paper: #f7f2e9;
  --paper-2: #fcf9f2;
  --paper-3: #f1e9d8;
  --ink: #23201a;
  --ink-soft: #574f3e;
  --forest: #21402f;
  --forest-deep: #17301f;
  --forest-700: #2c5540;
  --brass: #b47e2b;
  --brass-bright: #cf9a3f;
  --brass-ink: #855415;
  --line: #e2d9c6;
  --line-strong: #d3c7ac;
  --danger: #a1341f;
  --shadow-sm: 0 1px 2px rgba(35, 32, 26, 0.05), 0 2px 8px rgba(35, 32, 26, 0.05);
  --shadow-md: 0 8px 24px -8px rgba(35, 32, 26, 0.16), 0 3px 8px rgba(35, 32, 26, 0.06);
  --shadow-lg: 0 24px 60px -18px rgba(23, 48, 31, 0.32);

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

  /* Maße */
  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --gap-section: clamp(4.5rem, 10vw, 8rem);
  --header-h: 68px;

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

/* ---------- Reset -------------------------------------------------------- */
*, *::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);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--brass-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typo-Basis --------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 7.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--brass-ink);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brass);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brass);
}

/* ---------- Layout-Helfer ------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 5vw, 2.5rem);
}
.section { padding-block: var(--gap-section); }
.section--tight { padding-block: clamp(3rem, 7vw, 5rem); }
.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { color: var(--ink-soft); font-size: 1.12rem; margin-top: 0.9rem; }
.lede { font-size: 1.18rem; color: var(--ink-soft); }

.bg-paper-2 { background: var(--paper-2); }
.bg-forest { background: var(--forest-deep); color: var(--paper); }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--brass);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(133, 84, 21, 0.6);
}
.btn--primary:hover { background: var(--brass-ink); transform: translateY(-2px); }
.btn--dark {
  background: var(--forest);
  color: var(--paper);
}
.btn--dark:hover { background: var(--forest-700); transform: translateY(-2px); }
.btn--ghost {
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--forest); background: rgba(33, 64, 47, 0.05); transform: translateY(-2px); }
.btn--light {
  background: var(--paper);
  color: var(--forest-deep);
}
.btn--light:hover { background: #fff; transform: translateY(-2px); }
.btn--outline-light {
  border: 1.5px solid rgba(247, 242, 233, 0.4);
  color: var(--paper);
}
.btn--outline-light:hover { border-color: var(--brass-bright); color: var(--brass-bright); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ---------- Header / Navigation ----------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 242, 233, 0.85);
  backdrop-filter: saturate(1.4) blur(12px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 5vw, 2.5rem);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--forest);
}
.brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--brass);
  background: var(--forest);
  border-radius: 12px;
  padding: 6px;
  box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 100%; height: 100%; color: var(--brass-bright); }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-ink);
  margin-top: 3px;
}

.nav__links { display: none; }
.nav__cta { display: none; }

/* Burger */
.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 12px;
  margin-right: -8px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-Menü-Panel */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 90;
  background: var(--paper);
  padding: 1.5rem clamp(1.15rem, 5vw, 2.5rem) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  overflow-y: auto;
}
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu a.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-menu a.mobile-link span { color: var(--brass); font-family: var(--font-body); font-size: 0.9rem; }
.mobile-menu .btn { margin-top: 1.5rem; }
.mobile-menu__contact {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.mobile-menu__contact a { color: var(--forest); font-weight: 600; }

/* ---------- Hero --------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--forest-deep);
  color: var(--paper);
  padding-top: calc(var(--header-h) + clamp(2.5rem, 8vw, 5rem));
  padding-bottom: clamp(3rem, 9vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(207, 154, 63, 0.16), transparent 60%),
    radial-gradient(90% 70% at 0% 100%, rgba(44, 85, 64, 0.55), transparent 60%);
  pointer-events: none;
}
.hero__watermark {
  position: absolute;
  right: -6%;
  bottom: -12%;
  width: min(52vw, 420px);
  color: rgba(207, 154, 63, 0.07);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__eyebrow {
  color: var(--brass-bright);
}
.hero__eyebrow::before, .hero__eyebrow::after { background: var(--brass-bright); }
.hero h1 { color: #fff; margin-top: 1.1rem; }
.hero h1 em { font-style: italic; color: var(--brass-bright); font-weight: 500; }
.hero__sub {
  margin-top: 1.4rem;
  font-size: 1.2rem;
  color: #dfe7dd;
  max-width: 34rem;
}
.hero__cta {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero__figure {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(207, 154, 63, 0.2);
  position: relative;
}
.hero__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  margin-top: 1.8rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(247, 242, 233, 0.08);
  border: 1px solid rgba(247, 242, 233, 0.16);
  font-size: 0.9rem;
  color: #e8efe6;
}
.hero__badge svg { width: 16px; height: 16px; color: var(--brass-bright); }

/* ---------- Info-Leiste (Quick Facts) ----------------------------------- */
.factbar {
  background: var(--forest);
  color: var(--paper);
}
.factbar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(247, 242, 233, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}
.fact {
  background: var(--forest);
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.fact svg { width: 22px; height: 22px; color: var(--brass-bright); margin-bottom: 0.5rem; }
.fact strong { font-family: var(--font-display); font-size: 1.15rem; }
.fact span { font-size: 0.9rem; color: #cdd8ca; }

/* ---------- Karten / Leistungen ----------------------------------------- */
.grid { display: grid; gap: 1.25rem; }
.cards { grid-template-columns: 1fr; }
.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  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 {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--paper-3);
  color: var(--brass-ink);
  margin-bottom: 1.1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Über uns (Split) -------------------------------------------- */
.split { display: grid; gap: 2.5rem; align-items: center; }
.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split__media img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; }
.split__media figcaption {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(23, 48, 31, 0.82);
  color: var(--paper);
  font-size: 0.82rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.split__body h2 { margin-bottom: 1.1rem; }
.split__body p { color: var(--ink-soft); margin-bottom: 1rem; }
.stat-row { display: flex; gap: 2rem; margin-top: 1.8rem; flex-wrap: wrap; }
.stat b {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
  display: block;
  line-height: 1;
}
.stat span { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Warum wir ---------------------------------------------------- */
.why-list { display: grid; gap: 1rem; }
.why {
  display: flex;
  gap: 1rem;
  padding: 1.3rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.why__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--brass);
  line-height: 1;
  flex-shrink: 0;
}
.why h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.why p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Ernährungs-Badges ------------------------------------------- */
.diet {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}
.diet li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.05rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper-2);
  font-weight: 500;
  font-size: 0.95rem;
}
.diet svg { width: 17px; height: 17px; color: var(--forest-700); }

/* ---------- Öffnungszeiten ---------------------------------------------- */
.hours {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-sm);
}
.hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.hours li:last-child { border-bottom: none; }
.hours li.is-today { background: rgba(207, 154, 63, 0.1); }
.hours .day { font-weight: 600; }
.hours .time { color: var(--ink-soft); }
.hours li.is-today .badge-today {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-ink);
  margin-left: 0.5rem;
}
.hours-note {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}
.hours-note svg { width: 18px; height: 18px; color: var(--brass-ink); flex-shrink: 0; margin-top: 2px; }

/* ---------- Standort ----------------------------------------------------- */
.location__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.location__map img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.location__pin {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.location__pin svg { width: 46px; height: 46px; color: var(--danger); filter: drop-shadow(0 6px 10px rgba(0,0,0,0.3)); }
.location__card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
}
.location__card h3 { margin-bottom: 0.9rem; }
.address-row { display: flex; gap: 0.7rem; margin-bottom: 0.8rem; align-items: flex-start; }
.address-row svg { width: 20px; height: 20px; color: var(--brass-ink); flex-shrink: 0; margin-top: 3px; }
.address-row a { color: var(--forest); font-weight: 600; }

/* ---------- Accordion / FAQ --------------------------------------------- */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}
.accordion__trigger .chev {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--brass-ink);
  transition: transform 0.3s var(--ease);
}
.accordion__item.open .chev { transform: rotate(180deg); }
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.accordion__panel > div { overflow: hidden; }
.accordion__item.open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel p { color: var(--ink-soft); padding: 0 0.25rem 1.3rem; }

/* ---------- Kontakt / Formular ------------------------------------------ */
.contact-grid { display: grid; gap: 2.5rem; }
.contact-aside h2 { color: #fff; }
.contact-aside p { color: #dfe7dd; margin-top: 1rem; }
.contact-aside .channel {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.6rem;
}
.contact-aside .channel svg { width: 22px; height: 22px; color: var(--brass-bright); flex-shrink: 0; }
.contact-aside .channel a, .contact-aside .channel span { color: var(--paper); font-weight: 500; }
.contact-aside .channel small { display: block; color: #b7c4b4; font-weight: 400; font-size: 0.82rem; }

.form {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}
.field label .req { color: var(--danger); }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  min-height: 48px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(33, 64, 47, 0.12);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--danger); }
.field-error { display: none; color: var(--danger); font-size: 0.85rem; margin-top: 0.35rem; }

.consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  accent-color: var(--forest);
  cursor: pointer;
}
.consent a { color: var(--forest); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.form__note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 1rem; text-align: center; }
.form__status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.form__status.ok { display: block; background: rgba(33,64,47,0.1); color: var(--forest); border: 1px solid rgba(33,64,47,0.25); }
.form__status.err { display: block; background: rgba(161,52,31,0.08); color: var(--danger); border: 1px solid rgba(161,52,31,0.3); }

/* ---------- Divider (Hufeisen-Tick) ------------------------------------- */
.rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--brass);
  opacity: 0.7;
}
.rule::before, .rule::after { content: ""; height: 1px; background: var(--line-strong); flex: 1; }
.rule svg { width: 26px; height: 20px; }

/* ---------- Footer ------------------------------------------------------- */
.site-footer {
  background: var(--forest-deep);
  color: #cdd8ca;
  padding-top: clamp(3rem, 7vw, 4.5rem);
}
.footer-top { display: grid; gap: 2.2rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__mark { background: rgba(247,242,233,0.06); }
.footer-brand p { margin-top: 1rem; max-width: 22rem; font-size: 0.95rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a, .footer-col address {
  color: #cdd8ca;
  font-style: normal;
  font-size: 0.98rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--brass-bright); }
.socials { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(247,242,233,0.16);
  color: #cdd8ca;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.socials a:hover { color: var(--brass-bright); border-color: var(--brass-bright); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }

.footer-bottom {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  border-top: 1px solid rgba(247, 242, 233, 0.14);
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
}
.footer-bottom .copy { font-size: 0.88rem; color: #a9b6a7; }
.powered {
  font-size: 0.9rem;
  color: #a9b6a7;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.powered a { color: #22b8e0; font-weight: 700; }
.powered a:hover { text-decoration: underline; }

/* ---------- Reveal-Animationen ------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  z-index: 200;
  background: var(--forest);
  color: var(--paper);
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* =========================================================================
   Breakpoints
   ========================================================================= */
@media (min-width: 600px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .factbar__grid { grid-template-columns: repeat(4, 1fr); }
  .hero__cta .btn { min-width: 0; }
}

@media (min-width: 900px) {
  :root { --header-h: 78px; }
  .nav__toggle { display: none; }
  .nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .nav__links a {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 0.4rem 0;
  }
  .nav__links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--brass);
    transition: width 0.25s var(--ease);
  }
  .nav__links a:hover::after { width: 100%; }
  .nav__cta { display: inline-flex; }
  .mobile-menu { display: none; }

  .hero {
    padding-top: calc(var(--header-h) + 3.5rem);
  }
  .hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
  }
  .hero__figure { margin-top: 0; }
  .hero__figure img { aspect-ratio: 3 / 4; }

  .cards { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
  .split--reverse .split__media { order: 2; }
  .why-list { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .location-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2.5rem; align-items: center; }
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
  .hours-diet { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1100px) {
  .why-list { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 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; }
}

/* ---------- Rechtliche Seiten / Prosa ----------------------------------- */
.legal-hero {
  background: var(--forest-deep);
  color: var(--paper);
  padding-top: calc(var(--header-h) + clamp(2.5rem, 7vw, 4rem));
  padding-bottom: clamp(2.5rem, 7vw, 4rem);
}
.legal-hero h1 { color: #fff; }
.legal-hero p { color: #cdd8ca; margin-top: 0.8rem; }
.legal {
  max-width: 46rem;
  margin-inline: auto;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.legal h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 2.4rem 0 0.8rem;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.2rem; margin: 1.6rem 0 0.5rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 0.9rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; }
.legal a { color: var(--forest); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal .placeholder {
  display: block;
  background: var(--paper-3);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  color: var(--brass-ink);
  font-size: 0.95rem;
  margin: 0.4rem 0 1.2rem;
}
.legal .notice {
  background: rgba(207, 154, 63, 0.12);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  color: var(--ink);
  margin-bottom: 2rem;
}
.legal .notice strong { color: var(--brass-ink); }
.legal .back { display: inline-block; margin-top: 2rem; }

/* ---------- 404 --------------------------------------------------------- */
.notfound {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}
.notfound .big {
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 8rem);
  color: var(--brass);
  line-height: 1;
}

/* ---------- Print -------------------------------------------------------- */
@media print {
  .site-header, .mobile-menu, .hero__cta, .form, .socials { display: none; }
  body { color: #000; background: #fff; }
}
