/* =============================================================================
   ZINNOBER PIZZA — Stylesheet
   Colors:  Zinnober Rot #9E292B | Charcoal #2A2A2A | Cream #F5EDE3 | Gold #D4A853
   Fonts:   Napoleon (headings, self-hosted) | DM Sans (body, Google Fonts)
   Hosted:  GitHub Pages · static
============================================================================= */


/* ─────────────────────────────────────────────
   NAPOLEON FONT FACES (self-hosted)
───────────────────────────────────────────── */
@font-face {
    font-family: 'Napoleon';
    src: url('../fonts/napoleon-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Napoleon';
    src: url('../fonts/napoleon-italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Napoleon';
    src: url('../fonts/napoleon-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Napoleon';
    src: url('../fonts/napoleon-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Napoleon';
    src: url('../fonts/napoleon-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Napoleon Condensed';
    src: url('../fonts/napoleon-bold-condensed.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* ─────────────────────────────────────────────
   0. VARIABLES & RESET
───────────────────────────────────────────── */
:root {
    --red:          #9E292B;
    --red-dk:       #7D1F21;
    --charcoal:     #2A2A2A;
    --charcoal-lt:  #3D3D3D;
    --cream:        #F5EDE3;
    --cream-dk:     #E8DDD0;
    --gold:         #D4A853;
    --olive:        #5C6B4A;
    --white:        #FDFAF6;
    --text:         #2A2A2A;
    --text-muted:   #6A6A6A;

    --font-display: 'Napoleon', Georgia, serif;
    --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

    --container:    1240px;
    --pad-section:  clamp(80px, 12vw, 160px);
    --pad-x:        clamp(20px, 5vw, 48px);
    --nav-h:        72px;
    --radius:       12px;
    --radius-sm:    8px;
    --trans:        0.3s ease;
    --shadow-sm:    0 2px 16px rgba(0,0,0,0.06);
    --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─────────────────────────────────────────────
   CARDBOARD TEXTURE — applied to all warm sections
   Grain SVG + linen fibers + cream gradient stack
───────────────────────────────────────────── */
/* Uniform cardboard photo — one fixed image spans Trust through Reviews
   so section boundaries never show up as separate crops */
.s-trust,
.s-events,
.s-why,
.s-process,
.s-menu,
.s-gallery,
.s-reviews,
.s-contact {
    background-color: var(--cream);
    background-image:
        linear-gradient(180deg, rgba(249,240,227,0.55) 0%, rgba(240,226,204,0.55) 100%),
        url("../images/cardboard.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ─────────────────────────────────────────────
   PIZZA PROCESS DECOR — dough → sauce,
   a visual thread from Catering through Konzept
───────────────────────────────────────────── */
.section-bg-pizza {
    position: absolute;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 22px 32px rgba(0,0,0,0.20));
}
.section-bg-pizza--left {
    left: clamp(-120px, -7vw, -40px);
    top: 50%;
    width: clamp(200px, 19vw, 320px);
    transform: translateY(-52%) rotate(-9deg);
    z-index: -1;
}
.section-bg-pizza--right {
    right: clamp(-120px, -7vw, -40px);
    top: 46%;
    width: clamp(200px, 19vw, 320px);
    transform: translateY(-48%) rotate(8deg);
    z-index: -1;
}
@media (max-width: 1400px) {
    .section-bg-pizza--left,
    .section-bg-pizza--right { display: none; }
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul   { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; }
p   { line-height: 1.75; }


/* ─────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--pad-x);
}

/* Image placeholder */
.img-ph {
    width: 100%;
    height: 100%;
    background: var(--cream-dk);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.img-ph::after {
    content: attr(data-label);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.22);
    text-align: center;
    padding: 12px;
}

/* Legal pages (Impressum, Datenschutz) — no hero, header stays solid */
body.legal-page .site-header {
    background: rgba(42, 42, 42, 0.96);
    box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.s-legal {
    padding-block: var(--pad-section);
    min-height: calc(100svh - 260px);
}
.legal-content {
    max-width: 640px;
    margin-inline: auto;
}
.legal-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--charcoal);
    margin-bottom: 28px;
}
.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.02em;
    margin: 32px 0 8px;
}
.legal-content p {
    color: var(--text);
    margin-bottom: 4px;
}
.legal-content a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-list {
    margin: 8px 0 4px 1.2em;
}
.legal-list li {
    list-style: disc;
    color: var(--text);
    margin-bottom: 4px;
}

/* Section shared */
.section-header {
    text-align: center;
    margin-bottom: clamp(48px, 7vw, 80px);
}
.section-tag {
    display: inline-block;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
}
.section-sub {
    color: var(--text-muted);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    max-width: 600px;
    margin-inline: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
    white-space: nowrap;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--red-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(158, 41, 43, 0.30);
}
.btn-primary:active { transform: translateY(0); }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease var(--reveal-delay, 0ms),
                transform 0.65s ease var(--reveal-delay, 0ms);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ─────────────────────────────────────────────
   1. NAVIGATION
───────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    transition: background var(--trans), box-shadow var(--trans);
}
.site-header.is-scrolled {
    background: rgba(42, 42, 42, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.nav-inner {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--pad-x);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 36px;
    width: auto;
    flex-shrink: 0;
}
.nav-logo span {
    margin-left: -18px;
    position: relative;
    z-index: 1;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--trans);
    padding-block: 4px;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-sm) !important;
    letter-spacing: 0.06em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dk) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: var(--trans);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─────────────────────────────────────────────
   2. HERO
───────────────────────────────────────────── */
.s-hero {
    position: relative;
    height: 100svh;
    min-height: 640px;
    overflow: hidden;
    background: var(--charcoal);
}

/* Slider */
.hero-slider {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat var(--charcoal);
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active {
    opacity: 1;
    animation: kenBurns 9s ease-in-out both;
}
@keyframes kenBurns {
    from { transform: scale(1.06); }
    to   { transform: scale(1.00); }
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}

/* Content */
.hero-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-h) + 48px) clamp(24px, 8vw, 100px) 80px;
    max-width: 900px;
}

/* Frosted panel behind the headline, subtext and button only —
   lighter blur than a full-bleed wash so the photo still reads through */
.hero-text-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    max-width: 100%;
    background: rgba(10,8,7,0.46);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border-radius: 20px;
    padding: 32px clamp(24px, 4vw, 44px);
}
.hero-eyebrow {
    color: rgba(255,255,255,0.68);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeUp 0.9s ease 0.2s both;
}
.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 28px;
    animation: fadeUp 0.9s ease 0.4s both;
}
.hero-word {
    color: var(--red);
    display: inline-block;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero-word.is-fading {
    opacity: 0;
    transform: translateY(-8px);
}
.hero-sub {
    color: rgba(255,255,255,0.80);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    max-width: 460px;
    margin-bottom: 40px;
    animation: fadeUp 0.9s ease 0.6s both;
}
.hero-body .btn { animation: fadeUp 0.9s ease 0.8s both; align-self: flex-start; }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    animation: fadeUp 0.9s ease 1.0s both;
}
.hero-badges li {
    color: rgba(255,255,255,0.70);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Slider controls */
.hero-slider-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
}
.slider-btn {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: var(--trans);
    backdrop-filter: blur(4px);
}
.slider-btn:hover {
    color: var(--white);
    border-color: var(--white);
    background: rgba(255,255,255,0.10);
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.36);
    border: none; cursor: pointer;
    transition: var(--trans); padding: 0;
}
.slider-dot.is-active {
    background: var(--white);
    transform: scale(1.5);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.scroll-indicator span {
    display: block;
    width: 22px; height: 36px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 12px;
    position: relative;
}
.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px; left: 50%;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
    0%, 100% { top: 6px; opacity: 0.8; }
    50%       { top: 18px; opacity: 0.2; }
}


/* ─────────────────────────────────────────────
   3. TRUST BAR
───────────────────────────────────────────── */
.s-trust {
    padding: clamp(32px, 5vw, 60px) var(--pad-x);
    box-shadow: var(--shadow-sm);
}
.trust-inner {
    max-width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding-inline: clamp(12px, 3vw, 40px);
}
.trust-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; line-height: 1; }
.trust-icon  { color: var(--red); display: inline-flex; align-items: center; justify-content: center; }
.trust-icon svg { width: 38px; height: 38px; }
.trust-value {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.1;
}
.trust-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.04em; }
.trust-divider {
    width: 1px;
    height: 48px;
    background: var(--cream-dk);
    flex-shrink: 0;
}


/* ─────────────────────────────────────────────
   4. EVENTS
───────────────────────────────────────────── */
.s-events {
    position: relative;
    z-index: 0;
    padding-block: var(--pad-section);
}

.events-intro {
    max-width: 720px;
    margin: 0 auto clamp(48px, 7vw, 80px);
    text-align: center;
}
.events-intro .section-tag { margin-bottom: 16px; }
.events-intro .section-title { margin-bottom: 20px; }
.events-intro-text {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.events-location {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
    background: var(--white);
    border-radius: 8px;
    padding: 10px 18px;
    border: 1px solid var(--cream-dk);
    text-align: left;
    line-height: 1.5;
}
.events-location-icon { flex-shrink: 0; color: var(--red); display: inline-flex; margin-top: 1px; }
.events-location-icon svg { width: 16px; height: 16px; }

.events-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}
.events-col-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--charcoal);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--red);
}
.events-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
}
.events-list li {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.55;
    padding-left: 20px;
    position: relative;
}
.events-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.events-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(199,91,57,0.08);
    border-left: 3px solid var(--red);
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
}
.events-note-icon { color: var(--red); display: inline-flex; flex-shrink: 0; margin-top: 1px; }
.events-note-icon svg { width: 20px; height: 20px; }
.events-note p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.events-cta {
    text-align: center;
    margin-top: clamp(48px, 7vw, 72px);
}
.events-cta p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

@media (max-width: 680px) {
    .events-body { grid-template-columns: 1fr; gap: 40px; }
    .events-location { font-size: 0.8rem; }
}


/* ─────────────────────────────────────────────
   5. WHY ZINNOBER
───────────────────────────────────────────── */
.s-why {
    position: relative;
    z-index: 0;
    padding-block: var(--pad-section);
}
.why-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(48px, 7vw, 96px);
    align-items: start;
}
.why-text .section-tag { margin-bottom: 16px; }
.why-text .section-title { text-align: left; margin-bottom: 24px; }
.why-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}
.why-lead {
    color: var(--charcoal) !important;
    font-weight: 600;
    margin-bottom: 16px;
}
.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.why-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: clamp(24px, 3vw, 36px);
    transition: transform var(--trans), box-shadow var(--trans);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}
.why-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--charcoal);
}
.why-card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }


/* ─────────────────────────────────────────────
   6. PROCESS
───────────────────────────────────────────── */
.s-process {
    padding-block: var(--pad-section);
}
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: clamp(32px, 5vw, 64px);
}
.process-step {
    flex: 1;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding-inline: 12px;
}
.process-number {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.process-icon {
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 4px;
}
.process-icon svg {
    width: 40px;
    height: 40px;
}
.process-step h3 {
    font-size: 1.125rem;
    color: var(--charcoal);
}
.process-step p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}
.process-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 2px;
    background: var(--cream-dk);
    margin-top: 26px;
    position: relative;
}
.process-arrow::after {
    content: '';
    position: absolute;
    right: -5px; top: -4px;
    border: 5px solid transparent;
    border-left-color: var(--cream-dk);
}


/* ─────────────────────────────────────────────
   6b. PIZZA MENU
───────────────────────────────────────────── */
.s-menu {
    padding-block: var(--pad-section);
}
.menu-slider {
    margin-top: clamp(32px, 5vw, 56px);
}
.menu-track {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    transition: height 0.4s ease;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.menu-track::-webkit-scrollbar { display: none; }
.menu-track:focus-visible { outline: 2px solid var(--red); outline-offset: 6px; }
.menu-page {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    align-content: start;
    gap: 20px;
    padding: 6px 4px 18px;
}
.menu-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}
.menu-slider-btn {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--cream-dk);
    border-radius: 50%;
    color: var(--charcoal);
    background: var(--white);
    font-size: 1.1rem;
    transition: var(--trans);
}
.menu-slider-btn:hover {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
}
.menu-slider-dots { display: flex; gap: 8px; }
.menu-slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cream-dk);
    border: none; cursor: pointer;
    transition: var(--trans); padding: 0;
}
.menu-slider-dot.is-active {
    background: var(--red);
    transform: scale(1.3);
}
.menu-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px 24px 28px;
    text-align: center;
    cursor: zoom-in;
    transition: transform var(--trans), box-shadow var(--trans);
}
.menu-card:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
}
.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}
.menu-card-img {
    width: 108px;
    height: 108px;
    margin: 0 auto 12px;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.menu-card h3 {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.menu-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.menu-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.menu-badge svg { width: 12px; height: 12px; flex-shrink: 0; }
.menu-badge--veggie {
    color: var(--olive);
    background: rgba(92,107,74,0.10);
    border: 1px solid rgba(92,107,74,0.35);
}
.menu-badge--vegan {
    color: var(--white);
    background: var(--olive);
}


/* ─────────────────────────────────────────────
   7. GALLERY
───────────────────────────────────────────── */
.s-gallery {
    padding-block: var(--pad-section);
}
.gallery-grid {
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 6px;
    margin-top: clamp(32px, 5vw, 56px);
}
.gallery-cell {
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 4px;
    background: center/cover no-repeat var(--cream-dk);
    transition: transform 0.5s ease;
}
.gallery-cell:hover { transform: scale(1.02); }
.gallery-cell:hover .img-ph { transform: scale(1.03); transition: transform 0.5s ease; }
.gallery-cell .img-ph { width: 100%; height: 100%; transition: transform 0.5s ease; }
.gallery-cell--tall { grid-row: span 2; }
.gallery-cell--wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: rgba(255,255,255,0.8);
    font-size: 1.5rem;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background var(--trans), color var(--trans);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.18);
    color: var(--white);
}
.lightbox-close { top: 20px; right: 20px; font-size: 1.8rem; }
.lightbox-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* Pizza preview modal */
.pizza-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
}
.pizza-modal[hidden] { display: none; }
.pizza-modal-card {
    position: relative;
    background: var(--cream);
    border-radius: var(--radius);
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(28px, 4vw, 40px);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.pizza-modal-img {
    width: clamp(200px, 40vw, 260px);
    height: clamp(200px, 40vw, 260px);
    margin: 0 auto 20px;
}
.pizza-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.pizza-modal-name {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.pizza-modal-ingredients {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.pizza-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--charcoal);
    font-size: 1.5rem;
    background: rgba(0,0,0,0.06);
    transition: background var(--trans);
}
.pizza-modal-close:hover { background: rgba(0,0,0,0.12); }


/* ─────────────────────────────────────────────
   8. REVIEWS
───────────────────────────────────────────── */
.s-reviews {
    padding-block: var(--pad-section);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(28px, 3vw, 40px);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform var(--trans), box-shadow var(--trans);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.review-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 3px;
    line-height: 1;
}
.review-text {
    color: var(--text);
    font-size: 0.9375rem;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}
.review-avatar.img-ph { height: 44px; }
.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
    font-family: var(--font-display);
}
.review-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* ─────────────────────────────────────────────
   9. FAQ
───────────────────────────────────────────── */
.s-faq {
    padding-block: var(--pad-section);
    background: var(--charcoal);
}
.s-faq .section-tag  { color: var(--gold); }
.s-faq .section-title { color: var(--white); }

.faq-list {
    max-width: 760px;
    margin-inline: auto;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.09); }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 26px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    gap: 20px;
    transition: color var(--trans);
    background: none; border: none; cursor: pointer;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    position: relative;
    transition: transform var(--trans);
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--red);
    border-radius: 2px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; transition: transform var(--trans), opacity var(--trans); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s ease;
}
.faq-a p {
    color: rgba(255,255,255,0.60);
    padding-bottom: 28px;
    font-size: 0.9375rem;
    line-height: 1.8;
}


/* ─────────────────────────────────────────────
   10. FINAL CTA
───────────────────────────────────────────── */
.s-cta-final {
    position: relative;
    padding-block: clamp(100px, 14vw, 180px);
    background: var(--charcoal) center/cover no-repeat;
}
.cta-final-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.65);
}
.cta-final-body {
    position: relative; z-index: 1;
    text-align: center;
    padding-inline: var(--pad-x);
    max-width: 680px;
    margin-inline: auto;
}
.cta-final-body h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 24px;
}
.cta-final-body p {
    color: rgba(255,255,255,0.75);
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    margin-bottom: 40px;
    line-height: 1.75;
}
.cta-final-note {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    margin-top: 18px;
    letter-spacing: 0.04em;
}


/* ─────────────────────────────────────────────
   11. CONTACT
───────────────────────────────────────────── */
.s-contact {
    padding-block: var(--pad-section);
}
.contact-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: clamp(48px, 8vw, 100px);
    align-items: start;
}
.contact-form-col .section-tag { margin-bottom: 16px; }
.contact-form-col .section-title {
    text-align: left;
    margin-bottom: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-field--full { grid-column: 1 / -1; }
label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--charcoal);
}
input, select, textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--cream-dk);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--trans), box-shadow var(--trans);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(158, 41, 43, 0.12);
}
input.is-error, select.is-error {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(158, 41, 43, 0.15);
}
.form-success {
    font-size: 1.1rem;
    color: var(--charcoal);
    text-align: center;
    padding: clamp(32px, 6vw, 64px);
    font-family: var(--font-display);
}
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236A6A6A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    cursor: pointer;
}
textarea { resize: vertical; min-height: 120px; }
.form-submit { padding-top: 8px; }

/* Contact info side */
.contact-info-col { padding-top: 80px; }
.contact-info-col h3 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 32px;
}
.contact-channels {
    display: flex; flex-direction: column; gap: 24px;
    margin-bottom: 36px;
}
.contact-channels li {
    display: flex; gap: 16px; align-items: flex-start;
}
.contact-channel-icon { color: var(--red); display: inline-flex; flex-shrink: 0; padding-top: 2px; }
.contact-channel-icon svg { width: 24px; height: 24px; }
.contact-channels strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 2px; font-family: var(--font-body); font-weight: 600; }
.contact-channels a { color: var(--charcoal); font-size: 0.975rem; transition: color var(--trans); }
.contact-channels a:hover { color: var(--red); }
.contact-note {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    border-left: 3px solid var(--red);
}
.contact-note p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }


/* ─────────────────────────────────────────────
   12. FOOTER
───────────────────────────────────────────── */
.footer {
    background: var(--charcoal);
    padding-top: clamp(48px, 6vw, 80px);
}
.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: clamp(36px, 5vw, 64px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 300px; }
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
}
.footer-logo-img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}
.footer-logo {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-left: -20px;
    position: relative;
    z-index: 1;
}
.footer-brand p {
    color: rgba(255,255,255,0.45);
    font-size: 0.875rem;
    line-height: 1.7;
}
.footer-nav {
    display: flex; flex-wrap: wrap; gap: 10px 28px;
    align-items: flex-start;
    padding-top: 6px;
}
.footer-nav a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: color var(--trans);
    letter-spacing: 0.04em;
}
.footer-nav a:hover { color: var(--white); }
.footer-social a {
    display: flex; align-items: center; gap: 10px;
    color: var(--red);
    font-size: 0.875rem;
    font-weight: 600;
    transition: color var(--trans);
    padding-top: 6px;
}
.footer-social a:hover { color: var(--gold); }
.footer-bottom {
    padding-block: 20px;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.78rem; }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--trans); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }


/* ─────────────────────────────────────────────
   RESPONSIVE – Tablet ≤1024px
───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .trust-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .trust-divider { display: none; }

    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .event-info-grid { grid-template-columns: repeat(2, 1fr); }

    .why-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .why-text .section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); }

    .reviews-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-layout { grid-template-columns: 1fr; }
    .contact-info-col { padding-top: 0; }

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


/* ─────────────────────────────────────────────
   RESPONSIVE – Mobile ≤768px
───────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Nav */
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h); left: 0; right: 0;
        background: rgba(42,42,42,0.98);
        flex-direction: column;
        gap: 0;
        padding-block: 8px;
        box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    }
    .nav-links.is-open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-links a::after { display: none; }
    .nav-cta {
        margin: 12px 16px 8px !important;
        text-align: center !important;
        border-radius: var(--radius-sm) !important;
    }
    .nav-toggle { display: flex; }

    /* Hero */
    .hero-body { padding: 0 clamp(20px, 6vw, 48px); }
    .hero-slider-controls { bottom: 64px; }
    .hero-text-panel { padding: 24px clamp(20px, 5vw, 32px); }

    /* Trust */
    .trust-inner { grid-template-columns: 1fr 1fr; gap: 24px; }

    /* Events */
    .events-grid { grid-template-columns: 1fr; gap: 20px; }
    .event-info-grid { grid-template-columns: repeat(2, 1fr); }

    /* Why */
    .why-cards { grid-template-columns: 1fr; }

    /* Process */
    .process-steps { flex-direction: column; align-items: center; gap: 8px; }
    .process-arrow { width: 2px; height: 32px; margin-top: 0; }
    .process-arrow::after { display: none; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .gallery-cell--wide { grid-column: span 2; }

    /* Reviews */
    .reviews-grid { grid-template-columns: 1fr; }

    /* Form */
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-inner { flex-direction: column; gap: 32px; }
    .footer-nav { gap: 8px 20px; }
}


/* ─────────────────────────────────────────────
   RESPONSIVE – Small ≤480px
───────────────────────────────────────────── */
@media (max-width: 480px) {
    .trust-inner { grid-template-columns: 1fr; gap: 24px; }
    .event-info-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-cell--tall { grid-row: span 1; }
    .gallery-cell--wide { grid-column: span 1; }

    .menu-page { gap: 6px 8px; }
    .menu-card { padding: 8px 4px 14px; }
    .menu-card-img { width: 48px; height: 48px; margin-bottom: 6px; }
    .menu-card h3 { font-size: 0.72rem; margin-bottom: 3px; }
    .menu-card p { font-size: 0.56rem; line-height: 1.35; }
    .menu-badge { font-size: 0.52rem; padding: 3px 7px; gap: 3px; margin-bottom: 6px; }
    .menu-badge svg { width: 9px; height: 9px; }
}
