input{
	outline: none !important;
}
textarea{
	resize: none;
}
section{
	overflow: hidden;
}
.swiper-wrapper{
	height: auto;
}

:root {
    --color-primary: #0a0a0a;
    --color-secondary: #1a1a1a;
    --color-accent: #c9a962;
    --color-accent-hover: #d4b978;
    --color-gold: #d4af37;
    --color-bronze: #cd7f32;
    --color-text: #f5f5f5;
    --color-text-muted: #888888;
    --color-border: rgba(201, 169, 98, 0.2);
    --color-overlay: rgba(10, 10, 10, 0.85);
    
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
    --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(201, 169, 98, 0.3);
}

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

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

body {
    font-family: var(--font-secondary);
    background-color: var(--color-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

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

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

ul, ol {
    list-style: none;
}

/* Typography */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-text);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: 1rem auto 0;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 3rem;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    position: relative;
    display: inline-block;
    text-align: center;
    line-height: 0;
}

.preloader-logo {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--color-accent);
    letter-spacing: 8px;
    animation: pulse 2s infinite;
}

.preloader-line {
    position: absolute;
    left: 2.4%;
    top: 75.35%;
    width: 96.8%;
    height: 2px;
    margin: 0;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: center center;
    opacity: 1;
    animation: loadingLineOverlay 1.35s cubic-bezier(.22,.8,.22,1) forwards;
    z-index: 2;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes loadingLine {
    0% { width: 0; opacity: 0; }
    50% { width: 100px; opacity: 1; }
    100% { width: 0; opacity: 0; }
}

@keyframes loadingLineOverlay {
    0% { transform: scaleX(0); opacity: .15; }
    18% { opacity: 1; }
    100% { transform: scaleX(1); opacity: 1; }
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor.hover {
    transform: scale(1.5);
    background: rgba(201, 169, 98, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

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

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-text);
    letter-spacing: 4px;
    font-weight: 600;
}

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

.nav-link {
    color: var(--color-text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    position: relative;
    transition: var(--transition-fast);
}
.nav-link.active{
	color: var(--color-accent) !important ;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 40px);
}

.nav-link:hover {
    color: var(--color-accent);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    background: transparent;
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--color-accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler span:nth-child(1) { top: 0; }
.navbar-toggler span:nth-child(2) { top: 9px; }
.navbar-toggler span:nth-child(3) { top: 18px; }

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

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

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.8)), 
                url('https://goldenbeach.dp.ua/storage/tmp_media/catalog_categories/18/image/jumbotron-w1920-h1080-q100-adapt_p1640187.png') center/cover no-repeat;
    transform: scale(1.1);
    transition: transform 10s ease;
}

.hero.loaded .hero-bg {
    transform: scale(1);
}

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

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--color-accent);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-title span {
    display: block;
    font-size: 0.5em;
    font-family: var(--font-secondary);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 10px;
    color: var(--color-text-muted);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.1s;
}

.hero-buttons .btn {
    margin: 0 10px 10px;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

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

/* Section Spacing */
section {
    padding: 120px 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--color-secondary);
}

/* About Section */
.about-section {
    overflow: hidden;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--color-accent);
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.about-content {
    padding: 0 40px;
}

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.signature {
    margin-top: 30px;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-accent);
    font-style: italic;
}

/* Menu Preview Section */
.menu-preview {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category-title {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px dotted var(--color-border);
    transition: var(--transition-fast);
}

.menu-item:hover {
    padding-left: 10px;
    border-bottom-color: var(--color-accent);
}

.menu-item-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--color-text);
}

.menu-item-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.menu-item-price {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--color-accent);
    white-space: nowrap;
    margin-left: 20px;
}

.menu-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 10px;
    font-family: var(--font-secondary);
}

/* Specialties Section */
.specialty-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

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

.specialty-card:hover img {
    transform: scale(1.1);
}

.specialty-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition-smooth);
}

.specialty-card:hover .specialty-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.specialty-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.specialty-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.specialty-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.specialty-card:hover .specialty-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Reservations Section */
.reservation-section {
    background: var(--color-secondary);
}

.reservation-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 50px;
    border: 1px solid var(--color-border);
    position: relative;
}

.reservation-form::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--color-border);
    pointer-events: none;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    color: white;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.1);
    color: rgba(255, 255, 255, 0.5);
}
option{
	background: var(--color-primary);
}

.form-control::placeholder {
    color: white;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a962' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

/* Testimonials */
.testimonials-section {
    background: var(--color-primary);
}

.testimonial-card {
    text-align: center;
    padding: 40px;
    border: 1px solid var(--color-border);
    position: relative;
    margin: 20px 0;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-primary);
    font-size: 6rem;
    color: var(--color-accent);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--color-text);
    line-height: 1.8;
}

.testimonial-author {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--color-accent);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 169, 98, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.gallery-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Blog Preview */
.blog-card {
    background: var(--color-secondary);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--color-accent);
}

.blog-image {
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 10px 15px;
    text-align: center;
    font-family: var(--font-secondary);
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 30px;
}

.blog-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--color-accent);
}

.blog-excerpt {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 15px;
}

/* Footer */
.footer {
    background: var(--color-primary);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 30px;
}

.footer-brand {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-accent);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.footer-links{
    padding-left: 0;
}

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

.footer-links a {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--color-text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--color-accent);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* Modal / Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-secondary);
    border: 1px solid var(--color-accent);
    padding: 60px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--color-accent);
    font-size: 2rem;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.modal-text {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

/* Gallery Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* Swiper Customization */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-text-muted);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--color-accent);
    transform: scale(1.3);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-accent);
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-accent);
    transition: var(--transition-fast);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}
.nav-pills .nav-link.active{
	background: var(--color-accent);
	color: var(--color-secondary) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .cursor, .cursor-follower {
        display: none;
    }
    
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        padding: 20px;
        margin-top: 15px;
        border: 1px solid var(--color-border);
    }
    
    .about-content {
        padding: 40px 0 0;
    }
    
    .reservation-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .menu-item-price {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
    
    .reservation-form {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* Utility Classes */
.text-accent { color: var(--color-accent); }
.bg-dark { background: var(--color-primary); }
.bg-darker { background: var(--color-secondary); }
.border-accent { border-color: var(--color-accent); }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-hover);
}


/* ==========================================================
   TAVOLO UNICO — HOME V1
   ========================================================== */
:root {
    --color-accent: #c4a16b;
    --color-accent-hover: #d2b37f;
    --color-border: rgba(196, 161, 107, 0.22);
}

.hero-bg {
    background:
        linear-gradient(90deg, rgba(8,8,8,.72) 0%, rgba(8,8,8,.45) 44%, rgba(8,8,8,.36) 68%, rgba(8,8,8,.60) 100%),
        url('../images/hero-tavolo-unico.jpg') center center / cover no-repeat;
}

.navbar-brand-image {
    display: flex;
    align-items: center;
    width: 205px;
    max-width: 42vw;
    padding: 0;
}
.navbar-brand-image img { width: 100%; height: auto; }

.preloader-tu-logo {
    display: block;
    width: min(420px, 72vw);
    height: auto;
    opacity: .96;
    animation: pulse 2s infinite;
}

.hero-content { max-width: 920px; }
.hero-tu-logo {
    width: min(590px, 78vw);
    margin: 0 auto 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards .68s;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,.2));
}
.hero-claim {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 500;
    line-height: 1.04;
    max-width: 860px;
    margin: 0 auto 24px;
    text-shadow: 0 4px 24px rgba(0,0,0,.30);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards .82s;
}
.hero-text {
    color: rgba(255,255,255,.78);
    max-width: 700px;
    animation-delay: .98s;
}
.hero-subtitle { color: #eadbc2; }

.section-title.text-start::after { margin-left: 0; }

.menu-preview {
    background:
        linear-gradient(rgba(10,10,10,.91), rgba(10,10,10,.93)),
        url('../images/hero-tavolo-unico.jpg') center / cover fixed;
}

.experience-card {
    height: 100%;
    min-height: 310px;
    padding: 42px 36px;
    border: 1px solid var(--color-border);
    background: rgba(255,255,255,.025);
    transition: var(--transition-smooth);
}
.experience-card:hover { transform: translateY(-8px); border-color: var(--color-accent); background: rgba(255,255,255,.045); }
.experience-number { display:block; font-family:var(--font-primary); color:var(--color-accent); font-size:1.1rem; letter-spacing:3px; margin-bottom:55px; }
.experience-card h3 { font-size:2rem; margin-bottom:20px; }
.experience-card p { color:var(--color-text-muted); line-height:1.8; margin:0; }

.museum-section {
    display:grid;
    grid-template-columns: 1.15fr .85fr;
    padding:0;
    background:var(--color-secondary);
    min-height:720px;
}
.museum-image { min-height:720px; overflow:hidden; }
.museum-image img { width:100%; height:100%; object-fit:cover; }
.museum-copy { display:flex; flex-direction:column; justify-content:center; padding:90px clamp(45px,6vw,110px); }
.museum-copy p:not(.section-subtitle) { color:var(--color-text-muted); line-height:1.8; margin-bottom:18px; }

.gallery-item img { aspect-ratio: 1 / 1; object-fit: cover; }

.reservation-intro { color:var(--color-text-muted); line-height:1.8; }
.reservation-contact p { color:var(--color-text-muted); margin-bottom:14px; }
.reservation-contact i { color:var(--color-accent); margin-right:10px; }
.form-note { color:var(--color-text-muted); font-size:.76rem; margin:18px 0 0; text-align:center; line-height:1.5; }
.footer-tu-logo { width:260px; max-width:85%; margin-bottom:22px; }

@media (max-width: 991.98px) {
    .navbar-brand-image { width:170px; }
    .hero-bg { background-position: 58% center; }
    .museum-section { grid-template-columns:1fr; }
    .museum-image { min-height:520px; }
    .museum-copy { padding:75px 30px; }
    .experience-card { min-height:0; margin-bottom:22px; }
    .experience-number { margin-bottom:28px; }
}

@media (max-width: 575.98px) {
    .hero { min-height: 100svh; }
    .hero-bg {
        background:
            linear-gradient(rgba(8,8,8,.48), rgba(8,8,8,.72)),
            url('../images/hero-tavolo-unico.jpg') 58% center / cover no-repeat;
    }
    .hero-content { padding: 90px 20px 40px; }
    .hero-tu-logo { width:min(420px,88vw); margin-bottom:24px; }
    .hero-claim { font-size:clamp(2.25rem,11vw,3.3rem); }
    .hero-text { font-size:1rem; }
    .hero-buttons .btn { display:block; width:100%; max-width:300px; margin:10px auto; }
    .scroll-indicator { bottom:18px; }
    .about-content { padding:50px 4px 0; }
    .about-image img { height:460px; }
    .museum-image { min-height:430px; }
    .reservation-form { padding:36px 22px; }
    section { padding:90px 0; }
}


/* ==========================================================
   TAVOLO UNICO — HEADER V2
   Home · Il Concept · Le Sale · Bistrò · Menu · Eventi · Vini · Shop · Contatti
   ========================================================== */
.navbar .nav-container {
    width: min(96%, 1580px);
    max-width: 1580px;
}

.navbar-brand-image {
    width: 178px;
    flex: 0 0 auto;
    margin-right: 18px;
}

.navbar .nav-link {
    font-size: .72rem;
    letter-spacing: 1.15px;
    padding: 10px 9px;
    white-space: nowrap;
}

.navbar .nav-link::after {
    left: 9px;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: calc(100% - 18px);
}

.navbar .nav-book .btn {
    padding: 12px 19px;
    font-size: .72rem;
    letter-spacing: 1.35px;
    white-space: nowrap;
}

.page-anchor {
    display: block;
    position: relative;
    top: -88px;
    visibility: hidden;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .navbar .nav-container { width: 98%; }
    .navbar-brand-image { width: 150px; margin-right: 8px; }
    .navbar .nav-link { font-size: .66rem; letter-spacing: .8px; padding-left: 7px; padding-right: 7px; }
    .navbar .nav-link::after { left: 7px; }
    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after { width: calc(100% - 14px); }
    .navbar .nav-book .btn { padding: 11px 14px; font-size: .66rem; letter-spacing: .8px; }
}

@media (max-width: 1199.98px) {
    .navbar-brand-image { width: 170px; }
    .navbar-collapse {
        margin-top: 18px;
        padding: 18px 22px 24px;
        background: rgba(10,10,10,.97);
        border: 1px solid rgba(196,161,107,.16);
        max-height: calc(100vh - 105px);
        overflow-y: auto;
    }
    .navbar .navbar-nav { align-items: stretch !important; }
    .navbar .nav-link { font-size: .78rem; letter-spacing: 1.45px; padding: 11px 4px; }
    .navbar .nav-link::after { left: 4px; bottom: 5px; }
    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after { width: 44px; }
    .navbar .nav-book { margin-top: 12px; }
    .navbar .nav-book .btn { width: 100%; padding: 14px 20px; }
}


/* ==========================================================
   TAVOLO UNICO — THEFORK BOOKING V3
   ========================================================== */
.reservation-hero-bg {
    background:
        linear-gradient(rgba(8, 8, 8, .58), rgba(8, 8, 8, .78)),
        url('../images/hero-tavolo-unico.jpg') 58% center / cover no-repeat !important;
}

.reservation-hero-text {
    width: min(680px, 88vw);
    margin: 22px auto 0;
    color: rgba(255,255,255,.82);
    font-size: 1rem;
    line-height: 1.8;
}

.thefork-section {
    position: relative;
    overflow: hidden;
}

.thefork-heading {
    max-width: 780px;
    margin: 0 auto 45px;
}

.thefork-intro {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin: 18px auto 0;
    max-width: 720px;
}

.thefork-frame-shell {
    position: relative;
    width: 100%;
    padding: 18px;
    background: rgba(255,255,255,.025);
    border: 1px solid var(--color-border);
}

.thefork-frame-shell::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201,169,98,.22);
    pointer-events: none;
    z-index: 1;
}

.thefork-widget {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    min-height: 820px;
    border: 0;
    background: #fff;
    overflow: auto;
}

.thefork-note {
    color: var(--color-text-muted);
    text-align: center;
    font-size: .78rem;
    line-height: 1.6;
    margin: 20px 0 0;
    opacity: .78;
}

.booking-after-section {
    background: var(--color-primary);
}

.booking-after-copy {
    color: var(--color-text-muted);
    line-height: 1.85;
    margin: 22px 0 32px;
}

.booking-after-image {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .reservation-hero { min-height: 52svh !important; }
    .thefork-frame-shell { padding: 8px; }
    .thefork-frame-shell::before { display: none; }
    .thefork-widget { min-height: 900px; }
    .booking-after-image { height: 380px; }
}

/* ==========================================================
   TAVOLO UNICO — HOME V4 / THEFORK NELLA PRIMA SCHERMATA
   ========================================================== */
.hero-with-booking {
    min-height: 100svh;
    height: 100svh;
    justify-content: flex-start;
    align-items: center;
    padding: 92px 0 18px;
}

.hero-with-booking .hero-bg {
    background:
        linear-gradient(90deg, rgba(8,8,8,.78) 0%, rgba(8,8,8,.62) 38%, rgba(8,8,8,.30) 58%, rgba(8,8,8,.46) 100%),
        url('../images/hero-tavolo-unico.jpg') center center / cover no-repeat;
}

.hero-content-left {
    width: 46vw;
    max-width: 720px;
    margin-left: clamp(28px, 4vw, 76px);
    margin-right: 0;
    padding: 0;
    text-align: left;
    z-index: 3;
}

.hero-content-left .hero-tu-logo {
    width: min(510px, 39vw);
    margin: 0 0 28px;
}

.hero-content-left .hero-claim {
    max-width: 660px;
    margin: 0 0 22px;
    font-size: clamp(2.4rem, 4.15vw, 4.4rem);
}

.hero-content-left .hero-text {
    max-width: 590px;
    margin: 0 0 32px;
}

.hero-content-left .hero-buttons .btn {
    margin-left: 0;
    margin-right: 14px;
}

.hero-booking-panel {
    position: absolute;
    z-index: 5;
    right: clamp(14px, 1.8vw, 34px);
    bottom: clamp(14px, 1.8vh, 24px);
    width: min(49vw, 860px);
    height: calc(100svh - 118px);
    min-height: 690px;
    max-height: 930px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(196,161,107,.42);
    box-shadow: 0 24px 80px rgba(0,0,0,.42);
}

.hero-thefork-widget {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 100%;
    background: #fff;
}

.hero-scroll-left {
    left: clamp(28px, 4vw, 76px);
    right: auto;
    transform: none;
}

/* con il booking nella hero, il vecchio modulo fittizio in fondo alla home non serve */
#reservation.reservation-section {
    display: none;
}

@media (max-width: 1399.98px) {
    .hero-content-left {
        width: 43vw;
        margin-left: 28px;
    }
    .hero-content-left .hero-tu-logo { width: min(430px, 36vw); }
    .hero-content-left .hero-claim { font-size: clamp(2.25rem, 3.7vw, 3.7rem); }
    .hero-booking-panel {
        width: 52vw;
        right: 16px;
        height: calc(100svh - 108px);
        bottom: 14px;
    }
    .hero-scroll-left { left: 28px; }
}

@media (max-width: 1199.98px) {
    .hero-with-booking {
        height: auto;
        min-height: 100svh;
        display: block;
        padding: 120px 22px 28px;
        overflow: visible;
    }
    .hero-content-left {
        width: 100%;
        max-width: 720px;
        margin: 0 0 34px;
        text-align: left;
    }
    .hero-content-left .hero-tu-logo {
        width: min(470px, 70vw);
    }
    .hero-content-left .hero-claim {
        font-size: clamp(2.35rem, 7vw, 4.2rem);
    }
    .hero-booking-panel {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: none;
        height: 82svh;
        min-height: 800px;
        max-height: none;
        margin: 0;
    }
    .hero-scroll-left { display: none; }
}

@media (max-width: 575.98px) {
    .hero-with-booking {
        padding: 104px 10px 10px;
    }
    .hero-with-booking .hero-bg {
        background:
            linear-gradient(rgba(8,8,8,.50), rgba(8,8,8,.76)),
            url('../images/hero-tavolo-unico.jpg') 58% center / cover no-repeat;
    }
    .hero-content-left {
        padding: 0 12px;
        margin-bottom: 28px;
    }
    .hero-content-left .hero-tu-logo {
        width: min(400px, 88vw);
        margin-bottom: 20px;
    }
    .hero-content-left .hero-claim {
        font-size: clamp(2.15rem, 10.5vw, 3.2rem);
    }
    .hero-content-left .hero-buttons .btn {
        width: 100%;
        max-width: none;
        margin: 8px 0;
    }
    .hero-booking-panel {
        height: 86svh;
        min-height: 820px;
        border-left: 0;
        border-right: 0;
        box-shadow: 0 18px 50px rgba(0,0,0,.35);
    }
}

/* ==========================================================
   TAVOLO UNICO — THEFORK HERO V5
   Keep the official widget at >= 800px high and let the hero
   adapt around it. The widget sits large at bottom-right.
   ========================================================== */
@media (min-width: 1200px) {
    .hero-with-booking {
        height: auto;
        min-height: max(930px, 100svh);
        padding: 96px 0 0;
        align-items: center;
        overflow: hidden;
    }

    .hero-content-left {
        width: 36vw;
        max-width: 650px;
        margin-left: clamp(28px, 3.2vw, 62px);
        padding-right: 18px;
    }

    .hero-content-left .hero-tu-logo {
        width: min(500px, 33vw);
    }

    .hero-content-left .hero-claim {
        font-size: clamp(2.2rem, 3.55vw, 4rem);
    }

    .hero-booking-panel {
        position: absolute;
        right: 0;
        bottom: 0;
        width: min(58vw, 1100px);
        height: max(800px, calc(100svh - 96px));
        min-height: 800px;
        max-height: none;
        margin: 0;
        overflow: hidden;
        background: #fff;
        border: 0;
        border-left: 1px solid rgba(196,161,107,.42);
        box-shadow: -24px 0 70px rgba(0,0,0,.34);
    }

    .hero-thefork-widget {
        display: block;
        width: 100% !important;
        height: 100% !important;
        min-height: 800px !important;
        border: 0 !important;
        background: #fff;
    }

    .hero-scroll-left { display: none; }
}

@media (min-width: 1200px) and (max-width: 1450px) {
    .hero-content-left {
        width: 35vw;
        margin-left: 24px;
    }
    .hero-booking-panel {
        width: 60vw;
    }
}

@media (max-width: 1199.98px) {
    .hero-with-booking {
        height: auto;
        min-height: 100svh;
        padding: 118px 16px 24px;
        overflow: visible;
    }

    .hero-booking-panel {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: max(800px, 82svh);
        min-height: 800px;
        max-height: none;
        margin: 28px 0 0;
        overflow: hidden;
    }

    .hero-thefork-widget {
        width: 100% !important;
        height: 100% !important;
        min-height: 800px !important;
    }
}

@media (max-width: 575.98px) {
    .hero-with-booking {
        padding: 104px 0 0;
    }
    .hero-content-left {
        padding: 0 18px;
    }
    .hero-booking-panel {
        width: 100%;
        margin-top: 24px;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
        min-height: 820px;
        height: 820px;
    }
    .hero-thefork-widget {
        min-height: 820px !important;
    }
}


/* ==========================================================
   TAVOLO UNICO — THEFORK HERO V6
   TheFork iframe is intentionally NOT styled here.
   Only its outer wrapper is positioned/sized.
   ========================================================== */
.hero-booking-panel { display: none !important; }

.hero-booking-panel-v6 {
    position: absolute;
    z-index: 20;
    right: 0;
    bottom: 0;
    width: min(60vw, 1120px);
    min-height: 800px;
    background: #fff;
    overflow: visible;
    border-left: 1px solid rgba(196,161,107,.42);
    box-shadow: -24px 0 70px rgba(0,0,0,.34);
}

@media (min-width: 1200px) {
    .hero-with-booking {
        min-height: max(920px, 100svh);
        height: auto;
        padding: 96px 0 0;
        overflow: hidden;
    }
    .hero-content-left {
        width: 36vw;
        max-width: 650px;
        margin-left: clamp(24px, 3vw, 58px);
        padding-right: 20px;
        z-index: 10;
    }
}

@media (max-width: 1199.98px) {
    .hero-with-booking {
        height: auto;
        min-height: 100svh;
        padding: 118px 16px 0;
        overflow: visible;
    }
    .hero-booking-panel-v6 {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        min-height: 800px;
        margin-top: 28px;
        border-left: 0;
        box-shadow: 0 18px 50px rgba(0,0,0,.30);
    }
}

@media (max-width: 575.98px) {
    .hero-with-booking { padding: 104px 0 0; }
    .hero-content-left { padding: 0 18px; }
    .hero-booking-panel-v6 {
        width: 100%;
        margin-top: 24px;
        min-height: 800px;
        box-shadow: none;
    }
}

/* ==========================================================
   TAVOLO UNICO — V7 / PRENOTAZIONI SU PAGINA DEDICATA
   TheFork vive solo in reservations.html. La home usa la hero standard.
   ========================================================== */
.hero:not(.hero-with-booking) .hero-content {
    max-width: 920px;
}

/* ==========================================================
   TAVOLO UNICO — HOME V9
   Hero editoriale + Concept chiaro
   ========================================================== */
.home-v9 .navbar {
    padding: 18px 0;
    background: linear-gradient(180deg, rgba(7,7,7,.70) 0%, rgba(7,7,7,.24) 58%, rgba(7,7,7,0) 100%);
}
.home-v9 .navbar.scrolled {
    background: rgba(9,9,9,.94);
    padding: 13px 0;
}

.home-v9 .hero-v9 {
    min-height: 100svh;
    height: 100svh;
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
    background: #0b0a09;
}
.home-v9 .hero-v9 .hero-bg {
    transform: scale(1.035);
    background:
        linear-gradient(90deg, rgba(8,7,6,.86) 0%, rgba(8,7,6,.67) 24%, rgba(8,7,6,.22) 52%, rgba(8,7,6,.08) 73%, rgba(8,7,6,.25) 100%),
        linear-gradient(0deg, rgba(7,7,7,.32) 0%, rgba(7,7,7,0) 38%),
        url('../images/hero-tavolo-unico.jpg') 52% center / cover no-repeat;
    transition: transform 9s cubic-bezier(.2,.65,.2,1);
}
.home-v9 .hero-v9.loaded .hero-bg { transform: scale(1); }
.home-v9 .hero-v9-shade {
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background: radial-gradient(circle at 67% 45%, transparent 0%, transparent 32%, rgba(0,0,0,.08) 62%, rgba(0,0,0,.32) 100%);
}
.home-v9 .hero-content-v9 {
    width: min(700px, 46vw);
    max-width: none !important;
    margin-left: max(54px, 6vw);
    margin-top: auto;
    margin-bottom: clamp(92px, 12vh, 138px);
    padding: 0;
    text-align: left;
    align-self: flex-end;
}
.home-v9 .hero-kicker {
    font-size: .70rem;
    text-transform: uppercase;
    letter-spacing: 3.8px;
    color: rgba(247,241,232,.76);
    margin: 0 0 23px;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp .9s ease forwards .35s;
}
.home-v9 .hero-content-v9 .hero-tu-logo {
    width: min(435px, 34vw);
    margin: 0 0 26px;
    filter: drop-shadow(0 5px 22px rgba(0,0,0,.35));
}
.home-v9 .hero-content-v9 .hero-claim {
    font-size: clamp(3.1rem, 4.65vw, 5.25rem);
    line-height: .96;
    letter-spacing: -.025em;
    max-width: 690px;
    margin: 0 0 26px;
    text-align: left;
    color: #f7f1e8;
    text-shadow: 0 5px 28px rgba(0,0,0,.32);
}
.home-v9 .hero-content-v9 .hero-text {
    max-width: 560px;
    margin: 0 0 34px;
    font-size: clamp(.98rem, 1.08vw, 1.15rem);
    line-height: 1.72;
    color: rgba(247,241,232,.80);
    text-align: left;
}
.home-v9 .hero-content-v9 .hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}
.home-v9 .hero-content-v9 .hero-buttons .btn {
    margin: 0;
    min-width: 176px;
    padding: 15px 27px;
    font-size: .71rem;
    letter-spacing: 2.1px;
}
.home-v9 .hero-content-v9 .btn-primary {
    background: #f1dfbf;
    color: #2f211a;
}
.home-v9 .hero-content-v9 .btn-primary:hover {
    background: #f7f1e8;
    color: #2f211a;
}
.home-v9 .hero-content-v9 .btn-outline {
    border-color: rgba(247,241,232,.62);
    color: #f7f1e8;
}
.home-v9 .hero-content-v9 .btn-outline:hover {
    border-color: #f7f1e8;
    background: #f7f1e8;
    color: #2f211a;
}
.home-v9 .hero-v9-scroll {
    position:absolute;
    z-index:3;
    right:max(34px,3.2vw);
    bottom:34px;
    display:flex;
    align-items:center;
    gap:14px;
    font-size:.66rem;
    letter-spacing:2.8px;
    text-transform:uppercase;
    color:rgba(247,241,232,.64);
}
.home-v9 .hero-v9-scroll i {
    display:grid;
    place-items:center;
    width:38px;
    height:38px;
    border:1px solid rgba(247,241,232,.30);
    border-radius:50%;
    transition:var(--transition-fast);
}
.home-v9 .hero-v9-scroll:hover { color:#f7f1e8; }
.home-v9 .hero-v9-scroll:hover i { transform:translateY(4px); border-color:#f7f1e8; }

.home-v9 .concept-editorial {
    display:grid;
    grid-template-columns: 56% 44%;
    min-height: 760px;
    padding:0;
    background:#f7f1e8 !important;
    color:#2f211a;
}
.home-v9 .concept-editorial-image {
    position:relative;
    min-height:760px;
    overflow:hidden;
}
.home-v9 .concept-editorial-image::after {
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent 58%, rgba(15,11,9,.24) 100%);
    pointer-events:none;
}
.home-v9 .concept-editorial-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform 1.1s ease;
}
.home-v9 .concept-editorial:hover .concept-editorial-image img { transform:scale(1.018); }
.home-v9 .concept-image-label {
    position:absolute;
    left:34px;
    bottom:27px;
    z-index:2;
    font-size:.64rem;
    text-transform:uppercase;
    letter-spacing:2.6px;
    color:rgba(255,255,255,.82);
}
.home-v9 .concept-editorial-copy {
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:90px clamp(52px,6.4vw,118px);
}
.home-v9 .concept-eyebrow {
    margin:0 0 32px;
    font-size:.68rem;
    text-transform:uppercase;
    letter-spacing:3.5px;
    color:#8d6338;
}
.home-v9 .concept-editorial-copy h2 {
    margin:0 0 30px;
    font-size:clamp(3.1rem,5vw,5.6rem);
    font-weight:500;
    line-height:.94;
    letter-spacing:-.035em;
    color:#2f211a;
}
.home-v9 .concept-editorial-copy h2::after {
    content:'';
    display:block;
    width:52px;
    height:1px;
    margin-top:34px;
    background:#b58a52;
}
.home-v9 .concept-editorial-copy p {
    max-width:590px;
    color:#49362c;
    line-height:1.8;
    font-size:.99rem;
    margin-bottom:18px;
}
.home-v9 .concept-editorial-copy .concept-lead {
    font-family:var(--font-primary);
    font-size:clamp(1.35rem,1.8vw,1.85rem);
    line-height:1.42;
    color:#2f211a;
    margin-bottom:22px;
}
.home-v9 .concept-link {
    margin-top:25px;
    width:max-content;
    display:inline-flex;
    align-items:center;
    gap:13px;
    color:#8d6338;
    font-size:.72rem;
    font-weight:600;
    letter-spacing:2.2px;
    text-transform:uppercase;
    padding-bottom:7px;
    border-bottom:1px solid rgba(141,99,56,.32);
}
.home-v9 .concept-link i { transition:transform .3s ease; }
.home-v9 .concept-link:hover { color:#2f211a; border-color:#2f211a; }
.home-v9 .concept-link:hover i { transform:translateX(5px); }

@media (max-width: 1199.98px) {
    .home-v9 .hero-content-v9 {
        width:min(610px,52vw);
        margin-left:44px;
    }
    .home-v9 .concept-editorial { grid-template-columns: 52% 48%; }
    .home-v9 .concept-editorial-copy { padding:75px 48px; }
}

@media (max-width: 991.98px) {
    .home-v9 .navbar { background:rgba(8,8,8,.82); backdrop-filter:blur(12px); }
    .home-v9 .hero-v9 { height:auto; min-height:100svh; }
    .home-v9 .hero-v9 .hero-bg {
        background:
            linear-gradient(180deg, rgba(6,6,6,.24) 0%, rgba(6,6,6,.22) 36%, rgba(6,6,6,.80) 83%, rgba(6,6,6,.94) 100%),
            url('../images/hero-tavolo-unico.jpg') 61% center / cover no-repeat;
    }
    .home-v9 .hero-content-v9 {
        width:calc(100% - 56px);
        max-width:680px !important;
        margin: auto 28px 68px;
        padding-top:130px;
        align-self:flex-end;
    }
    .home-v9 .hero-content-v9 .hero-tu-logo { width:min(410px,70vw); }
    .home-v9 .hero-content-v9 .hero-claim { font-size:clamp(3rem,8vw,4.6rem); }
    .home-v9 .hero-v9-scroll { display:none; }
    .home-v9 .concept-editorial { grid-template-columns:1fr; min-height:0; }
    .home-v9 .concept-editorial-image { min-height:62vw; max-height:680px; }
    .home-v9 .concept-editorial-copy { padding:78px 8vw 86px; }
}

@media (max-width: 575.98px) {
    .home-v9 .hero-v9 .hero-bg {
        background:
            linear-gradient(180deg, rgba(6,6,6,.20) 0%, rgba(6,6,6,.26) 36%, rgba(6,6,6,.86) 78%, rgba(6,6,6,.96) 100%),
            url('../images/hero-tavolo-unico.jpg') 60% center / cover no-repeat;
    }
    .home-v9 .hero-content-v9 {
        width:calc(100% - 36px);
        margin: auto 18px 34px;
        padding-top:120px;
    }
    .home-v9 .hero-kicker { font-size:.61rem; letter-spacing:2.4px; margin-bottom:18px; }
    .home-v9 .hero-content-v9 .hero-tu-logo { width:min(350px,83vw); margin-bottom:21px; }
    .home-v9 .hero-content-v9 .hero-claim { font-size:clamp(2.65rem,12vw,3.85rem); margin-bottom:18px; }
    .home-v9 .hero-content-v9 .hero-text { font-size:.92rem; line-height:1.65; margin-bottom:26px; }
    .home-v9 .hero-content-v9 .hero-buttons { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
    .home-v9 .hero-content-v9 .hero-buttons .btn { width:100%; min-width:0; padding:13px 10px; font-size:.61rem; letter-spacing:1.25px; }
    .home-v9 .concept-editorial-image { min-height:76vw; }
    .home-v9 .concept-image-label { left:20px; bottom:18px; font-size:.57rem; letter-spacing:1.8px; }
    .home-v9 .concept-editorial-copy { padding:62px 24px 70px; }
    .home-v9 .concept-eyebrow { margin-bottom:24px; }
    .home-v9 .concept-editorial-copy h2 { font-size:clamp(3rem,14vw,4.25rem); }
}

/* ===== V20 internal menu + room pages ===== */
.navbar-inner{background:rgba(10,10,10,.96)!important;position:sticky;top:0;z-index:1030;}
.menu-page-v20{background:#11100f;color:#f7f1e8;}
.menu-hero-v20{min-height:72vh;display:flex;align-items:flex-end;padding:150px 0 80px;background:linear-gradient(180deg,rgba(10,9,8,.25),rgba(10,9,8,.92)),url('../images/sale-apertura-v15.jpg') center 58%/cover no-repeat;}
.menu-hero-v20 h1{font-family:var(--font-primary);font-size:clamp(4.8rem,10vw,9rem);line-height:.82;margin:0 0 24px;font-weight:500;}
.menu-hero-v20 p:not(.section-subtitle){max-width:720px;font-size:1.05rem;color:rgba(247,241,232,.78);margin-bottom:30px;}
.menu-main-v20{padding:110px 0;background:#f7f1e8;color:#2f211a;scroll-margin-top:88px;}
.menu-section-heading{max-width:900px;margin-bottom:55px;}
.menu-section-heading h2,.bistro-menu-head h2{font-family:var(--font-primary);font-size:clamp(3.6rem,7vw,6.4rem);line-height:.9;margin:8px 0 20px;font-weight:500;}
.menu-section-heading>p:last-child{font-size:1rem;line-height:1.8;max-width:760px;color:rgba(47,33,26,.72);}
.tasting-card{height:100%;border:1px solid rgba(47,33,26,.2);padding:36px;background:rgba(255,255,255,.2);display:flex;flex-direction:column;}
.tasting-top{display:flex;justify-content:space-between;align-items:center;padding-bottom:15px;border-bottom:1px solid rgba(47,33,26,.16);font-family:var(--font-secondary);font-size:.78rem;text-transform:uppercase;letter-spacing:1.6px;}
.tasting-top strong{font-family:var(--font-primary);font-size:2rem;font-weight:500;letter-spacing:0;text-transform:none;}
.tasting-card h3,.bistro-tasting h3{font-family:var(--font-primary);font-size:3rem;font-weight:500;margin:26px 0 18px;}
.tasting-card ol{padding-left:20px;margin:0 0 26px;}
.tasting-card li{padding:7px 0;line-height:1.45;border-bottom:1px solid rgba(47,33,26,.08);}
.variation-box{margin-top:auto;padding:18px 0 0;border-top:1px solid rgba(47,33,26,.16);display:grid;gap:5px;font-size:.86rem;}
.variation-box b{text-transform:uppercase;letter-spacing:1px;font-size:.72rem;margin-bottom:4px;}
.pairing{margin:22px 0 0;font-size:.84rem;font-weight:600;}
.pairing-special{padding:14px 16px;background:#2f211a;color:#f7f1e8;}
.tasting-intro{color:rgba(47,33,26,.7);line-height:1.65;}
.menu-note{margin-top:34px;padding:18px 0;border-top:1px solid rgba(47,33,26,.18);border-bottom:1px solid rgba(47,33,26,.18);font-size:.84rem;text-transform:uppercase;letter-spacing:1.4px;}
.menu-cross-link{display:inline-flex;align-items:center;gap:10px;margin-top:34px;color:#2f211a;text-transform:uppercase;letter-spacing:1.5px;font-size:.76rem;font-weight:600;text-decoration:none;border-bottom:1px solid #2f211a;padding-bottom:5px;}
.alacarte-v20{padding:110px 0;background:#161310;color:#f7f1e8;scroll-margin-top:88px;}
.menu-section-heading.light>p:last-child{color:rgba(247,241,232,.68);}
.menu-list-block{padding-top:20px;border-top:1px solid rgba(247,241,232,.22);}
.menu-list-block h3{font-family:var(--font-primary);font-size:2.6rem;font-weight:500;margin-bottom:22px;color:#d7b47e;}
.menu-list-block p{margin:0;padding:12px 0;border-bottom:1px solid rgba(247,241,232,.1);color:rgba(247,241,232,.82);}
.bistro-menu-v20{padding:110px 0;background:#e9dfd2;color:#2f211a;scroll-margin-top:88px;}
.bistro-menu-head{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:end;margin-bottom:55px;}
.bistro-menu-head>p{line-height:1.75;color:rgba(47,33,26,.72);max-width:540px;}
.bistro-tasting{height:100%;padding:32px;border-top:1px solid rgba(47,33,26,.25);background:rgba(255,255,255,.16);}
.bistro-tasting p{font-size:.94rem;line-height:1.75;color:rgba(47,33,26,.72);}
.bistro-included{margin-top:35px;padding:20px;border:1px solid rgba(47,33,26,.18);font-size:.84rem;text-transform:uppercase;letter-spacing:1.2px;}
.dark-link{color:#2f211a!important;border-color:#2f211a!important;}

/* Room detail pages */
.room-detail-v20{background:#11100f;color:#f7f1e8;}
.room-detail-hero{min-height:54vh;display:flex;align-items:flex-end;padding:145px 0 65px;background:#15120f;}
.room-detail-hero h1{font-family:var(--font-primary);font-size:clamp(4.2rem,9vw,8.2rem);line-height:.86;font-weight:500;margin:0;}
.room-detail-hero .room-number{font-size:.72rem;letter-spacing:3px;text-transform:uppercase;color:#d7b47e;margin-bottom:12px;display:block;}
.room-gallery-v20{padding:30px;background:#f7f1e8;}
.room-gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));grid-template-rows:repeat(2,minmax(320px,42vh));gap:14px;}
.room-copy-tile{background:#2f211a;color:#f7f1e8;padding:clamp(28px,4vw,58px);display:flex;flex-direction:column;justify-content:center;}
.room-copy-tile .section-subtitle{margin-bottom:12px;}
.room-copy-tile h2{font-family:var(--font-primary);font-size:clamp(3rem,5vw,5rem);line-height:.9;font-weight:500;margin:0 0 24px;}
.room-copy-tile p{color:rgba(247,241,232,.72);line-height:1.8;max-width:480px;}
.room-photo-tile{overflow:hidden;min-width:0;}
.room-photo-tile img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease;}
.room-photo-tile:hover img{transform:scale(1.025);}
.room-photo-tile.crop-a img{object-position:center 48%;}
.room-photo-tile.crop-b img{object-position:25% 50%;}
.room-photo-tile.crop-c img{object-position:75% 48%;}
.room-photo-tile.crop-d img{object-position:center 30%;}
.room-photo-tile.crop-e img{object-position:center 72%;}
.room-detail-cta{padding:85px 0;text-align:center;background:#14110f;}
.room-detail-cta h2{font-family:var(--font-primary);font-size:clamp(3.2rem,6vw,5.5rem);font-weight:500;margin-bottom:25px;}
.room-row{text-decoration:none!important;}

@media(max-width:991.98px){
 .menu-hero-v20{min-height:65vh;padding-top:120px;}
 .bistro-menu-head{grid-template-columns:1fr;gap:10px;}
 .room-gallery-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto;}
 .room-copy-tile{min-height:380px;grid-column:span 2;}
 .room-photo-tile{min-height:360px;}
}
@media(max-width:575.98px){
 .menu-hero-v20{min-height:72vh;padding:120px 0 50px;}
 .menu-hero-v20 h1{font-size:4.6rem;}
 .menu-main-v20,.alacarte-v20,.bistro-menu-v20{padding:75px 0;}
 .tasting-card{padding:24px;}
 .tasting-card h3,.bistro-tasting h3{font-size:2.5rem;}
 .room-gallery-v20{padding:10px;}
 .room-gallery-grid{grid-template-columns:1fr;}
 .room-copy-tile{grid-column:auto;min-height:440px;}
 .room-photo-tile{min-height:72vw;}
 .room-detail-hero{min-height:48vh;padding:120px 0 48px;}
}


/* ===== V22 — struttura definitiva pagine interne ===== */
:root{--tu-cream:#f7f1e8;--tu-brown:#2f211a;--tu-bronze:#b58a52;--tu-black:#0d0d0d;--tu-softblack:#171412;}
.navbar-inner{position:fixed!important;top:0;left:0;width:100%;z-index:1000;background:rgba(8,8,8,.92)!important;backdrop-filter:blur(10px);}

/* Home: sezione sale senza scrolling interno */
.home-v22 .rooms-editorial{padding:0!important;background:#0d0d0d!important;color:#fff!important;min-height:100svh!important;display:grid!important;grid-template-columns:.86fr 1.14fr!important;align-items:stretch!important;}
.home-v22 .rooms-editorial-head{display:flex!important;flex-direction:column!important;justify-content:center!important;gap:22px!important;margin:0!important;padding:110px clamp(34px,6vw,105px)!important;max-width:none!important;color:#fff!important;}
.home-v22 .rooms-editorial .section-subtitle{color:#d7b47e!important;}
.home-v22 .rooms-editorial-title{color:#fff!important;font-size:clamp(3.8rem,6vw,6.8rem)!important;}
.home-v22 .rooms-editorial-intro{color:rgba(255,255,255,.68)!important;margin:0!important;max-width:620px!important;}
.home-v22 .rooms-compact-list{display:grid;grid-template-columns:1fr 1fr;gap:0 28px;margin-top:14px;}
.home-v22 .rooms-compact-list .room-row{display:grid;grid-template-columns:28px 1fr 16px;gap:10px;align-items:center;padding:13px 0;border-bottom:1px solid rgba(255,255,255,.14);color:#fff;text-decoration:none;background:none;}
.home-v22 .rooms-compact-list .room-row-number{font-size:.62rem;letter-spacing:1.3px;color:rgba(255,255,255,.44);}
.home-v22 .rooms-compact-list .room-row-name{font-family:var(--font-primary);font-size:clamp(1.35rem,1.55vw,1.8rem);line-height:1.05;}
.home-v22 .rooms-compact-list .room-row i{color:#d7b47e;font-size:.75rem;}
.home-v22 .rooms-compact-list .room-row:hover{color:#d7b47e;}
.home-v22 .rooms-editorial-grid{display:block!important;min-height:100svh!important;margin:0!important;background:#181512!important;max-width:none!important;}
.home-v22 .rooms-stage{height:100svh!important;min-height:100svh!important;}
.home-v22 .rooms-stage-caption{left:48px!important;bottom:44px!important;}
.home-v22 .rooms-stage-caption h3{font-size:clamp(2.8rem,4vw,5.2rem)!important;}
.home-v22 .rooms-list{display:none!important;}

/* Press */
.press-section{min-height:82svh;background:#f7f1e8;color:#2f211a;display:flex;align-items:center;padding:90px 6vw;}
.press-inner{width:min(1500px,100%);margin:auto;}
.press-head{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:end;margin-bottom:65px;}
.press-title{font-family:var(--font-primary);font-size:clamp(4rem,7vw,7.5rem);line-height:.88;letter-spacing:-.045em;margin:0;}
.press-copy{font-size:1.05rem;line-height:1.8;color:#6c5a50;max-width:640px;}
.press-mastheads{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid rgba(47,33,26,.24);border-bottom:1px solid rgba(47,33,26,.24);}
.press-masthead{min-height:150px;display:flex;align-items:center;justify-content:center;text-align:center;padding:24px;border-right:1px solid rgba(47,33,26,.18);font-family:var(--font-primary);font-size:clamp(1.45rem,2vw,2.3rem);font-weight:600;}
.press-masthead:last-child{border-right:0;}

/* Chiusura comune */
.site-closing-hero{position:relative;min-height:100svh;display:flex;align-items:center;justify-content:center;overflow:hidden;background:#0b0a09;}
.site-closing-bg{position:absolute;inset:0;background:url('../images/hero-tavolo-unico.jpg') center/cover no-repeat;}
.site-closing-shade{position:absolute;inset:0;background:radial-gradient(circle at center,rgba(0,0,0,.16),rgba(0,0,0,.62));}
.site-closing-content{position:relative;z-index:2;width:min(900px,90vw);text-align:center;color:#f7f1e8;padding:90px 20px;}
.site-closing-kicker{text-transform:uppercase;letter-spacing:3px;font-size:.68rem;color:rgba(247,241,232,.72);}
.site-closing-logo{width:min(420px,72vw);margin:24px auto 25px;display:block;}
.site-closing-content h2{font-family:var(--font-primary);font-size:clamp(3.2rem,5.5vw,6.3rem);line-height:.92;margin:0 0 24px;}
.site-closing-content>p:not(.site-closing-kicker){max-width:660px;margin:0 auto 30px;color:rgba(247,241,232,.8);line-height:1.7;}
.site-closing-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;}
.legal-footer{background:#090909;color:rgba(247,241,232,.5);padding:22px 0;font-size:.68rem;letter-spacing:.04em;border-top:1px solid rgba(247,241,232,.08);}
.legal-footer-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:18px;align-items:center;}
.legal-footer-grid>div:nth-child(2){text-align:center}.legal-footer-grid>div:nth-child(3){text-align:right}
.legal-footer-contacts{grid-column:1/-1;display:flex;justify-content:center;gap:10px 28px;flex-wrap:wrap;padding-top:14px;margin-top:4px;border-top:1px solid rgba(247,241,232,.08);}
.legal-footer-contacts a{color:rgba(247,241,232,.62);text-decoration:none;}

/* Hero interno a piena pagina */
.inner-full-hero{position:relative;min-height:100svh;display:flex;align-items:flex-end;overflow:hidden;background:#111;}
.inner-full-hero img.inner-full-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.inner-full-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.18),rgba(0,0,0,.78));}
.inner-full-copy{position:relative;z-index:2;color:#fff;padding:0 clamp(26px,7vw,120px) clamp(55px,8vh,100px);max-width:1100px;}
.inner-full-copy .eyebrow{text-transform:uppercase;letter-spacing:3px;font-size:.68rem;color:#d7b47e;margin-bottom:14px;}
.inner-full-copy h1{font-family:var(--font-primary);font-size:clamp(4.2rem,9vw,9rem);line-height:.82;letter-spacing:-.045em;margin:0;}
.inner-full-copy p{max-width:680px;margin:22px 0 0;color:rgba(255,255,255,.78);font-size:1rem;line-height:1.72;}

/* Eventi interna */
.event-page{background:#111;color:#f7f1e8;}
.event-feature{min-height:100svh;display:grid;grid-template-columns:1.15fr .85fr;background:#111;}
.event-feature-media{min-height:100svh;overflow:hidden;}
.event-feature-media img{width:100%;height:100%;object-fit:cover;object-position:center top;}
.event-feature-copy{display:flex;flex-direction:column;justify-content:center;padding:120px clamp(38px,6vw,100px) 70px;background:#171412;}
.event-feature-copy .event-date{color:#d7b47e;text-transform:uppercase;letter-spacing:2.6px;font-size:.72rem;}
.event-feature-copy h1{font-family:var(--font-primary);font-size:clamp(4rem,6vw,7rem);line-height:.88;margin:18px 0 22px;}
.event-feature-copy .event-menu{line-height:1.85;color:rgba(247,241,232,.75);}
.event-feature-copy .event-price-big{font-family:var(--font-primary);font-size:3.2rem;margin:24px 0 3px;color:#fff;}
.event-feature-copy .event-included{color:rgba(247,241,232,.58);font-size:.82rem;margin-bottom:26px;}
.event-chapter{min-height:100svh;display:grid;grid-template-columns:1fr 1fr;}
.event-chapter.reverse .event-chapter-media{order:2}.event-chapter.reverse .event-chapter-copy{order:1}
.event-chapter-media{min-height:100svh;overflow:hidden;background:#222;}
.event-chapter-media img{width:100%;height:100%;object-fit:cover;}
.event-chapter.business .event-chapter-media img{object-position:center 58%;}
.event-chapter-copy{display:flex;flex-direction:column;justify-content:center;padding:100px clamp(40px,7vw,110px);background:#f7f1e8;color:#2f211a;}
.event-chapter-copy .eyebrow{color:#8d6338;text-transform:uppercase;letter-spacing:2.5px;font-size:.68rem;}
.event-chapter-copy h2{font-family:var(--font-primary);font-size:clamp(4rem,6vw,7rem);line-height:.9;margin:16px 0 25px;}
.event-chapter-copy p{max-width:650px;color:#6c5a50;line-height:1.8;}

/* Contatti */
.contact-v22{background:#f7f1e8;color:#2f211a;}
.contact-main{padding:100px 0 120px;}
.contact-grid-v22{display:grid;grid-template-columns:.78fr 1.22fr;gap:80px;align-items:start;}
.contact-label{font-size:.67rem;letter-spacing:2.5px;text-transform:uppercase;color:#8d6338;margin-bottom:12px;}
.contact-block h2,.contact-form-v22 h2{font-family:var(--font-primary);font-size:clamp(3rem,5vw,5.5rem);line-height:.92;margin:0 0 32px;}
.contact-lines{display:grid;gap:20px;}
.contact-lines a,.contact-lines p{color:#2f211a;text-decoration:none;margin:0;font-size:1rem;line-height:1.5;}
.contact-lines strong{display:block;font-size:.64rem;text-transform:uppercase;letter-spacing:1.8px;color:#8d6338;margin-bottom:4px;}
.contact-social-v22{display:flex;gap:12px;margin-top:34px;}
.contact-social-v22 a{width:44px;height:44px;display:grid;place-items:center;border:1px solid rgba(47,33,26,.25);color:#2f211a;border-radius:50%;}
.contact-form-v22{background:#fff;padding:50px;border:1px solid rgba(47,33,26,.12);}
.contact-form-v22 .form-control,.contact-form-v22 select{border:0;border-bottom:1px solid rgba(47,33,26,.25);border-radius:0;background:transparent;padding:13px 0;color:#2f211a;}
.contact-form-v22 textarea{min-height:140px;}
.contact-form-v22 label{font-size:.68rem;letter-spacing:1.5px;text-transform:uppercase;color:#8d6338;margin-top:18px;}
.contact-status{display:none;margin-bottom:22px;padding:12px 16px;background:#eef6ee;color:#355c35;font-size:.86rem;}

/* Prenotazioni: bianca e leggera */
body.booking-v22{background:#fff!important;color:#2f211a;}
.booking-v22 .navbar{background:#0b0b0b!important;}
.booking-v22 .booking-page{background:#fff!important;padding:122px 0 70px!important;min-height:100vh;}
.booking-v22 .booking-intro{margin-bottom:30px!important;}
.booking-v22 .booking-kicker,.booking-v22 .booking-rule{display:none!important;}
.booking-v22 .booking-title{color:#2f211a!important;font-size:clamp(48px,5vw,76px)!important;}
.booking-v22 .booking-copy{color:#6c5a50!important;max-width:850px!important;}
.booking-v22 .booking-direct{margin:18px auto 0;display:flex;gap:10px 22px;justify-content:center;flex-wrap:wrap;font-size:.82rem;}
.booking-v22 .booking-direct a{color:#2f211a;text-decoration:none;border-bottom:1px solid rgba(47,33,26,.35);}
.booking-v22 .thefork-outer{width:min(100%,1480px)!important;}
.booking-v22 .thefork-frame{padding:0!important;border:0!important;border-radius:0!important;box-shadow:none!important;background:#fff!important;}
.booking-v22 .thefork-frame iframe{border-radius:0!important;background:#f7f1e8!important;}
.booking-v22 .booking-note,.booking-v22 .booking-footer{display:none!important;}

/* Sale interne */
.room-detail-v22{background:#0d0d0d;}
.room-detail-v22 .room-detail-hero{padding:0!important;min-height:100svh!important;position:relative;display:flex;align-items:flex-end;overflow:hidden;}
.room-detail-v22 .room-detail-hero .room-hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.room-detail-v22 .room-detail-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.1),rgba(0,0,0,.78));}
.room-detail-v22 .room-detail-hero .container{position:relative;z-index:2;padding-bottom:8vh;color:#fff;}
.room-detail-v22 .room-detail-hero h1{font-size:clamp(4.5rem,10vw,10rem)!important;line-height:.82!important;color:#fff!important;}
.room-detail-v22 .room-number{color:#d7b47e!important;}

@media(max-width:991.98px){
 .home-v22 .rooms-editorial{grid-template-columns:1fr!important;min-height:0!important;}
 .home-v22 .rooms-editorial-head{min-height:auto!important;padding:82px 7vw 52px!important;}
 .home-v22 .rooms-editorial-grid,.home-v22 .rooms-stage{min-height:68svh!important;height:68svh!important;}
 .press-head{grid-template-columns:1fr;gap:28px}.press-mastheads{grid-template-columns:1fr 1fr}.press-masthead:nth-child(2){border-right:0}.press-masthead:nth-child(-n+2){border-bottom:1px solid rgba(47,33,26,.18)}
 .event-feature,.event-chapter{grid-template-columns:1fr;min-height:0}.event-feature-media,.event-chapter-media{min-height:68svh;height:68svh}.event-feature-copy{padding:70px 8vw 85px}.event-chapter.reverse .event-chapter-media,.event-chapter.reverse .event-chapter-copy{order:initial}.event-chapter-copy{padding:80px 8vw}
 .contact-grid-v22{grid-template-columns:1fr;gap:50px}
 .legal-footer-grid{grid-template-columns:1fr;text-align:center!important}.legal-footer-grid>div{text-align:center!important}
}
@media(max-width:575.98px){
 .home-v22 .rooms-compact-list{grid-template-columns:1fr}.home-v22 .rooms-editorial-head{padding:72px 22px 46px!important}.home-v22 .rooms-editorial-grid,.home-v22 .rooms-stage{height:62svh!important;min-height:62svh!important}.home-v22 .rooms-stage-caption{left:22px!important;right:22px!important;bottom:26px!important}
 .press-section{padding:72px 22px}.press-mastheads{grid-template-columns:1fr}.press-masthead{border-right:0!important;border-bottom:1px solid rgba(47,33,26,.18)}.press-masthead:last-child{border-bottom:0}
 .site-closing-actions{display:grid;width:min(420px,100%);grid-template-columns:1fr 1fr}.site-closing-actions .btn{padding-left:8px!important;padding-right:8px!important;font-size:.6rem!important}
 .event-feature-media,.event-chapter-media{height:60svh;min-height:60svh}.event-feature-copy,.event-chapter-copy{padding:62px 22px 72px}.contact-main{padding:70px 0 80px}.contact-form-v22{padding:30px 22px}.booking-v22 .booking-page{padding-top:102px!important}.booking-v22 .booking-intro{width:90%!important}
}

/* V24 - Vini / Shop / Press */
.home-feature-section{min-height:86svh;display:grid;grid-template-columns:1.08fr .92fr;align-items:stretch;overflow:hidden;}
.home-feature-media{min-height:86svh;position:relative;}
.feature-media-placeholder{position:absolute;inset:0;background:#777;}
.home-feature-copy{display:flex;flex-direction:column;justify-content:center;padding:clamp(56px,7vw,120px);}
.home-feature-copy h2{font-family:var(--font-primary);font-size:clamp(3.8rem,6vw,7rem);line-height:.9;letter-spacing:-.04em;margin:0 0 28px;}
.home-feature-copy p:not(.section-subtitle){font-size:1.02rem;line-height:1.85;max-width:620px;margin-bottom:30px;}
.home-feature-copy .btn{align-self:flex-start;}
.wine-module{background:#14110f;color:#f7f1e8;}
.wine-module .section-subtitle{color:#d7b47e;}
.wine-module .home-feature-copy p:not(.section-subtitle){color:rgba(247,241,232,.74);}
.shop-module{background:#f7f1e8;color:#2f211a;grid-template-columns:.92fr 1.08fr;}
.shop-module .home-feature-copy p:not(.section-subtitle){color:#6c5a50;}
.press-mastheads{grid-template-columns:repeat(5,1fr);}
.press-masthead{border-bottom:1px solid rgba(47,33,26,.18);}
.press-masthead:nth-child(5n){border-right:0;}
@media(max-width:991.98px){
 .home-feature-section,.shop-module{grid-template-columns:1fr;min-height:auto;}
 .home-feature-media{min-height:58svh;}
 .home-feature-copy{padding:72px 24px;}
 .shop-module .home-feature-copy{order:2}.shop-module .home-feature-media{order:1}
 .press-mastheads{grid-template-columns:repeat(2,1fr);}
 .press-masthead:nth-child(5n){border-right:1px solid rgba(47,33,26,.18);}
 .press-masthead:nth-child(2n){border-right:0;}
}
@media(max-width:575.98px){
 .home-feature-media{min-height:48svh;}
 .press-mastheads{grid-template-columns:1fr;}
 .press-masthead{border-right:0!important;}
}
.contact-status-error{background:#f7eeee;color:#7a3737;}
\n\n/* ==========================================================
   TAVOLO UNICO — V26 / IMMAGINI DEFINITIVE + SHOP BLOCCATO
   ========================================================== */
.home-feature-media img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.wine-feature-media img{object-position:center 48%;}
.shop-feature-media img{object-position:center 44%;}
.btn-disabled{
    opacity:.72;
    cursor:default!important;
    pointer-events:none;
}
.home-v26 .hero-v9 .hero-bg{
    background:
      linear-gradient(90deg,rgba(8,7,6,.60) 0%,rgba(8,7,6,.38) 22%,rgba(8,7,6,.12) 48%,rgba(8,7,6,.10) 68%,rgba(8,7,6,.43) 100%),
      linear-gradient(0deg,rgba(7,7,7,.22),rgba(7,7,7,.04) 42%),
      url('../images/hero-tavolo-unico-v26.jpg') 50% center/cover no-repeat!important;
}
.home-v26 .hero-v9-shade{
    background:radial-gradient(circle at 51% 48%,rgba(0,0,0,0) 0%,rgba(0,0,0,.04) 43%,rgba(0,0,0,.33) 100%)!important;
}
.home-v26 #bistro .museum-image img{object-position:center center;}
.home-v26 #catering .museum-image img{object-position:center 58%;}
.home-v26 #concept .museum-image img{object-position:center 54%;}
@media(max-width:991.98px){
  .home-v26 .hero-v9 .hero-bg{
    background:
      linear-gradient(180deg,rgba(7,7,7,.12),rgba(7,7,7,.25) 56%,rgba(7,7,7,.60)),
      url('../images/hero-tavolo-unico-v26.jpg') 55% center/cover no-repeat!important;
  }
  .wine-feature-media img{object-position:center 50%;}
  .shop-feature-media img{object-position:center 38%;}
}


/* =========================================================
   V28 — revisione guidata: hero interna compatta, link editoriali,
   moduli home uniformi, eventi più bassi, select contatti coerente.
   ========================================================= */

/* Home: righe editoriali cliccabili */
.editorial-link{display:block;color:inherit;text-decoration:none;}
.editorial-link:hover{color:inherit;}
.editorial-title-link{color:inherit;text-decoration:none;}
.editorial-title-link:hover{color:var(--color-accent);}

/* Home: Vini e Shop alla stessa altezza del modulo "ristorante dentro un museo" */
.home-v22 .home-feature-section,
.home-v11 .home-feature-section{min-height:720px!important;height:720px!important;}
.home-v22 .home-feature-media,
.home-v11 .home-feature-media{min-height:720px!important;height:720px!important;}
.home-feature-media img{width:100%;height:100%;object-fit:cover;display:block;}
@media(max-width:991.98px){
  .home-v22 .home-feature-section,.home-v11 .home-feature-section{height:auto!important;min-height:0!important;}
  .home-v22 .home-feature-media,.home-v11 .home-feature-media{height:520px!important;min-height:520px!important;}
}
@media(max-width:575.98px){
  .home-v22 .home-feature-media,.home-v11 .home-feature-media{height:420px!important;min-height:420px!important;}
}

/* Hero interne: fascia compatta, testo subito accessibile */
.compact-masthead{
  margin-top:78px;
  min-height:clamp(225px,24svh,320px);
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(280px,.7fr);
  background:#0b0a09;
  color:#f7f1e8;
  overflow:hidden;
  border-bottom:1px solid rgba(215,180,126,.18);
}
.compact-masthead-copy{display:flex;flex-direction:column;justify-content:center;padding:34px clamp(26px,6vw,96px);}
.compact-masthead .eyebrow{font:500 .66rem/1.4 var(--font-secondary);text-transform:uppercase;letter-spacing:2.7px;color:#d7b47e;margin-bottom:8px;}
.compact-masthead h1{font-family:var(--font-primary);font-size:clamp(2.8rem,5.4vw,5.6rem);font-weight:500;line-height:.88;letter-spacing:-.035em;margin:0;}
.compact-masthead p{max-width:680px;margin:10px 0 0;color:rgba(247,241,232,.72);font-size:.92rem;line-height:1.55;}
.compact-masthead-image{position:relative;min-height:100%;overflow:hidden;background:#171412;}
.compact-masthead-image:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(11,10,9,.58),rgba(11,10,9,.04) 55%);pointer-events:none;}
.compact-masthead-image img{width:100%;height:100%;object-fit:cover;object-position:center;}
@media(max-width:720px){
  .compact-masthead{grid-template-columns:1.25fr .75fr;margin-top:72px;min-height:220px;}
  .compact-masthead-copy{padding:28px 18px 30px;}
  .compact-masthead h1{font-size:clamp(2.35rem,10vw,3.6rem);}
  .compact-masthead p{display:none;}
  .compact-masthead-image:after{background:linear-gradient(90deg,rgba(11,10,9,.62),rgba(11,10,9,.06));}
}

/* Neutralizza le vecchie hero a piena pagina se ancora presenti */
.inner-full-hero{min-height:clamp(225px,24svh,320px)!important;margin-top:78px!important;}
.inner-full-copy{padding:32px clamp(26px,6vw,96px)!important;}
.inner-full-copy h1{font-size:clamp(2.8rem,5.4vw,5.6rem)!important;}
.inner-full-copy p{margin-top:10px!important;font-size:.92rem!important;}

/* Sale interne */
.room-detail-v22 .room-detail-hero{min-height:clamp(225px,24svh,320px)!important;margin-top:78px!important;}
.room-detail-v22 .room-detail-hero .container{padding-bottom:28px!important;}
.room-detail-v22 .room-detail-hero h1{font-size:clamp(3rem,6vw,6rem)!important;}

/* Menu: niente hero gigante */
.menu-hero-v20{min-height:clamp(225px,24svh,320px)!important;margin-top:78px!important;padding:34px clamp(26px,6vw,96px)!important;align-items:center!important;background-position:center 58%!important;}
.menu-hero-v20 h1{font-size:clamp(2.8rem,5.4vw,5.6rem)!important;margin:6px 0 10px!important;}
.menu-hero-v20 p:not(.section-subtitle){font-size:.92rem!important;line-height:1.55!important;margin-bottom:0!important;}

/* Eventi interni: fotografie editoriali, non full-screen */
.event-page .event-page-masthead{margin-top:78px;}
.event-feature{min-height:560px!important;height:auto!important;}
.event-feature-media{min-height:560px!important;height:560px!important;}
.event-feature-copy{min-height:560px!important;padding:58px clamp(34px,5vw,78px)!important;}
.event-feature-copy h1{font-size:clamp(3.2rem,5vw,5.4rem)!important;}
.event-chapter{min-height:560px!important;height:auto!important;}
.event-chapter-media{min-height:560px!important;height:560px!important;}
.event-chapter-copy{min-height:560px!important;padding:58px clamp(34px,5vw,78px)!important;}
.event-chapter-copy h2{font-size:clamp(3.2rem,5vw,5.4rem)!important;}
.event-chapter.business .event-chapter-media img{object-position:center 48%!important;}
@media(max-width:991.98px){
  .event-feature-media,.event-chapter-media{height:460px!important;min-height:460px!important;}
  .event-feature-copy,.event-chapter-copy{min-height:0!important;padding:58px 8vw 66px!important;}
}
@media(max-width:575.98px){
  .event-feature-media,.event-chapter-media{height:370px!important;min-height:370px!important;}
}

/* Contatti: più in alto e select coerente con la palette */
.contact-main{padding:58px 0 90px!important;}
.contact-form-v22 select.form-control,
.contact-form-v22 select{
  appearance:auto!important;
  background:#111!important;
  color:#fff!important;
  border:1px solid #111!important;
  border-radius:0!important;
  padding:13px 12px!important;
  box-shadow:none!important;
}
.contact-form-v22 select:focus{outline:2px solid #b58a52!important;outline-offset:2px!important;border-color:#111!important;box-shadow:none!important;}
.contact-form-v22 select option{background:#fff!important;color:#111!important;}

/* Pagine editoriali dedicate */
.editorial-page{background:#f7f1e8;color:#2f211a;}
.editorial-main{padding:68px 0 96px;}
.editorial-grid{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:70px;align-items:start;}
.editorial-grid h2{font-family:var(--font-primary);font-size:clamp(3rem,5.6vw,5.8rem);line-height:.9;font-weight:500;margin:0 0 22px;}
.editorial-grid p{color:#66564d;line-height:1.8;}
.editorial-aside{border-left:1px solid rgba(47,33,26,.18);padding-left:36px;display:grid;gap:18px;}
.editorial-aside strong{display:block;font-size:.68rem;text-transform:uppercase;letter-spacing:1.6px;color:#8d6338;margin-bottom:5px;}
.editorial-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:28px;}
@media(max-width:850px){.editorial-grid{grid-template-columns:1fr;gap:34px}.editorial-aside{border-left:0;border-top:1px solid rgba(47,33,26,.18);padding:26px 0 0}}

/* Vini editoriale */
.wines-page{background:#f7f1e8;color:#2f211a;}
.wines-intro{padding:64px clamp(22px,6vw,96px) 42px;max-width:1540px;margin:auto;}
.wines-intro h2{font-family:var(--font-primary);font-size:clamp(3rem,5.6vw,5.8rem);line-height:.9;font-weight:500;margin:0 0 20px;}
.wines-intro p{max-width:760px;color:#66564d;line-height:1.75;}
.wine-catalog{padding:0 clamp(22px,6vw,96px) 100px;}
.wine-grid-v28{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1px;background:rgba(47,33,26,.14);border:1px solid rgba(47,33,26,.14);max-width:1540px;margin:auto;}
.wine-card-v28{background:#fff;min-height:300px;padding:28px;display:flex;flex-direction:column;}
.wine-card-v28 .wine-index{font-size:.62rem;text-transform:uppercase;letter-spacing:2px;color:#8d6338;margin-bottom:34px;}
.wine-card-v28 h3{font-family:var(--font-primary);font-size:2rem;line-height:1;margin-bottom:12px;font-weight:500;}
.wine-card-v28 p{font-size:.84rem;color:#76665d;line-height:1.6;}
.wine-card-v28 .wine-actions{margin-top:auto;padding-top:20px;}
.wine-card-v28 .wine-shop-link{display:inline-flex;align-items:center;gap:8px;font-size:.65rem;text-transform:uppercase;letter-spacing:1.4px;color:#2f211a;border-bottom:1px solid #2f211a;padding-bottom:4px;}
.wine-card-v28 .wine-no-shop{font-size:.65rem;text-transform:uppercase;letter-spacing:1.4px;color:#9a8d85;}
@media(max-width:1100px){.wine-grid-v28{grid-template-columns:repeat(3,1fr)}}
@media(max-width:760px){.wine-grid-v28{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.wine-grid-v28{grid-template-columns:1fr}}
