/* ============================================
   GRUPPO BM LUXURY - UNIFIED STYLESHEET
   6 Divisions: Piante, Giardini Verticali,
   Statue Erba, Muschio, Prati, Vasi Design
   ============================================ */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');

/* --- CSS VARIABLES --- */
:root {
    --gold: #d6a02c;
    --gold-light: #e0b640;
    --gold-dark: #b8860b;
    --gold-rgb: 214, 160, 44;
    --dark: #0a0a0a;
    --dark-secondary: #0c0c0c;
    --dark-tertiary: #111111;
    --text-primary: #e5e7eb;
    --text-secondary: rgba(255,255,255,0.7);
    --text-muted: rgba(255,255,255,0.4);
    --border-subtle: rgba(255,255,255,0.05);
    --border-light: rgba(255,255,255,0.1);
    --border-gold: rgba(214,160,44,0.2);
    --card-bg: rgba(255,255,255,0.03);
    --card-bg-hover: rgba(255,255,255,0.06);
    --glass-bg: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.05);
    --lux-easing: cubic-bezier(0.16, 1, 0.3, 1);
    --smooth-easing: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* --- DIVISION COLOR THEMES --- */
body.div-piante { --div-accent: #2e7d32; --div-accent-rgb: 46,125,50; }
body.div-giardini { --div-accent: #388e3c; --div-accent-rgb: 56,142,60; }
body.div-statue { --div-accent: #558b2f; --div-accent-rgb: 85,139,47; }
body.div-muschio { --div-accent: #6d4c41; --div-accent-rgb: 109,76,65; }
body.div-prati { --div-accent: #43a047; --div-accent-rgb: 67,160,71; }
body.div-vasi { --div-accent: #8d6e63; --div-accent-rgb: 141,110,99; }

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

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    background-color: #0a0a0a;
}
html.smooth-scroll {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--text-primary);
    overflow-x: hidden;
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0;
}
body.page-loaded {
    opacity: 1;
    transition: opacity 0.35s ease;
}

h1, h2, h3, h4, .serif { font-family: 'Cormorant Garamond', serif; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* --- GOLD GRADIENT TEXT --- */
.gold-gradient {
    background: linear-gradient(45deg, #B8860B, #F3E5AB, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- GLASS EFFECT --- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* --- PRELOADER --- */
#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 2.2s ease, visibility 2.2s ease, filter 2.2s ease;
}
#preloader.fade-out { opacity: 0; filter: blur(8px); visibility: hidden; }
#preloader .preloader-content {
    text-align: center;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    filter: blur(6px);
}
#preloader.loaded .preloader-content {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition: all 2.4s var(--lux-easing);
}
#preloader.fade-out .preloader-content {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    filter: blur(8px);
    transition: all 1.8s ease;
}
#preloader .preloader-logo {
    height: 240px;
    width: auto;
    margin-bottom: 24px;
}
#preloader .preloader-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    font-style: italic;
    text-transform: uppercase;
}

/* --- PAGE TRANSITION --- */
#page-transition {
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    z-index: 9998;
    pointer-events: none;
    opacity: 1;
    will-change: opacity;
    transition: opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
#page-transition.revealed { opacity: 0; }
#page-transition.active { opacity: 1; pointer-events: all; }
#page-transition.fade-out { opacity: 0; transition: opacity 0.3s var(--lux-easing); }

@keyframes pageEnter {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}
body.page-entering { animation: pageEnter 0.4s var(--lux-easing) forwards; }

@keyframes contentReveal { 0% { opacity: 0; } 100% { opacity: 1; } }

/* ============================================
   NAVIGATION
   ============================================ */
#main-nav {
    position: fixed;
    width: 100%;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.6s var(--lux-easing), background-color 0.4s ease, padding 0.4s ease;
}
#main-nav.nav-hidden { transform: translateY(-100%); }
#main-nav.nav-scrolled {
    background-color: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding-top: 16px;
    padding-bottom: 16px;
}

.nav-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}
#main-nav.nav-scrolled .nav-logo img { height: 80px; }

.nav-right { display: flex; align-items: center; gap: 24px; }

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.lang-switcher-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding: 0 10px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
    border: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.lang-switcher-link:hover {
    color: #fff;
    border-color: rgba(214, 160, 44, 0.35);
}

.lang-switcher-link.active {
    color: #111;
    background: #d6a02c;
    border-color: #d6a02c;
}


/* Hamburger */
#nav-trigger {
    display: flex;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    padding: 8px;
}
#nav-trigger .trigger-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
}
#nav-trigger:hover .trigger-label { opacity: 1; }

.hamburger-lines { display: flex; flex-direction: column; gap: 7px; }
.hamburger-lines span {
    display: block;
    width: 34px;
    height: 2px;
    background: rgba(255,255,255,0.9);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
#nav-trigger.active .hamburger-lines span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
#nav-trigger.active .hamburger-lines span:nth-child(2) { opacity: 0; }
#nav-trigger.active .hamburger-lines span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Logo */
.mobile-logo-wrap {
    display: none;
    position: fixed;
    top: 10px;
    left: 24px;
    z-index: 9990;
}
.mobile-logo-wrap img { height: 80px; width: auto; object-fit: contain; }

/* ============================================
   MENU A SCHERMO INTERO OVERLAY
   ============================================ */
#menu-overlay {
    position: fixed;
    inset: 0;
    background: #080808;
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-clip-path: circle(0% at 95% 5%);
    clip-path: circle(0% at 95% 5%);
    visibility: hidden;
    transition: -webkit-clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1), clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s 0.8s;
    overflow-y: auto;
}
#menu-overlay.open {
    -webkit-clip-path: circle(150% at 95% 5%);
    clip-path: circle(150% at 95% 5%);
    visibility: visible;
    transition: -webkit-clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1), clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s 0s;
}

.menu-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 80px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.menu-label {
    color: var(--gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-bottom: 24px;
    opacity: 0.6;
}

.menu-nav { display: flex; flex-direction: column; gap: 1px; }

.menu-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #fff;
    display: inline-block;
    transition: all 0.4s ease;
    padding: 1px 0;
    position: relative;
}
.menu-link .num {
    font-size: 0.4em;
    vertical-align: middle;
    margin-right: 16px;
    opacity: 0.25;
    font-family: 'Montserrat', sans-serif;
}
.menu-link:hover { color: var(--gold); padding-left: 16px; }
.menu-link.menu-division {
    color: #e8d4a0;
    font-weight: 400;
    text-shadow: 0 0 14px rgba(214, 160, 44, 0.28);
}
.menu-link.menu-division .num {
    opacity: 0.95;
    color: #c0392b;
    font-size: 0.5em;
    font-weight: 600;
}
.menu-link.menu-division:hover {
    color: #f2c35a;
    text-shadow: 0 0 22px rgba(214, 160, 44, 0.45);
}
.menu-link.menu-sub {
    font-size: 1rem;
    padding-left: 32px;
    opacity: 0.6;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    letter-spacing: 0.5px;
}
.menu-link.menu-sub .num { display: none; }
.menu-link.menu-sub:hover { opacity: 1; padding-left: 40px; }

.menu-link.menu-highlight {
    color: #c0392b;
    font-weight: 400;
    text-shadow: 0 0 20px rgba(192, 57, 43, 0.3);
}
.menu-link.menu-highlight .num { opacity: 0.5; color: #c0392b; }
.menu-link.menu-highlight:hover { color: #e74c3c; text-shadow: 0 0 25px rgba(231, 76, 60, 0.4); }

.menu-divider {
    height: 1px;
    width: 64px;
    background: rgba(255,255,255,0.1);
    margin: 6px 0;
}

.menu-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 64px;
    border-left: 1px solid var(--border-subtle);
    gap: 40px;
}
.menu-right img { height: 80px; width: auto; object-fit: contain; opacity: 0.8; }
.menu-right-text {
    font-size: 0.75rem;
    opacity: 0.4;
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    max-width: 280px;
}


/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 1s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero Title Zoom-In */
@keyframes heroZoomIn {
    0% { opacity: 0; transform: scale(0.82); letter-spacing: 0.15em; filter: blur(3px); }
    100% { opacity: 1; transform: scale(1); letter-spacing: 0.02em; filter: blur(0px); }
}
.hero-title-zoom { opacity: 0; transform: scale(0.82); }
.hero-title-zoom.active { animation: heroZoomIn 3.5s var(--smooth-easing) forwards; }
.hero-subtitle-zoom {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(2px);
}
.hero-subtitle-zoom.active {
    animation: heroSubtitleIn 1.4s var(--smooth-easing) 0.25s forwards;
}
@keyframes heroSubtitleIn {
    0% { opacity: 0; transform: translateY(16px); filter: blur(2px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 24px; }
.section-dark { background: var(--dark); }
.section-darker { background: var(--dark-secondary); }
.section-darkest { background: #050505; }

.container { max-width: 1280px; margin: 0 auto; width: 100%; }

.section-label {
    color: var(--gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gold);
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.8;
}

/* ============================================
   HOME HERO SLIDER
   ============================================ */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 10; }

.hero-slide-image, .hero-slide-video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transform: scale(1.15);
    transition: transform 12s cubic-bezier(0.1, 0, 0.2, 1);
}
.hero-slide.active .hero-slide-image,
.hero-slide.active .hero-slide-video { transform: scale(1); }
.hero-slide-video { pointer-events: none; }

.hero-content-box {
    position: absolute;
    width: 90%;
    max-width: 650px;
    background: rgba(0, 0, 0, 0.75);
    padding: 24px 45px;
    z-index: 20;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(30px);
    transition: opacity 0.8s ease, clip-path 1.2s var(--lux-easing), transform 1.2s var(--lux-easing);
    transition-delay: 1.5s;
}
.hero-content-box::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px;
    height: 0%;
    background: var(--gold);
    transition: height 1s var(--lux-easing);
    transition-delay: 2.3s;
}
.hero-slide.active .hero-content-box {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
}
.hero-slide.active .hero-content-box::before { height: 100%; }

.pos-bl { bottom: 8%; left: 5%; }
.pos-br { bottom: 8%; right: 5%; }
.pos-tl { top: 12%; left: 5%; }
.pos-tr { top: 12%; right: 5%; }

.hero-content-box .slide-logo,
.hero-content-box h2,
.hero-content-box p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s var(--lux-easing);
}
.hero-slide.active .hero-content-box .slide-logo { opacity: 1; transform: translateY(0); transition-delay: 2.1s; }
.hero-slide.active .hero-content-box h2 { opacity: 1; transform: translateY(0); transition-delay: 2.3s; }
.hero-slide.active .hero-content-box p { opacity: 1; transform: translateY(0); transition-delay: 2.5s; }

.hero-content-box .slide-logo {
    max-width: 140px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}
.hero-content-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-content-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

/* Nav Controls */
.hero-nav-controls {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 80;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.hero-nav-controls.visible { opacity: 1; }
#menu-overlay.open ~ .hero-slider-container .hero-nav-controls {
    opacity: 0 !important;
    pointer-events: none !important;
}
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.5s var(--lux-easing);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    padding: 30px;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    pointer-events: auto;
}
.hero-nav-btn-prev { left: 20px; }
.hero-nav-btn-next { right: 20px; }
.hero-nav-btn:hover { color: #fff; transform: translateY(-50%) scale(1.15); }

/* Progress Bar */
.progress-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    z-index: 101;
    background: rgba(255,255,255,0.05);
}
.progress-bar { height: 100%; background: var(--gold); width: 0%; }

/* Intro Overlay */
#intro-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--dark);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 1;
    transition: transform 2.2s var(--lux-easing), opacity 1.8s ease;
}
#intro-overlay.reveal-intro { transform: scale(1.15); opacity: 0; pointer-events: none; }
#intro-overlay::before {
    content: '';
    position: absolute;
    width: 150vw; height: 150vw;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 45%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    animation: glowPulse 6s infinite ease-in-out;
    pointer-events: none;
}
@keyframes glowPulse { 0%, 100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.08); opacity: 0.5; } }
.intro-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(120px);
    filter: blur(20px);
    padding: 0 20px;
    width: 100%;
}
#intro-overlay.start-anim .intro-content { animation: fadeInUpSoft 2.8s var(--lux-easing) forwards; }
@keyframes fadeInUpSoft {
    0% { opacity: 0; transform: translateY(120px); filter: blur(20px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.intro-logo-img {
    max-width: min(240px, 60vw);
    margin: 0 auto 20px;
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(255,255,255,0.15));
}
.intro-line-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 8vw, 3rem);
    letter-spacing: clamp(6px, 3vw, 16px);
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
}
.intro-line-sub {
    font-size: clamp(0.6rem, 2vw, 0.75rem);
    letter-spacing: clamp(4px, 2vw, 10px);
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 100;
    margin: 8px 0;
}

/* ============================================
   PAGE HERO (Inner Pages / Divisions)
   ============================================ */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}
.scroll-arrow {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: arrowBounce 1.8s ease-in-out infinite;
}
.scroll-arrow svg {
    width: 30px;
    height: 30px;
    color: rgba(255,255,255,0.85);
    filter: drop-shadow(0 0 8px rgba(214,160,44,0.55));
    display: block;
}
.scroll-arrow svg + svg { opacity: 0.35; margin-top: -12px; }
@keyframes arrowBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50%       { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img, .page-hero-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 1;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}
.page-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}
.page-hero-content .hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Align and animate all category inner-page heroes consistently */
.page-hero .page-hero-content,
.bm-page-hero .bm-page-hero-content {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}
.page-hero h1.hero-title-zoom,
.bm-page-hero h1.hero-title-zoom {
    opacity: 0;
    transform: scale(0.82);
    letter-spacing: 0.12em;
    filter: blur(3px);
    transform-origin: center;
}

/* Force inner-page hero block to match category-home look */
.page-hero,
.bm-page-hero {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    text-align: center !important;
}
.page-hero .page-hero-content,
.bm-page-hero .bm-page-hero-content {
    text-align: center !important;
    padding: 0 20px !important;
    max-width: 1100px !important;
}
.page-hero > .bm-section-label,
.page-hero > h1,
.page-hero > .bm-section-desc,
.page-hero > .hero-subtitle,
.bm-page-hero > .bm-section-label,
.bm-page-hero > h1,
.bm-page-hero > .bm-section-desc,
.bm-page-hero > .hero-subtitle {
    position: relative !important;
    z-index: 3 !important;
}
.page-hero h1.bm-luxury-title,
.bm-page-hero h1.bm-luxury-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 300 !important;
    font-size: clamp(2.4rem, 6.2vw, 5rem) !important;
    color: #fff !important;
    text-transform: uppercase !important;
    line-height: 1.15 !important;
    margin: 10px 0 !important;
}
.page-hero .bm-section-desc,
.page-hero .hero-subtitle,
.bm-page-hero .bm-section-desc,
.bm-page-hero .hero-subtitle {
    color: #fff !important;
    opacity: 0.78 !important;
    font-size: clamp(0.95rem, 2.1vw, 1.15rem) !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    font-weight: 300 !important;
    margin: 0 auto !important;
    max-width: 780px !important;
}

/* ============================================
   DIVISION HERO (Full-screen slider for divisions)
   ============================================ */
.bm-hero-fullwidth {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bm-hero-slider { position: absolute; inset: 0; z-index: 0; }
.bm-hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transform: scale(1.15);
    filter: blur(15px);
    transition: opacity 3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 12s cubic-bezier(0.1, 0, 0.2, 1),
                filter 3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}
.bm-hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.bm-hero-slide.active {
    opacity: 0.60;
    transform: scale(1) !important;
    filter: blur(0px);
    z-index: 2;
}
.bm-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 40%, transparent 60%, rgba(0,0,0,0.7));
    z-index: 10;
}
.bm-hero-content { position: relative; z-index: 20; text-align: center; padding: 0 20px; }

/* Luxury H1 Animation */
.bm-luxury-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 300 !important;
    font-size: clamp(2.8rem, 6vw, 5rem) !important;
    color: #fff !important;
    -webkit-text-fill-color: unset;
    opacity: 0;
    transform: scale(0.82);
    letter-spacing: 0.15em !important;
    filter: blur(3px);
    line-height: 1.15 !important;
    text-transform: uppercase;
}
.bm-luxury-title .italic-serif { font-style: italic; text-transform: none; display: block; }
.bm-luxury-title.active { animation: heroZoomIn 3.5s var(--smooth-easing) forwards; }

.bm-section-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
    opacity: 0.8;
    text-align: center;
}

.bm-section-desc {
    font-size: 1.3rem !important;
    color: var(--text-primary) !important;
    font-weight: 300 !important;
    opacity: 0.9;
    margin-top: 15px !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}

/* ============================================
   DIVISION PAGE WRAPPER
   ============================================ */
.div-page-wrapper {
    width: 100%;
    max-width: 100%;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.div-page-wrapper * { box-sizing: border-box; }

.div-page-wrapper h1:not(.bm-luxury-title),
.div-page-wrapper h2 {
    font-family: 'Montserrat', sans-serif !important;
    color: var(--gold) !important;
    margin-top: 0;
    line-height: 1.1;
    font-weight: 300 !important;
    text-align: center;
}
.div-page-wrapper h1:not(.bm-luxury-title) { font-size: clamp(2.2rem, 4.5vw, 3.2rem) !important; margin-bottom: 20px; }
.div-page-wrapper h2 { font-size: clamp(1.8rem, 4vw, 2.8rem) !important; margin-bottom: 25px; }
.div-page-wrapper h3 {
    font-family: 'Montserrat', sans-serif !important;
    color: var(--gold) !important;
    font-weight: 600 !important;
}

/* Inner Section Header */
.bm-hero-inner {
    width: 100%;
    max-width: 1265px;
    padding: 30px 20px 10px 20px;
    text-align: center;
}

/* Design Separator */
.bm-modern-divider {
    width: 100%;
    max-width: 1087px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.3;
    margin: 50px auto 70px auto;
    position: relative;
}
.bm-modern-divider::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px; height: 8px;
    background: var(--gold);
    border: 2px solid #000;
}

/* Product Row Sections */
.bm-product-section { width: 100%; max-width: 1265px; padding: 0 20px; }
.bm-product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.bm-product-row.reverse { direction: rtl; }
.bm-product-row.reverse > * { direction: ltr; }
.bm-product-text { position: relative; }
.bm-product-text .bm-section-label { text-align: left; }
.bm-product-text h2 { text-align: left !important; font-size: clamp(1.6rem, 3vw, 2.2rem) !important; }
.bm-product-text p {
    font-size: 1.05rem !important;
    color: var(--text-primary) !important;
    font-weight: 300 !important;
    line-height: 1.7;
    margin-bottom: 15px;
}
.bm-product-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

/* Green Badge Animation */
.bm-green-badge {
    width: 125px; height: auto;
    margin-bottom: 15px;
    opacity: 0;
    transform: scale(0.3) rotate(-180deg);
    filter: blur(20px);
    transition: all 1.5s var(--lux-easing);
}
.bm-green-badge.visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0);
}

/* CTA Button */
.bm-cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 36px;
    background: var(--gold);
    color: #000 !important;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
}
.bm-cta-btn:hover {
    background: rgba(var(--gold-rgb), 0.9);
    box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.4);
    transform: translateY(-2px);
}

/* Product Slider */
.bm-product-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.bm-product-slider-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}
.bm-product-slider-image.active { opacity: 1; }

/* Projects Grid */
.bm-projects-section { width: 100%; max-width: 1265px; padding: 0 20px; text-align: center; }
.bm-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.bm-project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border-gold);
    transition: all 0.4s ease;
}
.bm-project-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.bm-project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bm-project-card:hover img { transform: scale(1.08); }
.bm-project-title {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Advantage Cards */
.bm-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1087px;
    padding: 0 20px;
    margin: 40px auto 0 auto;
}
.bm-advantage-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
}
.bm-advantage-card:hover {
    background: rgba(var(--gold-rgb), 0.05);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.bm-advantage-icon {
    width: 60px; height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(var(--gold-rgb), 0.5);
    color: var(--gold);
    background: radial-gradient(circle at 30% 30%, rgba(var(--gold-rgb), 0.12), transparent 65%);
    transition: all 0.3s ease;
}
.bm-advantage-card:hover .bm-advantage-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.4);
}
.bm-advantage-card h3 { font-size: 1.1rem !important; text-transform: uppercase; letter-spacing: 1.5px; margin: 0 !important; }
.bm-advantage-card p { font-size: 0.95rem !important; color: var(--text-primary) !important; font-weight: 300 !important; margin: 0 !important; line-height: 1.6; }

/* Marquee */
.bm-marquee-section {
    width: 100%;
    padding: 60px 0 40px 0;
    background: linear-gradient(180deg, transparent, rgba(var(--gold-rgb), 0.02), transparent);
    margin: 20px 0;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.bm-track { display: flex; width: max-content; animation: scrollLogos 40s linear infinite; align-items: center; }
.bm-track:hover { animation-play-state: paused; }
.bm-logo-box { width: 200px; padding: 0 10px; display: flex; justify-content: center; align-items: center; }
.bm-logo-box img {
    max-width: 100%; max-height: 145px; opacity: 0.5; filter: grayscale(100%);
    transition: all 0.5s ease; cursor: pointer;
}
.bm-logo-box img:hover {
    transform: scale(1.1) translateY(-5px);
    opacity: 1;
    filter: grayscale(0%) drop-shadow(0 0 10px rgba(var(--gold-rgb), 0.4));
}
@keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   CONTACT FORM (Division-specific white section)
   ============================================ */
.bm-form-centered-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 80px 20px;
    background: #fff;
    color: #1a1a1a;
}
.bm-form-centered-section .bm-hero-inner { max-width: 920px; margin: 0 auto; }
.bm-form-centered-section .bm-section-label { color: var(--gold); }
.bm-form-centered-section h2 { color: #1a1a1a !important; }
.bm-form-centered-section .bm-section-desc { color: #333 !important; }
.bm-form-centered-section .bm-form-side { max-width: 920px; margin: 0 auto; }

.bm-form-side {
    background: rgba(0,0,0,0.03);
    border: 1px solid #444;
    padding: 30px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    animation: goldPulse 3s ease-in-out infinite;
}
@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(214, 160, 44, 0.15); }
    50% { box-shadow: 0 0 25px rgba(214, 160, 44, 0.45); }
}
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 0.7rem; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 10px 12px; background: #fff;
    border: 1px solid #ccc; color: #1a1a1a;
    font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { min-height: 75px; resize: vertical; }
.submit-btn {
    background: var(--gold); color: #000; border: none; padding: 14px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    cursor: pointer; transition: all 0.3s ease; margin-top: 10px;
}
.submit-btn:hover {
    background: rgba(var(--gold-rgb), 0.9);
    box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.4);
}
.status-message {
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    font-size: 0.9rem;
}
.status-message.success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: #22c55e; }
.status-message.error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: #ef4444; }

/* ============================================
   FOOTER
   ============================================ */
.bm-footer {
    background: #000;
    padding: 80px 24px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}
.footer-logo {
    height: 80px;
    width: auto;
    margin: 0 auto 32px;
    opacity: 0;
    transform: scale(0.3) rotate(-180deg);
    filter: blur(20px);
    transition: all 1.5s var(--lux-easing);
}
.footer-logo.visible { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0); }

.footer-division-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-style: italic;
}

.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-light);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.contact-card-icon { color: var(--gold); width: 20px; height: 20px; flex-shrink: 0; }
.contact-card-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.6; }
.contact-card-value { font-size: 0.85rem; letter-spacing: 0.1em; }

.footer-hours {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-copyright {
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5em;
}
.footer-copyright a {
    color: rgba(255,255,255,0.22);
    text-transform: uppercase;
    letter-spacing: 0.5em;
    text-decoration: none;
}

/* Social Icons Footer */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}
.footer-social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--gold-rgb), 0.2);
}
.footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Footer Navigation Links */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    max-width: 860px;
    margin: 0 auto 40px;
    padding: 36px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}
.footer-nav-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(214,160,44,0.75);
    margin: 0 0 14px;
}
.footer-nav-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-nav-col ul li {
    margin-bottom: 8px;
}
.footer-nav-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.25s ease;
    line-height: 1.4;
}
.footer-nav-col ul li a:hover {
    color: rgba(255,255,255,0.85);
}
@media (max-width: 600px) {
    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }
    .footer-nav-col:last-child {
        grid-column: 1 / -1;
    }
}
@media (max-width: 380px) {
    .footer-nav {
        grid-template-columns: 1fr;
    }
    .footer-nav-col:last-child {
        grid-column: auto;
    }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 84px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(214,160,44,0.7);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 9000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: rgba(214,160,44,0.95); transform: scale(1.1); }

/* Hero scroll cue (index pages) */
.bm-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: 68px;
    height: 56px;
    border: 1px solid rgba(214,160,44,0.28);
    border-radius: 999px;
    background: radial-gradient(60% 90% at 50% 20%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 65%, transparent 100%);
    box-shadow: 0 6px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
    backdrop-filter: blur(2px);
    cursor: pointer;
    z-index: 40;
    opacity: 0.88;
    animation: bmScrollCueFade 1.8s ease-in-out infinite;
}
.bm-scroll-cue::before {
    content: '';
    position: absolute;
    top: 72%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-right: 2px solid rgba(255,255,255,0.96);
    border-bottom: 2px solid rgba(255,255,255,0.96);
    filter: drop-shadow(0 0 6px rgba(214,160,44,0.42));
    transform: translate(-50%, -60%) rotate(45deg);
}
.bm-scroll-cue::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, rgba(214,160,44,0.95) 0%, rgba(255,255,255,0.95) 100%);
    box-shadow: 0 0 10px rgba(214,160,44,0.45);
    transform: translateX(-50%);
}
.bm-scroll-cue:hover {
    opacity: 1;
    border-color: rgba(214,160,44,0.52);
    box-shadow: 0 10px 28px rgba(0,0,0,0.42), 0 0 22px rgba(214,160,44,0.28), inset 0 1px 0 rgba(255,255,255,0.25);
}
.hero-slider-container,
.bm-hero-fullwidth {
    position: relative;
}
@keyframes bmScrollCueFade {
    0%, 100% { opacity: 0.48; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(5px); }
}

/* Success Modal */
#contact-success-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 210;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}
#contact-success-modal.active { display: flex; }
.success-content {
    background: #1a1a1a;
    border: 1px solid var(--gold);
    padding: 40px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    border-radius: 4px;
}
.success-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.success-content p { color: #ccc; font-size: 0.9rem; margin-bottom: 24px; }
.success-content button {
    background: var(--gold); color: #000; border: none;
    padding: 12px 24px; text-transform: uppercase;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
}

/* Watermark */
.bm-watermark-logo {
    position: fixed;
    left: 60px; top: 80px;
    height: calc(100vh - 100px);
    width: auto;
    opacity: 0.20;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    object-fit: contain;
}

/* Global hard-disable: no watermark anywhere on the site */
.bm-watermark-logo {
    display: none !important;
}

/* Statue category intro: logo only, no preloader brand text */
body.div-statue #preloader .preloader-brand {
    display: none !important;
}

/* ============================================
   HOME - DIVISIONS GRID
   ============================================ */
.divisions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.division-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.division-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.division-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.division-card:hover img { transform: scale(1.08); }
.division-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.division-card-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: 8px;
}
.division-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 300;
    line-height: 1.2;
}
.division-card-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    line-height: 1.5;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--gold); }
.text-white { color: #fff; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.pt-120 { padding-top: 120px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* Image Protection */
img, video {
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-question {
    width: 100%; text-align: left; background: none;
    border: none; color: var(--text-primary);
    padding: 20px 0; font-size: 1rem;
    display: flex; justify-content: space-between;
    align-items: center; cursor: pointer;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-icon { font-size: 1.5rem; transition: transform 0.3s; color: var(--gold); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner {
    padding: 0 0 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .grid-3, .divisions-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .menu-inner { grid-template-columns: 1fr; gap: 32px; }
    .menu-right { display: none; }
    .bm-advantage-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    #main-nav { padding: 16px 20px; justify-content: flex-end; }
    #main-nav .nav-right { width: auto; margin-left: auto; justify-content: flex-end; }
    #main-nav .nav-logo { display: none; }
    .mobile-logo-wrap { display: block; }
    body:not(.home-page) .mobile-logo-wrap { top: 4px; left: 20px; }
    .lang-switcher {
        gap: 4px;
        padding: 4px;
        margin-right: 4px;
    }
    .lang-switcher-link {
        min-width: 38px;
        height: 30px;
        padding: 0 8px;
        font-size: 0.62rem;
        letter-spacing: 0.15em;
    }

    .menu-inner { grid-template-columns: 1fr; padding: 100px 24px; }
    .menu-link { font-size: 1.2rem; padding: 6px 0; }
    .menu-link.menu-sub { font-size: 0.85rem; padding-left: 24px; }

    .grid-2, .grid-3, .grid-4, .divisions-grid { grid-template-columns: 1fr; }
    .bm-product-row { grid-template-columns: 1fr; gap: 30px; }
    .bm-product-row.reverse { direction: ltr; }
    .bm-product-text .bm-section-label, .bm-product-text h2 { text-align: center !important; }
    .bm-product-text p { text-align: center; }
    .bm-product-text { text-align: center; }
    .bm-projects-grid { grid-template-columns: 1fr 1fr; }
    .bm-advantage-grid { grid-template-columns: 1fr; max-width: 500px; }

    .section { padding: 60px 16px; }

    .contact-form input, .contact-form textarea,
    input[type="text"], input[type="email"], input[type="tel"],
    textarea, select { font-size: 16px !important; min-height: 44px; }

    .hero-nav-controls { display: none; }
    .hero-content-box {
        top: 50% !important; left: 50% !important;
        bottom: auto !important; right: auto !important;
        width: 85%; max-width: 90%; padding: 25px;
        background: rgba(0, 0, 0, 0.5);
        border-left: 3px solid var(--gold);
        clip-path: none !important;
        transform: translate(-50%, -50%) !important;
    }
    .hero-slide.active .hero-content-box { transform: translate(-50%, -50%) !important; }
    .hero-content-box h2 { font-size: 1.8rem; text-align: center; }
    .hero-content-box p { font-size: 0.95rem; text-align: center; }
    .hero-content-box .slide-logo { max-width: 120px; margin: 0 auto 15px; }

    .page-hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .page-hero { min-height: 45vh; }
    .page-hero-content { padding: 100px 16px 60px; }
    .scroll-top { bottom: 92px; right: 20px; width: 42px; height: 42px; font-size: 18px; }
    .footer-logo { height: 60px; }
    .bm-footer { padding: 50px 16px; }
    .bm-watermark-logo { display: none; }
    #preloader .preloader-logo { height: 160px; }
    .bm-form-side { padding: 20px; }
}

@media (max-width: 480px) {
    .footer-contacts { flex-direction: column; align-items: center; }
    .section { padding: 40px 12px; }
    .page-hero { min-height: 40vh; }
    .page-hero-content { padding: 90px 12px 50px; }
    .page-hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
    .hero-content-box { width: 90%; max-width: 95%; padding: 18px; }
    .hero-content-box h2 { font-size: 1.4rem; }
    .bm-footer { padding: 40px 12px; }
    .footer-logo { height: 50px; }
    #preloader .preloader-logo { height: 120px; }
    .bm-form-side { padding: 15px; }
    .contact-card { width: 100%; justify-content: center; min-height: 48px; }
    .bm-projects-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ============================================
   MOBILE FIX — EXTRA CORRECTIONS
   ============================================ */


/* 2. Hero fullwidth: riduci min-height su mobile per non bloccare troppo schermo */
@media (max-width: 768px) {
    .bm-hero-fullwidth {
        height: 70vh;
        min-height: 400px;
    }
}
@media (max-width: 480px) {
    .bm-hero-fullwidth {
        height: 60vh;
        min-height: 320px;
    }
}

/* 3. .bm-section-desc font-size ridotto su mobile */
@media (max-width: 768px) {
    .bm-section-desc {
        font-size: 1.05rem !important;
    }
}
@media (max-width: 480px) {
    .bm-section-desc {
        font-size: 0.95rem !important;
    }
}

/* 4. Scroll-to-top: spostato più su per non sovrapporsi al chatbot */
@media (max-width: 768px) {
    .scroll-top {
        bottom: 92px;
        right: 16px;
    }
}

/* 5. Hero nav controls: visibili fino a 900px (tablet orizzontale) */
@media (min-width: 769px) and (max-width: 900px) {
    .hero-nav-controls { display: block; }
    .hero-nav-btn { font-size: 2rem; padding: 20px; }
}

/* 6. Product slider: indicatore puntini visivi per orientamento su mobile */
@media (max-width: 768px) {
    .bm-product-slider {
        touch-action: pan-y;
        cursor: grab;
    }
}

/* 7. Testo nei product row: padding leggero sui lati su mobile */
@media (max-width: 600px) {
    .bm-product-section {
        padding: 0 12px;
    }
    .bm-projects-section {
        padding: 0 12px;
    }
    .bm-advantage-grid {
        padding: 0 12px;
    }
}

/* 8. Correggi hero-content-box su mobile molto piccolo */
@media (max-width: 380px) {
    .hero-content-box {
        width: 94%;
        padding: 14px;
    }
    .hero-content-box h2 {
        font-size: 1.2rem;
    }
    .hero-content-box p {
        font-size: 0.85rem;
    }
}

/* 9. Menu overlay: prevent content cut on short screens */
@media (max-width: 768px) {
    #menu-overlay {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .menu-inner {
        padding: 80px 20px 40px 20px;
    }
}

/* 10. Preloader logo su schermi molto piccoli */
@media (max-width: 360px) {
    #preloader .preloader-logo { height: 100px; }
    .mobile-logo-wrap img { height: 60px; }
}
/* --- SCENOGRAPHIC BOTANICAL CURSOR --- */
@media (hover: hover) and (pointer: fine) {
    body.bm-custom-cursor-ready,
    body.bm-custom-cursor-ready a,
    body.bm-custom-cursor-ready button,
    body.bm-custom-cursor-ready [role="button"],
    body.bm-custom-cursor-ready .hero-link,
    body.bm-custom-cursor-ready .menu-link,
    body.bm-custom-cursor-ready .bm-about-cta,
    body.bm-custom-cursor-ready .submit-btn {
        cursor: none !important;
    }

    body.bm-custom-cursor-ready input,
    body.bm-custom-cursor-ready textarea,
    body.bm-custom-cursor-ready select,
    body.bm-custom-cursor-ready [contenteditable="true"] {
        cursor: text !important;
    }

    .bm-cursor-aura,
    .bm-cursor-core,
    .bm-cursor-trail {
        position: fixed;
        left: 0;
        top: 0;
        pointer-events: none;
        opacity: 0;
        z-index: 2147483000;
        will-change: left, top, opacity;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .bm-cursor-aura {
        width: 54px;
        height: 54px;
        margin: -27px 0 0 -27px;
        border-radius: 50%;
        background:
            radial-gradient(circle, rgba(214,160,44,0.24) 0%, rgba(62,116,74,0.14) 42%, rgba(214,160,44,0) 72%);
        border: 1px solid rgba(214,160,44,0.22);
        filter: blur(0.2px);
        transition: opacity 0.25s ease, width 0.22s ease, height 0.22s ease, margin 0.22s ease, border-color 0.22s ease;
    }

    .bm-cursor-core {
        width: 18px;
        height: 18px;
        margin: -9px 0 0 -9px;
        border-radius: 50%;
        border: 1px solid rgba(214,160,44,0.88);
        background: rgba(8, 10, 8, 0.34);
        box-shadow:
            0 0 0 1px rgba(255,255,255,0.10),
            0 0 18px rgba(214,160,44,0.28);
        transition: opacity 0.18s ease, width 0.18s ease, height 0.18s ease, margin 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }

    .bm-cursor-core::before,
    .bm-cursor-core::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform-origin: 50% 90%;
    }

    .bm-cursor-core::before {
        width: 3px;
        height: 13px;
        margin: -4px 0 0 -1px;
        background: linear-gradient(180deg, rgba(214,160,44,0.92), rgba(77,125,72,0.72));
        border-radius: 999px;
        transform: rotate(-18deg);
    }

    .bm-cursor-core::after {
        width: 10px;
        height: 15px;
        margin: -13px 0 0 -2px;
        border-radius: 100% 0 100% 0;
        background: linear-gradient(135deg, rgba(196,226,164,0.96), rgba(70,132,76,0.90) 62%, rgba(36,83,47,0.95));
        box-shadow: inset 1px 1px 0 rgba(255,255,255,0.34), 0 0 12px rgba(111,174,91,0.35);
        transform: rotate(-34deg);
    }

    .bm-cursor-trail {
        width: 8px;
        height: 8px;
        margin: -4px 0 0 -4px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(214,160,44,0.58) 0%, rgba(91,150,82,0.30) 48%, rgba(214,160,44,0) 74%);
        filter: blur(0.3px);
        transform: scale(0.8);
        transition: opacity 0.22s ease, width 0.18s ease, height 0.18s ease, margin 0.18s ease;
    }

    .bm-cursor-trail:nth-of-type(3) {
        width: 11px;
        height: 11px;
        margin: -5.5px 0 0 -5.5px;
        opacity: 0.24;
    }

    .bm-cursor-trail:nth-of-type(4) {
        width: 8px;
        height: 8px;
        margin: -4px 0 0 -4px;
        opacity: 0.18;
    }

    .bm-cursor-trail:nth-of-type(5) {
        width: 5px;
        height: 5px;
        margin: -2.5px 0 0 -2.5px;
        opacity: 0.12;
    }

    html.bm-custom-cursor-ready .bm-cursor-aura,
    html.bm-custom-cursor-ready .bm-cursor-core,
    html.bm-custom-cursor-ready .bm-cursor-trail {
        opacity: 1;
    }

    html.bm-custom-cursor-hover .bm-cursor-aura {
        width: 78px;
        height: 78px;
        margin: -39px 0 0 -39px;
        border-color: rgba(214,160,44,0.38);
        background:
            radial-gradient(circle, rgba(214,160,44,0.30) 0%, rgba(72,133,78,0.20) 44%, rgba(214,160,44,0) 76%);
    }

    html.bm-custom-cursor-hover .bm-cursor-core {
        width: 34px;
        height: 34px;
        margin: -17px 0 0 -17px;
        border-color: rgba(214,160,44,0.96);
        background: rgba(214,160,44,0.08);
    }

    html.bm-custom-cursor-hover .bm-cursor-trail {
        width: 12px;
        height: 12px;
        margin: -6px 0 0 -6px;
    }

    html.bm-custom-cursor-down .bm-cursor-aura {
        width: 46px;
        height: 46px;
        margin: -23px 0 0 -23px;
    }

    html.bm-custom-cursor-down .bm-cursor-core {
        width: 14px;
        height: 14px;
        margin: -7px 0 0 -7px;
    }

    html.bm-custom-cursor-hidden .bm-cursor-aura,
    html.bm-custom-cursor-hidden .bm-cursor-core,
    html.bm-custom-cursor-hidden .bm-cursor-trail {
        opacity: 0;
    }
}
