/* ================================================================
   CIAO BELLA PIZZA PUB - PREMIUM CLASS WEB DESIGN SYSTEM (REFACTOR)
   Inspired by Trionn, Ciao Energy & La Sala Plaza
   ================================================================ */

/* Reset & Base Rules */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: clip;
    max-width: 100%;
}

:root {
    /* Sophisticated Italian Bistro Color Palette */
    --cb-bg: #070708;
    --cb-bg-offset: #0f100f; /* Subtle olive green hint */
    --cb-bg-card: #151715; /* Elegant olive tone */
    --cb-text: #f3f4f3;
    --cb-text-muted: #8c908c;
    
    --cb-primary: #b8242a; /* Deep Tuscan Tomato Red */
    --cb-primary-rgb: 184, 36, 42;
    --cb-accent: #1d7243; /* Italian Basil Green */
    --cb-accent-rgb: 29, 114, 67;
    --cb-green: #1d7243; /* Rich Italian Basil Green */
    
    /* Typography Pairs */
    --cb-font-display: 'Marcellus', Georgia, serif;
    --cb-font-accent: 'Marcellus', Georgia, serif;
    --cb-font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Motion Eases */
    --cb-ease: cubic-bezier(0.16, 1, 0.3, 1); /* Custom fluid expo-ease */
    --cb-transition: all 0.5s var(--cb-ease);
    --cb-header-height: 90px;
    --cb-container-width: 1280px;
}

html {
    background-color: var(--cb-bg);
    color: var(--cb-text);
    font-family: var(--cb-font-sans);
    -webkit-font-smoothing: antialiased;
    scrollbar-width: thin;
    scrollbar-color: var(--cb-accent) var(--cb-bg);
}

body {
    overflow-x: clip;
    max-width: 100%;
    line-height: 1.6;
}

/* Custom Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--cb-bg);
}
::-webkit-scrollbar-thumb {
    background: #1c1c22;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--cb-accent);
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    color: var(--cb-text);
    font-weight: 500;
    line-height: 1.1;
}

.cb-serif {
    font-family: var(--cb-font-display);
}

.cb-serif-italic {
    font-family: var(--cb-font-display);
    font-style: italic;
    font-weight: 300;
}

p {
    color: var(--cb-text-muted);
    font-size: 1rem;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Base Layout Containers */
.cb-container {
    width: 100%;
    max-width: var(--cb-container-width);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 3;
}

.cb-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}

@media (min-width: 992px) {
    .cb-grid-2 {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 90px;
    }
}

.cb-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .cb-section {
        padding: 180px 0;
    }
}

.cb-section-header {
    margin-bottom: 64px;
}

.cb-pretitle {
    font-family: var(--cb-font-sans);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--cb-accent);
    display: inline-block;
    margin-bottom: 16px;
}

.cb-pretitle-green {
    color: var(--cb-accent) !important;
}

.cb-pretitle-red {
    color: var(--cb-primary) !important;
}

.cb-section-title {
    font-size: 3.2rem;
    font-family: var(--cb-font-display);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .cb-section-title {
        font-size: 4.5rem;
    }
}

.cb-section-desc {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--cb-text-muted);
    font-weight: 300;
}

.cb-text-center {
    text-align: center;
}

.cb-text-gradient {
    background: linear-gradient(135deg, #1d7243 20%, #f1c40f 50%, #b8242a 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cb-lead {
    font-size: 1.4rem;
    color: var(--cb-text);
    margin-bottom: 32px;
    line-height: 1.5;
    font-family: var(--cb-font-display);
    font-weight: 300;
}

.cb-desc-para {
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Buttons */
.cb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--cb-font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--cb-transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cb-btn span {
    position: relative;
    z-index: 2;
}

.cb-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--cb-ease), height 0.6s var(--cb-ease);
    z-index: 1;
}

.cb-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cb-btn-primary {
    background: var(--cb-primary); /* Tomato Red */
    color: #ffffff; /* Crisp White */
}

.cb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(29, 114, 67, 0.25);
    background: var(--cb-accent); /* Basil Green on hover */
}

.cb-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--cb-text);
}

.cb-btn-outline:hover {
    border-color: var(--cb-primary); /* Hover into Tomato Red */
    color: var(--cb-primary);
    background: rgba(184, 36, 42, 0.05);
}

.cb-btn-nav {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.cb-btn-link {
    background: transparent;
    color: var(--cb-text);
    padding: 16px 24px;
}

.cb-btn-link:hover {
    color: var(--cb-accent);
}

.cb-btn-link:hover .cb-arrow-svg {
    transform: translateX(8px);
}

.cb-arrow-svg {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    transition: transform 0.3s var(--cb-ease);
}

.cb-btn-full {
    width: 100%;
}

/* ================================================================
   CINEMATIC PRELOADER
   ================================================================ */
#cb-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #050506;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-preloader-inner {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 40px;
}

.cb-preloader-logo-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(29, 114, 67, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(29, 114, 67, 0.05);
    background-color: #020202;
    transform: scale(0.9);
    animation: cbPulseGlow 3s infinite ease-in-out;
}

.cb-preloader-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes cbPulseGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(29, 114, 67, 0.05);
        border-color: rgba(29, 114, 67, 0.15);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9), 0 0 35px rgba(29, 114, 67, 0.15);
        border-color: rgba(29, 114, 67, 0.35);
    }
}


.cb-preloader-tagline {
    font-family: var(--cb-font-sans);
    font-size: 0.8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--cb-accent);
    display: block;
    margin-bottom: 24px;
    opacity: 0.8;
}

.cb-preloader-number-wrap {
    font-family: var(--cb-font-accent);
    font-size: 6.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--cb-text);
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.cb-percent-char {
    font-size: 3rem;
    color: var(--cb-accent);
    margin-left: 4px;
}

.cb-preloader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}

#cb-preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--cb-primary), var(--cb-accent));
}

.cb-preloader-brand {
    font-family: var(--cb-font-display);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--cb-text-muted);
}

/* ================================================================
   TACTILE NOISE & WEBGL CANVAS
   ================================================================ */
.cb-noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    display: none !important;
    pointer-events: none;
    z-index: 999;
}

/* Animated Italian Aurora Gradient Mesh Backdrop */
.cb-gradient-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    background-color: var(--cb-bg);
}

.cb-gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px); /* Smooth gaussian blur for atmospheric glow */
    opacity: 0.55; /* Clearly visible, blended softly */
    mix-blend-mode: screen;
    will-change: transform;
    transform: translate3d(0,0,0);
}

.cb-blob-red {
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle at center, rgba(184, 36, 42, 0.55) 0%, rgba(184, 36, 42, 0.25) 40%, transparent 100%);
    top: -5vw;
    left: -5vw;
    animation: moveRedBlob 28s infinite alternate ease-in-out;
}

.cb-blob-green {
    width: 65vw;
    height: 65vw;
    background: radial-gradient(circle at center, rgba(29, 114, 67, 0.5) 0%, rgba(29, 114, 67, 0.22) 40%, transparent 100%);
    bottom: -10vw;
    right: -5vw;
    animation: moveGreenBlob 32s infinite alternate ease-in-out;
}

.cb-blob-white {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    top: 25vh;
    right: 10vw;
    animation: moveWhiteBlob 24s infinite alternate ease-in-out;
}

@keyframes moveRedBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(12vw, 8vh) scale(1.1); }
    100% { transform: translate(4vw, -4vh) scale(0.95); }
}

@keyframes moveGreenBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-8vw, -12vh) scale(0.9); }
    100% { transform: translate(4vw, 4vh) scale(1.05); }
}

@keyframes moveWhiteBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-6vw, 10vh) scale(1.15); }
    100% { transform: translate(10vw, -6vh) scale(0.9); }
}

#cb-webgl-container {
    display: none !important;
}

/* ================================================================
   CUSTOM MOUSE CURSOR — Italian Flag Meteor/Comet
   ================================================================ */

/* Bright leading dot — tip of the meteor (Hidden to keep only the trail) */
#cb-cursor {
    display: none !important;
}

/* Comet tail — elongated teardrop rotating behind cursor */
#cb-cursor-ring {
    width: 9px;
    height: 38px;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    /* Anchor top-center so rotation spins from tip */
    transform-origin: 50% 0%;
    transform: translate(-50%, 0px) rotate(0deg);
    border-radius: 0 0 50% 50%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(29, 114, 67, 0.8) 40%,
        rgba(184, 36, 42, 0.5) 75%,
        transparent 100%
    );
    filter: blur(2px);
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

/* Hide cursor elements completely on mobile/tablet devices */
@media (max-width: 991px) {
    #cb-cursor,
    #cb-cursor-ring {
        display: none !important;
    }
}

/* Hide the label span inside cursor ring — not needed for meteor */
.cb-cursor-ring-text {
    display: none;
}

/* On hover — shrink tip dot slightly, briefly flare the tail */
#cb-cursor.hovered {
    transform: translate(-50%, -50%) scale(0.6);
    background: var(--cb-accent);
}

#cb-cursor-ring.hovered {
    opacity: 0.7;
    filter: blur(3px);
}

#cb-cursor-ring.expand {
    opacity: 0.5;
    filter: blur(4px);
}


/* ================================================================
   HEADER NAVIGATION
   ================================================================ */
.cb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--cb-header-height);
    display: flex;
    align-items: center;
    z-index: 300;
    transition: var(--cb-transition);
}

.cb-header.scrolled {
    background: rgba(9, 9, 10, 0.85);
    backdrop-filter: blur(30px);
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cb-header-container {
    width: 100%;
    max-width: var(--cb-container-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cb-logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cb-logo-img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.cb-logo-text-group {
    display: flex;
    flex-direction: column;
}

.cb-logo-main {
    font-family: var(--cb-font-display);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--cb-text);
    letter-spacing: -0.3px;
}

.cb-logo-sub {
    font-family: var(--cb-font-sans);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--cb-accent);
    margin-top: 3px;
}

@media (max-width: 600px) {
    .cb-logo-text-group {
        display: none;
    }
    .cb-logo-img {
        width: 68px;
        height: 68px;
    }
}

/* Desktop Menu Links */
.cb-nav {
    display: none;
}

@media (min-width: 992px) {
    .cb-nav {
        display: block;
    }
}

.cb-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.cb-menu-link {
    font-family: var(--cb-font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    padding: 8px 0;
    position: relative;
}

.cb-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--cb-primary);
    transition: width 0.4s var(--cb-ease);
}

.cb-menu-link:hover {
    opacity: 1;
    color: var(--cb-primary);
}

.cb-menu-link:hover::after {
    width: 100%;
}

.cb-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Hamburger */
.cb-hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 300;
    border-radius: 50%;
    transition: var(--cb-transition);
    position: relative;
    flex-shrink: 0;
}

.cb-hamburger:hover {
    background: rgba(255, 255, 255, 0.04);
}

@media (min-width: 992px) {
    .cb-hamburger {
        display: none;
    }
}

.cb-burger-line {
    width: 24px;
    height: 1.5px;
    background-color: var(--cb-text);
    transition: var(--cb-transition);
}

.cb-hamburger.active .line-1 {
    transform: translateY(4px) rotate(45deg);
}

.cb-hamburger.active .line-2 {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile Menu Slide Overlay */
.cb-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.65s cubic-bezier(0.85, 0, 0.15, 1);
    overflow: hidden;
}

.cb-mobile-menu.active {
    transform: translateY(0);
}

.cb-mobile-menu-inner {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 100px 32px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100%;
    box-sizing: border-box;
}

.cb-mobile-nav {
    width: 100%;
    text-align: center;
}

.cb-mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.cb-mobile-menu-item {
    width: 100%;
    overflow: hidden;
}

.cb-mobile-menu-link {
    font-family: var(--cb-font-display);
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    font-weight: 500;
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    position: relative;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    letter-spacing: -0.5px;
}

.cb-mobile-menu-link:hover {
    color: var(--cb-accent);
    letter-spacing: 1px;
}

.cb-mobile-menu-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--cb-accent), var(--cb-primary));
    margin: 0 auto;
    transition: width 0.4s var(--cb-ease);
}

.cb-mobile-menu-link:hover::after {
    width: 40%;
}

.cb-mobile-menu-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cb-mobile-phone {
    color: var(--cb-text);
    font-size: 1.25rem;
    font-family: var(--cb-font-display);
}

.cb-mobile-address {
    font-size: 0.95rem;
}

.cb-mobile-socials {
    display: flex;
    gap: 16px;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.6;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.cb-hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.cb-hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cb-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28; /* Slightly more visible — atmospheric depth without washing out text */
}

.cb-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(7, 7, 8, 0.6) 0%,
        rgba(7, 7, 8, 0.45) 40%,
        rgba(7, 7, 8, 0.7) 80%,
        rgba(7, 7, 8, 0.92) 100%
    );
    z-index: 2;
}

.cb-hero-content {
    position: relative;
    z-index: 3;
    padding-top: 100px;
}

.cb-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.cb-meta-num {
    font-family: var(--cb-font-accent);
    font-size: 0.9rem;
    color: var(--cb-primary);
}

.cb-meta-line {
    width: 60px;
    height: 1px;
    background-color: var(--cb-primary);
}

.cb-meta-text {
    font-family: var(--cb-font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cb-primary);
}

/* Experimental Reveal Typography styles */
.cb-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-family: var(--cb-font-accent);
}

@media (min-width: 768px) {
    .cb-hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1200px) {
    .cb-hero-title {
        font-size: 4.8rem;
    }
}

/* Hero Grid Layout */
.cb-hero-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.cb-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    margin-top: 50px;
}

@media (min-width: 992px) {
    .cb-hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 60px;
        margin-top: 0;
    }
}

.cb-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cb-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cb-hero-video-frame-outer {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 16 / 9;
}

@media (min-width: 768px) {
    .cb-hero-video-frame-outer {
        max-width: 500px;
    }
}

@media (min-width: 1200px) {
    .cb-hero-video-frame-outer {
        max-width: 560px;
    }
}

.cb-hero-video-frame-inner {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(29, 114, 67, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(29, 114, 67, 0.05);
    background-color: #020202;
    z-index: 2;
    position: relative;
}

.cb-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ambient pulsing gold outline widescreen */
.cb-hero-badge-outline {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 24px;
    border: 1px dashed rgba(29, 114, 67, 0.45);
    pointer-events: none;
    animation: cbArchPulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes cbArchPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.8;
    }
}

@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cb-title-row {
    display: block;
    overflow: hidden;
}

.cb-title-word {
    display: inline-block;
    transform: translateY(100%);
}

.cb-hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 300;
    color: var(--cb-text-muted);
}

@media (min-width: 768px) {
    .cb-hero-subtitle {
        font-size: 1.35rem;
    }
}

.cb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.cb-hero-bottom-bar {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--cb-container-width);
    padding: 0 32px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cb-hero-scroll-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--cb-font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.cb-scroll-icon {
    width: 20px;
    height: 32px;
    border: 1.5px solid var(--cb-text);
    border-radius: 10px;
    position: relative;
}

.cb-scroll-dot {
    width: 3px;
    height: 6px;
    background-color: var(--cb-accent);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1.5px;
    animation: cb-scroll-anim 2s infinite;
}

.cb-hero-phone-social a {
    font-family: var(--cb-font-display);
    font-size: 1.1rem;
    opacity: 0.8;
}

.cb-hero-phone-social a:hover {
    color: var(--cb-accent);
}

/* ================================================================
   CONCEPT SECTION
   ================================================================ */
.cb-concept {
    background-color: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.cb-editorial-bg-text {
    position: absolute;
    bottom: -60px;
    right: -20px;
    font-family: var(--cb-font-accent);
    font-size: 18vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.012);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Editorial Stats Factoids */
/* Editorial Stats — horizontal pill row, all equal */
.cb-editorial-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 32px;
}

.cb-stat-item {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 120px;
}

.cb-stat-item:first-child {
    padding-left: 0;
}

.cb-stat-item:last-child {
    border-right: none;
}

.cb-stat-number {
    font-family: var(--cb-font-accent);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    white-space: nowrap;
}

.cb-stat-number.cb-stat-green {
    color: var(--cb-accent);
}

.cb-stat-number.cb-stat-red {
    color: var(--cb-primary);
}

.cb-stat-number.cb-stat-white {
    color: var(--cb-text);
}

.cb-stat-label {
    font-family: var(--cb-font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cb-text-muted);
    white-space: nowrap;
}

/* Interactive Collage Box */
.cb-interactive-collage {
    position: relative;
    height: 520px;
    margin-top: 60px;
}

@media (min-width: 992px) {
    .cb-interactive-collage {
        height: 640px;
        margin-top: 0;
    }
}

.cb-collage-frame {
    position: absolute;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.cb-img-zoom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--cb-ease);
}

.cb-collage-frame:hover .cb-img-zoom {
    transform: scale(1.06);
}

.cb-collage-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--cb-font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: rgba(9, 9, 10, 0.75);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cb-frame-1 {
    width: 75%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

.cb-frame-2 {
    width: 58%;
    height: 55%;
    bottom: 0;
    right: 0;
    z-index: 3;
    border-color: rgba(29, 114, 67, 0.15);
}

/* ================================================================
   SHOWCASE SECTION (Asymmetric Editorial Vertical Grid)
   ================================================================ */
.cb-showcase-section {
    padding: 120px 0;
    background-color: transparent;
    position: relative;
    z-index: 3;
}

@media (min-width: 992px) {
    .cb-showcase-section {
        padding: 180px 0;
    }
}

.cb-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 80px;
}

@media (min-width: 992px) {
    .cb-showcase-grid {
        gap: 160px;
    }
}

.cb-showcase-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .cb-showcase-panel {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.cb-panel-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .cb-panel-img-wrap {
        height: 460px;
    }
}

@media (min-width: 1200px) {
    .cb-panel-img-wrap {
        height: 520px;
    }
}

.cb-panel-img-wrap img {
    width: 100%;
    height: 110%;
    object-fit: cover;
}

.cb-panel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .cb-panel-content {
        padding: 0 40px;
    }
}

.cb-panel-num {
    font-family: var(--cb-font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cb-primary);
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cb-panel-content h3 {
    font-size: 2rem;
    font-family: var(--cb-font-display);
    line-height: 1.15;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .cb-panel-content h3 {
        font-size: 2.8rem;
    }
}

.cb-panel-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--cb-text-muted);
}

@media (min-width: 992px) {
    .cb-showcase-panel.cb-panel-reverse .cb-panel-img-wrap {
        order: 2;
    }
    .cb-showcase-panel.cb-panel-reverse .cb-panel-content {
        order: 1;
    }
}

/* ================================================================
   MENU SECTION & HOVER PREVIEWS
   ================================================================ */
.cb-menu-section {
    background-color: transparent;
}

/* Premium Sticky Tab Bar Wrapper with Navigation Controls */
.cb-menu-tabs-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    z-index: 190;
    background: transparent;
    padding: 16px 0;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scroll Chevron Buttons (Desktop only, toggled dynamically by JS) */
.cb-menu-tabs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cb-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--cb-text-muted);
    display: none; /* Controlled by JS and media query */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s var(--cb-ease);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cb-menu-tabs-nav:hover {
    background: var(--cb-text);
    color: var(--cb-bg);
    border-color: var(--cb-text);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.cb-menu-tabs-nav-left {
    left: 10px;
}

.cb-menu-tabs-nav-right {
    right: 10px;
}

.cb-menu-tabs-nav svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 992px) {
    .cb-menu-tabs-nav.visible {
        display: flex;
    }
}

.cb-menu-tabs-scrollbar {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 20px;
}
.cb-menu-tabs-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Refactored Unified Capsule Container (Dock Style) */
.cb-menu-tabs {
    display: flex;
    gap: 4px;
    padding: 6px;
    background: var(--cb-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    width: max-content;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Glassmorphic Capsule Tab Item Buttons */
.cb-menu-tab-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--cb-text-muted);
    font-family: var(--cb-font-sans);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 22px;
    cursor: pointer;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
}

.cb-menu-tab-btn:hover {
    color: var(--cb-text);
    background: rgba(255, 255, 255, 0.04);
}

.cb-menu-tab-btn.active {
    background: var(--cb-text);
    color: var(--cb-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Minimalist tab icon animations */
.cb-tab-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.3s var(--cb-ease);
}

.cb-menu-tab-btn:hover .cb-tab-icon {
    transform: scale(1.15);
}

/* Floating Menu Preview Trailer */
#cb-menu-floating-preview {
    position: fixed;
    width: 250px;
    height: 330px;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: none;
    z-index: 998;
    opacity: 0;
    transform: scale(0.7) translate(-50%, -50%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: var(--cb-bg);
    transform-origin: center center;
    transition: transform 0.4s var(--cb-ease), opacity 0.4s var(--cb-ease);
}

#cb-menu-floating-preview.active {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
}

.cb-menu-preview-inner {
    width: 100%;
    height: 100%;
}

#cb-menu-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Category Grid/List */
.cb-menu-content-wrapper {
    position: relative;
    min-height: 400px;
    max-width: 900px;
    margin: 0 auto;
}

.cb-menu-grid {
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0.4s;
    pointer-events: none;
}

.cb-menu-grid.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
    transition: opacity 0.6s var(--cb-ease), transform 0.6s var(--cb-ease), visibility 0s 0s;
    pointer-events: all;
}

/* Editorial Menu Rows with Inline Thumbnails */
.cb-menu-item-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.cb-menu-item-row:hover {
    border-color: var(--cb-accent);
}

/* Custom visual inline thumbnails styling */
.cb-menu-item-thumb {
    width: 76px;
    height: 76px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #121214;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s var(--cb-ease), border-color 0.3s var(--cb-ease);
}

.cb-menu-item-row:hover .cb-menu-item-thumb {
    transform: scale(1.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.cb-menu-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cb-menu-item-left {
    flex-grow: 1;
    max-width: calc(100% - 200px);
}

.cb-menu-item-title {
    font-family: var(--cb-font-display);
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--cb-text);
    transition: color 0.3s ease;
    margin-bottom: 6px;
}

.cb-menu-item-row:hover .cb-menu-item-title {
    color: var(--cb-accent);
}

.cb-menu-item-desc {
    font-size: 0.9rem;
    color: var(--cb-text-muted);
}

.cb-menu-item-right {
    min-width: 90px;
    text-align: right;
}

.cb-menu-item-price {
    font-family: var(--cb-font-accent);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cb-accent);
}

/* ================================================================
   VIBES / GIG SCHEDULE SECTION — Full-bleed editorial redesign
   ================================================================ */
.cb-vibes {
    background-color: transparent;
    padding: 0 !important; /* Full-bleed — no vertical padding on section */
}

/* Cinematic full-width photo backdrop with overlay */
.cb-vibes-backdrop {
    position: relative;
    width: 100%;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 992px) {
    .cb-vibes-backdrop {
        min-height: 700px;
    }
}

.cb-vibes-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.35;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.cb-vibes-backdrop:hover .cb-vibes-bg-img {
    transform: scale(1.0);
}

.cb-vibes-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(7,7,8,0.97) 0%,
        rgba(7,7,8,0.82) 45%,
        rgba(7,7,8,0.55) 100%
    );
    z-index: 1;
}

/* Right-side color wash in Italian green */
.cb-vibes-bg-overlay::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to left,
        rgba(29, 114, 67, 0.08) 0%,
        transparent 100%
    );
}

.cb-vibes-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--cb-container-width);
    margin: 0 auto;
    padding: 80px 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .cb-vibes-inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        padding: 100px 32px;
    }
}

.cb-vibes-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cb-vibes-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--cb-font-sans);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cb-accent);
}

.cb-vibes-tagline::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--cb-accent);
}

.cb-vibes-title {
    font-family: var(--cb-font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--cb-text);
}

.cb-vibes-desc {
    font-size: 1rem;
    color: var(--cb-text-muted);
    line-height: 1.7;
    max-width: 420px;
}

/* Photo strip — small accent images stacked */
.cb-vibes-photo-strip {
    display: none;
}

@media (min-width: 992px) {
    .cb-vibes-photo-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 12px;
        height: 480px;
    }
}

.cb-vibes-photo-strip .cb-vp {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.cb-vibes-photo-strip .cb-vp:first-child {
    grid-row: 1 / 3; /* Tall left image */
    border-radius: 16px;
}

.cb-vibes-photo-strip .cb-vp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--cb-ease);
}

.cb-vibes-photo-strip .cb-vp:hover img {
    transform: scale(1.05);
}

/* Premium Schedule Blocks */
.cb-schedule-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.cb-schedule-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    transition: var(--cb-transition);
}

.cb-schedule-row:hover {
    background: rgba(29, 114, 67, 0.07);
    border-color: rgba(29, 114, 67, 0.2);
    transform: translateX(4px);
}

.cb-sched-day {
    font-family: var(--cb-font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cb-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    min-width: 80px;
    flex-shrink: 0;
}

.cb-sched-info {
    flex-grow: 1;
}

.cb-sched-info h5 {
    font-family: var(--cb-font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2px;
    color: var(--cb-text);
}

.cb-sched-info p {
    font-size: 0.8rem;
    color: var(--cb-text-muted);
}

.cb-sched-time {
    font-family: var(--cb-font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--cb-accent);
    background: rgba(29, 114, 67, 0.08);
    border: 1px solid rgba(29, 114, 67, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* ================================================================
   CONTACT & BOOKING (Editorial Blocks)
   ================================================================ */
.cb-contact-section {
    background-color: transparent;
}

.cb-booking-block-wrapper {
    background: var(--cb-bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    overflow: hidden;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.cb-contact-details-box, .cb-booking-form-box {
    padding: 50px 32px;
}

@media (min-width: 768px) {
    .cb-contact-details-box, .cb-booking-form-box {
        padding: 72px 56px;
    }
}

.cb-contact-details-box {
    background: rgba(255, 255, 255, 0.005);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cb-box-desc {
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.cb-detail-rows-wrap {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.cb-detail-card {
    border-left: 2px solid var(--cb-accent);
    padding-left: 20px;
}

.cb-card-label {
    font-family: var(--cb-font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cb-text-muted);
    display: block;
    margin-bottom: 6px;
}

.cb-card-val, .cb-card-val a {
    font-family: var(--cb-font-display);
    font-size: 1.35rem;
    color: var(--cb-text);
}

.cb-card-val a:hover {
    color: var(--cb-accent);
}

.cb-map-outer {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--cb-bg-offset);
}

/* Booking Form Elements */
.cb-booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cb-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cb-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .cb-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.cb-booking-form label {
    font-family: var(--cb-font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cb-accent);
}

.cb-booking-form input, 
.cb-booking-form select, 
.cb-booking-form textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 16px 20px;
    color: var(--cb-text);
    font-family: var(--cb-font-sans);
    font-size: 1rem;
    outline: none;
    transition: var(--cb-transition);
}

.cb-booking-form select option {
    background: var(--cb-bg);
    color: var(--cb-text);
}

.cb-booking-form input:focus, 
.cb-booking-form select:focus, 
.cb-booking-form textarea:focus {
    border-color: var(--cb-accent);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 20px rgba(29, 114, 67, 0.1);
}

.cb-form-feedback {
    font-size: 0.95rem;
    padding: 16px;
    border-radius: 8px;
    line-height: 1.5;
    display: none;
}

.cb-form-feedback.success {
    display: block;
    background: rgba(42, 157, 143, 0.1);
    border: 1px solid var(--cb-green);
    color: #4dc5b2;
}

.cb-form-feedback.error {
    display: block;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid var(--cb-primary);
    color: #ff6b76;
}

/* ================================================================
   FOOTER GRID
   ================================================================ */
.cb-footer {
    background-color: rgba(7, 7, 8, 0.4);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 100px 0 40px 0;
    position: relative;
    z-index: 2;
}

.cb-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

@media (min-width: 576px) {
    .cb-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .cb-footer-grid {
        grid-template-columns: 1.8fr 1.2fr 1.2fr 1fr;
        gap: 60px;
    }
}

.cb-footer-col h4 {
    font-family: var(--cb-font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    color: var(--cb-accent);
}

.cb-footer-logo-video-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid rgba(29, 114, 67, 0.2);
    margin-bottom: 20px;
    background-color: #020202;
    box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}

.cb-footer-logo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cb-footer-logo {
    font-size: 3rem;
    font-family: var(--cb-font-display);
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -0.5px;
}

.cb-footer-tagline {
    font-size: 0.75rem;
    font-family: var(--cb-font-sans);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cb-accent);
    margin-bottom: 20px;
}

.cb-footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}

.cb-footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.95rem;
}

.cb-footer-list li {
    color: var(--cb-text-muted);
}

.cb-footer-list a:hover {
    color: var(--cb-accent);
}

.cb-footer-hours .cb-footer-list li {
    display: flex;
    justify-content: space-between;
}

.cb-social-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cb-social-link {
    display: inline-flex;
    font-size: 0.95rem;
    color: var(--cb-text-muted);
    transition: var(--cb-transition);
}

.cb-social-link:hover {
    color: var(--cb-accent);
    transform: translateX(4px);
}

/* Footer Bottom Credit Bar */
.cb-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.25);
}

@media (min-width: 768px) {
    .cb-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.cb-footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid transparent;
}

.cb-footer-bottom a:hover {
    color: var(--cb-accent);
    border-color: var(--cb-accent);
}

/* ================================================================
   MOBILE & TABLET RESPONSIVE REFACTOR SYSTEM
   Completely and mindfully refactoring every section for viewports < 992px
   ================================================================ */

@media (max-width: 991px) {
    /* --- Base Variables & Core Layouts --- */
    :root {
        --cb-header-height: 70px;
    }

    /* --- Header Mobile --- */
    .cb-header-container {
        padding: 0 16px;
        gap: 8px;
    }

    /* Hide the "Book Table" CTA button on mobile — saves header real estate */
    .cb-btn-nav {
        display: none !important;
    }

    /* Tighten the lang switcher on mobile */
    .cb-lang-switcher {
        margin-right: 0;
        padding: 2px;
        gap: 2px;
    }

    .cb-lang-item {
        padding: 5px 8px;
        font-size: 0.7rem;
        gap: 4px;
    }

    /* Hide flag icons on very small header — text labels only */
    @media (max-width: 420px) {
        .cb-flag-icon {
            display: none;
        }
        .cb-lang-item {
            padding: 5px 6px;
        }
    }

    /* Hamburger stays above mobile menu overlay */
    .cb-hamburger {
        z-index: 300 !important;
    }

    /* Burger lines transition to X cleanly */
    .cb-hamburger.active .line-1 {
        transform: translateY(3.5px) rotate(45deg);
        background-color: var(--cb-text);
    }

    .cb-hamburger.active .line-2 {
        transform: translateY(-3.5px) rotate(-45deg);
        background-color: var(--cb-text);
    }

    /* Mobile menu overlay scroll fix */
    .cb-mobile-menu {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cb-mobile-menu-inner {
        padding: 90px 24px 40px;
        min-height: 100dvh;
        gap: 32px;
    }

    .cb-mobile-menu-link {
        font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
    }

    /* Mobile menu footer contact info */
    .cb-mobile-menu-footer {
        width: 100%;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.06);
        gap: 10px;
    }

    .cb-mobile-phone,
    .cb-mobile-address {
        font-size: 1rem !important;
        justify-content: center;
        gap: 8px;
    }

    .cb-container {
        padding: 0 20px !important; /* Maximizes readable screen space */
    }

    .cb-section {
        padding: 80px 0 !important; /* Tighter layout for mobile scroll rhythm */
    }

    .cb-section-title {
        font-size: 2.6rem !important; /* Elegant display sizing, no wrapping breaks */
        line-height: 1.15;
    }

    .cb-section-desc {
        font-size: 1rem !important;
        line-height: 1.6;
    }

    .cb-lead {
        font-size: 1.2rem !important;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    /* --- Hero Section Mobile --- */
    .cb-hero {
        height: auto !important;
        min-height: auto !important;
        padding: 120px 0 60px 0 !important;
    }

    .cb-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        text-align: center;
        margin-top: 20px !important;
    }

    .cb-hero-left {
        align-items: center !important;
    }

    .cb-hero-meta {
        justify-content: center !important;
        margin-bottom: 20px !important;
    }

    .cb-hero-title {
        font-size: 2.8rem !important;
        line-height: 1.1;
        margin-bottom: 20px !important;
    }

    .cb-hero-subtitle {
        font-size: 1.05rem !important;
        margin-bottom: 32px !important;
        line-height: 1.6;
        padding: 0 10px;
    }

    .cb-hero-actions {
        justify-content: center !important;
        gap: 16px !important;
        width: 100%;
    }
    
    .cb-hero-actions .cb-btn {
        width: 100%;
        max-width: 280px;
    }

    .cb-hero-right {
        order: -1 !important; /* Video badge is elevated above title on mobile */
        margin-bottom: 10px !important;
    }

    .cb-hero-video-frame-outer {
        width: 200px !important;
        height: 200px !important;
    }

    .cb-hero-badge-outline {
        top: -8px !important;
        left: -8px !important;
        right: -8px !important;
        bottom: -8px !important;
    }

    .cb-hero-bottom-bar {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 40px !important;
        flex-direction: column !important;
        gap: 16px !important;
        padding: 0 !important;
    }

    .cb-hero-scroll-btn {
        display: none !important;
    }

    /* --- Concept Section Mobile --- */
    .cb-concept {
        padding: 80px 0 !important;
    }

    .cb-editorial-stats {
        margin-top: 32px !important;
        padding-top: 24px !important;
        flex-wrap: wrap;
    }

    .cb-stat-item {
        flex: 1 1 calc(50% - 1px); /* 2 per row on tablet */
        padding: 16px 20px !important;
        min-width: 100px;
    }

    .cb-stat-item:nth-child(2) {
        border-right: none; /* Remove border on 2nd item (end of row 1) */
    }

    .cb-stat-item:nth-child(3) {
        border-right: 1px solid rgba(255,255,255,0.06) !important; /* restore on row 2 */
        border-top: 1px solid rgba(255,255,255,0.06);
        padding-left: 0 !important;
    }

    .cb-stat-item:last-child {
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .cb-stat-number {
        font-size: 2rem !important;
    }

    .cb-stat-label {
        font-size: 0.65rem !important;
        letter-spacing: 1px;
    }

    /* --- Vibes Section Mobile --- */
    .cb-vibes-inner {
        grid-template-columns: 1fr !important;
        padding: 60px 20px !important;
        gap: 32px !important;
    }

    .cb-vibes-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
    }

    .cb-vibes-backdrop {
        min-height: auto !important;
    }

    /* --- Showcase Section Mobile --- */
    .cb-showcase-section {
        padding: 80px 0 !important;
    }
    .cb-showcase-grid {
        gap: 64px !important;
        margin-top: 40px !important;
    }
    .cb-showcase-panel {
        gap: 24px !important;
    }
    .cb-panel-img-wrap {
        height: 260px !important;
        border-radius: 12px !important;
    }
    .cb-panel-content h3 {
        font-size: 1.8rem !important;
        margin-bottom: 12px !important;
    }
    .cb-panel-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* --- Menu Section Mobile (Visual Thumbnails) --- */
    .cb-menu-tabs {
        margin-bottom: 40px !important;
        gap: 8px !important;
        padding-bottom: 16px !important;
    }

    .cb-menu-tab-btn {
        padding: 8px 16px !important;
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
    }

    .cb-menu-tab-btn::after {
        bottom: -17px !important;
    }

    .cb-menu-item-row {
        padding: 16px 0 !important;
        gap: 16px !important;
        align-items: flex-start !important;
        position: relative;
    }

    /* Custom visual inline thumbnails styling */
    .cb-menu-item-thumb {
        width: 65px !important;
        height: 65px !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        background-color: #121214;
        box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }

    .cb-menu-item-thumb img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .cb-menu-item-left {
        flex-grow: 1 !important;
        max-width: calc(100% - 155px) !important; /* Reserves space for thumb + price */
    }

    .cb-menu-item-title {
        font-size: 1.25rem !important;
        margin-bottom: 4px !important;
    }

    .cb-menu-item-desc {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    .cb-menu-item-right {
        min-width: 70px;
        text-align: right;
    }

    .cb-menu-item-price {
        font-size: 0.95rem !important;
        display: inline-block;
        margin-top: 4px;
    }

    /* --- Booking Block Mobile --- */
    .cb-booking-block-wrapper {
        grid-template-columns: 1fr !important;
        border-radius: 16px !important;
    }

    .cb-contact-details-box {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
        gap: 32px !important;
    }

    .cb-contact-details-box, .cb-booking-form-box {
        padding: 36px 20px !important;
    }

    .cb-detail-rows-wrap {
        gap: 20px !important;
        margin-bottom: 24px !important;
    }

    .cb-card-val, .cb-card-val a {
        font-size: 1.15rem !important;
    }

    /* --- Mobile Navigation Menu Overlay Scroll --- */
    .cb-mobile-menu {
        overflow-y: auto !important;
        display: block !important;
        padding-top: 110px !important;
        padding-bottom: 40px !important;
    }

    .cb-mobile-menu-inner {
        height: auto !important;
        justify-content: center !important;
        gap: 40px !important;
        padding: 0 20px !important;
    }

    .cb-mobile-menu-link {
        font-size: 2.1rem !important;
        letter-spacing: -0.5px;
    }
}

@media (max-width: 767px) {
    /* --- Concept Collage Mobile Overlap --- */
    .cb-interactive-collage {
        height: 420px !important;
        margin-top: 40px !important;
    }

    .cb-frame-1 {
        width: 78% !important;
        height: 72% !important;
    }

    .cb-frame-2 {
        width: 60% !important;
        height: 58% !important;
    }
    
    .cb-collage-caption {
        font-size: 0.65rem !important;
        padding: 4px 10px !important;
        bottom: 12px !important;
        left: 12px !important;
    }

    /* --- Vibes Schedule Row (small screens) --- */
    .cb-schedule-row {
        padding: 14px 16px !important;
        gap: 10px !important;
    }

    .cb-sched-day {
        min-width: 60px !important;
        font-size: 0.65rem !important;
    }

    .cb-sched-info h5 {
        font-size: 0.95rem !important;
    }

    .cb-sched-time {
        font-size: 0.75rem !important;
        padding: 3px 10px !important;
    }
}

@media (max-width: 400px) {
    /* --- Footer Hours Stacking --- */
    .cb-footer-hours .cb-footer-list li {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }
    
    .cb-footer-hours .cb-footer-list li span:last-child {
        color: var(--cb-accent) !important;
        font-size: 0.85rem !important;
    }
    
    .cb-footer-logo {
        font-size: 1.8rem !important;
    }
}

/* --- Italian Flag capsule language switcher --- */
.cb-lang-switcher {
    display: inline-flex;
    align-items: center;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 9, 10, 0.6);
    padding: 3px;
    gap: 3px;
    margin-right: 16px;
}

.cb-lang-item {
    font-family: var(--cb-font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 20px;
    transition: var(--cb-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cb-text-muted);
    gap: 6px;
}

.cb-flag-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cb-lang-item:hover .cb-flag-icon {
    transform: scale(1.15);
}

.cb-lang-item.cb-lang-en {
    color: var(--cb-accent); /* Italian Basil Green */
}
.cb-lang-item.cb-lang-en:hover, .cb-lang-item.cb-lang-en.active {
    background: var(--cb-accent);
    color: #fff !important;
}

.cb-lang-item.cb-lang-it {
    color: #ffffff; /* White */
}
.cb-lang-item.cb-lang-it:hover, .cb-lang-item.cb-lang-it.active {
    background: #ffffff;
    color: #070708 !important;
}

.cb-lang-item.cb-lang-mk {
    color: var(--cb-primary); /* Italian Tomato Red */
}
.cb-lang-item.cb-lang-mk:hover, .cb-lang-item.cb-lang-mk.active {
    background: var(--cb-primary);
    color: #fff !important;
}

/* --- Inline Contact SVGs --- */
.cb-contact-icon {
    width: 18px;
    height: 18px;
    stroke: var(--cb-accent);
    stroke-width: 1.75px;
    fill: none;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    flex-shrink: 0;
}

.cb-footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.cb-mobile-phone, .cb-mobile-address {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-mobile-menu-footer .cb-contact-icon {
    margin-right: 8px;
}
