:root {
    --gold: #e1a731;
    --gold-light: #f0c14b;
    --gold-dark: #c4911f;
    --basil: #3d7a4a;
    --basil-light: #4f9a5f;
    --dark-bg: #0a0a0a;
    --dark-secondary: #111111;
    --dark-card: #161616;
    --dark-muted: #1a1a1a;
    --text-primary: #fafafa;
    --text-secondary: #a3a3a3;
    --glass-bg: rgba(22, 22, 22, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
}

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

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

/* Navbar */
.navbar-custom {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1050;
    padding: 1.25rem 0;
    background: transparent;
    transition: var(--transition);
}

.page-menu .navbar-custom {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.navbar-custom.scrolled {
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--gold) !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-brand span {
    color: var(--text-primary);
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary) !important;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem !important;
    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-bg) !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 4px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 167, 49, 0.35);
    color: var(--dark-bg) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(16, 16, 16, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.25rem;
        margin-top: 0.75rem;
        border-radius: var(--radius);
        border: 1px solid var(--glass-border);
    }
}

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark-bg);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    padding: 1rem 2rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(225, 167, 49, 0.35);
    color: var(--dark-bg);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(225, 167, 49, 0.45);
    padding: 0.95rem 1.75rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: rgba(225, 167, 49, 0.12);
    border-color: var(--gold);
    color: var(--gold-light);
}

/* Hero – háttér: felső/közép rész látszik (nem „telibe” a tárgy), reszponzív vágás */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-media img,
.hero-media video {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: 50% 32%;
    transform: translate(-50%, -46%) scale(1.14);
    transform-origin: 50% 35%;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

/* Finom oldalsó sötétítés – a szöveg olvashatóbb marad széles kijelzőn */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.35) 0%,
        transparent 28%,
        transparent 72%,
        rgba(10, 10, 10, 0.35) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 7rem 1.5rem 4rem;
}

.hero-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 4.75rem);
    margin-bottom: 1.25rem;
}

.hero-lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.hero-badge i {
    color: var(--basil-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.6875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    background: none;
}

.scroll-indicator i {
    font-size: 1.25rem;
    color: var(--gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Trust bar */
.trust-bar {
    background: var(--dark-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
}

.trust-item {
    text-align: center;
    padding: 0.5rem;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.trust-item strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
}

.trust-item span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* Sections */
section {
    padding: 5.5rem 0;
}

.section-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 720px;
    line-height: 1.8;
}

.section-lead.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Story */
.story-section {
    background: var(--dark-bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    pointer-events: none;
}

.story-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold);
    margin: 1.5rem 0;
    font-style: italic;
}

/* Pillars */
.pillars-section {
    background: var(--dark-secondary);
}

.pillar-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.pillar-card:hover {
    border-color: rgba(225, 167, 49, 0.25);
    transform: translateY(-6px);
}

.pillar-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 122, 74, 0.15);
    color: var(--basil-light);
    border-radius: 12px;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.pillar-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* Menu grid */
.menu-section {
    background: var(--dark-bg);
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-btn {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(225, 167, 49, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.pizza-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.pizza-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    border-color: rgba(225, 167, 49, 0.2);
}

.pizza-card-media {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.pizza-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pizza-card:hover .pizza-card-media img {
    transform: scale(1.06);
}

.pizza-card-body {
    padding: 1.25rem 1.35rem 1.5rem;
}

.pizza-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.pizza-card-body p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.pizza-card--sold-out {
    opacity: 0.72;
}

.pizza-card--sold-out .pizza-card-media img {
    filter: grayscale(0.35);
}

.pizza-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 4px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(8px);
    color: var(--gold);
    border: 1px solid rgba(225, 167, 49, 0.3);
}

/* Oven highlight */
.oven-banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
}

.oven-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oven-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 100%);
}

.oven-banner-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    max-width: 560px;
}

.oven-banner-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.oven-banner-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Local SEO */
.local-section {
    background: var(--dark-secondary);
}

.local-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
}

.local-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.local-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

.local-card i {
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

/* Order CTA */
.order-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    text-align: center;
}

.order-panel {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(16px);
}

.order-panel .coming-soon {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--basil-light);
    background: rgba(61, 122, 74, 0.15);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.order-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--gold);
    margin: 1rem 0 1.5rem;
    display: block;
}

.order-phone:hover {
    color: var(--gold-light);
}

/* Footer */
.footer {
    background: #0d0d0d;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--text-primary);
}

.footer-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-bg);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.footer-link {
    color: var(--gold);
}

.footer-link:hover {
    color: var(--gold-light);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        aspect-ratio: 16/10;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-media img,
    .hero-media video {
        object-position: 50% 28%;
        transform: translate(-50%, -42%) scale(1.22);
        transform-origin: 50% 30%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-gold,
    .hero-actions .btn-outline-gold {
        width: 100%;
    }

    .oven-banner-content {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-media img,
    .hero-media video {
        object-position: 50% 36%;
        transform: translate(-50%, -48%) scale(1.1);
    }
}

@media (min-width: 1600px) {
    .hero-media img,
    .hero-media video {
        object-position: 50% 38%;
        transform: translate(-50%, -50%) scale(1.06);
    }
}

/* --- Élő nyitvatartás sáv --- */
.live-status-bar {
    background: linear-gradient(180deg, rgba(225, 167, 49, 0.06), transparent);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
    position: relative;
    z-index: 2;
}

.live-status-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1.25rem;
}

.live-status-bar__state {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex: 0 0 auto;
}

.live-status-bar__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c0392b;
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.55);
}

.live-status-bar__state.is-open .live-status-bar__dot {
    background: #28c071;
    box-shadow: 0 0 0 0 rgba(40, 192, 113, 0.55);
    animation: liveStatusPulse 2s infinite;
}

@keyframes liveStatusPulse {
    0% { box-shadow: 0 0 0 0 rgba(40, 192, 113, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(40, 192, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 192, 113, 0); }
}

.live-status-bar__label {
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
}

.live-status-bar__state.is-open .live-status-bar__label {
    color: #28c071;
}

.live-status-bar__sub {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.live-status-bar__facts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    flex: 1 1 auto;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.live-status-bar__facts li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.live-status-bar__facts strong {
    color: var(--text-primary);
}

.live-status-bar__phone {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    white-space: nowrap;
}

.live-status-bar__phone:hover {
    color: var(--gold-light);
}

@media (max-width: 767px) {
    .live-status-bar__facts {
        order: 3;
        flex: 1 0 100%;
        justify-content: flex-start;
    }
    .live-status-bar__phone span {
        display: none;
    }
    .live-status-bar__phone {
        font-size: 1.35rem;
    }
}

/* --- Sticky mobile hívás/rendelés sáv --- */
.sticky-call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: flex;
    gap: 0;
    background: rgba(10, 10, 10, 0.97);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.sticky-call-bar__btn {
    flex: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 0.65rem 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background var(--transition);
}

.sticky-call-bar__btn i {
    font-size: 1.25rem;
}

.sticky-call-bar__btn--phone {
    background: transparent;
}

.sticky-call-bar__btn--phone:hover,
.sticky-call-bar__btn--phone:focus {
    background: rgba(225, 167, 49, 0.08);
    color: var(--gold);
}

.sticky-call-bar__btn--order {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #1a1410;
}

.sticky-call-bar__btn--order:hover,
.sticky-call-bar__btn--order:focus {
    color: #1a1410;
    filter: brightness(1.08);
}

body:has(.shop-mobile-bar) .sticky-call-bar {
    display: none;
}

@media (max-width: 991.98px) {
    body:has(.sticky-call-bar):not(:has(.shop-mobile-bar)) {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0));
    }
}

/* --- Jogi lábléc + cookie banner --- */
.footer-legal {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-bottom: 0.75rem;
}

.footer-legal__nav a {
    color: var(--gold, #c9a227);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legal__nav a:hover {
    text-decoration: underline;
}

.footer-legal__company,
.footer-legal__arbiter {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1090;
    padding: 1rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85) 30%);
    pointer-events: none;
}

.cookie-banner__inner {
    pointer-events: auto;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #1a1410;
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.cookie-banner__title {
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: #fff;
}

.cookie-banner__desc {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

.cookie-banner__desc a {
    color: var(--gold, #c9a227);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.page-legal .legal-page {
    padding-top: 6rem;
    min-height: 60vh;
}

.page-legal .legal-page__body h2 {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--gold, #c9a227);
}

.page-legal .legal-page__body p,
.page-legal .legal-page__body li {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.page-legal .legal-table {
    font-size: 0.9rem;
}

@media (max-width: 575px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }

    .pizza-card:hover .pizza-card-media img {
        transform: none;
    }

    .hero-media img,
    .hero-media video {
        transform: translate(-50%, -50%);
        will-change: auto;
    }
}
