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

:root {
    --gold: #c8a45e;
    --gold-light: #e2c97e;
    --gold-dark: #a8843e;
    --dark: #1a1a1a;
    --dark-soft: #2a2a2a;
    --dark-card: #222;
    --cream: #faf6ef;
    --cream-dark: #f0e8d8;
    --text: #3a3a3a;
    --text-light: #888;
    --white: #fff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

.section-tag {
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 50px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) translateX(var(--drift, 20px)) scale(var(--end-scale, 0.5));
        opacity: 0;
    }
}

.animate-fade-up {
    animation: fadeUp 0.9s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 700;
    transition: color var(--transition);
}

.nav-logo:hover {
    color: var(--gold);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: all var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 164, 94, 0.4);
}

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

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

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

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

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.12);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title br+br {
    display: none;
}

.hero-motto {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 25px;
    color: var(--gold-light);
    max-width: 550px;
    margin: 0 auto 16px;
    letter-spacing: 0.5px;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    transition: border-color var(--transition);
}

.scroll-indicator:hover {
    border-color: var(--gold);
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

/* ===== HERO BUBBLES ===== */
.hero-bubbles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.hero-bubble {
    position: absolute;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(200, 164, 94, 0.35), rgba(200, 164, 94, 0.08));
    border: 1px solid rgba(200, 164, 94, 0.15);
    animation: bubbleRise var(--duration, 8s) var(--delay, 0s) infinite ease-in;
    will-change: transform, opacity;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 164, 94, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== CHI SIAMO ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.image-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.image-accent {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    opacity: 0.3;
    z-index: 0;
    transition: all var(--transition);
}

.about-image:hover .image-accent {
    top: -10px;
    right: -10px;
    opacity: 0.5;
}

.about-text .section-title {
    margin-bottom: 24px;
}

.about-desc {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-desc strong {
    color: var(--text);
}

.about-signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-dark);
    font-size: 1.05rem;
    margin-top: 8px;
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
    display: flex;
    gap: 15px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold-dark);
    font-weight: 700;
    line-height: 1;
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold-dark);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ===== SPECIALITA TIMELINE ===== */
.specialita {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 50%, var(--cream) 100%);
}

.specialita .section-tag {
    color: var(--gold-dark);
}

.specialita .section-title {
    color: var(--dark);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border: 3px solid var(--cream);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.timeline-reverse {
    direction: rtl;
}

.timeline-reverse>* {
    direction: ltr;
}

.timeline-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.timeline-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.92);
}

.timeline-item:hover .timeline-img img {
    transform: scale(1.05);
    filter: brightness(1);
}

.timeline-content {
    padding: 10px 0;
}

.timeline-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}

.timeline-content h3 {
    color: var(--dark);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== MENU ===== */
.menu-section {
    background: var(--cream);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 28px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    background: transparent;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.5px;
}

.menu-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.menu-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.menu-panel {
    display: none;
    animation: fadeUp 0.5s ease;
}

.menu-panel.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.menu-item {
    padding: 28px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
    border-radius: var(--radius-sm);
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: var(--gold);
    border-radius: 0 3px 3px 0;
    transition: width 0.3s ease;
}

.menu-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.menu-item:hover::before {
    width: 4px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    gap: 16px;
}

.menu-item h3 {
    font-size: 1.15rem;
    color: var(--dark);
}

.menu-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold-dark);
    font-weight: 700;
    white-space: nowrap;
}

.menu-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== MENU CARDS (with images) ===== */
.menu-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.menu-card-img {
    position: relative;
    overflow: hidden;
    height: 180px;
}

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

.menu-card:hover .menu-card-img img {
    transform: scale(1.08);
}

.menu-card-body {
    padding: 20px;
}

.menu-card-body .menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    gap: 10px;
}

.menu-card-body h3 {
    font-size: 1.05rem;
    color: var(--dark);
}

.menu-card-body .menu-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-dark);
    font-weight: 700;
    white-space: nowrap;
}

.menu-card-body p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== SHOWCASE (Reviews + Gallery) ===== */
.showcase-section {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.showcase-animated-bg {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 164, 94, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 164, 94, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(139, 90, 43, 0.1) 0%, transparent 50%);
    animation: showcaseDrift 20s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes showcaseDrift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-3%, 2%) rotate(1deg);
    }

    66% {
        transform: translate(2%, -2%) rotate(-1deg);
    }

    100% {
        transform: translate(-1%, 3%) rotate(0.5deg);
    }
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.92) 0%, rgba(26, 26, 46, 0.85) 50%, rgba(26, 26, 46, 0.92) 100%);
    z-index: 1;
}

.showcase-container {
    position: relative;
    z-index: 2;
}

.showcase-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 80px auto;
}

.showcase-section .section-tag {
    color: var(--gold);
}

.showcase-section .section-title {
    color: var(--white);
}

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

.review-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.1;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 164, 94, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.review-stars {
    color: #f5b301;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    color: black;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
}

.review-author span {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* ===== GALLERIA ===== */

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.gallery-large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-large {
    height: 320px;
}

.gallery-item:not(.gallery-large) {
    height: 280px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PRENOTA (simplified banner) ===== */
.prenota-section {
    background: var(--cream-dark);
}

.prenota-banner {
    background: linear-gradient(135deg, #2c1810, #1a1a2e);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.prenota-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a45e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.prenota-banner-content {
    position: relative;
    padding: 80px 60px;
    text-align: center;
}

.prenota-banner .section-tag {
    color: var(--gold);
}

.prenota-banner .section-title {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.prenota-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto 40px;
}

.prenota-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.prenota-cta-card {
    display: flex;
    padding: 62px 52px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.prenota-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 164, 94, 0.15), rgba(200, 164, 94, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.prenota-cta-card:hover {
    background: rgba(200, 164, 94, 0.18);
    border-color: var(--gold);
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 16px 40px rgba(200, 164, 94, 0.25), 0 0 20px rgba(200, 164, 94, 0.1);
}

.prenota-cta-card:hover::after {
    opacity: 1;
}

.prenota-cta-card:hover .detail-icon {
    transform: scale(1.25);
    filter: drop-shadow(0 0 8px rgba(200, 164, 94, 0.5));
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.prenota-cta-card strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 4px;
    transition: color 0.4s ease;
}

.prenota-cta-card:hover strong {
    color: var(--gold-light);
}

.prenota-cta-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== CONTATTI UNIFIED ===== */
.contatti-unified {
    background: var(--cream);
}

.contatti-bottom {
    margin-top: 60px;
}

.contatti-row {
    display: block;
    margin-top: 40px;
}

.contatti-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contatti-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 26px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.contatti-info-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.contatti-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark), #2c1810);
    border-radius: 50%;
    transition: transform var(--transition);
}

.contatti-info-item:hover .contatti-icon {
    transform: scale(1.1);
}

.contatti-info-item strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contatti-info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.contatti-map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 500px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
}

.contatti-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.social-link {
    color: var(--gold-dark);
    font-weight: 700;
    transition: color var(--transition);
}

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

.map-placeholder {
    height: 350px;
    background: linear-gradient(135deg, #e8dcc8, #d4c4a8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.map-pin {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.map-placeholder p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
}

.map-placeholder span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== MENU PAGE HERO ===== */
.menu-page-hero {
    position: relative;
    height: 40vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.menu-page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}

.menu-page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c1810 40%, #1a1a2e 100%);
    color: rgba(255, 255, 255, 0.6);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-col h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== LANG SWITCHER ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: all var(--transition);
}

.lang-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.lang-btn.active {
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(200, 164, 94, 0.3);
}

.flag-icon {
    width: 26px;
    height: 18px;
    display: block;
    border-radius: 2px;
}

/* ===== TERRITORIO ===== */
.territorio-section {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.territorio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a45e' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.territorio-intro {
    max-width: 750px;
    margin: -20px auto 60px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.territorio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.territorio-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.territorio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.territorio-card-visual {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.territorio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.9);
}

.territorio-card:hover .territorio-img {
    transform: scale(1.08);
    filter: brightness(1);
}

.territorio-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--dark);
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.territorio-card-body {
    padding: 28px 30px 32px;
    flex: 1;
}

.territorio-card-body h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.territorio-card-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-dark);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.territorio-card-body>p:last-child {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.territorio-quote {
    margin-top: 60px;
    text-align: center;
    position: relative;
}

.territorio-quote::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 40px;
}

.territorio-quote blockquote {
    max-width: 700px;
    margin: 0 auto;
}

.territorio-quote blockquote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.territorio-quote cite {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 50px;
    }

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 40px;
        gap: 24px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

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

    .nav-menu a {
        font-size: 1.1rem;
    }

    .lang-switcher {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .timeline::before {
        display: none;
    }

    .timeline-item,
    .timeline-reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        direction: ltr;
    }

    .timeline-item::after {
        display: none;
    }

    .timeline-img img {
        height: 250px;
    }

    .territorio-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid-cards {
        grid-template-columns: 1fr;
    }

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

    .prenota-cta-grid {
        grid-template-columns: 1fr;
    }

    .prenota-banner-content {
        padding: 40px 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-large {
        grid-column: span 2;
    }

    .contatti-row {
        display: block;
    }

    .contatti-map {
        min-height: 350px;
    }

    .contatti-map iframe {
        min-height: 350px;
    }

    .about-stats {
        gap: 24px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-large {
        grid-column: span 1;
    }

    .menu-tabs {
        gap: 6px;
    }

    .menu-tab {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .contatti-info-item {
        padding: 18px 20px;
    }
}