/* ============================================================
   bäckquem — Bäckerei zum Verweilen
   Minimalistisch · warm · sympathisch
   „Stillleben" — eine Galerie auf mehlfarbenen Wänden.
   Creme dominiert · Grün lebt in der Typo · Orange streng rationiert.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Moodboard-Farbraum */
  --green:        #243E35;   /* Primär — lebt fast nur in der Typo */
  --green-deep:   #1B2E27;
  --rose:         #EDCAC4;   /* warmer Akzent — nur als feine Hauche */
  --rose-deep:    #C98A7C;   /* legible Rosé/Ton für Kicker & Haarlinie */
  --rose-hair:    rgba(201, 138, 124, .55);
  --ink:          #11100E;   /* weiches Schwarz */
  --ink-70:       rgba(17, 16, 14, .72);
  --ink-55:       rgba(17, 16, 14, .55);
  --cream:        #F5EEE4;   /* Mehl — die Leinwand */
  --cream-deep:   #EDE2D1;   /* kaum merklicher Absatz */
  --cream-card:   #FBF6EC;   /* warmes Karten-Weiß */
  --orange:       #EE6634;   /* Akzent — genau drei Jobs */
  --orange-deep:  #D14F1F;

  --open:         #4F7D52;
  --closed:       #C24E2B;

  --geo:  "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --hand: "Shantell Sans", "Comic Sans MS", cursive;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;
  --arch: 50vw 50vw 22px 22px;

  --maxw: 1180px;
  --gutter: clamp(22px, 5vw, 68px);
  --header-h: 68px;

  /* weiche, warme Schatten — nie hart */
  --shadow-sm: 0 6px 22px -14px rgba(36, 38, 30, .35);
  --shadow-md: 0 22px 50px -28px rgba(36, 38, 30, .42);
  --hairline:  0 0 0 1.5px var(--rose-hair);

  --ease: cubic-bezier(.22, 1, .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) + 30px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--geo);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: clamp(15.5px, 1vw, 17px);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

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

.visually-hidden, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 14px; left: 14px; width: auto; height: auto; clip: auto;
  background: var(--green); color: var(--cream); padding: 10px 18px; border-radius: 999px; z-index: 300;
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--geo); font-weight: 600; line-height: 1.1; letter-spacing: -.015em; color: var(--green); }

/* Die handgezeichnete Signatur: ein Wort + Unterstrich */
.hand { position: relative; display: inline-block; white-space: nowrap; }
.hand em {
  font-family: var(--hand);
  font-style: italic;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0;
}
.hand-underline {
  position: absolute; left: -1%; bottom: -.26em;
  width: 102%; height: .42em; overflow: visible;
  color: var(--rose-deep); pointer-events: none;
}

.kicker {
  font-family: var(--hand);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--rose-deep);
  margin-bottom: 1rem;
}

.section { padding-block: clamp(82px, 11vw, 160px); position: relative; }
.section-head { max-width: 58ch; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.section-sub { color: var(--ink-70); font-size: 1.06rem; margin-top: 1.1rem; max-width: 50ch; }

/* ---------- Buttons & Links ---------- */
.btn {
  --btn-bg: var(--orange);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: .5em;
  padding: .82em 1.55em;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-primary { box-shadow: 0 10px 24px -12px rgba(238,102,52,.7); }
.btn-primary:hover { --btn-bg: var(--orange-deep); }

.text-link {
  font-weight: 500; color: var(--green); position: relative; padding-block: .3em;
}
.text-link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); border-radius: 2px; }
.text-link:hover::after { transform: scaleX(1); }

/* ---------- Brand-Doodle (einzige Illustration, kaum bewegt) ---------- */
.doodle { color: var(--green); }
@keyframes sway { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(1.4deg); } }
.doodle { animation: sway 4.5s ease-in-out infinite; transform-origin: 50% 70%; }

/* ---------- Floating Pill Header ---------- */
.site-header {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 100;
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none;
  padding-inline: 14px;
}
.pill {
  pointer-events: auto;
  width: 100%; max-width: 1040px;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding-inline: clamp(16px, 2vw, 26px);
  border-radius: 999px;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: saturate(135%) blur(16px);
  -webkit-backdrop-filter: saturate(135%) blur(16px);
  box-shadow: 0 8px 30px -16px rgba(36,38,30,.3), inset 0 0 0 1px rgba(36,62,53,.10);
  transition: box-shadow .3s;
}
.site-header.scrolled .pill { box-shadow: 0 12px 34px -16px rgba(36,38,30,.4), inset 0 0 0 1px rgba(36,62,53,.14); }

.brand { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: 1.28rem; letter-spacing: -.02em; color: var(--green); }
.brand-doodle { width: 32px; height: 32px; flex: none; }
.brand-word { transform: translateY(-1px); }

.nav { display: flex; gap: clamp(.9rem, 1.8vw, 1.7rem); }
.nav a { font-weight: 400; font-size: .92rem; color: var(--ink-70); position: relative; padding-block: .4rem; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); border-radius: 2px; }
.nav a:hover, .nav a.is-active { color: var(--green); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: .6rem; }

.status-pill {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .4em .85em; border-radius: 999px;
  background: rgba(36,62,53,.08); font-size: .78rem; font-weight: 500; color: var(--green);
  white-space: nowrap;
}
.status-pill--sm { font-size: .7rem; padding: .25em .6em; vertical-align: middle; margin-left: .5rem; }
.status-dot { width: .58em; height: .58em; border-radius: 50%; background: rgba(17,16,14,.35); flex: none; }
.status-pill.is-open  { color: #fff; background: var(--open); }
.status-pill.is-closed{ color: #fff; background: var(--closed); }
.status-pill.is-open .status-dot,
.status-pill.is-closed .status-dot { background: #fff; }

.btn-call { font-size: .86rem; padding: .6em 1.25em; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--green); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  pointer-events: auto;
  display: none; flex-direction: column; gap: .2rem;
  width: 100%; max-width: 1040px;
  margin-top: 10px; padding: 1.1rem 1.5rem 1.5rem;
  background: var(--cream-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.mobile-nav a { padding: .8rem .4rem; font-size: 1.08rem; font-weight: 500; color: var(--green); border-bottom: 1.5px dashed rgba(36,62,53,.16); }
.mobile-nav .btn { margin-top: 1rem; justify-content: center; border-bottom: none; }
.mobile-nav.open { display: flex; animation: dropIn .35s var(--ease); }
@keyframes dropIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
@media (min-width: 921px) { .mobile-nav { display: none !important; } }

/* ---------- Bild-Wrapper (Rosé-Haarlinie + weicher Schatten) ---------- */
.img-wrap {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  background: var(--cream-deep);
  box-shadow: var(--hairline), var(--shadow-sm);
}
.img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-wrap.img-failed::after {
  content: "✶"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 2.2rem; color: var(--rose-deep);
}
.img-wrap.img-failed img { opacity: 0; }

.arch { border-radius: var(--arch); }
.arch-soft { border-radius: 150px 150px var(--r-md) var(--r-md); }

/* ---------- Reveal (eine ruhige Bewegung) ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Hero ---------- */
.hero { padding-top: calc(var(--header-h) + clamp(60px, 9vw, 120px)); padding-bottom: clamp(48px, 7vw, 96px); position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 110%;
  background: radial-gradient(95% 60% at 88% 6%, color-mix(in srgb, var(--rose) 32%, transparent), transparent 60%);
  z-index: -1; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.hero-copy { max-width: 30rem; }

.eyebrow { font-family: var(--hand); font-weight: 500; color: var(--rose-deep); font-size: 1rem; margin-bottom: 1.3rem; }
.hero-title { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 1.5rem; }
.hero-lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-70); max-width: 44ch; }
.name-note { margin-top: 1rem; font-family: var(--hand); font-size: 1rem; color: var(--ink-55); }
.name-note em { color: var(--rose-deep); font-style: italic; }
.name-note strong { color: var(--green); font-weight: 600; }

.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem 1.6rem; margin-top: 2.2rem; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; margin-top: 2.4rem; padding: 0; }
.hero-badges li { position: relative; padding-left: 1.3rem; font-size: .88rem; color: var(--ink-55); font-weight: 400; }
.hero-badges li::before { content: "✶"; position: absolute; left: 0; color: var(--rose-deep); }

.hero-media { position: relative; }
.tilt-scene { perspective: 1100px; }
.hero-photo { aspect-ratio: 1/1.18; transform-style: preserve-3d; transition: transform .5s var(--ease); will-change: transform; }
.hero-photo.tilting { transition: transform .12s linear; }

/* ---------- Story ---------- */
.story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.story-media .img-wrap { aspect-ratio: 4/5; }
.story-copy { max-width: 56ch; }
.story-copy h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
.story-copy p { color: var(--ink-70); margin-bottom: 1.3rem; }

.pullquote {
  font-family: var(--hand); font-size: clamp(1.15rem, 1.9vw, 1.45rem); font-weight: 500;
  line-height: 1.5; color: var(--green); border-left: 3px solid var(--orange);
  padding: .2rem 0 .2rem 1.5rem; margin: 1.8rem 0;
}
.pullquote cite { display: block; font-style: normal; font-family: var(--geo); font-size: .88rem; font-weight: 500; color: var(--ink-55); margin-top: 1rem; }

/* ---------- Sortiment ---------- */
.sortiment { background: var(--cream); }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.6rem, 2.5vw, 2.4rem); }
.prod-card { display: flex; flex-direction: column; }
.prod-card .img-wrap { aspect-ratio: 4/5; border-radius: var(--r-md); margin-bottom: 1.1rem; }
.prod-card .img-wrap img { transition: transform .8s var(--ease); }
.prod-card:hover .img-wrap img { transform: scale(1.03); }
.prod-body h3 { font-size: 1.1rem; font-weight: 600; display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; margin-bottom: .4rem; }
.prod-body p { color: var(--ink-70); font-size: .92rem; line-height: 1.6; }

.tag {
  font-family: var(--hand); font-size: .72rem; font-weight: 500;
  padding: .15em .7em; border-radius: 999px; white-space: nowrap;
  background: rgba(36,62,53,.09); color: var(--green);
}

.grid-note { margin-top: clamp(2.2rem, 4vw, 3.4rem); text-align: center; color: var(--ink-55); font-size: .98rem; }
.grid-note a { color: var(--green); font-weight: 500; border-bottom: 2px solid var(--orange); padding-bottom: 1px; transition: color .2s; }
.grid-note a:hover { color: var(--orange-deep); }

/* ---------- Mittagstisch (auf Creme, kein dunkler Block) ---------- */
.mittag { background: var(--cream); }
.mittag-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.mittag-copy { max-width: 50ch; }
.mittag-copy h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
.mittag-copy > p { color: var(--ink-70); margin-bottom: 2rem; }

.menu-list { list-style: none; padding: 0; }
.menu-list li { display: flex; align-items: baseline; gap: .8rem; padding: .95rem 0; border-bottom: 1.5px dashed rgba(36,62,53,.2); }
.menu-name { font-family: var(--hand); font-size: clamp(1.1rem, 1.7vw, 1.35rem); font-weight: 500; color: var(--green); white-space: nowrap; }
.menu-dots { flex: 1; border-bottom: 2px dotted rgba(36,62,53,.28); transform: translateY(-4px); }
.menu-meta { color: var(--ink-55); font-size: .88rem; white-space: nowrap; }
.menu-note { margin-top: 1.4rem; font-size: .88rem; color: var(--ink-55); font-style: italic; }

.mittag-card { background: var(--cream-card); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--hairline), var(--shadow-md); }
.mittag-card .img-wrap { aspect-ratio: 16/10; border-radius: 0; box-shadow: none; }
.mittag-card-body { padding: 1.5rem 1.6rem 1.8rem; }
.mittag-card-body h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
.mittag-card-body > p { color: var(--ink-70); margin-bottom: 1.2rem; font-size: .95rem; }
.news-form { display: flex; gap: .5rem; flex-wrap: wrap; }
.news-form input {
  flex: 1; min-width: 0; padding: .8em 1.1em; border-radius: 999px;
  border: 1.5px solid rgba(36,62,53,.18); background: #fff; font: inherit; color: var(--ink);
  transition: border-color .2s;
}
.news-form input:focus-visible { outline: none; border-color: var(--orange); }
.news-form .btn { flex: none; }
.form-hint { font-size: .82rem; color: var(--ink-55); margin-top: .7rem; }
.form-hint.is-success { color: var(--open); font-weight: 500; }
.form-hint.is-error { color: var(--closed); font-weight: 500; }

/* ---------- Brot ---------- */
.brot { background: var(--cream); }
.brot-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.brot-media .img-wrap { aspect-ratio: 4/5; }
.brot-copy { max-width: 50ch; }
.brot-copy h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.3rem; }
.brot-copy > p { color: var(--ink-70); margin-bottom: 1.6rem; }
.feature-list { list-style: none; padding: 0; display: grid; gap: .8rem; }
.feature-list li { display: flex; align-items: center; gap: .8rem; font-weight: 400; font-size: 1.02rem; color: var(--green); }
.feature-list span { color: var(--rose-deep); }

/* ---------- Galerie (kaum merkliches Creme-Deep) ---------- */
.gallery { background: var(--cream-deep); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); }
.gallery-grid .g-wide { grid-column: 1 / -1; aspect-ratio: 16/6.4; }
.gallery-grid .img-wrap:not(.g-wide) { aspect-ratio: 1/1; }
.gallery-grid img { transition: transform .8s var(--ease); }
.gallery-grid .img-wrap:hover img { transform: scale(1.03); }

/* ---------- Besuch uns (Creme-Deep) ---------- */
.besuch { background: var(--cream-deep); }
.besuch-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.besuch-copy h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.besuch-copy > p { color: var(--ink-70); margin-bottom: 2rem; max-width: 44ch; }
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.info-card { background: var(--cream-card); border-radius: var(--r-md); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .7rem; }
.info-card p { color: var(--ink-70); font-size: .94rem; }
.info-card a { color: var(--green); font-weight: 500; }
.info-card a:hover { color: var(--orange-deep); }
.info-card--hours { grid-column: 1 / -1; }
.link-arrow { display: inline-block; margin-top: .8rem; font-weight: 500; color: var(--green); border-bottom: 2px solid var(--orange); padding-bottom: 1px; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: .3rem; }
.hours-table th, .hours-table td { text-align: left; padding: .5rem 0; border-bottom: 1.5px dashed rgba(36,62,53,.16); font-size: .94rem; }
.hours-table th { font-weight: 500; color: var(--green); width: 40%; }
.hours-table td { color: var(--ink-70); text-align: right; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }

.besuch-map { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--hairline), var(--shadow-sm); aspect-ratio: 4/3.4; background: var(--cream-deep); }
.besuch-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.82) contrast(1.02); }
.map-link {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--green); color: var(--cream); font-weight: 500; font-size: .84rem;
  padding: .55em 1.05em; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.map-link:hover { background: var(--orange); }

/* ---------- Footer (der einzige dunkle Anker) ---------- */
.site-footer { background: var(--green); color: var(--cream); padding-top: clamp(56px, 6vw, 84px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.brand--footer { font-size: 1.55rem; margin-bottom: 1rem; color: var(--cream); }
.brand--footer .brand-doodle { color: var(--rose); }
.footer-brand p { color: rgba(245,238,228,.6); max-width: 34ch; margin-bottom: 1.6rem; }
.footer-col h4 { font-family: var(--hand); font-weight: 500; font-size: .98rem; color: var(--rose); margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; color: rgba(245,238,228,.7); padding-block: .35rem; transition: color .2s; font-size: .94rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-block: 1.6rem; border-top: 1px solid rgba(245,238,228,.13); font-size: .84rem; color: rgba(245,238,228,.45); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .nav, .btn-call { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.8rem; }
  .hero-copy { max-width: none; }
  .hero-media { max-width: 440px; }
  .hero-photo { aspect-ratio: 1/1.05; }
  .story-grid, .mittag-grid, .brot-inner, .besuch-grid { grid-template-columns: 1fr; }
  .story-media, .brot-media { max-width: 440px; }
  .brot-media { order: -1; }
  .mittag-card { max-width: 520px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; --header-h: 58px; }
  .site-header { top: 10px; padding-inline: 10px; }
  .header-actions .status-pill { display: none; }
  .brand { font-size: 1.12rem; }
  .brand-doodle { width: 27px; height: 27px; }
  .hero-title { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .card-grid { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
  .prod-card .img-wrap { aspect-ratio: 1/1; }
  .info-cards { grid-template-columns: 1fr; }
  .gallery-grid .g-wide { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-name { white-space: normal; }
  .menu-list li { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; }
}

/* ============================================================
   Multi-Page — Unterseiten, Kategorie-Grid, Speisekarten
   ============================================================ */

/* ---------- Unterseiten-Hero ---------- */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(52px, 8vw, 100px));
  padding-bottom: clamp(8px, 2vw, 24px);
  position: relative;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 130%;
  background: radial-gradient(80% 60% at 88% 8%, color-mix(in srgb, var(--rose) 28%, transparent), transparent 62%);
  z-index: -1; pointer-events: none;
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: .45em; align-items: center; font-size: .85rem; color: var(--ink-55); margin-bottom: 1.1rem; }
.breadcrumb a { color: var(--ink-55); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { color: var(--rose-deep); }
.breadcrumb .here { color: var(--green); font-weight: 500; }
.page-hero h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); font-weight: 600; line-height: 1.08; margin-bottom: 1.1rem; }
.page-hero .lead { color: var(--ink-70); max-width: 56ch; font-size: clamp(1.02rem, 1.4vw, 1.16rem); }

/* page sections sit closer to the page-hero */
.page-hero + .section { padding-top: clamp(40px, 6vw, 80px); }

/* ---------- Start: Kategorie-Navigation ---------- */
.home-intro { text-align: center; max-width: 60ch; margin: 0 auto clamp(36px, 5vw, 56px); }
.home-intro .kicker { display: inline-block; }
.home-intro h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2vw, 1.7rem); }
.cat-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-lg); aspect-ratio: 4/3.3;
  box-shadow: var(--hairline), var(--shadow-sm);
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(17,16,14,.66)); }
.cat-card:hover img { transform: scale(1.05); }
.cat-label { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1rem; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.cat-label h3 { color: var(--cream); font-size: 1.2rem; font-weight: 600; letter-spacing: -.01em; }
.cat-arrow { color: var(--cream); font-size: 1.2rem; transition: transform .3s var(--ease); }
.cat-card:hover .cat-arrow { transform: translateX(5px); }
.cat-card--wide { grid-column: span 1; }

/* ---------- Speisekarten ---------- */
.menu { max-width: 900px; margin-inline: auto; }
.menu-intro { max-width: 60ch; margin-bottom: clamp(28px, 4vw, 44px); color: var(--ink-70); }
.menu-week { font-family: var(--hand); color: var(--rose-deep); font-size: 1.05rem; margin-bottom: .4rem; }

.download-row { display: flex; flex-wrap: wrap; gap: .8rem 1.1rem; align-items: center; margin: clamp(1.4rem, 3vw, 2.2rem) 0 clamp(2rem, 4vw, 3rem); }
.download-note { color: var(--ink-55); font-size: .9rem; }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--green); box-shadow: inset 0 0 0 2px rgba(36,62,53,.28); }
.btn-ghost:hover { --btn-bg: var(--green); --btn-fg: var(--cream); box-shadow: var(--shadow-sm); }

.menu-group { margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); }
.menu-group-title {
  font-family: var(--hand); color: var(--rose-deep); font-size: 1.18rem; font-weight: 500;
  margin-bottom: 1rem; padding-bottom: .55rem; border-bottom: 1.5px dashed rgba(36,62,53,.22);
}
.menu-group-title.is-day { color: var(--green); font-size: 1.35rem; }
.menu-group-title .day-note { font-family: var(--geo); font-size: .8rem; color: var(--closed); margin-left: .6rem; font-weight: 500; }

.menu-item { display: grid; grid-template-columns: 1fr auto; gap: .15rem 1.2rem; padding: .8rem 0; border-bottom: 1px dashed rgba(36,62,53,.13); align-items: baseline; }
.menu-item:last-child { border-bottom: none; }
.m-name { grid-column: 1; grid-row: 1; font-weight: 600; color: var(--green); display: inline; }
.m-name .vtag { margin-left: .5rem; }
.m-price { grid-column: 2; grid-row: 1; font-weight: 600; color: var(--green); white-space: nowrap; font-variant-numeric: tabular-nums; }
.m-desc { grid-column: 1; grid-row: 2; color: var(--ink-70); font-size: .92rem; line-height: 1.55; }
.m-allerg { grid-column: 1; grid-row: 3; color: var(--ink-55); font-size: .76rem; margin-top: .15rem; letter-spacing: .03em; }
.m-sub { grid-column: 1 / -1; color: var(--ink-55); font-size: .82rem; font-style: italic; padding: .2rem 0 .1rem; }

.kombi-box { background: var(--cream-card); border-radius: var(--r-md); padding: 1.4rem 1.6rem 1.5rem; box-shadow: var(--hairline), var(--shadow-sm); margin-top: 1.6rem; }
.kombi-box h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .8rem; }
.kombi-box ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.kombi-box li { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--ink-70); font-size: .95rem; border-bottom: 1px dashed rgba(36,62,53,.12); padding-bottom: .55rem; }
.kombi-box li:last-child { border-bottom: none; padding-bottom: 0; }
.kombi-box b { color: var(--green); }

.legend { max-width: 900px; margin: clamp(1.8rem, 3vw, 2.6rem) auto 0; font-size: .8rem; color: var(--ink-55); line-height: 1.7; border-top: 1.5px dashed rgba(36,62,53,.18); padding-top: 1.2rem; }

@media (max-width: 920px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 16/10; }
  .menu-item { grid-template-columns: 1fr; }
  .menu-item > * { grid-column: 1; grid-row: auto; }
  .m-price { justify-self: start; margin-top: .1rem; }
  .m-name { font-size: 1.02rem; }
}
