/* ==========================================================================
   HAPPY PIZZA WAGEN – DESIGN + RESPONSIVE LOCKED (FINAL)
   Desktop styles, text, images, layout: frozen.
   APIs/email: see .cursor/rules/happy-pizza-design-lock.mdc
   Only @media responsive fixes and non-visual performance/bugfix allowed.
   ========================================================================== */

/* ===== CSS Variables – Image Color Palette ===== */
:root {
    --primary-red: #d32f2f;
    --primary-red-dark: #b71c1c;
    --primary-red-light: #ef5350;
    --btn-hover-bg: #1a1a1a;
    --btn-hover-gradient: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    --btn-active-gradient: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    --whatsapp-hover: #128c7e;
    --dark-bg: #121212;
    --dark-overlay: rgba(0, 0, 0, 0.58);
    --white: #ffffff;
    --text-light: #f5f5f5;
    --nav-height: 96px;
    --font-main: 'Montserrat', 'Segoe UI', sans-serif;
    --layout-max: 1350px;
    --hero-width: var(--layout-max);
    --hero-height: 559px;
    --font-script: 'Great Vibes', cursive;
    --text-body: #333;
    --text-muted: #555;
    --text-heading: #1a1a1a;
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.booking-modal-open {
    overflow: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

video {
    max-width: 100%;
}

ul {
    list-style: none;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--dark-bg);
    z-index: 1200;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    overflow: visible;
}

.nav-container {
    max-width: var(--layout-max);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 4px;
    transition: color 0.3s ease, background-color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-red-light);
}

.nav-link.active {
    color: var(--primary-red);
}

/* Blink animation on click */
.nav-link.blink {
    animation: navBlink 0.6s ease;
}

.nav-end {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-booking {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-booking-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    background: rgba(211, 47, 47, 0.35);
    animation: navCallPulse 2.2s ease-out infinite;
    pointer-events: none;
}

.nav-booking-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px 0 14px;
    border-radius: 999px;
    background: linear-gradient(145deg, #ef5350 0%, var(--primary-red) 45%, #b71c1c 100%);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 4px 14px rgba(211, 47, 47, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.nav-booking svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nav-booking-text {
    font-family: var(--font-main);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-booking:hover {
    transform: scale(1.05);
}

.nav-booking:hover .nav-booking-icon {
    background: linear-gradient(145deg, #ff6f60 0%, #d32f2f 45%, #8b0000 100%);
    box-shadow:
        0 6px 18px rgba(211, 47, 47, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-booking:active {
    transform: scale(0.97);
}

@keyframes navCallPulse {
    0% {
        transform: scale(1);
        opacity: 0.65;
    }
    70% {
        transform: scale(1.45);
        opacity: 0;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

@keyframes navBlink {
    0%   { color: var(--white); }
    25%  { color: var(--primary-red); text-shadow: 0 0 8px var(--primary-red); }
    50%  { color: var(--white); }
    75%  { color: var(--primary-red); text-shadow: 0 0 8px var(--primary-red); }
    100% { color: var(--primary-red); }
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile menu backdrop (drawer overlay) */
.nav-backdrop {
    display: none;
}

body.nav-menu-open {
    overflow: hidden;
}

body.nav-menu-open .floating-buttons {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: clamp(300px, 42vw, var(--hero-height));
    max-height: min(72vh, 720px);
    aspect-ratio: auto;
    margin: var(--nav-height) auto 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    z-index: 0;
    transform: scale(1.1);
    animation:
        heroImgZoom 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        heroImgDrift 18s ease-in-out 2.2s infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 34%, rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.22) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
    opacity: 0;
    animation: overlayFadeIn 1.2s ease forwards;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 clamp(18px, 4vw, 52px);
}

.hero-panel {
    width: min(100%, 500px);
    max-width: 500px;
    text-align: left;
    padding: 14px 0 14px 18px;
    border-left: 4px solid var(--primary-red);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.08) 85%, transparent 100%);
    opacity: 0;
    transform: translateX(-32px);
    animation: heroPanelInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.hero-eyebrow {
    display: block;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-red-light);
    margin-bottom: 6px;
    opacity: 0;
    transform: translateX(-16px);
    animation: heroEyebrowInLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.hero-title {
    font-size: clamp(1.22rem, 2.6vw, 1.85rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 8px;
}

.hero-title-line {
    display: block;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(-20px);
    filter: blur(4px);
    animation: heroLineInLeft 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.55s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.72s;
}

.hero-title-line--accent {
    color: var(--primary-red);
    margin-top: 2px;
    font-size: 0.98em;
    animation-delay: 0.88s;
}

.hero-description {
    font-size: clamp(0.82rem, 1.45vw, 0.98rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.32;
    margin-bottom: 12px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.55);
}

.desc-line {
    display: block;
    opacity: 0;
    transform: translateX(-14px);
    filter: blur(4px);
    animation: heroLineInLeft 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--line-delay, 0s) forwards;
    transition: color 0.25s ease;
}

.desc-line:hover {
    color: var(--white);
}

.desc-line + .desc-line {
    margin-top: 2px;
}

.hero-description strong {
    font-weight: 700;
    color: #ffd6d6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(211, 47, 47, 0.38);
    opacity: 0;
    transform: translateX(-14px);
    animation: heroCtaInLeft 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--cta-delay, 1.5s) forwards;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta-text {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-red-light) 0%, var(--primary-red) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: var(--btn-hover-gradient);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transform: translateY(-3px);
}

.hero-cta:hover::before {
    opacity: 0;
}

.hero-cta:hover .hero-cta-text {
    transform: scale(1.03);
}

.hero-cta:active {
    background: var(--btn-active-gradient);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* ===== Hero Animations ===== */
@keyframes heroImgZoom {
    to {
        transform: scale(1);
    }
}

@keyframes heroImgDrift {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

@keyframes overlayFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes heroPanelInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroEyebrowInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroLineInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
        filter: blur(4px);
    }
    70% {
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes heroCtaInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroPanelIn {
    0% {
        opacity: 0;
        transform: translateY(36px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroEyebrowIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroLineIn {
    0% {
        opacity: 0;
        transform: translateY(22px);
        filter: blur(5px);
    }
    70% {
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroWordIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
        filter: blur(6px);
    }
    60% {
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes descLineIn {
    0% {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(8px);
    }
    70% {
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroCtaIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }
    70% {
        transform: translateY(-2px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===== Floating Contact Buttons ===== */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--primary-red-light) 0%, var(--primary-red) 50%, var(--primary-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.45);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateX(80px) scale(0.4);
    animation: floatBtnIn 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.float-btn--phone {
    animation-delay: 0.5s;
}

.float-btn--whatsapp {
    animation-delay: 0.68s;
}

.float-btn--email {
    animation-delay: 0.86s;
}

@keyframes floatBtnIn {
    0% {
        opacity: 0;
        transform: translateX(80px) scale(0.4) rotate(12deg);
    }
    55% {
        opacity: 1;
        transform: translateX(-10px) scale(1.12) rotate(-4deg);
    }
    75% {
        transform: translateX(4px) scale(0.96) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0deg);
    }
}

.float-btn svg {
    width: 24px;
    height: 24px;
}

.float-btn:hover {
    background: linear-gradient(145deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(211, 47, 47, 0.55);
}

.float-btn:active {
    background: var(--primary-red-dark);
    transform: scale(1.02);
    box-shadow: 0 3px 12px rgba(183, 28, 28, 0.5);
}

/* ===== Events Section ===== */
.events-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 24px 60px;
    background-color: var(--white);
    text-align: center;
}

.events-container {
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto;
}

.events-tagline {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--primary-red);
    margin-bottom: 16px;
    line-height: 1.3;
}

.events-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 20px;
    line-height: 1.35;
}

.events-intro {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #444;
    margin-bottom: 24px;
    line-height: 1.7;
}

.events-list {
    display: inline-block;
    text-align: left;
    list-style: none;
}

.events-list li {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #333;
    font-weight: 500;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.events-list li:hover {
    color: var(--primary-red);
    transform: translateX(6px);
}

.check-icon {
    color: var(--primary-red);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== WhatsApp Button ===== */
.whatsapp-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 24px 50px;
    text-align: center;
    background-color: var(--white);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25d366;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.3px;
}

.whatsapp-btn:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(18, 140, 126, 0.45);
}

.whatsapp-btn:active {
    background-color: #0e6b60;
    transform: translateY(-1px);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* ===== Catering Section ===== */
.catering-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px 70px;
    background-color: var(--white);
}

.catering-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: var(--layout-max);
    margin: 0 auto;
}

.catering-image-wrap {
    position: relative;
    flex: 0 0 58%;
    max-width: 680px;
    padding: 12px;
    background: linear-gradient(145deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 14px;
    border: 3px solid var(--primary-red);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(211, 47, 47, 0.15),
        inset 0 0 0 4px rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.catering-corner-video {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 344px;
    height: 186px;
    object-fit: cover;
    border: 3px solid #f8f6f0;
    outline: none;
    box-shadow: none;
    z-index: 2;
    pointer-events: none;
}

.catering-image-wrap:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(211, 47, 47, 0.2),
        inset 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.catering-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    aspect-ratio: 4 / 3;
    min-height: 380px;
}

.catering-content {
    flex: 1;
    text-align: left;
}

.catering-title {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 18px;
    line-height: 1.35;
}

.catering-text {
    font-size: clamp(0.88rem, 1.6vw, 1rem);
    color: #444;
    line-height: 1.8;
    margin-bottom: 22px;
}

.catering-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
}

.catering-list {
    list-style: none;
}

.catering-list li {
    font-size: clamp(0.88rem, 1.6vw, 1rem);
    color: #333;
    font-weight: 500;
    padding: 9px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    transition: color 0.25s ease, transform 0.25s ease;
}

.catering-list li:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

/* ===== Truck / Pizza Banner Section ===== */
.truck-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    text-align: center;
}

.truck-banner {
    position: relative;
    width: 100%;
    min-height: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.truck-video-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    line-height: 0;
    overflow: hidden;
}

.truck-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.truck-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.truck-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: min(96vw, 1100px);
    margin: 0 auto;
    padding: clamp(28px, 4vw, 36px) clamp(20px, 4vw, 32px);
    text-align: center;
}

.truck-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e0e0e0;
    margin-bottom: 10px;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.truck-tag:hover {
    color: #ff8a80;
    letter-spacing: 3px;
}

.truck-title {
    font-size: clamp(1.75rem, 4.8vw, 2.85rem);
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1.25;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.truck-line {
    font-size: clamp(0.78rem, 1.35vw, 0.95rem);
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

.truck-line:first-of-type {
    white-space: nowrap;
    font-size: clamp(0.68rem, 1.15vw, 0.82rem);
    margin-bottom: 6px;
}

.truck-line:hover {
    color: var(--white);
}

.truck-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 11px 32px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 12px;
}

.truck-btn:hover {
    background: var(--btn-hover-gradient);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.truck-btn:active {
    background: var(--btn-active-gradient);
    transform: translateY(-1px);
}

/* ===== Reservation Section ===== */
#reservation {
    scroll-margin-top: calc(var(--nav-height) + 24px);
}

.reservation-section {
    margin-top: 50px;
    width: 100%;
    background-color: var(--white);
    transition: box-shadow 0.4s ease;
}

.reservation-section.is-booking-highlight .reservation-form-panel {
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.55), 0 20px 50px rgba(0, 0, 0, 0.25);
}

.menu-section + .reservation-section {
    margin-top: 50px;
    margin-bottom: 0;
}

.speisekarte-pizza-visual {
    width: 100%;
    max-width: var(--layout-max);
    margin: 50px auto 40px;
    padding: 0 24px;
    text-align: center;
    line-height: 0;
}

.speisekarte-pizza-visual-frame {
    display: inline-block;
    max-width: 100%;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    line-height: 0;
}

.speisekarte-pizza-visual-img {
    width: 100%;
    max-height: 680px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}

.reservation-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 520px;
    width: 100%;
    max-width: none;
    margin: 0;
    background-color: var(--white);
    overflow: hidden;
}

.reservation-form-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 520px;
    flex-shrink: 0;
    border-radius: 0 320px 320px 0;
    overflow: hidden;
}

.reservation-panel-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    z-index: 0;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.1s var(--ease-smooth), transform 1.1s var(--ease-smooth);
}

.reveal-section.is-in-view .reservation-panel-bg {
    opacity: 1;
    transform: scale(1);
}

.reservation-panel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 1;
}

.reservation-panel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: min(78%, 920px);
    margin-left: 0;
    margin-right: auto;
    padding: 36px 5% 36px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.9s var(--ease-smooth) 0.15s, transform 0.9s var(--ease-smooth) 0.15s;
    overflow: visible;
}

.reveal-section.is-in-view .reservation-panel-content {
    opacity: 1;
    transform: translateX(0);
}

/* Kontakt page – same form width as home reservation */
.reservation-section--kontakt .reservation-panel-content {
    width: min(78%, 920px);
    margin-left: 0;
    margin-right: auto;
    padding: 52px 6% 52px clamp(36px, 5vw, 88px);
    align-items: flex-start;
    text-align: left;
}

.reservation-section--kontakt .reservation-title {
    text-align: left;
    align-self: flex-start;
}

.reservation-section--kontakt .reservation-form {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
}

.reservation-section--kontakt .reservation-submit {
    align-self: stretch;
    max-width: 100%;
}

.form-notice {
    width: 100%;
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
    border: 1px solid transparent;
}

.form-notice--success {
    color: #e8f5e9;
    background: rgba(46, 125, 50, 0.24);
    border-color: rgba(129, 199, 132, 0.45);
}

.form-notice--error {
    color: #ffebee;
    background: rgba(211, 47, 47, 0.22);
    border-color: rgba(239, 83, 80, 0.45);
}

.reservation-title {
    font-family: var(--font-script);
    font-size: clamp(1.75rem, 3.5vw, 2.45rem);
    color: var(--primary-red);
    margin-bottom: 14px;
    font-weight: 400;
    line-height: 1.1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.reservation-title:hover {
    color: var(--primary-red-light);
    transform: translateX(4px);
}

.reservation-form {
    width: 100%;
    max-width: 100%;
}

.form-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
    align-items: start;
}

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

.form-row-full {
    grid-template-columns: 1fr;
}

@media (max-width: 1100px) {
    .form-row-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    min-width: 0;
    text-align: left;
}

.form-field--icon .input-icon-wrap {
    width: 100%;
}

.form-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    padding-left: 2px;
}

.reservation-form input,
.reservation-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 0.82rem;
    color: #1f1f1f;
    background: rgba(255, 255, 255, 0.97);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
    color: #8a8a8a;
    font-weight: 400;
}

.reservation-form input:hover,
.reservation-form textarea:hover {
    border-color: rgba(211, 47, 47, 0.35);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.reservation-form input:focus,
.reservation-form textarea:focus {
    border-color: var(--primary-red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.22), 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.reservation-form textarea {
    resize: none;
    min-height: 58px;
    max-height: 72px;
    line-height: 1.45;
}

.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.input-icon-wrap:hover {
    border-color: rgba(211, 47, 47, 0.35);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.input-icon-wrap:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.22), 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.input-icon-wrap input {
    padding: 10px 36px 10px 12px;
    color-scheme: light;
    border: none;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
}

.input-icon-wrap input:hover,
.input-icon-wrap input:focus {
    border: none;
    box-shadow: none;
    transform: none;
}

.input-icon-wrap input[type="date"],
.input-icon-wrap input[type="time"] {
    color: transparent;
    cursor: pointer;
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 38px;
}

.input-icon-wrap input[type="date"]::-webkit-calendar-picker-indicator,
.input-icon-wrap input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    background: transparent;
}

.input-icon-wrap input[type="date"]:focus,
.input-icon-wrap input[type="time"]:focus,
.input-icon-wrap input[type="date"].has-value,
.input-icon-wrap input[type="time"].has-value {
    color: #1f1f1f;
}

.input-icon-wrap input[type="date"]:focus + .input-display,
.input-icon-wrap input[type="time"]:focus + .input-display {
    opacity: 0;
    pointer-events: none;
}

.input-icon-wrap input[type="date"].has-value + .input-display,
.input-icon-wrap input[type="time"].has-value + .input-display {
    opacity: 0;
    pointer-events: none;
}

.input-display {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a8a8a;
    font-size: 0.82rem;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.field-icon {
    position: absolute;
    right: 10px;
    width: 16px;
    height: 16px;
    color: var(--primary-red);
    opacity: 0.75;
    pointer-events: none;
}

.reservation-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 4px;
    padding: 12px 22px;
    background: linear-gradient(135deg, var(--primary-red-light) 0%, var(--primary-red) 48%, var(--primary-red-dark) 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.42);
    transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.reservation-submit svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.reservation-submit:hover {
    background: linear-gradient(135deg, #ff6f60 0%, var(--primary-red) 50%, #8b0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(211, 47, 47, 0.5);
}

.reservation-submit:hover svg {
    transform: translateX(4px);
}

.reservation-submit:active {
    background: var(--primary-red-dark);
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(183, 28, 28, 0.45);
}

/* ===== Booking Modal ===== */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 16px) 16px 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.booking-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.booking-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 920px);
    max-height: calc(100vh - var(--nav-height) - 32px);
    overflow-y: auto;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-modal.is-open .booking-modal-dialog {
    transform: translateY(0) scale(1);
}

.booking-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.booking-modal-close svg {
    width: 20px;
    height: 20px;
}

.booking-modal-close:hover {
    background: var(--primary-red);
    transform: scale(1.06);
}

.booking-modal-panel {
    position: relative;
    min-height: 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.booking-modal-panel .reservation-circle-img {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.booking-modal-panel .reservation-panel-content {
    opacity: 1;
    transform: none;
    width: min(100%, 680px);
    padding: 40px 6% 40px 8%;
}

.booking-modal-panel .reservation-form {
    max-width: 100%;
}

.reservation-circle-img {
    position: absolute;
    right: clamp(24px, 8vw, 120px);
    left: auto;
    top: 50%;
    transform: translateY(-50%) scale(0.88);
    opacity: 0;
    z-index: 3;
    width: clamp(200px, 24vw, 320px);
    height: clamp(200px, 24vw, 320px);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    border: 4px solid rgba(255, 255, 255, 0.9);
    transition: opacity 0.95s var(--ease-smooth) 0.3s, transform 0.95s var(--ease-smooth) 0.3s;
}

.reveal-section.is-in-view .reservation-circle-img {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.reservation-circle-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* ===== Customers Gallery Section ===== */
.customers-section {
    margin-top: 50px;
    padding: 55px 24px 70px;
    background-color: var(--white);
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.customers-container {
    max-width: var(--layout-max);
    margin: 0 auto;
}

.customers-title {
    font-size: clamp(1.2rem, 2.8vw, 1.85rem);
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1.35;
    margin-bottom: 12px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.customers-subtitle {
    font-family: var(--font-script);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--primary-red);
    margin-bottom: 32px;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.customers-grid-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.customers-grid-item.reveal-gallery-item {
    opacity: 0;
    transform: translateY(56px) scale(0.9);
    filter: blur(8px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--gallery-delay, 0s),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--gallery-delay, 0s),
        filter 0.8s ease var(--gallery-delay, 0s),
        box-shadow 0.35s ease;
    will-change: opacity, transform, filter;
}

.customers-grid-item.reveal-gallery-item.reveal-gallery-item--from-left {
    transform: translateY(56px) translateX(-28px) scale(0.9) rotate(-2deg);
}

.customers-grid-item.reveal-gallery-item.reveal-gallery-item--from-right {
    transform: translateY(56px) translateX(28px) scale(0.9) rotate(2deg);
}

.customers-grid-item.reveal-gallery-item.is-in-view {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
    filter: blur(0);
}

.customers-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.2);
}

.customers-grid-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.customers-grid-item:hover img {
    transform: scale(1.06);
}

.reservation-section--kontakt + .reviews-section {
    margin-top: clamp(56px, 7vw, 80px);
}

/* ===== Reviews Section ===== */
.reviews-section {
    margin-top: 50px;
    padding: 0 24px 70px;
    background-color: var(--white);
    width: 100%;
    max-width: 100%;
}

.reviews-container {
    max-width: var(--layout-max);
    margin: 0 auto;
}

.reviews-main-title {
    text-align: center;
    font-size: clamp(1.15rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.35;
    margin-bottom: 36px;
}

.reviews-widget-header {
    text-align: center;
    margin-bottom: 32px;
}

.reviews-business-name {
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.reviews-score-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.reviews-score {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-red);
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.review-stars-lg .review-star {
    width: 22px;
    height: 22px;
}

.review-star {
    width: 16px;
    height: 16px;
    color: #ddd;
}

.review-star.filled {
    color: var(--primary-red);
}

.reviews-count {
    font-size: 0.88rem;
    color: #888;
    margin-bottom: 4px;
}

.reviews-powered {
    font-size: 0.82rem;
    color: #aaa;
    margin-bottom: 16px;
}

.google-word {
    font-weight: 600;
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background-color: #1a73e8;
    color: var(--white);
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.google-review-btn:hover {
    background-color: #0d47a1;
    transform: translateY(-1px);
}

.google-review-btn:active {
    background-color: #082f6e;
    transform: translateY(0);
}

.google-g-icon {
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    padding: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.review-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 180px;
}

.review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-user-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.review-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a73e8;
    line-height: 1.2;
    word-break: break-word;
}

.review-time {
    font-size: 0.75rem;
    color: #999;
    margin-top: 2px;
}

.review-google-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.review-text {
    font-size: 0.84rem;
    color: #444;
    line-height: 1.55;
    flex: 1;
    overflow-y: auto;
    max-height: 120px;
}

/* ===== Page Banner (inner pages) ===== */
.page-banner {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1350 / 238;
    max-height: 238px;
    margin: var(--nav-height) auto 0;
    overflow: hidden;
    line-height: 0;
}

.page-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-banner + .page-content {
    margin-top: 0;
}

/* ===== Speisekarte Menu Section ===== */
.menu-section {
    width: 100%;
    max-width: 100%;
    margin: 28px auto 0;
    padding: 0 24px 60px;
    background-color: var(--white);
}

.menu-intro-banner {
    position: relative;
    max-width: var(--layout-max);
    margin: 0 auto;
    background: linear-gradient(135deg, #080808 0%, #121212 48%, #1a1212 100%);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-intro-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(211, 47, 47, 0.35) 0, transparent 42%),
        radial-gradient(circle at 80% 70%, rgba(211, 47, 47, 0.2) 0, transparent 38%),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03) 0,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 10px
        );
    pointer-events: none;
}

.menu-intro-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
    animation: menuGlowPulse 5s ease-in-out infinite;
}

.menu-intro-glow--left {
    left: -60px;
    top: -40px;
    background: rgba(211, 47, 47, 0.22);
}

.menu-intro-glow--right {
    right: 80px;
    bottom: -80px;
    background: rgba(211, 47, 47, 0.16);
    animation-delay: 1.2s;
}

.menu-intro-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 168px;
    padding: 34px 36px;
}

.menu-intro-text {
    width: 100%;
    text-align: center;
    padding: 0 clamp(80px, 14vw, 180px);
}

.menu-intro-title {
    margin-bottom: 16px;
}

.menu-intro-title-line {
    display: inline-block;
    font-family: var(--font-script);
    font-size: clamp(2.1rem, 4.8vw, 3.2rem);
    font-weight: 400;
    color: var(--primary-red);
    line-height: 1.1;
    text-shadow: 0 2px 24px rgba(211, 47, 47, 0.35);
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    animation: menuTitleReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.menu-intro-price {
    margin: 0;
}

.menu-intro-price-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    font-family: 'Roboto', var(--font-main);
    font-size: clamp(0.92rem, 1.7vw, 1.08rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #fff;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(18px);
    animation: menuPriceReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.menu-intro-pizza {
    position: absolute;
    right: clamp(16px, 3vw, 36px);
    top: 50%;
    z-index: 2;
    width: clamp(118px, 14vw, 176px);
    height: clamp(118px, 14vw, 176px);
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(-50%) translateX(24px) scale(0.92);
    animation: menuPizzaReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

.menu-intro-pizza-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(211, 47, 47, 0.45);
    animation: menuRingPulse 3s ease-in-out infinite;
}

.menu-intro-pizza-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
    animation: menuPizzaFloat 4.5s ease-in-out 1.6s infinite;
}

.menu-intro-pizza img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.menu-intro-accent {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    transform: scaleX(0);
    transform-origin: center;
    animation: menuAccentGrow 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

@keyframes menuTitleReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes menuPriceReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes menuPizzaReveal {
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0) scale(1);
    }
}

@keyframes menuPizzaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes menuRingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

@keyframes menuGlowPulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.7; }
}

@keyframes menuPizzaRevealMobile {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes menuAccentGrow {
    to { transform: scaleX(1); }
}

.menu-pizza-wrap {
    padding: 42px 24px 0;
    max-width: var(--layout-max);
    margin: 0 auto;
}

.menu-pizza-header {
    max-width: var(--layout-max);
    margin: 0 auto 36px;
    padding: 0 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.menu-pizza-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 3vw, 28px);
    width: 100%;
    max-width: 520px;
}

.menu-pizza-title-accent {
    flex: 1;
    height: 2px;
    max-width: 120px;
    background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.55));
    border-radius: 2px;
}

.menu-pizza-title-wrap .menu-pizza-title-accent:last-child {
    background: linear-gradient(90deg, rgba(211, 47, 47, 0.55), transparent);
}

.menu-pizza-title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 12px;
    text-align: center;
}

.menu-pizza-title-text {
    font-family: var(--font-script);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--primary-red);
    line-height: 1;
    text-shadow: 0 2px 12px rgba(211, 47, 47, 0.15);
}

.menu-pizza-title-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: 'Rubik', var(--font-main);
    font-size: clamp(0.82rem, 1.4vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--primary-red);
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(211, 47, 47, 0.04) 100%);
    border: 1.5px solid rgba(211, 47, 47, 0.35);
    box-shadow: 0 4px 14px rgba(211, 47, 47, 0.1);
}

.menu-pizza-title-quote {
    font-weight: 700;
    opacity: 0.85;
}

.menu-pizza-subtitle {
    font-family: 'Rubik', var(--font-main);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 500;
    color: #b71c1c;
    margin: 0;
    line-height: 1.35;
    text-align: center;
    max-width: 640px;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 10px;
}

.menu-pizza-subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    border-radius: 2px;
}

.menu-pizza-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 28px 48px;
    text-align: left;
    max-width: var(--layout-max);
    margin: 0 auto;
}

.menu-pizza-item {
    min-height: 52px;
    grid-column: var(--menu-col);
    grid-row: var(--menu-row);
}

.menu-pizza-name {
    font-family: 'Rubik', var(--font-main);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1.3;
    margin-bottom: 4px;
}

.menu-pizza-name sup {
    font-size: 0.65em;
    font-weight: 600;
}

.menu-pizza-desc {
    font-family: 'Roboto', var(--font-main);
    font-size: clamp(0.88rem, 1.2vw, 0.98rem);
    font-weight: 400;
    color: #4f7f3a;
    line-height: 1.35;
}

/* ===== Page Content (inner pages) ===== */
.page-content {
    margin-top: var(--nav-height);
    min-height: calc(100vh - var(--nav-height) - 80px);
    padding: 60px 24px;
}

.page-container {
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.page-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

/* ===== Standorte Page ===== */
.standorte-page {
    margin-top: 0;
    padding: calc(var(--nav-height) + 40px) 24px 60px;
    text-align: center;
}

.standorte-hero {
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto;
}

.standorte-title-script {
    font-family: var(--font-script);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 400;
    color: var(--primary-red);
    line-height: 1.15;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(24px) scale(0.78);
    animation: standorteTitleZoom 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.standorte-title {
    font-family: 'Rubik', var(--font-main);
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1.3;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(18px) scale(0.82);
    animation: standorteSubtitleZoom 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

@keyframes standorteTitleZoom {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes standorteSubtitleZoom {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.standorte-intro {
    max-width: 820px;
    margin: 0 auto;
    font-family: 'Roboto', var(--font-main);
    font-size: clamp(0.98rem, 1.8vw, 1.08rem);
    color: #444;
    line-height: 1.75;
}

.standorte-cities {
    margin-top: 48px;
    padding: 0 0 20px;
}

.standorte-cities-inner {
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto;
    text-align: center;
}

.standorte-featured-city {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(100%, 210px);
    max-width: 210px;
    width: 100%;
    margin: 0 auto 16px;
    padding: 16px 22px;
    background-color: var(--primary-red);
    color: var(--white);
    font-family: 'Roboto', var(--font-main);
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.2;
    border-radius: 0;
}

.standorte-cities-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.standorte-city-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 16px 14px;
    background-color: var(--primary-red);
    color: var(--white);
    font-family: 'Roboto', var(--font-main);
    font-size: clamp(0.92rem, 1.25vw, 1.06rem);
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    border-radius: 0;
}

.standorte-cities-note {
    max-width: 760px;
    margin: 0 auto 22px;
    font-family: 'Roboto', var(--font-main);
    font-size: 0.92rem;
    color: #333;
    line-height: 1.6;
}

.standorte-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: min(100%, 320px);
    padding: 14px 36px;
    background-color: #25d366;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.standorte-whatsapp-btn:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(18, 140, 126, 0.45);
}

.standorte-whatsapp-btn:active {
    background-color: #0e6b60;
    transform: translateY(-1px);
}

/* ===== Über uns Page ===== */
.about-page {
    margin-top: 0;
    padding: calc(var(--nav-height) + 40px) 24px 60px;
}

.about-section {
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
}

.about-image-wrap {
    flex: 0 1 644px;
    width: min(100%, 644px);
    max-width: 644px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateX(-24px) scale(0.94);
    animation: aboutImageReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.about-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 644 / 442;
    display: block;
    object-fit: cover;
}

.about-content {
    flex: 1;
    text-align: left;
}

.about-title {
    font-family: 'Rubik', var(--font-main);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1.25;
    margin-bottom: 14px;
}

.about-tagline {
    font-family: 'Rubik', var(--font-main);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 600;
    color: #333;
    line-height: 1.45;
    margin-bottom: 16px;
}

.about-text {
    font-family: 'Roboto', var(--font-main);
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    color: #444;
    line-height: 1.75;
    margin-bottom: 22px;
}

.about-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto', var(--font-main);
    font-size: clamp(0.92rem, 1.4vw, 1rem);
    color: #333;
    font-weight: 500;
    padding: 5px 0;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    font-family: 'Rubik', var(--font-main);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(211, 47, 47, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-btn:hover {
    background: var(--btn-hover-gradient);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.about-btn:active {
    background: var(--btn-active-gradient);
    transform: translateY(0);
}

.about-animate {
    opacity: 0;
    transform: translateY(20px) scale(0.92);
    animation: aboutTextZoom 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about-animate--2 { animation-delay: 0.3s; }
.about-animate--3 { animation-delay: 0.45s; }
.about-animate--4 { animation-delay: 0.58s; }
.about-animate--5 { animation-delay: 0.7s; }
.about-animate--6 { animation-delay: 0.82s; }
.about-animate--7 { animation-delay: 0.95s; }

.about-title.about-animate {
    animation-delay: 0.2s;
    transform: translateY(24px) scale(0.78);
    animation-name: aboutTitleZoom;
    animation-duration: 1s;
}

@keyframes aboutImageReveal {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes aboutTitleZoom {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes aboutTextZoom {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== Über uns – Services Section ===== */
.about-services-section {
    width: 100%;
    max-width: var(--layout-max);
    margin: clamp(48px, 6vw, 72px) auto clamp(50px, 6vw, 80px);
    padding: 0;
}

.about-services-grid {
    display: grid;
    grid-template-columns: minmax(210px, 0.9fr) repeat(3, minmax(155px, 0.95fr));
    gap: clamp(10px, 1.3vw, 14px);
    align-items: start;
}

.about-services-intro {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 4px 12px 0 18px;
    margin-left: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.about-services-script {
    font-family: var(--font-script);
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    color: var(--primary-red);
    line-height: 1.35;
    margin-bottom: 12px;
    max-width: 100%;
    transition: transform 0.35s ease, color 0.35s ease;
}

.about-services-intro:hover .about-services-script {
    transform: translateX(6px);
}

.about-services-heading {
    font-family: 'Rubik', var(--font-main);
    font-size: clamp(0.9rem, 1.4vw, 1.02rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
    transition: color 0.3s ease, transform 0.35s ease;
}

.about-services-intro:hover .about-services-heading {
    color: var(--primary-red);
    transform: translateX(4px);
}

.about-services-text {
    font-family: 'Roboto', var(--font-main);
    font-size: clamp(0.84rem, 1.25vw, 0.9rem);
    color: #555;
    line-height: 1.65;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.about-services-intro:hover .about-services-text {
    color: #333;
}

.about-services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    align-self: flex-start;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    font-family: 'Rubik', var(--font-main);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(211, 47, 47, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-services-btn:hover {
    background: var(--btn-hover-gradient);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.about-services-btn:active {
    background: var(--btn-active-gradient);
    transform: translateY(0);
}

.about-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    padding: 12px 12px 10px;
    text-align: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.about-service-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 28px rgba(211, 47, 47, 0.14);
    border-color: rgba(211, 47, 47, 0.3);
}

.about-service-card:hover .about-service-card-title {
    color: var(--primary-red);
}

.about-service-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 18px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-service-card:hover .about-service-icon {
    transform: scale(1.12) translateY(-4px);
}

.about-service-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.about-service-card-title {
    font-family: 'Rubik', var(--font-main);
    font-size: clamp(1.22rem, 1.95vw, 1.38rem);
    font-weight: 700;
    color: #222;
    line-height: 1.35;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.about-service-card-text {
    font-family: 'Roboto', var(--font-main);
    font-size: clamp(0.74rem, 1.05vw, 0.8rem);
    color: #666;
    line-height: 1.4;
}

.about-services-reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-services-section.is-visible .about-services-reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-services-reveal--1 { transition-delay: 0.05s; }
.about-services-reveal--2 { transition-delay: 0.18s; }
.about-services-reveal--3 { transition-delay: 0.3s; }
.about-services-reveal--4 { transition-delay: 0.42s; }
.about-services-reveal--5 { transition-delay: 0.28s; }
.about-services-reveal--6 { transition-delay: 0.4s; }
.about-services-reveal--7 { transition-delay: 0.52s; }

@media (max-width: 1200px) {
    .about-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-services-intro {
        grid-column: 1 / -1;
        max-width: 640px;
    }
}

/* ===== Kontakt Page ===== */
.kontakt-page {
    margin-top: 0;
    padding: calc(var(--nav-height) + 40px) 24px 0;
}

.kontakt-page .reservation-section--kontakt {
    margin-top: clamp(44px, 5vw, 56px);
}

.kontakt-page .reviews-section {
    margin-top: clamp(44px, 5vw, 56px);
    padding-bottom: 70px;
}

.kontakt-cards-section {
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto;
}

.kontakt-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
}

.kontakt-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
    padding: 40px 24px 36px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kontakt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.kontakt-card-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: #f7f3ed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt-card-icon svg {
    width: 88px;
    height: 88px;
    display: block;
}

.kontakt-card-title {
    font-family: 'Rubik', var(--font-main);
    font-size: clamp(1.28rem, 2.05vw, 1.48rem);
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.35;
}

.kontakt-card-detail {
    font-family: 'Roboto', var(--font-main);
    font-size: clamp(1.12rem, 1.75vw, 1.22rem);
    color: #555;
    line-height: 1.55;
    margin: 0;
}

.kontakt-card-detail a {
    color: inherit;
    transition: color 0.25s ease;
}

.kontakt-card-detail a:hover {
    color: var(--primary-red);
}

.kontakt-welcome {
    font-family: var(--font-script);
    font-size: clamp(2.15rem, 4.2vw, 3.1rem);
    color: var(--primary-red);
    text-align: center;
    line-height: 1.35;
    margin: clamp(44px, 5vw, 60px) auto 0;
}

@media (max-width: 1100px) {
    .kontakt-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .kontakt-page {
        padding: calc(var(--nav-height) + 28px) 20px 50px;
    }

    .kontakt-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* ===== Footer ===== */
.site-footer {
    background-color: #0e1317;
    background-image: url('../assets/footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 0;
    margin-top: 0;
}

.footer-inner {
    max-width: var(--layout-max);
    margin: 0 auto;
    padding: 28px 24px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.75fr 1fr;
    gap: 16px;
    align-items: start;
}

.footer-about {
    padding-left: 0;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-logo {
    width: 100px;
    height: auto;
    display: block;
}

.footer-heading {
    font-family: 'Rubik', var(--font-main);
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-about-text {
    font-family: 'Roboto', var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    max-width: 82%;
    margin-bottom: 14px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #cd212a;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.25s ease;
}

.footer-social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-social-btn:hover {
    background-color: #008c45;
    transform: translateY(-2px);
}

.footer-links-col {
    padding: 12px 10px 12px 90px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    font-family: 'Roboto', var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #cd212a;
}

.footer-contact-col {
    padding: 12px 10px 12px 130px;
}

.footer-contact-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-family: 'Roboto', var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    color: #fff;
}

.footer-contact-list li:last-child {
    margin-bottom: 0;
}

.footer-contact-list a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #cd212a;
}

.footer-contact-list svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-vat span {
    display: block;
    line-height: 1.35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 24px 20px;
    text-align: center;
}

.footer-copyright {
    font-family: 'Roboto', var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.4;
}

/* ===== Global Design Lock & Interactions ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    transition: color 0.3s ease, transform 0.3s ease;
}

main p,
.page-text,
.events-intro,
.events-tagline,
.catering-text,
.about-text,
.about-tagline,
.kontakt-card-detail,
.review-text,
.customers-subtitle {
    color: var(--text-body);
    transition: color 0.3s ease, transform 0.3s ease;
}

main h1:hover,
main h2:hover,
main h3:hover,
.events-title:hover,
.catering-title:hover,
.about-title:hover,
.about-services-heading:hover,
.about-services-script:hover,
.kontakt-card-title:hover,
.review-name:hover,
.customers-title:hover,
.reviews-business-name:hover,
.reservation-title:hover,
.standorte-title:hover,
.menu-intro-title-line:hover {
    color: var(--primary-red);
}

main p:hover,
.page-text:hover,
.events-intro:hover,
.catering-text:hover,
.about-text:hover,
.about-tagline:hover,
.kontakt-welcome:hover,
.review-text:hover {
    color: var(--text-muted);
}

.catering-image,
.about-image,
.page-banner-img,
.customers-grid-item img {
    transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s ease;
}

.catering-image:hover,
.about-image:hover,
.customers-grid-item:hover img {
    transform: scale(1.03);
}

.reservation-form input,
.reservation-form textarea,
.input-icon-wrap {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.hero-cta,
.truck-btn,
.about-btn,
.about-services-btn,
.reservation-submit,
.whatsapp-btn,
.standorte-whatsapp-btn,
.google-review-btn {
    transition: background 0.3s ease, background-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.truck-btn:hover {
    background: var(--btn-hover-gradient);
}

.reveal-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
}

.reveal-section.is-in-view .reveal-item:not(.reveal-gallery-item),
.customers-grid-item.reveal-item.is-in-view:not(.reveal-gallery-item) {
    opacity: 1;
    transform: translateY(0);
}

.reviews-widget-header,
.kontakt-cards-section > .kontakt-welcome {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-section.is-in-view .reviews-widget-header,
.reveal-section.is-in-view > .kontakt-welcome {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Universal scroll reveal ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(2px);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--sr-delay, 0s),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--sr-delay, 0s),
        filter 0.45s ease var(--sr-delay, 0s);
}

.scroll-reveal--media {
    transform: translateY(24px) scale(0.94);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    .hero-img,
    .hero-overlay,
    .hero-panel,
    .hero-eyebrow,
    .hero-title-line,
    .desc-line,
    .hero-cta,
    .nav-booking-pulse,
    .float-btn,
    .truck-tag,
    .truck-word,
    .truck-line,
    .truck-btn,
    .truck-bg-video,
    .menu-intro-title-line,
    .menu-intro-price-badge,
    .menu-intro-pizza,
    .menu-intro-pizza-frame,
    .menu-intro-pizza-ring,
    .menu-intro-glow,
    .menu-intro-accent,
    .standorte-title-script,
    .standorte-title,
    .about-image-wrap,
    .about-animate,
    .about-services-reveal,
    .about-services-section.is-visible .about-services-reveal {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    .about-service-card:hover {
        transform: none !important;
        box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07) !important;
        border-color: #ececec !important;
    }

    .about-services-intro:hover {
        transform: none !important;
    }

    .about-service-card:hover .about-service-icon,
    .about-services-intro:hover .about-services-script,
    .about-services-intro:hover .about-services-heading {
        transform: none !important;
    }

    .reveal-section .reservation-panel-bg,
    .reveal-section.is-in-view .reservation-panel-bg,
    .reveal-section .reservation-panel-content,
    .reveal-section.is-in-view .reservation-panel-content,
    .reveal-section .reservation-circle-img,
    .reveal-section.is-in-view .reservation-circle-img,
    .reveal-item,
    .reveal-section.is-in-view .reveal-item,
    .customers-grid-item.reveal-gallery-item {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    .scroll-reveal,
    .scroll-reveal.is-visible {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    .reviews-widget-header,
    .reveal-section.is-in-view .reviews-widget-header {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .menu-intro-pizza {
        transform: translateY(-50%) !important;
    }
}

@media (prefers-reduced-motion: reduce) and (max-width: 900px) {
    .menu-intro-pizza {
        transform: none !important;
    }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.68);
        z-index: 1150;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-backdrop.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        right: 0;
        left: auto;
        width: min(270px, 50vw);
        max-width: 270px;
        min-width: 0;
        height: auto;
        max-height: calc(100dvh - var(--nav-height));
        margin: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background-color: var(--dark-bg);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 18px 14px 20px;
        gap: 4px;
        z-index: 1151;
        box-shadow: -12px 0 32px rgba(0, 0, 0, 0.45);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom-left-radius: 12px;
        transform: translateX(105%);
        transition: transform 0.35s ease;
        will-change: transform;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 14px;
        width: 100%;
        text-align: left;
        border-radius: 6px;
        white-space: normal;
        line-height: 1.35;
        word-break: break-word;
    }

    body.nav-menu-open #main-content {
        pointer-events: none;
        touch-action: none;
    }

    body.nav-menu-open .hero-panel {
        max-width: calc(100% - min(270px, 50vw) - 28px);
    }

    body.nav-menu-open #main-content {
        overflow: hidden;
    }

    .floating-buttons {
        right: max(14px, env(safe-area-inset-right, 0px));
        bottom: max(20px, env(safe-area-inset-bottom, 0px));
    }

    .float-btn {
        width: 46px;
        height: 46px;
    }

    .events-section {
        padding: 40px 20px 50px;
    }

    .events-title {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
    }

    .events-list {
        width: 100%;
        max-width: 320px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-panel {
        width: 100%;
        max-width: 100%;
        padding: 12px 0 12px 14px;
    }

    .hero-eyebrow {
        font-size: 0.58rem;
        letter-spacing: 2px;
        margin-bottom: 5px;
    }

    .hero-title {
        font-size: clamp(1.05rem, 4.5vw, 1.35rem);
        line-height: 1.06;
        margin-bottom: 6px;
    }

    .hero-description {
        font-size: 0.8rem;
        line-height: 1.28;
        margin-bottom: 10px;
    }

    .hero-cta {
        width: auto;
        max-width: none;
        padding: 9px 20px;
        font-size: 0.76rem;
    }

    .hero-img {
        object-position: 80% center;
    }

    .whatsapp-wrap {
        padding: 10px 20px 40px;
    }

    .standorte-cities {
        margin-top: 36px;
        padding: 0 10px 10px;
    }

    .standorte-cities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .standorte-featured-city {
        max-width: 100%;
    }

    .standorte-city-item {
        min-height: 58px;
        padding: 14px 10px;
        font-size: 0.9rem;
    }

    .standorte-cities-note {
        font-size: 0.86rem;
        margin-bottom: 18px;
    }

    .standorte-whatsapp-btn {
        width: 100%;
        max-width: 360px;
    }

    .whatsapp-btn {
        font-size: 0.95rem;
        padding: 12px 28px;
    }

    .catering-section {
        padding: 0 20px 50px;
    }

    .catering-container {
        flex-direction: column;
        gap: 32px;
    }

    .catering-image-wrap {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .catering-image {
        min-height: 280px;
    }

    .catering-content {
        text-align: center;
    }

    .catering-list {
        display: inline-block;
        text-align: left;
    }

    .about-page {
        padding: calc(var(--nav-height) + 28px) 20px 0;
    }

    .about-inner {
        flex-direction: column;
        gap: 28px;
    }

    .about-image-wrap {
        flex: none;
        width: min(644px, 100%);
        max-width: 100%;
    }

    .about-image {
        width: 100%;
        height: auto;
        aspect-ratio: 644 / 442;
    }

    .about-content {
        text-align: center;
    }

    .about-list {
        display: inline-block;
        text-align: left;
    }

    .about-services-section {
        margin-top: 40px;
        padding: 0 20px 50px;
    }

    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-services-intro {
        text-align: center;
        padding: 0 0 8px;
        margin-left: 0;
    }

    .about-services-script {
        margin-inline: auto;
    }

    .about-services-btn {
        margin-top: 18px;
        align-self: center;
    }

    .about-services-intro:hover .about-services-script,
    .about-services-intro:hover .about-services-heading {
        transform: none;
    }

    .truck-section {
        padding: 0;
    }

    .truck-banner {
        width: 100%;
        min-height: 0;
    }

    .truck-content {
        padding: clamp(24px, 5vw, 32px) 16px;
        max-width: 100%;
    }

    .truck-line:first-of-type {
        white-space: normal;
        font-size: 0.72rem;
    }

    .reservation-section {
        margin-top: 35px;
    }

    .reservation-wrap {
        flex-direction: column;
        min-height: auto;
    }

    .reservation-form-panel {
        width: 100%;
        min-height: auto;
        border-radius: 0;
    }

    .booking-modal {
        padding: calc(var(--nav-height) + 10px) 10px 10px;
    }

    .booking-modal-panel {
        min-height: auto;
        border-radius: 6px;
    }

    .booking-modal-panel .reservation-circle-img {
        display: none;
    }

    .booking-modal-panel .reservation-panel-content {
        padding: 36px 20px 24px;
    }

    .reservation-panel-content {
        width: 100%;
        margin-left: 0;
        padding: 36px 24px 28px;
    }

    .reservation-circle-img {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        opacity: 1;
        margin: 0 auto 32px;
        width: min(72vw, 240px);
        height: min(72vw, 240px);
    }

    .reveal-section.is-in-view .reservation-circle-img {
        transform: none;
    }

    .reservation-panel-content {
        opacity: 1;
        transform: none;
    }

    .nav-booking-text {
        display: none;
    }

    .nav-booking-icon {
        width: 44px;
        height: 44px;
        min-height: 44px;
        padding: 0;
        border-radius: 50%;
    }

    .nav-booking-pulse {
        inset: 0;
        border-radius: 50%;
    }

    .form-card {
        padding: 16px;
    }

    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }

    .reservation-form input,
    .reservation-form textarea,
    .input-icon-wrap input {
        padding: 13px 14px;
        font-size: 0.86rem;
    }

    .input-icon-wrap input {
        padding-right: 40px;
    }

    .reservation-submit {
        padding: 14px 20px;
        font-size: 0.82rem;
    }

    .customers-section {
        margin-top: 35px;
        padding: 40px 20px 50px;
    }

    .menu-section {
        margin-top: 20px;
        padding-bottom: 40px;
    }

    .speisekarte-pizza-visual {
        margin: 36px auto 32px;
        padding: 0 20px;
    }

    .speisekarte-pizza-visual-frame {
        border-radius: 18px;
    }

    .speisekarte-pizza-visual-img {
        width: 100%;
        max-height: 480px;
    }

    .menu-intro-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 26px 18px 28px;
        min-height: auto;
    }

    .menu-intro-text {
        padding: 0 6px;
        width: 100%;
        max-width: 100%;
    }

    .menu-intro-title {
        margin-bottom: 10px;
    }

    .menu-intro-title-line {
        font-size: clamp(1.7rem, 7.5vw, 2.3rem);
        line-height: 1.15;
    }

    .menu-intro-price-badge {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 10px 14px;
        font-size: clamp(0.78rem, 3.3vw, 0.9rem);
        line-height: 1.5;
        text-align: center;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .menu-intro-pizza {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        left: auto;
        width: 92px;
        height: 92px;
        margin: 4px auto 0;
        transform: none;
        opacity: 1;
        animation-name: menuPizzaRevealMobile;
    }

    .menu-intro-pizza-ring {
        inset: -6px;
    }

    .menu-intro-pizza-frame {
        animation: none;
    }

    .menu-pizza-wrap {
        padding: 32px 20px 0;
    }

    .menu-pizza-header {
        margin-bottom: 28px;
        gap: 10px;
    }

    .menu-pizza-title-wrap {
        gap: 10px;
    }

    .menu-pizza-title-accent {
        max-width: 48px;
    }

    .menu-pizza-title-text {
        font-size: clamp(1.9rem, 7vw, 2.4rem);
    }

    .menu-pizza-title-badge {
        padding: 5px 11px;
        font-size: 0.78rem;
    }

    .menu-pizza-grid {
        grid-template-columns: 1fr;
        gap: 22px 0;
    }

    .menu-pizza-item {
        grid-column: auto;
        grid-row: auto;
    }

    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .reviews-section {
        margin-top: 40px;
        padding: 0 20px 50px;
    }

    .reviews-main-title {
        margin-bottom: 28px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .review-card {
        min-height: auto;
    }

    .footer-inner {
        padding: 24px 20px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-about,
    .footer-links-col,
    .footer-contact-col {
        padding: 0;
    }

    .footer-about-text {
        max-width: 100%;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .menu-pizza-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 28px;
    }

    .menu-pizza-item {
        grid-column: auto;
        grid-row: auto;
    }

    .reservation-panel-content {
        width: min(52%, 620px);
        margin-left: 0;
        margin-right: auto;
    }

    .reservation-circle-img {
        width: clamp(180px, 20vw, 260px);
        height: clamp(180px, 20vw, 260px);
        right: clamp(16px, 4vw, 48px);
        left: auto;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .standorte-cities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-about {
        grid-column: 1 / -1;
        padding-left: 0;
    }

    .footer-links-col,
    .footer-contact-col {
        padding: 0;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* ===== Responsive layout fixes (all devices) ===== */
#main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

@media (max-width: 1100px) {
    .menu-intro-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 26px 18px 28px;
        min-height: auto;
    }

    .menu-intro-text {
        padding: 0 8px;
        width: 100%;
        max-width: 100%;
    }

    .menu-intro-title {
        margin-bottom: 10px;
    }

    .menu-intro-price-badge {
        display: block;
        width: 100%;
        max-width: 100%;
        text-align: center;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .menu-intro-pizza {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        left: auto;
        width: 92px;
        height: 92px;
        margin: 4px auto 0;
        transform: none;
        opacity: 1;
        animation: none;
    }

    .menu-intro-pizza-frame {
        animation: none;
    }
}

@media (max-width: 1200px) {
    .customers-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .standorte-cities-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .about-image-wrap {
        flex: 1 1 48%;
        width: auto;
        max-width: min(644px, 100%);
    }

    .about-image {
        width: 100%;
        height: auto;
        aspect-ratio: 644 / 442;
    }
}

@media (max-width: 1100px) {
    .reservation-wrap,
    .reservation-form-panel {
        min-height: auto;
    }

    .reservation-form-panel {
        border-radius: 0;
    }

    .reservation-panel-content {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 40px clamp(20px, 4vw, 36px) 32px;
    }

    .reservation-section--kontakt .reservation-panel-content {
        width: 100%;
        max-width: 100%;
        padding-left: clamp(20px, 4vw, 36px);
    }

    .reservation-circle-img {
        position: relative;
        right: auto;
        left: auto;
        top: auto;
        transform: none;
        opacity: 1;
        margin: 0 auto 24px;
        width: min(240px, 42vw);
        height: min(240px, 42vw);
    }

    .reveal-section.is-in-view .reservation-circle-img {
        transform: none;
    }

    .footer-about {
        padding-left: 0;
    }

    .catering-corner-video {
        width: min(42vw, 220px);
        height: auto;
        aspect-ratio: 344 / 186;
        right: 12px;
        bottom: 12px;
    }

    .catering-image {
        min-height: 280px;
    }

    .about-inner {
        flex-direction: column;
        gap: 28px;
    }

    .about-image-wrap {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .about-image {
        width: 100%;
        height: auto;
        aspect-ratio: 644 / 442;
    }

    .about-content {
        text-align: center;
    }

    .about-list {
        display: inline-block;
        text-align: left;
    }

    .events-title {
        white-space: normal;
    }

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

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

@media (max-width: 900px) {
    :root {
        --nav-height: calc(80px + env(safe-area-inset-top, 0px));
    }

    .hero {
        width: 100%;
        max-width: 100%;
        aspect-ratio: auto;
        min-height: clamp(300px, 54vw, 460px);
        max-height: none;
        margin-top: var(--nav-height);
    }

    .page-banner {
        width: 100%;
        max-width: 100%;
        aspect-ratio: auto;
        max-height: none;
        margin-top: var(--nav-height);
    }

    .page-banner-img {
        width: 100%;
        height: auto;
        max-height: 220px;
        object-fit: cover;
    }

    .events-section,
    .catering-section,
    .customers-section,
    .reviews-section,
    .menu-section,
    .standorte-hero,
    .standorte-page,
    .kontakt-cards-section,
    .about-section,
    .about-page {
        width: 100%;
        max-width: 100%;
    }

    .events-title {
        white-space: normal;
        line-height: 1.35;
    }

    .nav-container {
        padding: 0 max(16px, env(safe-area-inset-right, 0px)) 0 max(16px, env(safe-area-inset-left, 0px));
    }

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

    .reservation-title {
        font-size: clamp(1.55rem, 5vw, 2.1rem);
        text-align: center;
    }

    .reservation-section--kontakt .reservation-title {
        text-align: left;
    }

    .menu-intro-text {
        padding: 0 4px;
    }

    .menu-intro-inner {
        gap: 14px;
        padding: 24px 16px 26px;
    }

    .menu-intro-title-line {
        font-size: clamp(1.55rem, 8vw, 2rem);
    }

    .menu-intro-price-badge {
        padding: 9px 12px;
        font-size: 0.8rem;
    }

    .menu-intro-pizza {
        width: 84px;
        height: 84px;
    }

    .standorte-page,
    .kontakt-page,
    .about-page {
        padding-left: 20px;
        padding-right: 20px;
    }

    .kontakt-card {
        padding: 28px 18px 24px;
    }

    .kontakt-card-icon {
        width: 110px;
        height: 110px;
        margin-bottom: 18px;
    }

    .kontakt-card-icon svg {
        width: 64px;
        height: 64px;
    }

    .speisekarte-pizza-visual,
    .whatsapp-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 600px) {
    :root {
        --nav-height: calc(72px + env(safe-area-inset-top, 0px));
    }

    .nav-menu {
        width: min(236px, 50vw);
        max-width: 236px;
        padding: 14px 12px 16px;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 11px 12px;
    }

    body.nav-menu-open .hero-panel {
        max-width: calc(100% - min(236px, 50vw) - 20px);
    }

    .hero {
        min-height: clamp(280px, 78vw, 380px);
    }

    .hero-panel {
        border-left-width: 3px;
        padding-left: 12px;
    }

    .page-banner-img {
        max-height: 180px;
    }

    .catering-corner-video {
        width: min(48vw, 160px);
    }

    .catering-image {
        min-height: 220px;
    }

    .truck-content {
        padding: 22px 16px;
    }

    .truck-title {
        font-size: clamp(1.1rem, 4.8vw, 1.45rem);
    }

    .truck-line {
        font-size: clamp(0.72rem, 3.2vw, 0.85rem);
    }

    .truck-line:first-of-type {
        white-space: normal;
    }

    .customers-title {
        font-size: clamp(1rem, 4.2vw, 1.35rem);
        padding: 0 4px;
    }

    .customers-subtitle {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }

    .standorte-cities-grid {
        grid-template-columns: 1fr;
    }

    .standorte-city-item {
        min-height: 52px;
        padding: 12px 10px;
        font-size: 0.88rem;
    }

    .standorte-featured-city {
        max-width: 100%;
    }

    .footer-heading {
        font-size: 1.15rem;
    }

    .footer-about-text,
    .footer-links a,
    .footer-contact-list {
        font-size: 0.92rem;
    }

    .floating-buttons {
        right: max(10px, env(safe-area-inset-right, 0px));
        bottom: max(16px, env(safe-area-inset-bottom, 0px));
    }

    .float-btn {
        width: 44px;
        height: 44px;
    }

    .nav-logo img {
        max-height: 56px;
    }

    .nav-booking-icon {
        width: 40px;
        height: 40px;
        min-height: 40px;
    }

    .events-section,
    .customers-section,
    .catering-section,
    .reviews-section,
    .menu-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.76rem;
    }

    .hero-cta {
        padding: 8px 16px;
        font-size: 0.7rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .nav-menu {
        width: min(220px, 50vw);
        max-width: 220px;
    }

    body.nav-menu-open .hero-panel {
        max-width: calc(100% - min(220px, 50vw) - 16px);
    }

    .menu-intro-text {
        padding: 0 2px;
    }

    .menu-intro-inner {
        padding: 22px 14px 24px;
        gap: 12px;
    }

    .menu-intro-price-badge {
        font-size: 0.76rem;
        padding: 8px 10px;
    }

    .menu-intro-pizza {
        width: 76px;
        height: 76px;
    }
}

/* ===== Wide / ultra-wide screens (e.g. 1920px, 2409px) ===== */
@media (min-width: 1400px) {
    :root {
        --layout-max: min(92vw, 1480px);
    }

    .hero {
        min-height: clamp(460px, 46vh, 640px);
        max-height: min(62vh, 700px);
    }

    .hero-title {
        font-size: clamp(1.45rem, 2.2vw, 2rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    }
}

@media (min-width: 1800px) {
    :root {
        --layout-max: min(88vw, 1720px);
    }

    .nav-link {
        font-size: 1.15rem;
    }

    .menu-pizza-grid {
        max-width: var(--layout-max);
    }

    .footer-inner {
        max-width: var(--layout-max);
    }
}

@media (min-width: 2200px) {
    :root {
        --layout-max: min(90vw, 1960px);
        --hero-height: 640px;
    }

    .hero {
        min-height: clamp(500px, 44vh, 680px);
        max-height: min(58vh, 720px);
    }

    .hero-panel {
        max-width: 560px;
    }

    .catering-container,
    .customers-container,
    .reviews-container {
        max-width: var(--layout-max);
    }

    .customers-grid {
        gap: 18px;
    }
}

/* ===== Sitewide layout alignment ===== */
#main-content,
main.page-content {
    width: 100%;
    max-width: 100%;
}

.events-section,
.catering-section,
.customers-section,
.reviews-section,
.reservation-section,
.menu-section,
.standorte-cities,
.kontakt-cards-section,
.about-section,
.about-services-section {
    box-sizing: border-box;
}

.page-banner,
.hero,
.truck-section,
.site-footer {
    width: 100%;
    max-width: 100%;
}

.speisekarte-pizza-visual,
.whatsapp-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.speisekarte-pizza-visual-frame,
.speisekarte-pizza-visual-img {
    width: 100%;
    max-width: 100%;
}

/* ===== Images, text & forms polish ===== */
img {
    max-width: 100%;
    height: auto;
}

.catering-image-wrap,
.about-image-wrap,
.customers-grid-item,
.reservation-circle-img,
.page-banner,
.menu-intro-pizza-frame {
    overflow: hidden;
}

.customers-title,
.events-title,
.catering-title,
.truck-title,
.about-title,
.standorte-title,
.reservation-title,
.customers-subtitle {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.reservation-panel-content {
    text-align: left;
}

.reservation-title {
    text-align: left;
    width: 100%;
}

.reservation-form input[type="text"],
.reservation-form input[type="email"],
.reservation-form input[type="tel"],
.reservation-form input[type="number"],
.reservation-form input[type="date"],
.reservation-form input[type="time"],
.input-icon-wrap {
    min-height: 42px;
    box-sizing: border-box;
}

.input-icon-wrap input {
    line-height: 1.4;
}

.form-row {
    align-items: start;
}

.form-row:last-of-type {
    margin-bottom: 0;
}

.form-card .form-row-full + .reservation-submit,
.form-card .form-row:last-child + .reservation-submit {
    margin-top: 12px;
}

.reservation-submit {
    margin-top: 12px;
}

.reservation-section--kontakt .reservation-form textarea {
    min-height: 110px;
    max-height: 180px;
    line-height: 1.5;
}

.reservation-form textarea {
    display: block;
    width: 100%;
    vertical-align: top;
}

.form-field label,
.form-field {
    width: 100%;
}

.form-label {
    display: block;
    line-height: 1.3;
    margin-bottom: 0;
}

.catering-content,
.about-content,
.menu-pizza-item,
.events-container,
.standorte-intro {
    overflow-wrap: break-word;
}

.catering-image {
    width: 100%;
    max-width: 100%;
}

.customers-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reservation-panel-bg {
    object-fit: cover;
    object-position: center;
}

.reservation-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .reservation-panel-content {
        padding: 36px 20px 28px;
    }

    .reservation-title {
        text-align: center;
        font-size: clamp(1.55rem, 5vw, 2.1rem);
    }

    .reservation-section--kontakt .reservation-title {
        text-align: left;
    }

    .form-card {
        padding: 16px 14px;
    }

    .form-label {
        font-size: 0.64rem;
    }
}

/* ===== All-device responsive polish ===== */
html {
    max-width: 100%;
    overflow-x: hidden;
}

@media (min-width: 901px) and (max-width: 1100px) {
    :root {
        --nav-height: 84px;
    }

    .nav-logo img {
        height: 72px;
    }

    .nav-menu {
        gap: 4px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 8px 9px;
    }

    .nav-booking-text {
        font-size: 0.72rem;
    }

    .nav-booking-icon {
        padding: 0 12px 0 10px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .footer-links-col {
        padding-left: 40px;
    }

    .footer-contact-col {
        padding-left: 60px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .customers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .standorte-cities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 520px) {
    .hero {
        min-height: clamp(180px, 48vh, 280px);
    }

    .hero-title {
        font-size: clamp(0.95rem, 3.8vw, 1.15rem);
        margin-bottom: 4px;
    }

    .hero-description {
        font-size: 0.72rem;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-cta {
        padding: 7px 16px;
        font-size: 0.7rem;
    }

    .nav-menu {
        padding: 10px 12px 14px;
        gap: 2px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .page-banner-img {
        max-height: 140px;
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: 0 max(12px, env(safe-area-inset-right, 0px)) 0 max(12px, env(safe-area-inset-left, 0px));
    }

    .nav-logo img {
        max-height: 50px;
    }

    .nav-booking-icon {
        width: 36px;
        height: 36px;
        min-height: 36px;
    }

    .nav-toggle span {
        width: 22px;
    }

    .hero-panel {
        padding-left: 10px;
    }

    .whatsapp-btn {
        font-size: 0.88rem;
        padding: 11px 20px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .nav-toggle,
    .nav-booking,
    .float-btn,
    .hero-cta,
    .whatsapp-btn,
    .reservation-submit {
        touch-action: manipulation;
    }

    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 0 max(14px, env(safe-area-inset-right, 0px)) 0 max(14px, env(safe-area-inset-left, 0px));
    }
}
