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 {
    text-align: center;
}

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

.preloader-line {
    width: 100px;
    height: 2px;
    background: var(--color-accent);
    margin: 20px auto;
    animation: loadingLine 1.5s infinite;
}

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

/* 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 {
    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); }
}
