:root {
    --bg: #0a0a0a;
    --bg-soft: #111111;
    --fg: #f5f1ea;
    --fg-muted: rgba(245, 241, 234, 0.55);
    --fg-dim: rgba(245, 241, 234, 0.35);
    --accent: #c8a050;
    --accent-soft: rgba(200, 160, 80, 0.35);
    --line: rgba(245, 241, 234, 0.12);
    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

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

button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

::selection {
    background: var(--accent);
    color: var(--bg);
}

/* ============= TYPOGRAPHY ============= */

.eyebrow {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.display {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--fg);
    margin-bottom: 2rem;
}

.display em {
    font-style: italic;
    color: var(--accent);
}

.display-sm {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2;
    color: var(--fg);
    margin-bottom: 1.5rem;
}

.body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--fg-muted);
}

.body.subtitle {
    max-width: 480px;
    margin: 0 auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container.narrow {
    max-width: 760px;
}

/* ============= NAV ============= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 2.5rem;
    border-bottom: 1px solid var(--line);
}

.nav-logo img {
    height: 44px;
    width: 44px;
    transition: transform 0.4s var(--ease);
}

.nav-logo:hover img {
    transform: rotate(15deg);
}

.nav-end {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.nav-lang-link {
    color: var(--fg-muted);
    padding: 0.5rem 0;
    transition: color 0.3s var(--ease);
}

.nav-lang-link.is-active {
    color: var(--fg);
}

.nav-lang-link:not(.is-active):hover {
    color: var(--accent);
}

.nav-lang-sep {
    width: 1px;
    height: 12px;
    background: var(--line);
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fg);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    height: 1px;
    background: var(--fg);
    transition: all 0.4s var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-menu-logo {
    display: none;
}

/* ============= HERO ============= */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    will-change: transform;
    animation: kenburns 18s ease-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.85) 100%);
}

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

.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.4) 25%,
        rgba(0, 0, 0, 0.18) 50%,
        transparent 75%);
    z-index: -1;
    pointer-events: none;
}

.hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s 0.3s var(--ease-out) forwards;
}

.hero-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--fg);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1.2s 0.5s var(--ease-out) forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-muted);
    opacity: 0;
    animation: fadeUp 1.2s 0.8s var(--ease-out) forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 1px;
    height: 60px;
    opacity: 0;
    animation: fadeIn 1.5s 1.4s var(--ease-out) forwards;
}

.hero-scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 30%;
    background: var(--fg);
    animation: scrollIndicator 2s var(--ease) infinite;
}

@keyframes scrollIndicator {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(300%); }
}

@keyframes kenburns {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.1) translate(-1%, -1%); }
}

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

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

/* ============= SECTIONS ============= */

section {
    padding: 8rem 0;
    position: relative;
}

.intro {
    text-align: center;
    padding: 10rem 0;
    border-bottom: 1px solid var(--line);
}

.intro .body {
    margin-top: 2rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ============= INTERNI ============= */

.interni {
    padding: 6rem 0;
}

.interni-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto 8rem;
    padding: 0 2rem;
}

.interni-row:last-child {
    margin-bottom: 0;
}

.interni-row.reverse {
    direction: rtl;
}

.interni-row.reverse > * {
    direction: ltr;
}

.interni-image {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--bg-soft);
}

.interni-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}

.interni-row:hover .interni-image img {
    transform: scale(1.04);
}

.interni-text {
    padding: 2rem 0;
}

/* ============= PIATTI ============= */

.piatti {
    padding: 8rem 0 10rem;
    background: linear-gradient(to bottom, var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.piatti-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 2rem;
}

.piatti-stage {
    position: relative;
}

.piatti-swiper {
    padding: 2rem 0 4rem !important;
    overflow: visible;
}

.piatti-swiper .swiper-slide {
    width: 380px;
    transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
    opacity: 0.4;
}

.piatti-swiper .swiper-slide-active,
.piatti-swiper .swiper-slide-next,
.piatti-swiper .swiper-slide-prev {
    opacity: 1;
}

.dish {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dish-image {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--bg-soft);
    position: relative;
}

.dish-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s var(--ease);
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}

.swiper-slide-active .dish-image img {
    transform: scale(1.02);
}

.dish:hover .dish-image img {
    transform: scale(1.06);
}

.dish:hover .dish-image::after {
    opacity: 1;
}

.dish figcaption {
    padding: 0 0.5rem;
}

.dish h4 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--fg);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.dish p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--fg-muted);
}

.piatti-swiper .swiper-pagination {
    position: relative;
    bottom: auto !important;
    margin-top: 2rem;
}

.piatti-swiper .swiper-pagination-bullet {
    width: 24px;
    height: 1px;
    border-radius: 0;
    background: var(--fg-dim);
    opacity: 1;
    transition: all 0.4s var(--ease);
    margin: 0 4px !important;
}

.piatti-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 48px;
}

.piatti-controls {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1rem;
}

.piatti-controls button {
    color: var(--fg-muted);
    transition: color 0.3s var(--ease), transform 0.4s var(--ease);
    padding: 1rem;
}

.piatti-controls button:hover {
    color: var(--accent);
}

.piatti-controls .piatti-prev:hover { transform: translateX(-6px); }
.piatti-controls .piatti-next:hover { transform: translateX(6px); }

.piatti-controls button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.menu-links {
    margin-top: 6rem;
    text-align: center;
    padding: 0 2rem;
}

.menu-links .eyebrow {
    margin-bottom: 2.5rem;
}

.menu-links-buttons {
    display: inline-flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.5s var(--ease);
}

.menu-links-buttons:hover {
    border-color: var(--accent-soft);
}

.menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.4rem 2.6rem;
    color: var(--fg);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: background 0.5s var(--ease), color 0.4s var(--ease);
    position: relative;
    min-width: 240px;
}

.menu-link + .menu-link {
    border-left: 1px solid var(--line);
}

.menu-link:hover {
    background: var(--accent);
    color: var(--bg);
}

.menu-link-arrow {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform 0.5s var(--ease), color 0.4s var(--ease);
}

.menu-link:hover .menu-link-arrow {
    color: var(--bg);
    transform: translate(4px, -4px) rotate(-45deg);
}

@media (max-width: 640px) {
    .menu-links-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
    }
    .menu-link {
        min-width: 0;
        padding: 1.2rem 2rem;
    }
    .menu-link + .menu-link {
        border-left: none;
        border-top: 1px solid var(--line);
    }
}

.burger-exploded {
    position: relative;
    margin: 6rem auto 0;
    max-width: 420px;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.burger-exploded img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: burgerFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6))
            drop-shadow(0 8px 20px rgba(200, 160, 80, 0.08));
}

.burger-exploded-glow {
    position: absolute;
    inset: 5% 5% 5% 5%;
    z-index: 1;
    background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 65%);
    filter: blur(40px);
    opacity: 0.55;
    pointer-events: none;
    animation: burgerPulse 6s ease-in-out infinite;
}

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

@keyframes burgerPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@media (max-width: 640px) {
    .burger-exploded {
        max-width: 95vw;
        margin-top: 4rem;
        padding: 0 0.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .burger-exploded img,
    .burger-exploded-glow {
        animation: none;
    }
}

/* ============= COLLAB ============= */

.collab {
    padding: 4rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.collab-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.collab .eyebrow {
    margin-bottom: 2.5rem;
}

.collab-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(3rem, 8vw, 7rem);
    flex-wrap: wrap;
}

.collab-logos img {
    max-height: 80px;
    width: auto;
    opacity: 0.75;
    transition: opacity 0.4s var(--ease);
}

.collab-logos img[alt="Black Sheep"] {
    max-height: 112px;
}

.collab-logos img:hover {
    opacity: 1;
}

@media (max-width: 640px) {
    .collab {
        padding: 3rem 0;
    }

    .collab-logos {
        gap: 2.5rem;
    }

    .collab-logos img {
        max-height: 60px;
    }

    .collab-logos img[alt="Black Sheep"] {
        max-height: 84px;
    }
}

/* ============= GALLERY ============= */

.gallery {
    padding: 8rem 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--bg-soft);
    position: relative;
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s var(--ease);
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item video,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.6s var(--ease);
}

.gallery-item:hover video,
.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .gallery {
        padding: 5rem 0;
    }
    .gallery-header {
        margin-bottom: 3rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1.5rem;
    }
}

/* ============= FOOTER ============= */

.footer {
    padding: 6rem 0 3rem;
    background: var(--bg);
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
}

.footer-col .eyebrow {
    margin-bottom: 1rem;
    color: var(--fg-dim);
}

.footer-col .body {
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.78rem;
    color: var(--fg-dim);
    letter-spacing: 0.1em;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--fg-muted);
    transition: color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.footer-socials a:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }
}

.credits-link {
    padding: 0;
    font-size: inherit;
    letter-spacing: inherit;
    color: var(--fg-muted);
    text-transform: inherit;
    transition: color 0.3s var(--ease);
}

.credits-link:hover,
.credits-link:focus-visible {
    color: var(--accent);
    outline: none;
}

.credits-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.credits-modal[hidden] {
    display: none;
}

.credits-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: credits-fade 0.4s var(--ease-out);
}

.credits-dialog {
    position: relative;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 4px;
    max-width: 560px;
    width: 100%;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    padding: 3rem 3rem 2.5rem;
    color: var(--fg);
    animation: credits-rise 0.5s var(--ease-out);
}

.credits-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fg-muted);
    border-radius: 50%;
    transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.credits-close:hover,
.credits-close:focus-visible {
    color: var(--accent);
    background: rgba(245, 241, 234, 0.05);
    outline: none;
}

.credits-heading {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    color: var(--fg);
}

.credits-body {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--fg-muted);
}

.credits-body section + section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.credits-body p + p {
    margin-top: 0.75rem;
}

.credits-body a {
    color: var(--fg);
    border-bottom: 1px solid var(--line);
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.credits-body a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.credits-name {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--fg);
    letter-spacing: 0.02em;
}

.credits-subheading {
    color: var(--fg-dim);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.credits-fineprint {
    font-size: 0.78rem;
    color: var(--fg-dim);
}

body.credits-open {
    overflow: hidden;
}

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

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

@media (max-width: 640px) {
    .credits-dialog {
        padding: 2.5rem 1.75rem 2rem;
    }
    .credits-heading {
        font-size: 1.5rem;
    }
}

/* ============= REVEAL ANIMATIONS ============= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

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

@media (max-width: 900px) {
    .nav {
        padding: 1.25rem 1.5rem;
    }
    .nav.scrolled {
        padding: 1rem 1.5rem;
    }
    body.menu-open {
        overflow: hidden;
    }
    body.menu-open .nav,
    body.menu-open .nav.scrolled {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
        transition: none;
    }
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s var(--ease);
        z-index: 99;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 0.3em;
    }
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 102;
    }
    .nav-end {
        gap: 1.25rem;
    }
    .nav-lang {
        position: relative;
        z-index: 102;
        gap: 0.7rem;
        font-size: 0.72rem;
    }
    .nav-menu-logo {
        display: block;
        position: absolute;
        bottom: 3.5rem;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.6s 0.2s var(--ease);
    }
    .nav-links.open .nav-menu-logo {
        opacity: 0.5;
    }
    .nav-menu-logo img {
        width: 56px;
        height: 56px;
        display: block;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    section {
        padding: 5rem 0;
    }
    .intro {
        padding: 6rem 0;
    }
    .interni {
        padding: 4rem 0;
    }
    .interni-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 5rem;
        direction: ltr;
    }
    .interni-row.reverse {
        direction: ltr;
    }

    .piatti-swiper .swiper-slide {
        width: 280px;
    }

    .piatti {
        padding: 5rem 0 7rem;
    }
    .piatti-header {
        margin-bottom: 3rem;
    }

    .piatti-controls {
        position: absolute;
        top: calc(2rem + 175px);
        transform: translateY(-50%);
        left: 0;
        right: 0;
        margin: 0;
        padding: 0 0.75rem;
        gap: 0;
        justify-content: space-between;
        pointer-events: none;
        z-index: 5;
    }
    .piatti-controls button {
        pointer-events: auto;
        width: 44px;
        height: 44px;
        padding: 0;
        background: rgba(10, 10, 10, 0.55);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--fg);
    }
    .piatti-controls button svg {
        width: 22px;
        height: 8px;
    }
    .piatti-controls .piatti-prev:hover,
    .piatti-controls .piatti-next:hover {
        transform: translateY(-50%);
        color: var(--accent);
    }

    .footer {
        padding: 4rem 0 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-logo {
        width: 60px;
        height: 60px;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 520px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        margin: 0 auto;
    }
    .piatti-swiper .swiper-slide {
        width: 85vw;
    }
    .piatti-controls {
        top: calc(2rem + 53vw);
    }
}
