/* ============================================================
   El Greco Regen – Apple-Maßsystem
   Werte direkt von apple.com/de gemessen (Sept. 2026):
   Leiste 48 px rgba(0,0,0,.8) + saturate(180%) blur(20px),
   Typo-Treppe 80/48/28/21/17/14/12 in Gewicht 600 (Fließtext 400),
   Umbruchpunkte 1068 und 734, Kapitel in #000, #1d1d1f, #f5f5f7, #fff,
   Knöpfe #0071e3, Radius 980, 17 px/400, Kacheln weiß mit 28 px Radius.
   ============================================================ */

:root {
  --black: #000;
  --dark: #1d1d1f;
  --light: #f5f5f7;
  --white: #fff;
  --text: #1d1d1f;
  --text2: #6e6e73;
  --text3: #86868b;
  --line: #d2d2d7;
  --on-black: #f5f5f7;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --link: #0066cc;
  --link-dark: #2997ff;
  --oliv: #6f7a3a;
  --gold: #e0b25a;
  --wein: #8b1e2c;

  /* Unterseiten (Impressum/Datenschutz) greifen auf diese Namen zu */
  --paper: #fff; --sand: #f5f5f7; --line-soft: #d2d2d7; --r-lg: 18px; --shadow: none;
  --ink-soft: #6e6e73; --walnuss: #6e6e73; --umbra: #1d1d1f;

  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.4, 0, .6, 1);
  --ease-out: cubic-bezier(.25, .1, .25, 1);
  --nav-h: 48px;
  --wrap: 980px;
  --wrap-wide: 1024px;
}

/* ---------- Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; -webkit-text-size-adjust: 100%; }
html.intro-on { overflow: hidden; }
body {
  margin: 0; background: var(--black); color: var(--text);
  font-family: var(--sans); font-size: 17px; line-height: 25px; letter-spacing: -.022em;
  overflow-x: clip; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 500; background: var(--dark); color: #fff; padding: 8px 14px; border-radius: 980px; transition: top .2s; }
.skip-link:focus { top: 60px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 600; color: inherit; }

/* Typo-Treppe (1440 / 900 / 375) */
.headline-super { font-size: 80px; line-height: 84px; letter-spacing: -.015em; font-weight: 600; }
.section-headline { font-size: 48px; line-height: 52px; letter-spacing: -.003em; font-weight: 600; color: var(--text); }
.section-sub { font-size: 21px; line-height: 25px; letter-spacing: .011em; color: var(--text2); margin-top: 12px; max-width: 34em; }
.eyebrow { font-size: 21px; line-height: 25px; letter-spacing: .011em; font-weight: 600; color: var(--gold); margin-bottom: 10px; }
.grad { background-clip: text; -webkit-background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.grad-gold { background-image: linear-gradient(90deg, #f7dfa0, #e0b25a 48%, #c9902c); }
.grad-blue { background-image: linear-gradient(90deg, #022640, #5786ab); }

/* ---------- Knöpfe und Links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 11px 21px; border-radius: 980px;
  background: var(--blue); color: #fff; font-size: 17px; line-height: 1.17; letter-spacing: -.022em; font-weight: 400;
  text-decoration: none; border: 0; cursor: pointer; transition: background-color .2s var(--ease);
}
.btn:hover { background: var(--blue-hover); text-decoration: none; }
.btn-small { min-height: 24px; padding: 4px 11px; font-size: 12px; line-height: 1; }
.link { color: var(--link); font-size: 17px; }
.link-light { color: var(--link-dark); }

/* ---------- Leiste ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  background: rgba(0, 0, 0, .8);
  -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px);
}
.nav-inner { max-width: var(--wrap-wide); margin: 0 auto; height: 100%; padding: 0 22px; display: flex; align-items: center; gap: 28px; }
.nav-logo img { display: block; height: 24px; width: auto; opacity: .92; }
.nav-links { display: flex; gap: 28px; margin-left: 8px; }
.nav-links a { color: rgba(255, 255, 255, .8); font-size: 12px; letter-spacing: -.01em; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-tel { margin-left: auto; color: rgba(255, 255, 255, .8); font-size: 12px; white-space: nowrap; }
.nav-tel:hover { color: #fff; text-decoration: none; }

/* ---------- Hero (schwarz) ---------- */
.hero { background: var(--black); color: var(--on-black); padding-top: var(--nav-h); }
.hero-inner { min-height: calc(100svh - var(--nav-h)); display: grid; align-content: center; justify-items: center; text-align: center; padding: 64px 22px 40px; }
.hero-eyebrow { font-size: 21px; line-height: 25px; letter-spacing: .011em; font-weight: 600; color: var(--on-black); }
.hero-mark {
  width: min(760px, 86vw); aspect-ratio: 1270 / 394; margin: 22px 0 28px;
  background: linear-gradient(90deg, #f7dfa0, #e0b25a 48%, #c9902c);
  -webkit-mask: url("assets/logo-wordmark-white.svg") center / contain no-repeat;
  mask: url("assets/logo-wordmark-white.svg") center / contain no-repeat;
}
.hero-headline { font-size: 80px; line-height: 84px; letter-spacing: -.015em; font-weight: 600; color: var(--on-black); max-width: 14ch; }
.hero-sub { font-size: 28px; line-height: 32px; letter-spacing: .007em; color: var(--text3); margin-top: 18px; max-width: 26ch; }
.hero-capital { width: 120px; margin-top: 48px; color: var(--on-black); }
.hero-capital svg { width: 100%; height: auto; display: block; }
.buystrip { border-top: 1px solid rgba(255, 255, 255, .14); background: var(--black); }
.buystrip-inner { max-width: var(--wrap); margin: 0 auto; padding: 22px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.buystrip-text { color: var(--on-black); font-size: 17px; }
.buystrip-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.status { display: inline-flex; align-items: center; gap: 8px; }
.status-dot { flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.is-open .status-dot { background: #30d158; }

/* Hero-Einzug: Kanneluren zeichnen sich, Zeilen steigen */
html.js .fade-in { opacity: 0; transform: translateY(20px); }
html.js.hero-go .fade-in { opacity: 1; transform: none; transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--d, 0s); }
html.js .hero-capital .flute { stroke-dasharray: 1; stroke-dashoffset: 1; }
html.js.hero-go .hero-capital .flute { animation: flute-draw 1.1s var(--ease-out) forwards; animation-delay: calc(.7s + var(--i, 0) * .08s); }
@keyframes flute-draw { to { stroke-dashoffset: 0; } }

/* ---------- Abschnitte ---------- */
.section { padding: 144px 0; }
.section-light { background: var(--light); color: var(--text); }
.section-white { background: var(--white); color: var(--text); }
.section-black { background: var(--black); color: var(--on-black); }
.section-dark { background: var(--black); color: var(--on-black); }
.section-dark2 { background: var(--dark); color: var(--on-black); }

/* ---------- Highlights: Karten-Galerie ---------- */
.gallery { margin-top: 40px; }
.gallery-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 12px max(22px, calc((100% - 980px) / 2)) 24px;
  scroll-padding-left: max(22px, calc((100% - 980px) / 2));
}
.gallery-track::-webkit-scrollbar { display: none; }
.card {
  position: relative; flex: 0 0 405px; scroll-snap-align: start;
  background: var(--white); border-radius: 28px; overflow: hidden;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, .08);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: scale(1.012); box-shadow: 2px 4px 16px rgba(0, 0, 0, .16); }
.card img { display: block; width: 100%; height: 300px; object-fit: cover; }
.card-copy { padding: 22px 26px 28px; }
.card-copy h3 { font-size: 21px; line-height: 25px; letter-spacing: .011em; color: var(--text); }
.card-copy p { margin-top: 6px; font-size: 14px; line-height: 20px; letter-spacing: -.016em; color: var(--text2); }
.card-link { position: absolute; inset: 0; border-radius: inherit; }
.gallery-paddles { display: flex; justify-content: flex-end; gap: 14px; padding-top: 4px; }
.paddle { width: 36px; height: 36px; border-radius: 50%; border: 0; background: rgba(0, 0, 0, .08); color: var(--text); display: grid; place-items: center; cursor: pointer; transition: background-color .2s, opacity .2s; }
.paddle:hover { background: rgba(0, 0, 0, .14); }
.paddle[disabled] { opacity: .32; cursor: default; }

/* ---------- Küche: gepinnte Bühne ---------- */
.story { position: relative; height: 340vh; }
.story-pin { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.story-frame {
  position: absolute; inset: 0; margin: 0 auto; max-width: var(--wrap-wide); padding: 0 22px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px;
  opacity: 0; will-change: opacity, transform; pointer-events: none;
}
.story-media img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 28px; box-shadow: 0 30px 60px rgba(0, 0, 0, .5); will-change: transform; }
.story-copy h2 { font-size: 48px; line-height: 52px; letter-spacing: -.003em; color: var(--on-black); }
.story-copy p:not(.eyebrow) { margin-top: 16px; font-size: 21px; line-height: 25px; letter-spacing: .011em; color: var(--text3); max-width: 24em; }
.story-progress { position: absolute; left: 0; right: 0; bottom: 28px; display: flex; justify-content: center; gap: 8px; margin: 0; }
.story-progress i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .3); transition: background-color .3s; }
.story-progress i.on { background: var(--on-black); }

/* ---------- Statement: Wortfüllung ---------- */
.fillstage { position: relative; height: 200vh; }
.fill-pin { position: sticky; top: 0; height: 100vh; display: grid; place-content: center; padding: 0 22px; }
.fill { max-width: 840px; margin: 0 auto; font-size: 40px; line-height: 44px; letter-spacing: 0; font-weight: 600; color: var(--on-black); }
.fill .w { display: inline-block; opacity: .2; will-change: opacity; }
.fill-sign { margin: 28px auto 0; max-width: 840px; font-size: 17px; line-height: 25px; color: var(--text3); }

/* ---------- Speisekarte ---------- */
.tabnav { display: flex; gap: 40px; border-bottom: 1px solid var(--line); margin-top: 40px; }
.tab { background: none; border: 0; padding: 14px 0; margin-bottom: -1px; font-family: var(--sans); font-size: 17px; letter-spacing: -.022em; color: var(--text2); border-bottom: 2px solid transparent; cursor: pointer; }
.tab.active { color: var(--text); border-bottom-color: var(--text); }
.tab:hover { color: var(--text); }
.catbar {
  position: sticky; top: var(--nav-h); z-index: 30;
  background: rgba(255, 255, 255, .8); -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.catbar-inner { display: flex; gap: 28px; overflow-x: auto; scrollbar-width: none; padding: 14px 22px; }
.catbar-inner::-webkit-scrollbar { display: none; }
.catbar a { flex: 0 0 auto; font-size: 12px; color: rgba(29, 29, 31, .72); }
.catbar a:hover { color: var(--text); text-decoration: none; }
.catbar a.active { color: var(--text); font-weight: 600; }
.menu-columns { column-count: 2; column-gap: 40px; padding-top: 40px; }
.menu-group { break-inside: avoid; margin-bottom: 44px; }
.menu-cat { font-size: 28px; line-height: 32px; letter-spacing: .007em; padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 4px; scroll-margin-top: 110px; }
.menu-item { display: grid; grid-template-columns: 2.4em minmax(0, 1fr) auto; column-gap: 12px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.menu-item:target { background: #fff6dd; box-shadow: 0 0 0 8px #fff6dd; }
.menu-nr { font-size: 12px; line-height: 16px; color: var(--text3); font-variant-numeric: tabular-nums; }
.menu-name { font-size: 17px; line-height: 25px; font-weight: 600; color: var(--text); }
.menu-price { font-size: 17px; line-height: 25px; color: var(--text); white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-price small { font-size: 12px; color: var(--text3); margin-right: 8px; }
.menu-desc { grid-column: 2 / 4; font-size: 14px; line-height: 20px; letter-spacing: -.016em; color: var(--text2); }
.menu-note { font-size: 14px; line-height: 20px; color: var(--text2); padding: 10px 0 4px; }
.menu-tipp { font-size: 14px; line-height: 20px; color: var(--text2); padding: 14px 0 4px; }
.menu-tipp span { font-weight: 600; color: var(--text); margin-right: 6px; }
.menu-quote { font-size: 21px; line-height: 25px; font-weight: 600; letter-spacing: .011em; color: var(--text); padding: 20px 0 8px; }
.menu-footnote { font-size: 12px; line-height: 16px; color: var(--text3); padding-top: 12px; }
.menu-foot { font-size: 12px; line-height: 16px; color: var(--text3); padding-top: 8px; }
.veg { display: inline-block; margin-left: 6px; width: 16px; height: 16px; line-height: 14px; text-align: center; border: 1px solid var(--oliv); border-radius: 50%; color: var(--oliv); font-size: 10px; font-weight: 600; text-decoration: none; vertical-align: 2px; cursor: help; }

/* ---------- Kacheln ---------- */
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.tile { background: var(--white); border-radius: 28px; padding: 40px; }
.tile h3 { font-size: 28px; line-height: 32px; letter-spacing: .007em; color: var(--text); }
.tile p { margin-top: 12px; color: var(--text2); }
.tile-address { font-weight: 600; color: var(--text) !important; }
.tile .link { display: inline-block; margin-top: 14px; }
.tile-tel { display: inline-block; margin-top: 14px; font-size: 28px; line-height: 32px; font-weight: 600; color: var(--link); }
.tile-status { margin-top: 18px; font-size: 14px; line-height: 20px; color: var(--text) !important; }
.tile-dark { background: var(--dark); color: var(--on-black); }
.tile-dark h3 { color: var(--on-black); }
.tile-dark p { color: var(--text3); }
.tile-dark .btn { margin-top: 20px; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 14px; }
.hours-table th, .hours-table td { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 20px; letter-spacing: -.016em; white-space: nowrap; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table th { text-align: left; font-weight: 400; color: var(--text); }
.hours-table td { text-align: right; color: var(--text2); font-variant-numeric: tabular-nums; }
.hours-table tr.closed td { color: var(--text3); }
.hours-table tr.today th, .hours-table tr.today td { font-weight: 600; color: var(--text); }

/* ---------- Reservieren ---------- */
.reserve-inner { text-align: center; }
.reserve .headline-super { color: var(--on-black); }
.reserve-sub { margin: 20px auto 30px; font-size: 21px; line-height: 25px; letter-spacing: .011em; color: var(--text3); }
.reserve-actions { display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; }

/* ---------- Fuß ---------- */
.footer { background: var(--light); color: var(--text3); padding: 28px 0 40px; font-size: 12px; line-height: 16px; letter-spacing: -.01em; }
.footer-line { margin-bottom: 8px; max-width: 980px; }
.footer a { color: #424245; }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px; border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px; }
.footer-links a { margin-left: 14px; padding-left: 14px; border-left: 1px solid var(--line); }
.footer-links a:first-child { margin-left: 0; padding-left: 0; border-left: 0; }

/* ---------- Telefon-Knopf am Handy ---------- */
.phone-fab { display: none; position: fixed; right: 16px; bottom: 16px; z-index: 55; width: 54px; height: 54px; border-radius: 50%; background: var(--blue); color: #fff; align-items: center; justify-content: center; box-shadow: 0 10px 22px -10px rgba(0, 0, 0, .6); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.phone-fab.fab-weg { opacity: 0; transform: translateY(20px); pointer-events: none; }

/* ---------- Einblenden beim Scrollen ---------- */
.fade { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.fade.is-visible { opacity: 1; transform: none; }

/* ---------- Wein-Intro ---------- */
.intro { display: none; position: fixed; inset: 0; z-index: 400; background: var(--black); color: var(--on-black); place-items: center; text-align: center; }
html.intro-on .intro { display: grid; }
.intro.intro-out { opacity: 0; transition: opacity .75s var(--ease); pointer-events: none; }
.intro-stage { position: relative; display: grid; justify-items: center; }
.intro-glow { position: absolute; left: 50%; top: 46%; width: 70vmin; height: 70vmin; transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(139, 30, 44, .5), rgba(139, 30, 44, 0) 66%); opacity: 0; animation: intro-glow 2.2s var(--ease) .7s forwards; }
@keyframes intro-glow { to { opacity: 1; } }
.intro-glass { position: relative; width: min(190px, 42vw); height: auto; overflow: visible; }
.wg-bowl, .wg-stem, .wg-base { fill: none; stroke: rgba(245, 245, 247, .92); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: wg-draw .9s var(--ease) forwards; }
.wg-stem { animation-delay: .3s; }
.wg-base { animation-delay: .45s; }
@keyframes wg-draw { to { stroke-dashoffset: 0; } }
.wg-stream { fill: var(--wein); transform-box: fill-box; transform-origin: 50% 0; transform: scaleY(0); animation: wg-stream 2s linear .7s forwards; }
@keyframes wg-stream { 0% { transform: scaleY(0); opacity: 1; } 10% { transform: scaleY(1); opacity: 1; } 74% { transform: scaleY(1) translateY(0); opacity: 1; } 92% { transform: scaleY(1) translateY(70px); opacity: 0; } 100% { opacity: 0; } }
.wg-liquid { transform: translateY(122px); animation: wg-fill 1.9s cubic-bezier(.3, .1, .2, 1) .85s forwards; }
@keyframes wg-fill { to { transform: translateY(50px); } }
.wg-surface { transform-box: fill-box; transform-origin: 50% 50%; animation: wg-wobble 1.6s ease-in-out 2.5s infinite alternate; }
@keyframes wg-wobble { from { transform: scaleY(1); } to { transform: scaleY(.6); } }
.wg-bubble { fill: rgba(255, 238, 230, .75); opacity: 0; animation: wg-bubble 2.4s linear 2s infinite; }
.wg-bubble.b2 { animation-delay: 2.6s; }
.wg-bubble.b3 { animation-delay: 3.1s; }
@keyframes wg-bubble { 0% { opacity: 0; transform: translateY(0); } 15% { opacity: .9; } 100% { opacity: 0; transform: translateY(-46px); } }
.wg-glint { fill: none; stroke: rgba(255, 255, 255, .42); stroke-width: 1.4; stroke-linecap: round; opacity: 0; animation: wg-glint 1s var(--ease) 1.3s forwards; }
@keyframes wg-glint { to { opacity: 1; } }
.intro-mark { width: min(230px, 58vw); height: auto; margin-top: 1.7rem; opacity: 0; transform: translateY(10px); animation: intro-mark 1s var(--ease) 1.55s forwards; }
@keyframes intro-mark { to { opacity: .96; transform: none; } }
.intro-hint { position: absolute; left: 0; right: 0; bottom: max(24px, env(safe-area-inset-bottom)); margin: 0; font-size: 12px; color: rgba(245, 245, 247, .45); }

/* ---------- Umbruch 1068 (Apple: eine Stufe kleiner) ---------- */
@media (max-width: 1068px) {
  .headline-super, .hero-headline { font-size: 64px; line-height: 68px; letter-spacing: -.009em; }
  .section-headline, .story-copy h2 { font-size: 40px; line-height: 44px; letter-spacing: 0; }
  .menu-cat, .tile h3, .tile-tel { font-size: 24px; line-height: 28px; letter-spacing: .009em; }
  .hero-sub { font-size: 24px; line-height: 28px; }
  .section { padding: 120px 0; }
  .btn { min-height: 39px; padding: 8px 15px; }
  .btn-small { min-height: 24px; padding: 4px 11px; }
  .fill { font-size: 32px; line-height: 36px; }
  .menu-columns { column-count: 1; }
  .story-frame { gap: 40px; }
  .nav-links { gap: 20px; }
}

/* ---------- Umbruch 734 (Handy) ---------- */
@media (max-width: 734px) {
  .headline-super, .hero-headline { font-size: 48px; line-height: 52px; letter-spacing: -.003em; }
  .section-headline, .story-copy h2 { font-size: 32px; line-height: 36px; letter-spacing: .004em; }
  .menu-cat, .tile h3, .tile-tel { font-size: 21px; line-height: 25px; letter-spacing: .011em; }
  .section-sub, .hero-sub, .reserve-sub, .story-copy p:not(.eyebrow) { font-size: 19px; line-height: 23px; letter-spacing: .012em; }
  .eyebrow, .hero-eyebrow { font-size: 19px; line-height: 23px; }
  .section { padding: 88px 0; }
  .nav-links, .nav-tel { display: none; }
  .nav-inner { justify-content: space-between; }
  .hero-inner { padding-top: 48px; }
  .hero-mark { margin: 18px 0 22px; }
  .hero-capital { width: 84px; margin-top: 36px; }
  .buystrip-inner { flex-direction: column; align-items: flex-start; }
  .card { flex-basis: 300px; }
  .card img { height: 220px; }
  .story { height: 300vh; }
  .story-frame { grid-template-columns: 1fr; align-content: center; gap: 22px; padding-top: 48px; }
  .story-media img { aspect-ratio: 16 / 10; max-height: 34vh; }
  .fill { font-size: 28px; line-height: 32px; }
  .tiles { grid-template-columns: 1fr; }
  .tile { padding: 30px 26px; }
  .tabnav { gap: 28px; }
  .reserve-actions { flex-direction: column; gap: 18px; }
  .phone-fab { display: inline-flex; }
}

/* ---------- Weniger Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro { display: none !important; }
  .fade, html.js .fade-in { opacity: 1; transform: none; transition: none; }
  html.js .hero-capital .flute { stroke-dashoffset: 0; animation: none; }
  .story { height: auto; }
  .story-pin { position: static; height: auto; }
  .story-frame { position: static; opacity: 1 !important; transform: none !important; padding: 64px 22px; pointer-events: auto; }
  .story-progress { display: none; }
  .fillstage { height: auto; }
  .fill-pin { position: static; height: auto; padding: 120px 22px; }
  .fill .w { opacity: 1 !important; }
  .card, .paddle, .btn { transition: none; }
}
