/* ===== 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;
    --hero-width: 1350px;
    --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;
}

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: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1200px;
    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-call {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nav-call-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(211, 47, 47, 0.35);
    animation: navCallPulse 2.2s ease-out infinite;
    pointer-events: none;
}

.nav-call-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    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-call svg {
    width: 20px;
    height: 20px;
}

.nav-call:hover {
    transform: scale(1.06);
}

.nav-call:hover .nav-call-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-call:active {
    transform: scale(0.96);
}

@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);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    width: min(100%, var(--hero-width));
    aspect-ratio: 1350 / 559;
    max-height: var(--hero-height);
    margin: var(--nav-height) auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transform: scale(1.1);
    animation: heroImgZoom 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--dark-overlay);
    z-index: 1;
    opacity: 0;
    animation: overlayFadeIn 1s ease forwards;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 920px;
    padding: 20px 24px;
}

.hero-title {
    font-size: clamp(1.45rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1.3;
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(6px);
    animation: heroWordIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s) forwards;
    transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
    cursor: default;
}

.hero-title:hover .hero-word {
    transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

.hero-word:hover {
    color: #ff5252;
    transform: translateY(-2px) scale(1.04);
    text-shadow: 0 0 14px rgba(255, 82, 82, 0.55);
}

.hero-description {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 22px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
}

.desc-line {
    display: block;
    opacity: 0;
    transform: translateY(22px);
    filter: blur(6px);
    animation: descLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--line-delay, 0s) forwards;
    transition: color 0.3s ease, transform 0.3s ease, letter-spacing 0.3s ease;
}

.desc-line:hover {
    color: var(--white);
    transform: translateY(-1px);
    letter-spacing: 0.3px;
}

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

.hero-description strong {
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.desc-line:hover strong {
    color: #ffcccc;
    text-shadow: 0 0 8px rgba(255, 200, 200, 0.4);
}

.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.9rem;
    font-weight: 700;
    padding: 11px 30px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(211, 47, 47, 0.35);
    opacity: 0;
    transform: translateY(20px);
    animation: heroCtaIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--cta-delay, 2s) forwards;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 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 overlayFadeIn {
    to {
        opacity: 1;
    }
}

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

@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 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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: var(--hero-width);
    margin: 0 auto;
    padding: 50px 24px 60px;
    background-color: var(--white);
    text-align: center;
}

.events-container {
    max-width: 1100px;
    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;
    white-space: nowrap;
}

.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: var(--hero-width);
    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: var(--hero-width);
    margin: 0 auto;
    padding: 0 24px 70px;
    background-color: var(--white);
}

.catering-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1280px;
    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: 100vh;
    overflow: hidden;
}

.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: absolute;
    inset: 0;
    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: 24px;
    text-align: center;
}

.truck-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e0e0e0;
    margin-bottom: 14px;
    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: 16px;
    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: 18px;
}

.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-section {
    margin-top: 50px;
    width: 100%;
    background-color: var(--white);
}

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

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

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

.speisekarte-pizza-visual-img {
    width: min(100%, 1350px);
    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: 640px;
    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: 640px;
    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(58%, 720px);
    margin-left: 0;
    margin-right: auto;
    padding: 52px 6% 52px 8%;
    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;
}

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

/* Kontakt page – form fully left */
.reservation-section--kontakt .reservation-panel-content {
    width: min(48%, 600px);
    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: 520px;
    align-self: flex-start;
}

.reservation-section--kontakt .reservation-submit {
    align-self: flex-start;
}

.reservation-title {
    font-family: var(--font-script);
    font-size: clamp(2rem, 4vw, 2.85rem);
    color: var(--primary-red);
    margin-bottom: 26px;
    font-weight: 400;
    line-height: 1.15;
    transition: color 0.3s ease, transform 0.3s ease;
}

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

.reservation-form {
    max-width: 540px;
}

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

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

.reservation-form input,
.reservation-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 2px;
    font-family: var(--font-main);
    font-size: 0.88rem;
    color: #333;
    background-color: var(--white);
    outline: none;
    transition: box-shadow 0.25s ease;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
    color: #999;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.35);
}

.reservation-form textarea {
    resize: vertical;
    min-height: 90px;
}

.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

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

.input-icon-wrap input[type="date"],
.input-icon-wrap input[type="time"] {
    color: transparent;
}

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

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

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

.field-icon {
    position: absolute;
    right: 12px;
    width: 20px;
    height: 20px;
    color: #888;
    pointer-events: none;
}

.reservation-submit {
    margin-top: 8px;
    padding: 13px 28px;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.reservation-submit:hover {
    background-color: var(--btn-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.reservation-submit:active {
    background-color: #0d0d0d;
    transform: translateY(0);
}

.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;
}

.customers-container {
    max-width: var(--hero-width);
    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: 900px;
    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: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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);
}

.reviews-container {
    max-width: var(--hero-width);
    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: min(100%, var(--hero-width));
    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: min(100%, var(--hero-width));
    margin: 28px auto 0;
    padding: 0 0 60px;
    background-color: var(--white);
}

.menu-intro-banner {
    position: relative;
    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(130px, 18vw, 200px);
}

.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: translateX(50%) translateY(0) scale(1);
    }
}

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

.menu-pizza-wrap {
    padding: 42px 28px 0;
}

.menu-pizza-header {
    max-width: 1180px;
    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, 1fr);
    gap: 0 48px;
    text-align: left;
    max-width: 1180px;
    margin: 0 auto;
}

.menu-pizza-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.menu-pizza-item {
    min-height: 52px;
}

.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 {
    max-width: 900px;
    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 {
    max-width: 900px;
    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 8px 20px;
}

.standorte-cities-inner {
    width: min(100%, var(--hero-width));
    max-width: none;
    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;
    min-width: min(100%, 320px);
    padding: 14px 28px;
    background-color: #25d366;
    color: var(--white);
    font-family: 'Roboto', var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background-color 0.3s ease, transform 0.25s ease;
}

.standorte-whatsapp-btn:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
}

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

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

.about-section {
    width: min(100%, var(--hero-width));
    margin: 0 auto;
}

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

.about-image-wrap {
    flex: 0 0 644px;
    width: 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: 644px;
    height: 442px;
    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: min(100%, var(--hero-width));
    margin: clamp(48px, 6vw, 72px) auto clamp(50px, 6vw, 80px);
    padding: 0 12px;
}

.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 70px;
}

.kontakt-cards-section {
    width: min(100%, var(--hero-width));
    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: 1320px;
    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: 50px;
}

.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 {
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.reservation-form input:hover,
.reservation-form textarea:hover {
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.22);
    transform: translateY(-1px);
}

.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,
.customers-grid-item.reveal-item.is-in-view {
    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);
}

@media (prefers-reduced-motion: reduce) {
    .hero-img,
    .hero-overlay,
    .hero-word,
    .desc-line,
    .hero-cta,
    .nav-call-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,
    .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;
    }
}

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

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 4px;
        transition: left 0.35s ease;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 14px 24px;
        width: 80%;
        text-align: center;
    }

    .floating-buttons {
        right: 14px;
        bottom: 20px;
    }

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

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

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

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

    .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%;
    }

    .truck-banner {
        min-height: 100vh;
    }

    .truck-content {
        padding: 16px;
        max-width: 98vw;
    }

    .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;
    }

    .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;
    }

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

    .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 {
        padding: 28px 20px 108px;
        min-height: auto;
    }

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

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

    .menu-intro-pizza {
        right: 50%;
        top: auto;
        bottom: 18px;
        transform: translateX(50%);
        width: 110px;
        height: 110px;
        animation-name: menuPizzaRevealMobile;
    }

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

    .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: 0;
    }

    .menu-pizza-col {
        gap: 22px;
    }

    .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) {
    .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) {
    .customers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .menu-pizza-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0 28px;
    }

    .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);
    }
}
