:root {
    --color-bg: #003320;
    --color-bg-nav: #001a10;
    --color-bg-card: #0a2318;
    --color-accent: #D4AF37;
    --color-accent-hover: #e8c94a;
    --color-text: #f5f0e8;
    --color-muted: rgba(245, 240, 232, 0.45);
    --color-overlay: rgba(0, 40, 20, 0.65);
    --font-display: 'Dancing Script', cursive;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --section-padding: 120px;
    --nav-height: 80px;
    --transition-base: 0.3s ease;
    --wheel-top-mobile: 36vh;
    --wheel-top-desktop: clamp(180px, calc(50vh - 300px), 380px);
    --wheel-right-desktop: -50px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background: var(--color-bg);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

body.nav-open {
    overflow: hidden;
}

img,
video {
    display: block;
    width: 100%;
    height: auto;
}

img {
    object-fit: cover;
}

video {
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

main,
section,
footer {
    position: relative;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.section {
    padding: clamp(96px, 14vw, var(--section-padding)) 0;
}

.section-shell,
.nav-shell,
.hero__shell,
.site-footer__shell {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
}

.section-shell--narrow {
    width: min(1000px, calc(100% - 40px));
}

.section-intro {
    display: grid;
    gap: 0.9rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}

.section-label,
.footer-label {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.section h2,
.section-intro h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4.2vw, 4.5rem);
    line-height: 0.96;
    font-weight: 500;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.35rem;
    padding: 0 1.4rem;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition:
        background-color var(--transition-base),
        color var(--transition-base),
        border-color var(--transition-base),
        transform var(--transition-base);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--primary {
    background: var(--color-accent);
    color: var(--color-bg-nav);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--color-accent-hover);
}

.button--ghost {
    color: var(--color-accent);
    border-color: rgba(212, 175, 55, 0.55);
    background: transparent;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    border-color: var(--color-accent-hover);
    color: var(--color-accent-hover);
}

.button--dark {
    background: var(--color-bg-nav);
    color: var(--color-text);
}

.button--dark:hover,
.button--dark:focus-visible {
    background: #012416;
}

#main-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: transparent;
    transition: background-color 0.65s ease;
}

.page-placeholder #main-nav {
    background: var(--color-bg-nav);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--nav-height);
}

.nav-logo {
    flex: 0 0 auto;
}

.nav-logo img {
    width: auto;
    height: 48px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.nav-links--desktop {
    display: none;
}

.nav-links a,
.mobile-nav a,
.site-footer a {
    transition: color var(--transition-base);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--color-accent);
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.45rem;
    width: 2.9rem;
    height: 2.9rem;
    padding: 0;
    border: none;
    background: none;
    color: var(--color-text);
}

.nav-toggle span:not(.sr-only) {
    width: 1.3rem;
    height: 1.5px;
    margin: 0 auto;
    background: currentColor;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Mittlere Linie ausblenden → nur 2 Striche sichtbar */
.nav-toggle span:nth-child(2) {
    display: none;
}

/* Geöffnet: Linien 1 & 3 formen ein X */
/* translateY = (gap + line-height) / 2 = (0.45rem + 1.5px) / 2 = (7.2px + 1.5px) / 2 = 4.35px = 0.272rem */
.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(0.272rem) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-0.272rem) rotate(-45deg);
}

.nav-cta {
    display: none;
}

.mobile-nav {
    overflow: hidden;
    max-height: 0;
    background: rgba(0, 26, 16, 0.96);
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.3s ease;
}

.nav-open .mobile-nav {
    max-height: 24rem;
    opacity: 1;
}

.mobile-nav__inner {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    padding: 1rem 0 1.6rem;
}

.mobile-nav__inner a {
    font-size: 1.05rem;
}

.mobile-nav__cta {
    width: 100%;
}

.wheel-journey {
    position: relative;
}

.wheel-stage {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.wheel-stage__sticky {
    position: relative;
    height: 0;
}

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100svh;
    min-height: var(--hero-vh, 100svh); /* JS setzt echten Viewport (Safari-Fix) */
    display: flex;
    align-items: stretch;
    padding-top: calc(var(--nav-height) + 24px);
    overflow-x: clip;
    contain: style layout;
}

.hero__video,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__video {
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    /* Eigener GPU-Compositing-Layer → kein Ruckeln beim Scrollen auf iOS */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero__overlay {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 26, 16, 0.26), rgba(0, 40, 20, 0.72)),
        radial-gradient(circle at 26% 24%, rgba(212, 175, 55, 0.12), transparent 28%);
    pointer-events: none;
}

.hero__shell {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 0 2.5rem;
    pointer-events: none;
}

/* Interaktive Kinder auf Mobile wieder aktivieren */
.hero__shell a,
.hero__shell button {
    pointer-events: auto;
}

.hero__content {
    width: 100%;
    max-width: min(900px, 90vw);
    /* Mobile: Platz für die absolute Canvas über dem Text */
    padding-top: calc(72vw - 1rem);
    text-align: center;
}

@media (min-width: 768px) {
    .hero__content {
        width: auto;
        padding-top: 0;
        text-align: left;
    }
}

.hero-brand-name {
    margin: 0 0 0.6rem;
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.75);
    text-align: center;
}

@media (min-width: 768px) {
    .hero-brand-name {
        text-align: center;
    }
}

.hero-headline {
    color: var(--color-accent);
}

.hero-headline__svg {
    display: block;
    width: min(980px, 100%);
    height: auto;
    margin: 0 auto;
    overflow: visible;
    will-change: opacity;
    transform: translateZ(0);
}

@media (min-width: 768px) {
    .hero-headline__svg {
        margin: 0;
    }
}

.headline-path {
    fill: currentColor;
}

/* Hero-Intro-Animationen: Compositor-Thread (kein JS, kein Repaint)
   animation-fill-mode: both → Element startet bei "from"-Werten (opacity:0)
   bis die Verzögerung abläuft, dann fährt es ein.                      */
@media (prefers-reduced-motion: no-preference) {
    .hero__content {
        animation: hero-in 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    }

    .hero__footer {
        animation: hero-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
    }

    @keyframes hero-in {
        from { opacity: 0; transform: translateY(18px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}

.hero-subline {
    max-width: 34rem;
    margin: 1.1rem 0 0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(245, 240, 232, 0.75);
}

.hero__footer {
    position: static;
    display: grid;
    gap: 1rem;
    justify-items: center;
    width: min(100%, 30rem);
    overflow: visible;
    contain: style;
}

.hero-ctas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    width: 100%;
}

.hero-ctas .button {
    width: 100%;
    min-width: 0;
    padding-inline: clamp(0.75rem, 3vw, 1.05rem);
    font-size: clamp(0.78rem, 3.2vw, 0.92rem);
    line-height: 1.2;
    text-align: center;
}

.hero-hours {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.85rem 1.4rem;
    width: 100%;
    color: var(--color-muted);
    font-size: 0.85rem;
    contain: style;
}

.hero-hours--enhanced {
    display: grid;
    gap: 0.5rem;
    align-content: start;
    position: relative;
    overflow: visible;
}

.hero-hours__summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 1rem;
    width: 100%;
}

.hero-hours strong {
    font-weight: 500;
    margin-right: 0.45rem;
    color: rgba(245, 240, 232, 0.65);
}

.hero-hours__day.is-today strong {
    color: var(--color-accent);
}

.hero-hours__extra {
    /* Absolut positioniert: kein Layout-Reflow beim Ausklappen → kein iOS-Ruckeln */
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 100;
    transform: translate3d(-50%, -0.4rem, 0);
    /* Breite = Inhalt in einer Zeile, aber nie breiter als der Viewport */
    width: max-content;
    max-width: calc(100vw - 40px);
    opacity: 0;
    pointer-events: none;
    /* Nur compositable Properties animieren */
    transition:
        opacity 0.22s ease,
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-hours__extra-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1.4rem;
    padding-top: 0.35rem;
}

@media (max-width: 480px) {
    .hero-hours__extra-inner {
        display: grid;
        grid-template-columns: repeat(3, auto);
        justify-content: center;
        gap: 0.6rem 0.9rem;
        font-size: 0.78rem;
    }

    .hero-hours__extra-inner .hero-hours__day strong {
        margin-right: 0.3rem;
    }
}

.hero-hours__extra.is-open,
.hero-hours__extra.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0);
}

.hero-hours__toggle {
    background: none;
    border: none;
    padding: 0;
    flex: 0 0 auto;
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity var(--transition-base);
    pointer-events: auto;
}

.hero-hours__toggle:hover {
    opacity: 1;
}

.hero-hours__toggle-icon {
    display: inline-block;
    transition: transform 0.35s ease;
    margin-left: 0.2rem;
}

.hero-hours__toggle[aria-expanded="true"] .hero-hours__toggle-icon {
    transform: rotate(180deg);
}

.parmesan-wheel {
    position: absolute;
    top: var(--wheel-top-mobile);
    right: -3rem;
    z-index: 2;
    width: min(400px, 68vw);
    pointer-events: none;
    object-fit: contain;
    filter: drop-shadow(0 40px 100px rgba(0, 0, 0, 0.55));
    opacity: 0.88;
}

.section--geheimnis {
    background: var(--color-bg);
}

.geheimnis {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.section-text {
    max-width: 34rem;
    margin: 0 auto;
}

.section-text h2 {
    margin: 0 0 1rem;
}

.section-text p {
    margin: 0 0 0.85rem;
    color: rgba(245, 240, 232, 0.82);
}

.section-rule {
    display: block;
    width: 5rem;
    height: 1px;
    margin-top: 2rem;
    background: linear-gradient(90deg, var(--color-accent), transparent);
}

.geheimnis__visual {
    position: relative;
    min-height: 20rem;
}

.geheimnis__glow {
    position: absolute;
    inset: 15% 5% 10%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 55% 50%, rgba(212, 175, 55, 0.12), transparent 42%),
        radial-gradient(circle at 35% 40%, rgba(245, 240, 232, 0.08), transparent 34%);
}

.section--karte {
    background: var(--color-bg-card);
}

/* dish-grid mobile: scroll-snap carousel */
.dish-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.dish-grid::-webkit-scrollbar {
    display: none;
}

.dish-grid .dish-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

/* dots */
.dish-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
}

.dish-carousel-dots__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: width 0.3s ease, border-radius 0.3s ease;
}

.dish-carousel-dots__dot.is-active {
    width: 28px;
    border-radius: 4px;
}

.dish-carousel-dots__dot.is-active::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 0%;
    background: var(--color-accent);
    border-radius: inherit;
    animation: dot-progress 4s linear forwards;
}

@keyframes dot-progress {
    to { width: 100%; }
}

.review-grid,
.delivery-grid {
    display: grid;
    gap: 1rem;
}

.review-card {
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: transparent;
}

.dish-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: transparent;
    overflow: hidden;
}

.dish-card__media {
    aspect-ratio: 4 / 3;
    overflow: visible;
}

.dish-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}


.dish-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.1rem 1.1rem 1.25rem;
    flex: 1;
}

.dish-card h3,
.ritual__quote {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 13vw, 3.3rem);
    font-weight: 700;
    line-height: 1;
}

.dish-card p {
    margin: 0;
    color: rgba(245, 240, 232, 0.72);
}

.dish-card__price {
    color: var(--color-accent);
    font-weight: 500;
    margin-top: auto;
}

.section-link {
    margin-top: 2rem;
    text-align: center;
}

.section-link a {
    color: var(--color-accent);
    font-weight: 500;
}

.section--ritual {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    overflow: clip;
}

.ritual__video,
.ritual__overlay {
    position: absolute;
    inset: 0;
}

.ritual__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.ritual__overlay {
    background:
        linear-gradient(180deg, rgba(0, 30, 15, 0.48), rgba(0, 30, 15, 0.76)),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08), transparent 32%);
}

.ritual__shell {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
}

.ritual__quote {
    max-width: 12ch;
    text-align: center;
    color: var(--color-accent);
    font-size: clamp(3rem, 8vw, 6rem);
}

.section--reviews {
    background: var(--color-bg);
}

.google-rating-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin: 0 auto 2.8rem;
    padding: 1.2rem 1.8rem;
    max-width: 640px;
    border-radius: 18px;
    border: 1px solid rgba(245, 240, 232, 0.1);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.04), rgba(245, 240, 232, 0.015));
    color: var(--color-text, #f5f0e8);
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.google-rating-banner:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 240, 232, 0.22);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.07), rgba(245, 240, 232, 0.025));
}

.google-rating-banner__stars {
    color: var(--color-accent);
    font-size: 1.4rem;
    letter-spacing: 0.18em;
}

.google-rating-banner__score,
.google-rating-banner__count {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: center;
}

.google-rating-banner__score strong,
.google-rating-banner__count strong {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.google-rating-banner__score span,
.google-rating-banner__count span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
}

.google-rating-banner__divider {
    width: 1px;
    height: 32px;
    background: rgba(245, 240, 232, 0.15);
}

@media (max-width: 520px) {
    .google-rating-banner {
        flex-direction: column;
        gap: 0.7rem;
        padding: 1.2rem 1.2rem;
    }
    .google-rating-banner__divider {
        display: none;
    }
    .google-rating-banner__score { order: 1; }
    .google-rating-banner__stars { order: 2; }
    .google-rating-banner__count { order: 3; }
}

.review-card {
    display: grid;
    gap: 1.1rem;
    padding: 1.5rem;
}

.review-card__stars {
    color: var(--color-accent);
    letter-spacing: 0.18em;
    font-size: 0.95rem;
}

.review-card blockquote {
    margin: 0;
    font-style: italic;
    color: rgba(245, 240, 232, 0.78);
}

.review-card p {
    margin: 0;
    color: var(--color-accent);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.section--delivery {
    background: var(--color-accent);
    color: var(--color-bg-nav);
}

.section--delivery .section-intro h2,
.section--delivery .delivery-item__label,
.section--delivery strong {
    color: var(--color-bg-nav);
}

.delivery {
    display: grid;
    gap: 2rem;
}

.delivery-grid {
    grid-template-columns: 1fr;
}

.delivery-item {
    display: grid;
    justify-items: center;
    gap: 0.75rem;
    text-align: center;
}

.delivery-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid rgba(0, 26, 16, 0.2);
    border-radius: 8px;
}

.delivery-item__icon svg,
.site-footer__socials svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.delivery-item__label {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.delivery-actions {
    display: grid;
    gap: 0.9rem;
    justify-items: center;
    text-align: center;
}

.delivery-actions p {
    margin: 0;
    max-width: 34rem;
    color: rgba(0, 26, 16, 0.62);
}

.site-footer {
    background: var(--color-bg-nav);
    color: var(--color-muted);
}

.site-footer__shell {
    padding: 4rem 0 2rem;
}

/* ── Top grid ─────────────────────────────────────────── */
.site-footer__grid {
    display: grid;
    gap: 2.4rem;
}

.site-footer__brand,
.site-footer__nav,
.site-footer__meta {
    display: grid;
    gap: 0.75rem;
    align-content: start;
}

.site-footer__logo {
    height: 36px;
    width: auto;
    display: block;
}

.site-footer__brand p,
.site-footer__meta p {
    margin: 0;
    font-size: 0.9rem;
}

.site-footer__address {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.site-footer__address:hover {
    color: var(--color-accent);
}

.site-footer__nav a {
    width: fit-content;
    font-size: 0.9rem;
}

.site-footer__meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.site-footer__meta li {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.875rem;
}

/* ── Google Maps iFrame ───────────────────────────────── */
.site-footer__map {
    position: relative;
    margin-top: 2.4rem;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    border: 1px solid rgba(245, 240, 232, 0.08);
}

.site-footer__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(30%) brightness(0.88);
}

.site-footer__map-link {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
}

@media (hover: none) and (pointer: coarse) {
    .site-footer__map-link {
        display: block;
    }
}

/* ── Bottom bar ───────────────────────────────────────── */
.site-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.site-footer__socials,
.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(245, 240, 232, 0.12);
    border-radius: 8px;
    transition: border-color var(--transition-base);
}

.site-footer__socials a:hover {
    border-color: var(--color-accent);
}

.site-footer__legal a {
    font-size: 0.875rem;
}

.site-footer__credit {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.38);
}

.site-footer__credit a {
    color: rgba(245, 240, 232, 0.55);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: color var(--transition-base), text-decoration-color var(--transition-base);
}

.site-footer__credit a:hover {
    color: var(--color-accent);
    text-decoration-color: var(--color-accent);
}

.placeholder-page {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: var(--nav-height);
    background: var(--color-bg);
}

.placeholder-page .section-intro p:last-child {
    margin: 0 auto;
    max-width: 34rem;
    color: rgba(245, 240, 232, 0.74);
}

.use-css-reveals .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.use-css-reveals .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-links--desktop {
        display: inline-flex;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-cta {
        display: inline-flex;
    }

    .mobile-nav {
        display: none;
    }

    .hero__shell {
        justify-content: center;
        align-items: flex-start;
        gap: 2.2rem;
        padding: 0 0 8rem;
        pointer-events: none;
    }

    .hero__shell a,
    .hero__shell button {
        pointer-events: auto;
    }

    .hero__footer {
        position: absolute;
        bottom: 2.5rem;
        left: 0;
        right: 0;
        gap: 1.25rem;
        width: auto;
    }

    .hero-ctas {
        display: flex;
        width: auto;
        flex-direction: row;
        gap: 0.8rem;
    }

    .hero-ctas .button {
        width: auto;
        padding-inline: 1.4rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-hours {
        width: auto;
    }

    .hero-hours--enhanced {
        justify-items: start;
    }

    .hero-hours--enhanced .hero-hours__summary,
    .hero-hours--enhanced .hero-hours__extra-inner {
        justify-content: flex-start;
    }

    .wheel-stage__sticky {
        position: sticky;
        top: var(--wheel-top-desktop);
    }

    .parmesan-wheel {
        top: 0;
        left: auto;
        right: var(--wheel-right-desktop);
        width: 480px;
        opacity: 0.95;
        z-index: 20;
        will-change: transform;
    }

    .geheimnis {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
        min-height: 28rem;
        justify-items: start;
        text-align: left;
    }

    .dish-grid {
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: visible;
        scroll-snap-type: none;
    }

    .dish-grid .dish-card {
        flex: unset;
        scroll-snap-align: unset;
    }

    .dish-carousel-dots {
        display: none;
    }

    .review-grid,
    .delivery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: 1.4fr 1fr 1.2fr;
    }

    .site-footer__map {
        height: 300px;
    }

    .site-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1200px) {
    .hero__shell {
        padding-top: 0;
    }

    .review-card {
        padding: 1.7rem;
    }

    .dish-card__body {
        padding: 1.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =================================================================
   SCROLL INDICATOR
   ================================================================= */

.scroll-indicator {
    display: none;
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.scroll-indicator.is-hidden {
    opacity: 0;
}

.scroll-indicator__line {
    display: block;
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.7));
    animation: scroll-line 1.6s ease-in-out infinite;
}

.scroll-indicator__arrow {
    color: var(--color-accent);
    font-size: 0.8rem;
    animation: scroll-arrow 1.6s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
    50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

@keyframes scroll-arrow {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50%       { opacity: 1;   transform: translateY(4px); }
}

/* =================================================================
   NAV ACTIVE LINK
   ================================================================= */

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    width: 100%;
}

.nav-links a.is-active {
    color: var(--color-accent);
}

/* =================================================================
   GEHEIMNIS WHEEL (standalone, not sticky)
   ================================================================= */

.geheimnis__wheel {
    width: min(420px, 70vw);
    object-fit: contain;
    filter: drop-shadow(0 40px 100px rgba(0, 0, 0, 0.55));
    opacity: 0.9;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* =================================================================
   SPEISEKARTE ACCORDION
   ================================================================= */

.accordion {
    margin-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: color var(--transition-base);
}

.accordion__trigger:hover {
    color: var(--color-accent-hover);
}

.accordion__icon {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
    transform: rotate(180deg);
}

.accordion__body {
    overflow: hidden;
    height: 0;
}

.accordion__inner {
    padding: 1rem 0 2rem;
    display: grid;
    gap: 2rem;
}

.menu-category__title {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
}

.menu-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.menu-item__info {
    display: grid;
    gap: 0.15rem;
}

.menu-item__name {
    font-weight: 500;
    color: var(--color-text);
}

.menu-item__desc {
    font-size: 0.82rem;
    color: var(--color-muted);
}

.menu-item__price {
    flex-shrink: 0;
    color: var(--color-accent);
    font-weight: 500;
}

.menu-note {
    padding: 0.85rem 0 0;
    font-size: 0.82rem;
    color: var(--color-muted);
    font-style: italic;
    border: none;
    list-style: none;
}

.menu-allergen-note {
    margin: 1.5rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    font-size: 0.8rem;
    color: var(--color-muted);
    text-align: center;
}

.menu-grid-notes {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.4rem;
    text-align: center;
}

.menu-sauce-note,
.menu-base-note {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* =================================================================
   UBER UNS
   ================================================================= */

.section--ueber-uns {
    background: var(--color-bg-card);
    overflow: hidden;
}

.ueber-uns {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.ueber-uns__media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.ueber-uns__card-img {
    width: auto;
    height: auto;
    max-width: min(340px, 90%);
    max-height: 520px;
    object-fit: contain;
    border-radius: 6px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.55),
        0 2px 8px rgba(0, 0, 0, 0.35);
    transform: rotate(-1.5deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ueber-uns__card-img:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.65),
        0 4px 12px rgba(0, 0, 0, 0.4);
}

.ueber-uns__text {
    display: grid;
    gap: 0.85rem;
}

.ueber-uns__text h2 {
    margin: 0;
    font-size: clamp(2rem, 3.8vw, 3.8rem);
    line-height: 1;
    font-weight: 500;
}

.ueber-uns__text p {
    margin: 0;
    color: rgba(245, 240, 232, 0.8);
}

/* =================================================================
   KONTAKT
   ================================================================= */

.section--kontakt {
    background: var(--color-bg);
}

.kontakt {
    display: grid;
    gap: 3rem;
}

.kontakt-grid {
    display: grid;
    gap: 2rem;
}

.kontakt-block {
    display: grid;
    gap: 0.4rem;
}

.kontakt-block__label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.kontakt-block__value {
    color: var(--color-text);
    font-size: 1rem;
    transition: color var(--transition-base);
}

a.kontakt-block__value:hover {
    color: var(--color-accent);
}

.kontakt-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.3rem;
}

.kontakt-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.75);
}

.kontakt-hours .is-closed {
    color: var(--color-muted);
}

.kontakt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* =================================================================
   SPLIT-WORD ANIMATION (no SplitText dependency)
   ================================================================= */

.split-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.split-word__inner {
    display: inline-block;
    will-change: transform;
}

/* =================================================================
   CLIP REVEAL (uber uns photo)
   ================================================================= */

.clip-reveal {
    clip-path: inset(100% 0 0 0);
}

/* =================================================================
   DISH CARD 3D TILT
   ================================================================= */

.dish-card {
    transform-style: preserve-3d;
    transition: box-shadow var(--transition-base);
}

.dish-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.28);
}

/* =================================================================
   RESPONSIVE ADDITIONS
   ================================================================= */

@media (min-width: 768px) {
    .ueber-uns {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .kontakt-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .geheimnis__visual {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* =================================================================
   THREE.JS HERO CANVAS
   ================================================================= */

.hero3d-stage {
    position: absolute;
    top: calc(var(--nav-height) + 24px);
    left: 0;
    z-index: 4;
    overflow: visible;
    pointer-events: none;
    contain: layout paint size;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.hero3d-stage::after {
    content: "";
    position: absolute;
    inset: 18% 12% 8%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0) 72%);
    opacity: 0.72;
    transform: translate3d(0, 18%, 0) scale(0.82);
    pointer-events: none;
}

.hero3d-canvas {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    touch-action: pan-y;
    cursor: grab;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero3d-canvas:active {
    cursor: grabbing;
}

/* iOS fade-in: CSS animation auf dem Compositor-Thread — kein GSAP-Involvement */
.hero3d-stage--fade-in {
    animation: hero3d-fadein 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero3d-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media (min-width: 768px) {
    .hero3d-stage {
        top: 0;
        left: auto;
        right: var(--wheel-right-desktop);
        z-index: 20;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .hero3d-stage::after {
        inset: 18% 10% 8%;
        opacity: 0.82;
    }

    .hero3d-canvas {
        touch-action: none;
    }

    .hero3d-canvas:active {
        cursor: grabbing;
    }
}

/* =================================================================
   RESERVATION MODAL
   ================================================================= */

/* ── Overlay ─────────────────────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal[hidden] {
    display: none;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 6, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: modal-fade-in 0.25s ease both;
}

@keyframes modal-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes modal-fade-out {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* ── Box ─────────────────────────────────────────────────────────── */
.modal__box {
    position: relative;
    z-index: 1;
    width: min(600px, 100%);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    background: #0d2118;
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 20px;
    padding: clamp(1.8rem, 5vw, 2.8rem);
    animation: modal-slide-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes modal-slide-in {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

@keyframes modal-slide-out {
    from { opacity: 1; transform: translateY(0)    scale(1);    }
    to   { opacity: 0; transform: translateY(16px) scale(0.97); }
}

/* Closing state — triggered by JS before hidden is set */
.modal.is-closing .modal__backdrop {
    animation: modal-fade-out 0.22s ease both;
}

.modal.is-closing .modal__box {
    animation: modal-slide-out 0.22s ease both;
}

/* ── Close button ────────────────────────────────────────────────── */
.modal__close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(245, 240, 232, 0.12);
    border-radius: 8px;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
    transition:
        border-color var(--transition-base),
        color var(--transition-base),
        opacity 0.2s ease,
        transform 0.2s ease;
}

.modal__close svg {
    width: 1.1rem;
    height: 1.1rem;
}

.modal__close:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.modal.is-success .modal__close,
.modal.is-success-pending .modal__close {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.94);
}

/* ── Header ──────────────────────────────────────────────────────── */
.modal__head {
    margin-bottom: 2rem;
    padding-right: 2.5rem;
}

.modal__head h2 {
    margin: 0.4rem 0 0.6rem;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    font-weight: 500;
    color: var(--color-fg);
}

.modal__sub {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* ── Form layout ─────────────────────────────────────────────────── */
.reservation-form {
    display: grid;
    gap: 1.1rem;
}

.rform-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 480px) {
    .rform-row--2 { grid-template-columns: 1fr 1fr; }
    .rform-row--3 { grid-template-columns: 1.1fr 1fr 1fr; }
}

.rform-field {
    display: grid;
    gap: 0.45rem;
}

.rform-field label {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-muted);
    text-transform: uppercase;
}

.rform-field label span[aria-hidden] {
    color: var(--color-accent);
    margin-left: 0.15em;
}

.rform-optional {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(245, 240, 232, 0.35);
}

.rform-field input,
.rform-field select,
.rform-field textarea {
    width: 100%;
    background: rgba(245, 240, 232, 0.05);
    border: 1px solid rgba(245, 240, 232, 0.12);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--color-fg);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-base), background var(--transition-base);
    appearance: none;
    -webkit-appearance: none;
}

.rform-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(245,240,232,0.45)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 1.1rem;
    padding-right: 2.6rem;
    cursor: pointer;
}

.rform-field input[type="date"] {
    min-height: 3rem;
    line-height: 1.5;
}

/* iOS: Text im Datumsfeld an Schriftgröße der anderen Felder anpassen */
.rform-field input[type="date"]::-webkit-date-and-time-value {
    font-size: 0.95rem;
    text-align: left;
    min-height: 1.5em;
}

.rform-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
    cursor: pointer;
    flex-shrink: 0;
}

.rform-field input:focus,
.rform-field select:focus,
.rform-field textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(245, 240, 232, 0.07);
}

.rform-field input.is-invalid,
.rform-field select.is-invalid,
.rform-field textarea.is-invalid {
    border-color: #e05a5a;
}

.rform-field textarea {
    resize: vertical;
    min-height: 80px;
}

/* ── Error message ───────────────────────────────────────────────── */
.rform-error {
    margin: 0;
    padding: 0.75rem 1rem;
    background: rgba(224, 90, 90, 0.12);
    border: 1px solid rgba(224, 90, 90, 0.3);
    border-radius: 8px;
    color: #f28c8c;
    font-size: 0.88rem;
}

/* ── Submit button ───────────────────────────────────────────────── */
.rform-submit {
    position: relative;
    width: 100%;
    margin-top: 0.4rem;
}

.rform-submit__spinner {
    display: none;
    width: 1.1rem;
    height: 1.1rem;
    border: 2px solid rgba(255,255,255,0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

.rform-submit.is-loading .rform-submit__label { display: none; }
.rform-submit.is-loading .rform-submit__spinner { display: inline-block; }
.rform-submit.is-loading { pointer-events: none; opacity: 0.75; }

/* ── Success state ───────────────────────────────────────────────── */
/* Form + Header zusammen ausblenden */
.reservation-form,
.modal__head {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.reservation-form.is-fading,
.modal__head.is-fading {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
}

/* Success-Zustand */
.reservation-success {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1rem;
    min-height: clamp(12rem, 34dvh, 16rem);
    text-align: center;
    padding: 0;
    outline: none;
}

.reservation-success[hidden] { display: none; }

.modal__head[hidden],
.reservation-form[hidden],
.reservation-success[hidden] {
    display: none !important;
}

.reservation-success__icon {
    width: 5rem;
    height: 5rem;
    color: var(--color-accent);
    stroke-width: 1.5;
    overflow: visible;
}

/* SVG-Pfade starten unsichtbar */
.reservation-success__icon circle {
    stroke-dasharray: 126;
    stroke-dashoffset: 126;
}

.reservation-success__icon path {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
}

/* Animationen starten sobald .is-animating gesetzt wird */
.reservation-success.is-animating .reservation-success__icon circle {
    animation: draw-circle 0.65s cubic-bezier(0.4, 0, 0.2, 1) 0.05s forwards;
}

.reservation-success.is-animating .reservation-success__icon path {
    animation: draw-check 0.42s cubic-bezier(0.2, 0.8, 0.3, 1) 0.68s forwards;
}

.reservation-success.is-animating h3 {
    animation: success-rise 0.5s ease 0.88s both;
}

.reservation-success.is-animating p {
    animation: success-rise 0.5s ease 1.02s both;
}

@keyframes draw-circle {
    to { stroke-dashoffset: 0; }
}

@keyframes draw-check {
    to { stroke-dashoffset: 0; }
}

@keyframes success-rise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reservation-success h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    opacity: 0;
}

.reservation-success p {
    margin: 0;
    color: var(--color-muted);
    max-width: 23rem;
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .reservation-form,
    .modal__head,
    .modal__close {
        transition: none;
    }

    .reservation-success.is-animating .reservation-success__icon circle,
    .reservation-success.is-animating .reservation-success__icon path,
    .reservation-success.is-animating h3,
    .reservation-success.is-animating p {
        animation: none;
    }

    .reservation-success.is-animating .reservation-success__icon circle,
    .reservation-success.is-animating .reservation-success__icon path {
        stroke-dashoffset: 0;
    }

    .reservation-success.is-animating h3,
    .reservation-success.is-animating p {
        opacity: 1;
        transform: none;
    }
}

/* =================================================================
   COOKIE BANNER
   ================================================================= */

.cookie-banner {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    width: min(680px, calc(100% - 2rem));
    background: var(--color-bg-nav);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    animation: cookie-slide-up 0.35s ease both;
}

@keyframes cookie-slide-up {
    from { opacity: 0; transform: translateX(-50%) translateY(1rem); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1 1 200px;
    margin: 0;
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.75);
    line-height: 1.5;
}

.cookie-banner__text strong {
    color: var(--color-text);
}

.cookie-banner__text a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-banner__btn {
    min-height: 2.4rem;
    padding: 0 1rem;
    font-size: 0.82rem;
}

/* Map Placeholder */
.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
    min-height: 220px;
    background: var(--color-bg-nav);
    border-radius: 8px;
    color: var(--color-muted);
    font-size: 0.88rem;
}

.map-placeholder p {
    margin: 0;
}

.map-placeholder[hidden] {
    display: none;
}

.site-footer__map iframe[hidden] {
    display: none;
}

/* =================================================================
   LEGAL PAGES (Datenschutz, Impressum)
   ================================================================= */

.legal-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    margin: 0;
}

.legal-prose {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 1rem;
}

.legal-prose h2 {
    margin: 2.5rem 0 0.75rem;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: var(--color-accent);
}

.legal-prose p,
.legal-prose address {
    margin: 0 0 1rem;
    color: rgba(245, 240, 232, 0.8);
    font-size: 0.95rem;
    line-height: 1.75;
    font-style: normal;
}

.legal-prose ul {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
    color: rgba(245, 240, 232, 0.8);
    font-size: 0.95rem;
    line-height: 1.75;
}

.legal-prose li {
    margin-bottom: 0.35rem;
}

.legal-prose a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.legal-prose code {
    font-family: monospace;
    font-size: 0.88em;
    background: rgba(245, 240, 232, 0.08);
    padding: 0.1em 0.4em;
    border-radius: 4px;
}

.legal-updated {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--color-muted);
}

.legal-placeholder {
    display: inline-block;
    margin-top: 0.25rem;
    padding: 0.3em 0.7em;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 6px;
    color: var(--color-accent);
    font-size: 0.85rem;
}

/* Legal page layout wrapper */
.legal-page {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: var(--nav-height);
    background: var(--color-bg);
}

/* Reduce excessive section padding on legal pages for mobile */
.legal-page .section {
    padding: clamp(2.5rem, 8vw, 5rem) 0;
}

/* Left-align section intro on legal pages — centred header looks odd above left-aligned prose */
.legal-page .section-intro {
    text-align: left;
    margin-bottom: 2rem;
}

/* =================================================================
   iOS SAFARI VIEWPORT FIX — verhindert Video-Zoom beim Scrollen
   ================================================================= */

@media (max-width: 767px) {
    /* Scroll-Indicator auf Mobile verstecken — nimmt Platz weg und ist redundant */
    .scroll-indicator {
        display: none;
    }

    /* Hero auf Mobile vertikal abschneiden — Öffnungszeiten-Dropdown klappt nach
       unten auf, wird aber an der Hero-Unterkante abgeschnitten (Hero = 100svh,
       Dropdown passt in den Raum unterhalb der Hours-Zeile). */
    .hero {
        overflow-y: hidden;
    }

    .hero__video {
        height: 100%;
    }

    .hero__overlay {
        background: linear-gradient(180deg, rgba(0, 26, 16, 0.24), rgba(0, 40, 20, 0.72));
    }

    /* Problem A: Ritual-Sektion — kein Padding auf Mobile, Video füllt gesamte Höhe */
    .section--ritual {
        padding: 0;
        min-height: 100svh;
    }

    /* Problem D: Ritual-Video — globales video { height: auto } überschreiben */
    .ritual__video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* iOS: filter+transform auf demselben Element erzwingt Software-Rendering.
       Shadow auf den statischen Parent verschieben — Rad rotiert dann als reiner
       GPU-Transform ohne Filter-Overhead. */
    .geheimnis__wheel {
        filter: none;
    }

    .geheimnis__visual {
        filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.55));
    }
}

/* ============================================================
   PROMO BANNER (1×/Tag, beim ersten Scroll)
   ============================================================ */
.promo-banner {
    position: fixed;
    inset: 0;
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.promo-banner[hidden] {
    display: none;
}

.promo-banner__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 6, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: modal-fade-in 0.25s ease both;
    cursor: pointer;
}

.promo-banner__box {
    position: relative;
    z-index: 1;
    width: min(440px, 88vw);
    max-height: calc(100dvh - 2rem);
    border-radius: 18px;
    overflow: hidden;
    background: #0d2118;
    border: 1px solid rgba(245, 240, 232, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    animation: modal-slide-in 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.promo-banner.is-closing .promo-banner__backdrop {
    animation: modal-fade-out 0.22s ease both;
}

.promo-banner.is-closing .promo-banner__box {
    animation: modal-slide-out 0.22s ease both;
}

.promo-banner__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(100dvh - 2rem);
    object-fit: contain;
}

.promo-banner__close {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid rgba(245, 240, 232, 0.2);
    border-radius: 999px;
    background: rgba(13, 33, 24, 0.78);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--color-muted);
    cursor: pointer;
    transition:
        border-color var(--transition-base),
        color var(--transition-base),
        background 0.2s ease;
}

.promo-banner__close svg {
    width: 1rem;
    height: 1rem;
}

.promo-banner__close:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(13, 33, 24, 0.92);
}

@media (max-width: 480px) {
    .promo-banner__box {
        width: min(340px, 82vw);
        border-radius: 14px;
    }

    .promo-banner__close {
        width: 2rem;
        height: 2rem;
        top: 0.55rem;
        right: 0.55rem;
    }

    .promo-banner__close svg {
        width: 0.9rem;
        height: 0.9rem;
    }
}

