/* ============================================================
   Come Prima · Rudersberg — Styles
   Mobile-first · lokale Schriften · DSGVO-freundlich
   Direktion "Forno & Famiglia": warmes Espresso/Cream,
   San-Marzano-Rot, Basilikum-Grün, Ocker. Serif: Fraunces.
   ============================================================ */

/* ---------- Lokale Schriften (kein externes CDN) ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('assets/fonts/hanken-grotesk.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --cream:    #F8F1E6;
  --cream-2:  #EFE4D2;
  --paper:    #FCF8F0;
  --espresso: #1C140E;
  --espresso-2: #2A1E14;
  --ink:      #2A1F17;
  --ink-soft: #6E5D49;
  --pomo:     #B5331F;
  --pomo-deep:#8E2615;
  --basil:    #4A6B3E;
  --ochre:    #C68A3C;
  --ochre-deep:#A06B23;
  --line:     rgba(42, 31, 23, 0.12);
  --line-2:   rgba(42, 31, 23, 0.08);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --maxw: 1180px;
  --gut: clamp(1.1rem, 4vw, 2rem);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(28,20,14,.06), 0 4px 14px rgba(28,20,14,.05);
  --shadow-md: 0 6px 18px rgba(28,20,14,.08), 0 18px 40px rgba(28,20,14,.07);
  --shadow-lg: 0 30px 70px rgba(28,20,14,.16);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html:focus-within { scroll-padding-top: 88px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-optical-sizing: auto; line-height: 1.08; font-weight: 600; letter-spacing: -0.01em; }

::selection { background: var(--pomo); color: #fff; }

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

.skip-link {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-200%);
  top: 8px; z-index: 200; background: var(--espresso); color: var(--cream);
  padding: .7rem 1.1rem; border-radius: 0 0 12px 12px; transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

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

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  text-transform: uppercase; letter-spacing: .22em; font-size: .74rem;
  font-weight: 700; color: var(--pomo); margin-bottom: 1rem;
}
.eyebrow--light { color: var(--ochre); }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pomo); box-shadow: 0 0 0 4px rgba(181,51,31,.15); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--pomo); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--btn-bg); color: var(--btn-fg);
  padding: .92rem 1.5rem; border: 1px solid transparent; border-radius: 999px;
  font-weight: 600; font-size: .98rem; text-decoration: none; letter-spacing: .01em;
  min-height: 48px; transition: transform .18s var(--ease), box-shadow .25s var(--ease), background-color .2s var(--ease);
  box-shadow: 0 6px 16px rgba(181,51,31,.22);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(181,51,31,.30); background: var(--pomo-deep); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--line); box-shadow: none; backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(42,31,23,.05); border-color: rgba(42,31,23,.25); box-shadow: none; }
.btn--sm { padding: .6rem 1.05rem; min-height: 42px; font-size: .9rem; }
.btn--block { width: 100%; }
.btn .ico { width: 1.15em; height: 1.15em; flex: none; }

.ico { width: 24px; height: 24px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 76px; }
.site-header.is-scrolled, .site-header--solid {
  background: rgba(248,241,230,.86);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand__mark { width: 40px; height: 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; letter-spacing: -0.01em; }
.brand__sub { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }

/* Nav */
.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 12px;
  background: rgba(252,248,240,.7); backdrop-filter: blur(6px);
}
.nav__bars { display: block; width: 22px; height: 16px; position: relative; }
.nav__bars span {
  position: absolute; left: 0; height: 2px; width: 100%; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav__bars span:nth-child(1) { top: 0; }
.nav__bars span:nth-child(2) { top: 7px; }
.nav__bars span:nth-child(3) { top: 14px; }
.nav__toggle[aria-expanded="true"] .nav__bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.nav__menu {
  list-style: none; padding: 0;
  position: fixed; inset: 76px 0 auto 0;
  display: flex; flex-direction: column; gap: .2rem;
  background: var(--cream);
  padding: 1rem var(--gut) 1.6rem;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform .32s var(--ease), opacity .25s var(--ease), visibility .25s;
}
.nav__menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
.nav__menu a {
  display: block; text-decoration: none; color: var(--ink);
  padding: .85rem .4rem; font-size: 1.12rem; font-weight: 500;
  border-bottom: 1px solid var(--line-2);
}
.nav__menu a:hover { color: var(--pomo); }
.nav__cta { margin-top: .8rem; }
.nav__cta a { border-bottom: 0; width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 110px; padding-bottom: clamp(3rem, 8vw, 6rem); overflow: hidden; }
.hero__glow {
  position: absolute; inset: -10% -20% auto -20%; height: 80%;
  background:
    radial-gradient(60% 60% at 22% 30%, rgba(198,138,60,.28), transparent 70%),
    radial-gradient(50% 60% at 80% 20%, rgba(181,51,31,.20), transparent 70%);
  filter: blur(6px); pointer-events: none; z-index: 0;
}
.hero__inner { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero__title {
  font-size: clamp(2.6rem, 9vw, 4.6rem); font-weight: 600; margin: .4rem 0 1.2rem; letter-spacing: -0.02em;
}
.hero__title em { font-style: italic; color: var(--pomo); font-weight: 500; }
.hero__lead { font-size: clamp(1.05rem, 2.4vw, 1.22rem); color: var(--ink-soft); max-width: 36ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.6rem; }
.hero__facts {
  list-style: none; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: .55rem .8rem;
  font-size: .92rem; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 1.3rem;
}
.hero__facts strong { color: var(--ink); font-weight: 700; }
.dot-sep { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--ochre); }

.hero__media { position: relative; }
.hero__img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 14 / 11; object-fit: cover; border: 1px solid rgba(255,255,255,.15);
}
.hero__seal {
  position: absolute; right: -10px; bottom: -18px; width: clamp(78px, 16vw, 116px); height: auto;
  filter: drop-shadow(0 8px 18px rgba(28,20,14,.25)); animation: spin-slow 40s linear infinite;
}
.hero__status {
  margin-top: 1.4rem; font-size: .9rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: .5rem;
}
.hero__status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--ink-soft); }
.hero__status[data-state="open"]::before { background: var(--basil); box-shadow: 0 0 0 4px rgba(74,107,62,.18); }
.hero__status[data-state="closed"]::before { background: var(--pomo); box-shadow: 0 0 0 4px rgba(181,51,31,.15); }
.container.hero__status { } /* noop */

@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.4rem, 8vw, 6rem); }
.section__head { max-width: 60ch; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section__title { font-size: clamp(1.9rem, 5vw, 3rem); }
.section__lead { color: var(--ink-soft); font-size: 1.08rem; margin-top: .9rem; max-width: 52ch; }

/* ---------- Trust ---------- */
.trust { background: var(--espresso); color: var(--cream); padding-block: clamp(2.6rem, 6vw, 4rem); }
.trust__grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.trust__item {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding: 1.5rem 1.4rem;
}
.trust__ico { width: 34px; height: 34px; color: var(--ochre); margin-bottom: .9rem; }
.trust__item h3 { font-size: 1.18rem; color: var(--cream); margin-bottom: .35rem; }
.trust__item p { color: rgba(248,241,230,.72); font-size: .96rem; line-height: 1.55; }

/* ---------- Cards (Leistungen) ---------- */
.section--leistungen { background: var(--cream); }
.cards { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
.card {
  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);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.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__body { padding: 1.3rem 1.4rem 1.5rem; }
.card__title { font-size: 1.28rem; margin-bottom: .5rem; }
.card__body p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Über uns ---------- */
.section--about { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.about { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about__badge {
  position: absolute; left: 1rem; bottom: 1rem;
  background: var(--pomo); color: #fff; font-size: .82rem; font-weight: 600;
  padding: .5rem .95rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.about__content p { color: var(--ink-soft); margin-top: 1rem; }
.about__content em { color: var(--pomo); font-style: italic; }
.ticks { list-style: none; padding: 0; margin: 1.4rem 0 1.8rem; display: grid; gap: .7rem; }
.ticks li { position: relative; padding-left: 2rem; color: var(--ink); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .12em; width: 1.25rem; height: 1.25rem;
  border-radius: 50%; background: var(--basil);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='m9.5 16.2-3.7-3.7 1.4-1.4 2.3 2.3 6-6 1.4 1.4z'/%3E%3C/svg%3E") center/118% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='m9.5 16.2-3.7-3.7 1.4-1.4 2.3 2.3 6-6 1.4 1.4z'/%3E%3C/svg%3E") center/118% no-repeat;
}

/* ---------- Warum wir ---------- */
.section--why { background: var(--espresso); color: var(--cream); }
.section--why .section__title { color: var(--cream); }
.why__grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.why__item { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.12); }
.why__num { font-family: var(--font-display); font-size: 1.5rem; color: var(--ochre); font-style: italic; }
.why__item h3 { color: var(--cream); font-size: 1.25rem; margin: .5rem 0 .4rem; }
.why__item p { color: rgba(248,241,230,.72); font-size: .98rem; }

/* ---------- Menu / Spezialitäten (Accordion mobil) ---------- */
.section--menu { background: var(--cream); }
.menu { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.menu__item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.menu__head {
  display: grid; grid-template-columns: 64px 1fr 24px; align-items: center; gap: 1rem;
  width: 100%; background: none; border: 0; text-align: left; padding: .85rem 1.1rem; min-height: 76px;
}
.menu__thumb { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; background: var(--cream-2); }
.menu__heading { display: flex; flex-direction: column; gap: .15rem; }
.menu__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.menu__tag { font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ochre-deep); }
.menu__chev { width: 24px; height: 24px; color: var(--ink-soft); transition: transform .3s var(--ease); }
.menu__head[aria-expanded="true"] .menu__chev { transform: rotate(180deg); }
.menu__panel {
  overflow: hidden; max-height: 0; transition: max-height .35s var(--ease);
}
.menu__panel p { padding: 0 1.1rem 1.2rem 1.1rem; color: var(--ink-soft); font-size: .98rem; }
.menu__item.is-open .menu__panel { max-height: 240px; }
.menu__note { margin-top: 1.4rem; font-size: .84rem; color: var(--ink-soft); font-style: italic; }

/* ---------- Steps ---------- */
.section--steps { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.steps { list-style: none; padding: 0; display: grid; gap: 1.4rem; grid-template-columns: 1fr; counter-reset: s; }
.steps__item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm); position: relative;
}
.steps__num {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 50%; background: var(--pomo); color: #fff; font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600; margin-bottom: .9rem;
}
.steps__item h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.steps__item p { color: var(--ink-soft); }
.steps__item a { color: var(--pomo); font-weight: 600; text-decoration: none; }
.steps__item a:hover { text-decoration: underline; }

/* ---------- Standort ---------- */
.section--standort { background: var(--cream); }
.standort { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: center; }
.standort__list { display: grid; gap: 1.1rem; margin: 1.6rem 0; }
.standort__list dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: var(--pomo); font-weight: 700; margin-bottom: .2rem; }
.standort__list dd { color: var(--ink); }
.standort__list a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.standort__list a:hover { color: var(--pomo); }
.standort__map { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.standort__map img { width: 100%; }
.standort__map figcaption { font-size: .8rem; color: var(--ink-soft); padding: .7rem 1rem; background: var(--paper); border-top: 1px solid var(--line); }

/* ---------- Kontakt ---------- */
.section--kontakt { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.kontakt { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: start; }
.kontakt__direct { list-style: none; padding: 0; margin-top: 1.6rem; display: grid; gap: 1rem; }
.kontakt__direct li { display: flex; align-items: center; gap: .8rem; color: var(--ink); }
.kontakt__direct .ico { color: var(--pomo); flex: none; }
.kontakt__direct a { color: var(--ink); text-decoration: none; font-weight: 600; }
.kontakt__direct a:hover { color: var(--pomo); }

.form {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow-md); display: grid; gap: 1.1rem;
}
.form__row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.req { color: var(--pomo); }
.field input, .field textarea {
  font: inherit; color: var(--ink); background: var(--cream); border: 1.5px solid var(--line);
  border-radius: 12px; padding: .8rem .9rem; min-height: 48px; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: #a4937c; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--pomo); box-shadow: 0 0 0 4px rgba(181,51,31,.12);
}
.field--invalid input, .field--invalid textarea { border-color: var(--pomo); }
.field__error { color: var(--pomo-deep); font-size: .82rem; font-weight: 600; }

.check { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; cursor: pointer; font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check__box {
  width: 26px; height: 26px; border: 1.5px solid var(--line); border-radius: 8px; background: var(--cream);
  display: grid; place-items: center; transition: background-color .2s var(--ease), border-color .2s var(--ease); margin-top: 1px;
}
.check__box::after {
  content: ""; width: 14px; height: 14px; transform: scale(0); transition: transform .2s var(--ease);
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='m9.5 16.2-3.7-3.7 1.4-1.4 2.3 2.3 6-6 1.4 1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='m9.5 16.2-3.7-3.7 1.4-1.4 2.3 2.3 6-6 1.4 1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.check input:checked + .check__box { background: var(--pomo); border-color: var(--pomo); }
.check input:checked + .check__box::after { transform: scale(1); }
.check input:focus-visible + .check__box { outline: 3px solid var(--pomo); outline-offset: 3px; }
.check__label a { color: var(--pomo); }
.field--check { gap: .3rem; }

.form__status { font-weight: 600; padding: .8rem 1rem; border-radius: 12px; }
.form__status[data-tone="ok"] { background: rgba(74,107,62,.12); color: var(--basil); }
.form__status[data-tone="err"] { background: rgba(181,51,31,.10); color: var(--pomo-deep); }
.form__hint { font-size: .8rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: rgba(248,241,230,.78); }
.footer__top { display: grid; gap: 2rem; grid-template-columns: 1fr; padding-block: clamp(2.6rem, 6vw, 3.6rem); }
.footer__emblem { width: 56px; height: 56px; opacity: .95; }
.footer__name { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); margin-top: .8rem; line-height: 1.2; }
.footer__name strong { font-size: 1.5rem; }
.footer__tag { font-size: .92rem; margin-top: .5rem; max-width: 34ch; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.1rem; }
.social {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16); color: var(--cream); transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.social img { width: 22px; height: 22px; filter: brightness(0) invert(1); opacity: .85; }
.social:hover { background: var(--pomo); transform: translateY(-2px); border-color: transparent; }
.footer__col h3 { font-family: var(--font-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; color: var(--ochre); margin-bottom: 1rem; font-weight: 700; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer__col a { text-decoration: none; color: rgba(248,241,230,.78); transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--cream); }
.footer__contact li { font-size: .94rem; }

.footer__bottom {
  display: flex; flex-direction: column; gap: .8rem; align-items: center; text-align: center;
  padding-block: 1.4rem; border-top: 1px solid rgba(255,255,255,.12);
}
.footer__copy { font-size: .84rem; color: rgba(248,241,230,.6); }
.footer__powered { font-size: .9rem; color: rgba(248,241,230,.7); }
.wowobot { color: #22b8e0; font-weight: 700; text-decoration: none; }
.wowobot:hover { text-decoration: underline; }

/* ---------- Legal pages ---------- */
.legal { padding-top: 120px; padding-bottom: clamp(3rem, 8vw, 5rem); }
.legal__inner { max-width: 760px; }
.legal__title { font-size: clamp(2.1rem, 6vw, 3.2rem); margin-bottom: 1.6rem; }
.legal__placeholder {
  background: rgba(198,138,60,.12); border: 1px solid rgba(198,138,60,.4); color: var(--ink);
  border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: 2rem; font-size: .95rem;
}
.legal__block { margin-bottom: 1.8rem; }
.legal__block h2 { font-size: 1.35rem; margin-bottom: .6rem; }
.legal__block p { color: var(--ink-soft); }
.footer__bottom--legal { border-top: 0; }

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

/* ============================================================
   Breakpoints
   ============================================================ */
@media (min-width: 600px) {
  .form__row { grid-template-columns: 1fr 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 880px) {
  body { font-size: 18px; }
  /* Desktop-Navigation */
  .nav__toggle { display: none; }
  .nav__menu {
    position: static; inset: auto; flex-direction: row; align-items: center; gap: .3rem;
    background: none; padding: 0; border: 0; box-shadow: none;
    transform: none; opacity: 1; visibility: visible; pointer-events: auto;
  }
  .nav__menu a { border: 0; padding: .55rem .85rem; font-size: .98rem; font-weight: 500; border-radius: 999px; }
  .nav__menu a:hover { background: rgba(42,31,23,.06); }
  .nav__cta { margin-top: 0; margin-left: .4rem; }
  .nav__cta a:hover { background: var(--pomo-deep); }

  .hero__inner { grid-template-columns: 1.05fr .95fr; }
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .about { grid-template-columns: .9fr 1.1fr; }
  .why__grid { grid-template-columns: repeat(4, 1fr); }
  .standort { grid-template-columns: 1fr 1.1fr; }
  .kontakt { grid-template-columns: .9fr 1.1fr; }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.4rem; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }

  /* Menu: auf Desktop als offene Karten, Akkordeon deaktiviert */
  .menu { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .menu__head { grid-template-columns: 56px 1fr; cursor: default; min-height: auto; padding: 1rem 1.1rem .4rem; }
  .menu__chev { display: none; }
  .menu__panel { max-height: none !important; overflow: visible; }
  .menu__panel p { padding-top: .2rem; }
}

@media (min-width: 1024px) {
  .about__media img { aspect-ratio: 4/5; object-fit: cover; }
}

/* ---------- 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; }
  .hero__seal { animation: none; }
}
