/**
 * Beyond Villa - Luxury Premium Styling
 * Design paradigmi per premium real estate & relocation services
 * Palette: Bianco, Nero, Grigi raffinati - Architettura contemporanea
 *
 * @package BeyondVilla
 */

/* ==========================================================================
   LUXURY DESIGN TOKENS
   ========================================================================== */
:root {
    /* Refined Monochrome Palette */
    --bv-pure-white: #FFFFFF;
    --bv-off-white: #FAFAFA;
    --bv-warm-white: #F8F7F5;
    --bv-silver: #E8E8E8;
    --bv-pearl: #D4D4D4;
    --bv-stone: #9A9A9A;
    --bv-graphite: #5C5C5C;
    --bv-anthracite: #3D3D3D;
    --bv-charcoal: #2A2A2A;
    --bv-jet: #1A1A1A;
    --bv-pure-black: #000000;

    /* Refined Overlays — stronger for text readability */
    --bv-overlay-luxury: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.30) 0%,
        rgba(0, 0, 0, 0.50) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    --bv-overlay-subtle: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );

    /* Premium Shadows */
    --bv-shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.06);
    --bv-shadow-medium: 0 10px 50px rgba(0, 0, 0, 0.1);
    --bv-shadow-luxury: 0 25px 80px rgba(0, 0, 0, 0.12);
    --bv-shadow-hover: 0 30px 100px rgba(0, 0, 0, 0.15);

    /* Premium Typography */
    --bv-font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --bv-font-accent: 'Cormorant Garamond', Georgia, serif;

    /* Refined Transitions */
    --bv-transition-premium: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --bv-transition-elegant: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --bv-transition-smooth: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);

    /* Spacing refinements */
    --bv-spacing-xxxl: 12rem;
}

/* ==========================================================================
   PREMIUM TYPOGRAPHY ENHANCEMENTS
   ========================================================================== */

/* Elegant Display Headlines */
h1, .hero-title {
    font-family: var(--bv-font-display);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

h2 {
    font-family: var(--bv-font-accent);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Elegant Divider - Minimal Black Line */
.luxury-divider {
    width: 80px;
    height: 1px;
    background-color: var(--bv-pure-black);
    margin: var(--bv-spacing-md) auto;
    opacity: 0.3;
}

.luxury-divider--left {
    margin-left: 0;
}

.luxury-divider--white {
    background-color: var(--bv-pure-white);
    opacity: 0.4;
}

/* Premium Label/Eyebrow Text */
.eyebrow,
.luxury-label {
    font-family: var(--bv-font-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--bv-graphite);
    margin-bottom: var(--bv-spacing-sm);
    display: block;
}

.section--dark .eyebrow,
.section--dark .luxury-label {
    color: var(--bv-pearl);
}

/* ==========================================================================
   LUXURY HERO SECTION
   ========================================================================== */
.hero {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero::before {
    background: var(--bv-overlay-luxury);
}

/* Cinematic vignette — darker center where text sits, fades at edges */
.hero--premium::before {
    background:
        radial-gradient(ellipse 80% 70% at 50% 50%,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.25) 50%,
            rgba(0, 0, 0, 0.15) 100%
        );
    will-change: transform;
    transform: translateZ(0);
}

.hero--premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
}

.hero-content {
    max-width: 1000px;
}

.hero-title {
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 8px 60px rgba(0, 0, 0, 0.2);
    font-weight: 300;
}

.hero-subtitle {
    font-weight: 400;
    letter-spacing: 0.03em;
    opacity: 1;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 2px 8px rgba(0, 0, 0, 0.7),
        0 6px 30px rgba(0, 0, 0, 0.4);
}

.hero .btn--outline {
    text-shadow: none;
    background-color: #1a1a1a;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--bv-white);
}

.hero .btn--outline:hover {
    background-color: var(--bv-white);
    color: var(--bv-jet);
    border-color: var(--bv-white);
}

.hero .btn--ghost {
    text-shadow: none;
    background-color: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85);
    border-width: 2px;
}

.hero .btn--ghost:hover {
    background-color: var(--bv-white);
    color: var(--bv-jet);
    border-color: var(--bv-white);
}

/* Hero About — Narrative (redesign 2026) */
.hero--about-narrative {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px var(--bv-spacing-lg) var(--bv-spacing-xl);
    background: linear-gradient(135deg, var(--bv-jet) 0%, var(--bv-pure-black) 100%);
    text-align: center;
}

.hero--about-narrative::before {
    display: none;
}

.hero--about-narrative .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero--about-narrative .hero-title {
    color: var(--bv-pure-white);
    text-shadow: none;
    margin-bottom: var(--bv-spacing-md);
}

.hero-narrative {
    font-size: 1.125rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto var(--bv-spacing-sm);
    font-family: var(--bv-font-accent);
}

@media (max-width: 768px) {
    .hero--about-narrative {
        min-height: auto;
        padding: 80px var(--bv-spacing-md) var(--bv-spacing-lg);
    }

    .hero-narrative {
        font-size: 1rem;
        line-height: 1.8;
    }
}

/* Hero video panel — hidden on mobile (strip used instead) */
.hero__video {
    display: none;
}

/* Desktop: split hero cinematico (testo sx 45% / video dx 55%) */
@media (min-width: 992px) {
    .hero--about-narrative {
        flex-direction: row;
        align-items: stretch;
        text-align: left;
        padding: 0;
        min-height: 85vh;
    }

    .hero--about-narrative .hero-content {
        width: 45%;
        max-width: none;
        padding: 100px var(--bv-spacing-xl);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .hero--about-narrative .hero-title {
        text-align: left;
    }

    .hero--about-narrative .luxury-divider--white {
        margin-left: 0;
        margin-right: auto;
    }

    .hero--about-narrative .hero-narrative {
        text-align: left;
        margin-left: 0;
    }

    .hero__video {
        display: block;
        width: 55%;
        min-height: 85vh;
        position: relative;
        overflow: hidden;
    }

    .hero__video-el {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(0.8);
    }

    .hero__video-overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(
            to right,
            var(--bv-jet) 0%,
            rgba(26, 26, 26, 0.4) 25%,
            transparent 50%
        );
        pointer-events: none;
    }

    /* Hide the mobile video strip on desktop */
    .video-accent {
        display: none;
    }
}

.eyebrow--light {
    color: var(--bv-pearl);
}

.hero-companies {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.hero-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--bv-spacing-lg) var(--bv-spacing-md);
    background: var(--bv-jet);
    text-align: center;
    transition: background 0.4s ease;
}

.hero-company:hover {
    background: var(--bv-charcoal);
}

.hero-company__logo {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--bv-spacing-sm);
    background: var(--bv-white);
    border-radius: 12px;
    padding: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-company:hover .hero-company__logo {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero-company__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hero-company__name {
    font-family: var(--bv-font-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bv-white);
    margin-bottom: 4px;
}

.hero-company__desc {
    font-size: 0.75rem;
    color: var(--bv-pearl);
    opacity: 0.6;
}

@media (max-width: 992px) {
    .hero-companies {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-companies {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-company {
        padding: var(--bv-spacing-md) var(--bv-spacing-sm);
    }

    .hero-company__logo {
        width: 56px;
        height: 56px;
    }
}

/* Scroll Indicator Premium */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--bv-white);
    opacity: 0.6;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-indicator__text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 15px;
}

.scroll-indicator__line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--bv-white), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(15px); opacity: 0.3; }
}

/* ==========================================================================
   PREMIUM BUTTONS
   ========================================================================== */
.btn {
    position: relative;
    overflow: hidden;
    transition: var(--bv-transition-premium);
    font-weight: 500;
    letter-spacing: 0.15em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transition: var(--bv-transition-elegant);
}

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

/* Premium Primary Button */
.btn.btn--primary {
    background-color: #1A1A1A;
    color: #ffffff;
    border: 2px solid #1A1A1A;
}

.btn.btn--primary:hover {
    background-color: #ffffff;
    color: #1A1A1A;
    border-color: #1A1A1A;
    box-shadow: var(--bv-shadow-medium);
}

/* Premium Outline Light */
.btn--outline {
    border-width: 2px;
}

.btn--outline:hover {
    background-color: var(--bv-pure-white);
    color: var(--bv-pure-black);
    box-shadow: var(--bv-shadow-soft);
}

/* Premium Outline Dark */
.btn--outline-dark {
    border-width: 1px;
}

.btn--outline-dark:hover {
    box-shadow: var(--bv-shadow-soft);
}

/* ==========================================================================
   LUXURY SECTIONS
   ========================================================================== */
.section--cream,
.section--warm {
    background-color: var(--bv-warm-white);
}

.section--silver {
    background-color: var(--bv-off-white);
}

.section--charcoal {
    background-color: var(--bv-charcoal);
    color: var(--bv-white);
}

.section--jet {
    background-color: var(--bv-jet);
    color: var(--bv-white);
}

/* Premium Intro Section */
.intro-section--premium {
    max-width: 900px;
}

.intro-section--premium h2 {
    margin-bottom: var(--bv-spacing-sm);
}

.intro-section--premium .luxury-divider {
    margin-bottom: var(--bv-spacing-lg);
}

.intro-section--premium p {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--bv-graphite);
}

/* Lead text - emphasized paragraph */
.lead-text {
    font-size: 1.35rem !important;
    font-weight: 400;
    line-height: 1.7 !important;
    color: var(--bv-jet) !important;
    margin-bottom: var(--bv-spacing-md);
}

@media (max-width: 768px) {
    .lead-text {
        font-size: 1.15rem !important;
    }
}

/* ==========================================================================
   PREMIUM SPLIT SECTIONS
   ========================================================================== */
.split-section {
    min-height: 90vh;
}

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

.split-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bv-overlay-subtle);
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Split section with video background */
.split-image--video {
    position: relative;
}

.split-image--video::after {
    background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
    z-index: 2;
}

.split-image__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease;
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.split-image__bg.is-hidden {
    opacity: 0;
}

.split-image__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
    z-index: 1;
}

.split-image__video.is-playing {
    opacity: 1;
}

.split-content {
    padding: var(--bv-spacing-xxl);
    background-color: var(--bv-warm-white);
}

.split-content .eyebrow {
    margin-bottom: var(--bv-spacing-md);
}

.split-content h2 {
    margin-bottom: var(--bv-spacing-md);
}

.split-content p {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--bv-graphite);
}

/* ==========================================================================
   LUXURY FEATURE CARDS
   ========================================================================== */
.feature-card {
    transition: var(--bv-transition-premium);
}

.feature-card--premium {
    background-color: var(--bv-pure-white);
    padding: var(--bv-spacing-xl);
    border: none;
    box-shadow: var(--bv-shadow-soft);
    position: relative;
}

.feature-card--premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--bv-pure-black);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--bv-transition-premium);
}

.feature-card--premium:hover {
    box-shadow: var(--bv-shadow-luxury);
    transform: translateY(-10px);
}

.feature-card--premium:hover::before {
    transform: scaleX(1);
}

.feature-card__number {
    font-family: var(--bv-font-display);
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--bv-silver);
    line-height: 1;
    margin-bottom: var(--bv-spacing-sm);
}

.section--dark .feature-card__number {
    color: var(--bv-anthracite);
}

/* ==========================================================================
   LUXURY PROJECT CARDS
   ========================================================================== */
.project-card {
    border-radius: 0;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0);
    transition: var(--bv-transition-premium);
    z-index: 2;
    pointer-events: none;
}

.project-card:hover::before {
    border-color: rgba(255, 255, 255, 0.3);
}

.project-card__overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.88) 100%
    );
    padding: var(--bv-spacing-xl);
}

.project-card__title {
    font-family: var(--bv-font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--bv-pure-white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.project-card__excerpt {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.project-card__link {
    color: var(--bv-pure-white);
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
    transition: var(--bv-transition-premium);
}

.project-card__link:hover {
    border-bottom-color: var(--bv-pure-white);
    opacity: 1;
    letter-spacing: 0.15em;
}

/* Project Showcase Premium */
.project-showcase__content {
    background-color: var(--bv-warm-white);
    padding: var(--bv-spacing-xxl);
}

.project-showcase__content h2 {
    font-family: var(--bv-font-display);
    font-weight: 400;
}

/* ==========================================================================
   LUXURY GUARANTEE CARDS
   ========================================================================== */
.guarantee-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: var(--bv-transition-premium);
}

.guarantee-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--bv-shadow-luxury);
    transform: translateY(-5px);
}

.guarantee-card__number {
    color: var(--bv-anthracite);
    font-weight: 300;
}

.guarantee-card__title {
    color: var(--bv-white);
    font-family: var(--bv-font-accent);
}

/* ==========================================================================
   LUXURY TEAM SECTION
   ========================================================================== */
.team-member {
    transition: var(--bv-transition-premium);
}

.team-member--premium {
    padding: var(--bv-spacing-lg);
    background-color: var(--bv-pure-white);
    box-shadow: var(--bv-shadow-soft);
}

.team-member--premium:hover {
    box-shadow: var(--bv-shadow-medium);
    transform: translateY(-5px);
}

.team-member__image {
    width: 200px;
    height: 200px;
    border: none;
    filter: grayscale(100%);
    transition: var(--bv-transition-elegant);
}

.team-member:hover .team-member__image {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.team-member__name {
    font-family: var(--bv-font-display);
    font-weight: 400;
}

.team-member__role,
.team-member h2,
.team-member h4,
.team-member h5,
.team-member__bio h2,
.team-member__bio h4,
.team-member__bio h5 {
    color: var(--bv-stone);
    font-family: var(--bv-font-display);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0;
    margin-bottom: var(--bv-spacing-xs);
}

.team-member__bio {
    margin-top: var(--bv-spacing-sm);
}

.team-member__bio p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--bv-gray-dark);
    margin: 0;
}

/* Team Section Mobile Responsive */
@media (max-width: 768px) {
    .team-member {
        padding: var(--bv-spacing-md) !important;
    }

    .team-member__image {
        width: 140px !important;
        height: 140px !important;
        margin-bottom: var(--bv-spacing-sm) !important;
    }

    .team-member__name {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .team-member__role,
    .team-member h2,
    .team-member h4,
    .team-member h5,
    .team-member__bio h2,
    .team-member__bio h4,
    .team-member__bio h5 {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
    }

    .team-member__bio p {
        font-size: 0.875rem;
        line-height: 1.6;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .team-member__image {
        width: 120px !important;
        height: 120px !important;
    }

    .team-member__name {
        font-size: 1.125rem;
    }

    .team-member__bio p {
        font-size: 0.8125rem;
    }
}

/* ==========================================================================
   LUXURY ACCORDION / FAQ
   ========================================================================== */
.accordion-item {
    border-bottom: 1px solid var(--bv-silver);
}

.accordion-header {
    font-family: var(--bv-font-accent);
    font-size: 1.4rem;
    font-weight: 500;
    padding: var(--bv-spacing-lg) 0;
    transition: var(--bv-transition-premium);
}

.accordion-header:hover {
    padding-left: 10px;
}

.accordion-icon {
    color: var(--bv-graphite);
    font-weight: 300;
    font-size: 2rem;
    transition: var(--bv-transition-premium);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content__inner {
    padding-bottom: var(--bv-spacing-lg);
}

.accordion-content__inner p {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--bv-graphite);
}

/* ── Dark Accordion Variant (FAQ on dark background) ── */
.accordion--dark .accordion-item {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.accordion--dark .accordion-header {
    color: var(--bv-pure-white);
}

.accordion--dark .accordion-header:hover {
    color: var(--bv-pearl);
}

.accordion--dark .accordion-icon {
    color: rgba(255, 255, 255, 0.5);
}

.accordion--dark .accordion-content__inner p {
    color: var(--bv-stone);
}

/* ==========================================================================
   JOURNEY CARDS (Homepage — 3-column process cards)
   ========================================================================== */
.journey-card {
    background: var(--bv-pure-white);
    padding: var(--bv-spacing-lg);
    box-shadow: var(--bv-shadow-soft);
    transition: var(--bv-transition-premium);
    position: relative;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--bv-pure-black);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--bv-transition-premium);
}

.journey-card:hover {
    box-shadow: var(--bv-shadow-luxury);
    transform: translateY(-8px);
}

.journey-card:hover::before {
    transform: scaleX(1);
}

.journey-card__number {
    font-family: var(--bv-font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--bv-silver);
    line-height: 1;
    margin-bottom: var(--bv-spacing-md);
}

.journey-card__title {
    font-family: var(--bv-font-accent);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--bv-jet);
    margin-bottom: var(--bv-spacing-sm);
}

.journey-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--bv-graphite);
    margin: 0;
}

@media (max-width: 768px) {
    .journey-card {
        padding: var(--bv-spacing-md);
        box-shadow: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .journey-card__number {
        font-size: 2rem;
        margin-bottom: var(--bv-spacing-sm);
    }

    .journey-card:hover {
        transform: none;
    }

    .journey-card::before {
        display: none;
    }
}

/* ==========================================================================
   LUXURY CONTACT FORM
   ========================================================================== */
.contact-form input,
.contact-form textarea,
.contact-form select {
    background-color: var(--bv-off-white);
    border: 1px solid transparent;
    padding: 1.25rem;
    font-size: 1rem;
    transition: var(--bv-transition-premium);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    background-color: var(--bv-pure-white);
    border-color: var(--bv-pure-black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-form label {
    color: var(--bv-graphite);
    font-weight: 500;
}

/* ==========================================================================
   LUXURY FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--bv-jet);
}

.footer-brand__logo {
    font-family: var(--bv-font-display);
    letter-spacing: 0.2em;
    font-weight: 300;
}

.footer-brand__tagline {
    line-height: 1.9;
    color: var(--bv-stone);
}

.footer-nav__title {
    color: var(--bv-pearl);
    letter-spacing: 0.15em;
}

.footer-nav a {
    transition: var(--bv-transition-premium);
}

.footer-nav a:hover {
    padding-left: 5px;
}

.footer-social a {
    border-color: var(--bv-anthracite);
    transition: var(--bv-transition-premium);
}

.footer-social a:hover {
    background-color: var(--bv-pure-white);
    border-color: var(--bv-pure-white);
    color: var(--bv-pure-black);
}

/* ==========================================================================
   LUXURY PAGE HEADER
   ========================================================================== */
.page-header {
    min-height: 70vh;
}

.page-header::before {
    background: var(--bv-overlay-luxury);
}

.page-header__title {
    font-family: var(--bv-font-display);
    font-weight: 300;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.page-header__subtitle {
    letter-spacing: 0.1em;
}

/* ==========================================================================
   PREMIUM STATS / NUMBERS
   ========================================================================== */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--bv-spacing-lg);
    padding: var(--bv-spacing-xl) 0;
    border-top: 1px solid var(--bv-silver);
    border-bottom: 1px solid var(--bv-silver);
}

.stat-item {
    text-align: center;
    padding: var(--bv-spacing-md);
}

.stat-number {
    font-family: var(--bv-font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--bv-pure-black);
    line-height: 1;
    margin-bottom: var(--bv-spacing-xs);
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bv-stone);
}

@media (max-width: 992px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-section {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* ==========================================================================
   TESTIMONIALS / QUOTE BLOCK
   ========================================================================== */
.testimonial-block {
    position: relative;
    padding: var(--bv-spacing-xxl);
    text-align: center;
    background-color: var(--bv-warm-white);
}

.testimonial-block::before {
    content: '"';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--bv-font-display);
    font-size: 10rem;
    color: var(--bv-pure-black);
    opacity: 0.05;
    line-height: 1;
}

.testimonial-text {
    font-family: var(--bv-font-accent);
    font-size: 1.85rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: var(--bv-charcoal);
    max-width: 850px;
    margin: 0 auto var(--bv-spacing-lg);
}

.testimonial-author {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bv-graphite);
}

/* ==========================================================================
   LUXURY IMAGE GALLERY
   ========================================================================== */
.gallery-luxury {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.gallery-luxury__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-luxury__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--bv-transition-smooth);
}

.gallery-luxury__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: var(--bv-transition-premium);
}

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

.gallery-luxury__item:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   PREMIUM CTA SECTION
   ========================================================================== */
.cta-premium {
    position: relative;
    padding: var(--bv-spacing-xxxl) 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .cta-premium {
        background-attachment: scroll;
    }
}

.cta-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.cta-premium .intro-section {
    position: relative;
    z-index: 1;
}

.cta-premium h2 {
    color: var(--bv-white);
    font-family: var(--bv-font-display);
    font-weight: 300;
}

.cta-premium p {
    color: var(--bv-pearl);
}

/* ==========================================================================
   PROCESS STEPS PREMIUM
   ========================================================================== */
.process-step {
    transition: var(--bv-transition-premium);
}

.process-step:hover {
    padding-left: 10px;
}

.process-step__number {
    color: var(--bv-silver);
    font-weight: 300;
}

.process-step__title {
    font-family: var(--bv-font-accent);
}

/* ==========================================================================
   MICRO-INTERACTIONS & HOVER EFFECTS
   ========================================================================== */

/* Link underline animation */
.link-elegant {
    position: relative;
    display: inline-block;
}

.link-elegant::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-elegant:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Image reveal on scroll */
.reveal-image {
    overflow: hidden;
}

.reveal-image img {
    transform: scale(1.15);
    transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-image.revealed img {
    transform: scale(1);
}

/* Fade up on scroll */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--bv-transition-smooth);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   WHATSAPP BUTTON REFINED
   ========================================================================== */
.whatsapp-float {
    background-color: var(--bv-black);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover {
    background-color: var(--bv-black);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   RESPONSIVE LUXURY ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {

    /* ── Global spacing reduction ── */
    :root {
        --bv-spacing-xxl: 3.5rem;
        --bv-spacing-xxxl: 5rem;
        --bv-spacing-xl: 3rem;
        --bv-spacing-lg: 2rem;
    }

    .mb-lg { margin-bottom: 1.5rem !important; }
    .mt-lg { margin-top: 1.5rem !important; }

    /* ── Hero ── kept at 100vh (default) */

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    /* ── Split sections ── */
    .split-section {
        min-height: auto;
    }

    .split-image {
        min-height: 55vw;
    }

    .split-content {
        padding: var(--bv-spacing-lg) var(--bv-spacing-md);
    }

    .split-content h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .split-content p {
        font-size: 0.95rem;
    }

    /* ── Intro sections ── */
    .intro-section--premium h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .intro-section--premium p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .testimonial-text {
        font-size: 1.4rem;
    }

    /* ── Feature cards (generic) ── */
    .feature-card--premium {
        padding: var(--bv-spacing-md);
    }

    /* Feature cards with images: horizontal on mobile */
    .feature-card--with-image {
        display: grid;
        grid-template-columns: 100px 1fr;
        grid-template-rows: auto auto;
        column-gap: var(--bv-spacing-md);
        align-items: start;
        padding: var(--bv-spacing-md);
        box-shadow: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .feature-card--with-image:last-child {
        border-bottom: none;
    }

    .feature-card--with-image .feature-card__image {
        grid-column: 1;
        grid-row: 1 / 3;
        margin-bottom: 0 !important;
        aspect-ratio: 1 !important;
        border-radius: 4px;
    }

    .feature-card--with-image .feature-card__title {
        grid-column: 2;
        font-size: 1.05rem;
        margin-bottom: 0.35rem;
    }

    .feature-card--with-image p {
        grid-column: 2;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .feature-card--with-image:hover {
        transform: none;
        box-shadow: none;
    }

    .feature-card--with-image::before {
        display: none;
    }

    /* ── Problem → Solution cards: compact on mobile ── */
    .problem-card {
        padding: var(--bv-spacing-md);
        box-shadow: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .problem-card__number {
        font-size: 2rem;
        margin-bottom: var(--bv-spacing-xs);
    }

    .problem-card__problem {
        margin-bottom: var(--bv-spacing-xs);
        padding-bottom: var(--bv-spacing-xs);
    }

    .problem-card__problem p,
    .problem-card__solution p {
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .problem-card__label {
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
    }

    .problem-card:hover {
        transform: none;
    }

    .problem-card::before {
        display: none;
    }

    /* ── Journey steps ── */
    .journey-step__number {
        font-size: 2.5rem;
    }

    .journey-step__title {
        font-size: 1.15rem;
    }

    .journey-step__desc {
        font-size: 0.9rem;
    }

    .journey-step__connector {
        height: 20px;
    }

    /* ── 4-image lifestyle grid: keep 2x2 ── */
    .grid--4[style*="gap: 0"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* ── Project cards: always show overlay on touch devices ── */
    .project-card__overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%) !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: flex-start !important;
        padding: var(--bv-spacing-md) !important;
    }

    .project-card:hover .project-card__overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%) !important;
    }

    .project-card__title {
        color: var(--bv-pure-white) !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
        font-size: 1.15rem;
        margin-bottom: var(--bv-spacing-xs);
    }

    .project-card__excerpt {
        display: none !important;
    }

    .project-card__link {
        opacity: 1 !important;
        transform: none !important;
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .project-card__content {
        padding: var(--bv-spacing-sm) var(--bv-spacing-md) var(--bv-spacing-md);
    }

    /* ── CTA sections ── */
    .intro-section h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }
}

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Cookie Policy)
   ========================================================================== */
.page-header--minimal {
    background-color: var(--bv-jet);
    padding: var(--bv-spacing-xxxl) 0 var(--bv-spacing-xxl);
    min-height: auto;
}

.page-header--minimal .page-header__content {
    text-align: center;
}

.page-header--minimal .page-header__title {
    font-family: var(--bv-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--bv-pure-white);
    margin-bottom: var(--bv-spacing-xs);
}

.page-header--minimal .page-header__subtitle {
    color: var(--bv-stone);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--bv-charcoal);
}

.legal-content h2 {
    font-family: var(--bv-font-display);
    font-size: 1.75rem;
    font-weight: 500;
    margin-top: var(--bv-spacing-xl);
    margin-bottom: var(--bv-spacing-md);
    padding-bottom: var(--bv-spacing-xs);
    border-bottom: 1px solid var(--bv-silver);
    color: var(--bv-jet);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--bv-font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: var(--bv-spacing-lg);
    margin-bottom: var(--bv-spacing-sm);
    color: var(--bv-anthracite);
}

.legal-content p {
    margin-bottom: var(--bv-spacing-md);
}

.legal-content ul {
    margin-bottom: var(--bv-spacing-md);
    padding-left: var(--bv-spacing-lg);
}

.legal-content ul li {
    margin-bottom: var(--bv-spacing-xs);
    position: relative;
}

.legal-content ul li::marker {
    color: var(--bv-graphite);
}

.legal-content a {
    color: var(--bv-jet);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--bv-transition-premium);
}

.legal-content a:hover {
    color: var(--bv-graphite);
}

.legal-content strong {
    font-weight: 600;
    color: var(--bv-jet);
}

.legal-content hr {
    border: none;
    border-top: 1px solid var(--bv-silver);
    margin: var(--bv-spacing-xl) 0;
}

/* Panel class removed — using cinematic overlay + text-shadow instead */

/* Reduced motion: hide video, show poster only */
@media (prefers-reduced-motion: reduce) {
    .hero__bg-video {
        display: none !important;
    }
    .hero__bg-image {
        opacity: 1 !important;
    }
}

/* ==========================================================================
   TRUST BAR — Credentials & Expertise
   ========================================================================== */
.signature-band {
    background-color: var(--bv-jet);
    padding: var(--bv-spacing-xl) 0;
}

.signature-card {
    text-align: center;
    padding: var(--bv-spacing-md) var(--bv-spacing-sm);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-card:first-child {
    border-left: none;
}

.signature-card__title {
    font-family: var(--bv-font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--bv-pure-white);
    margin-bottom: var(--bv-spacing-xs);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.signature-card__desc {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--bv-stone);
    letter-spacing: 0.05em;
}

/* Trust Bar — Tablet: 2x2 grid */
@media (max-width: 992px) {
    .signature-card {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: var(--bv-spacing-md);
    }

    .signature-card__title {
        font-size: 1.5rem;
    }
}

/* Trust Bar — Mobile: single column */
@media (max-width: 768px) {
    .signature-band {
        padding: var(--bv-spacing-lg) 0;
    }

    .signature-band .grid--4 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .signature-card {
        padding: var(--bv-spacing-sm) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .signature-card:last-child {
        border-bottom: none;
    }

    .signature-card__title {
        font-size: 1.25rem;
        margin-bottom: 0.2rem;
    }

    .signature-card__desc {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   PROBLEM → SOLUTION CARDS
   ========================================================================== */
.problem-card {
    background: var(--bv-pure-white);
    padding: var(--bv-spacing-lg);
    box-shadow: var(--bv-shadow-soft);
    transition: var(--bv-transition-premium);
    position: relative;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--bv-pure-black);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--bv-transition-premium);
}

.problem-card:hover {
    box-shadow: var(--bv-shadow-luxury);
    transform: translateY(-8px);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card__number {
    font-family: var(--bv-font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--bv-silver);
    line-height: 1;
    margin-bottom: var(--bv-spacing-sm);
}

.problem-card__label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--bv-charcoal);
    margin-bottom: var(--bv-spacing-xs);
}

.problem-card__label--solution {
    color: var(--bv-jet);
}

.problem-card__problem {
    margin-bottom: var(--bv-spacing-sm);
    padding-bottom: var(--bv-spacing-sm);
    border-bottom: 1px solid var(--bv-silver);
}

.problem-card__problem p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--bv-charcoal);
    margin: 0;
}

.problem-card__solution p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--bv-graphite);
    margin: 0;
}

/* ==========================================================================
   THE JOURNEY STEPS
   ========================================================================== */
.journey-steps {
    max-width: 800px;
    margin: 0 auto;
}

.journey-step {
    display: flex;
    gap: var(--bv-spacing-lg);
    align-items: flex-start;
    padding: var(--bv-spacing-lg) 0;
}

.journey-step__number {
    font-family: var(--bv-font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--bv-silver);
    line-height: 1;
    min-width: 80px;
    text-align: center;
}

.journey-step__content {
    flex: 1;
}

.journey-step__title {
    font-family: var(--bv-font-accent);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--bv-spacing-sm);
    color: var(--bv-jet);
}

.journey-step__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--bv-graphite);
}

.journey-step__connector {
    width: 1px;
    height: 40px;
    background: var(--bv-silver);
    margin: 0 auto;
    margin-left: 40px;
}

@media (max-width: 768px) {
    .journey-step {
        flex-direction: column;
        gap: var(--bv-spacing-sm);
    }

    .journey-step__number {
        font-size: 3rem;
        min-width: auto;
        text-align: left;
    }

    .journey-step__connector {
        margin-left: var(--bv-spacing-md);
        height: 30px;
    }
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bv-spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-item {
    text-align: center;
    padding: var(--bv-spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: var(--bv-transition-premium);
}

.why-choose-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.why-choose-item__title {
    font-family: var(--bv-font-accent);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--bv-pure-white);
    margin-bottom: var(--bv-spacing-sm);
}

.why-choose-item__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--bv-stone);
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .why-choose-item {
        text-align: left;
        padding: var(--bv-spacing-md) 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: transparent;
    }

    .why-choose-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .why-choose-item:first-child {
        padding-top: 0;
    }

    .why-choose-item:hover {
        transform: none;
        background: transparent;
    }

    .why-choose-item__title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .why-choose-item__desc {
        font-size: 0.875rem;
    }
}

/* BRAND CAROUSEL — removed in 2026 redesign (see git history) */

/* ==========================================================================
   VIDEO ACCENT STRIP (About page — 2026 redesign)
   ========================================================================== */
.video-accent {
    position: relative;
    height: 40vh;
    overflow: hidden;
    background: var(--bv-pure-black);
    z-index: 1;
}

.video-accent__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-accent__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease;
}

.video-accent__bg.is-hidden {
    opacity: 0;
}

.video-accent__video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7);
}

.video-accent__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.3),
        rgba(0, 0, 0, 0.05),
        rgba(26, 26, 26, 0.3)
    );
    pointer-events: none;
}

@media (max-width: 992px) {
    .video-accent {
        height: 35vh;
    }
}

@media (max-width: 768px) {
    .video-accent {
        height: 30vh;
    }
}

/* ==========================================================================
   COMPANY GRID — W-Group inspired (About page — 2026 redesign)
   ========================================================================== */
.company-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 992px) {
    .company-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.company-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--bv-spacing-xl) var(--bv-spacing-lg);
    background: var(--bv-jet);
    cursor: pointer;
    transition: var(--bv-transition-premium);
    position: relative;
}

.company-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--bv-pure-white);
    transition: width 0.4s ease, left 0.4s ease;
    transform: translateX(-50%);
}

.company-card:hover::after,
.company-card.is-active::after {
    width: 60%;
}

.company-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.company-card.is-active {
    background: rgba(255, 255, 255, 0.06);
}

.company-card__logo {
    width: 180px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--bv-spacing-md);
    background: transparent;
    padding: 0;
    transition: var(--bv-transition-premium);
}

.company-card:hover .company-card__logo {
    transform: translateY(-4px);
}

.company-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.5;
    transition: filter 0.6s ease, opacity 0.6s ease;
}

.company-card:hover .company-card__logo img,
.company-card.is-active .company-card__logo img,
.company-card.is-visible .company-card__logo img {
    filter: invert(1);
    opacity: 1;
}

.company-card__name {
    font-family: var(--bv-font-accent);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--bv-pure-white);
    margin-bottom: var(--bv-spacing-xs);
}

.company-card__tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bv-stone);
    margin: 0;
}

.company-card__arrow {
    margin-top: var(--bv-spacing-sm);
    color: var(--bv-stone);
    transition: transform 0.4s ease, color 0.3s ease;
}

.company-card.is-active .company-card__arrow {
    transform: rotate(180deg);
    color: var(--bv-pure-white);
}

/* Detail Panel (expands below card row) */
.company-detail {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    grid-column: 1 / -1;
    position: relative;
}

.company-detail.is-open {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.company-detail__inner {
    padding: var(--bv-spacing-xl) var(--bv-spacing-lg);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.company-detail__tagline {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--bv-pearl);
    margin-bottom: var(--bv-spacing-xs);
}

.company-detail__headline {
    font-family: var(--bv-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--bv-pure-white);
    margin-bottom: var(--bv-spacing-md);
}

.company-detail__copy {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.company-detail__cta {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--bv-pearl);
    margin-top: var(--bv-spacing-md);
}

.company-detail__cta::before {
    content: '\2192\00a0';
}

.company-detail__close {
    position: absolute;
    top: var(--bv-spacing-sm);
    right: var(--bv-spacing-sm);
    background: none;
    border: none;
    color: var(--bv-stone);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.company-detail__close:hover {
    color: var(--bv-pure-white);
}

/* Company Grid — Responsive */
@media (max-width: 768px) {
    .company-card {
        padding: var(--bv-spacing-lg) var(--bv-spacing-md);
    }

    .company-card__logo {
        width: 140px;
        height: 85px;
    }

    .company-card__name {
        font-size: 1.3rem;
    }

    .company-card__tagline {
        font-size: 0.6rem;
    }

    .company-detail__inner {
        padding: var(--bv-spacing-lg) var(--bv-spacing-md);
    }

    .company-detail__copy {
        font-size: 0.875rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .company-grid {
        grid-template-columns: 1fr;
    }

    .company-card__logo {
        width: 120px;
        height: 75px;
    }
}

/* About CTA wrapper */
.about-cta {
    margin-top: var(--bv-spacing-xxl);
    padding-top: var(--bv-spacing-lg);
}

/* ECOSYSTEM GRID — removed in 2026 redesign (see git history) */

/* ==========================================================================
   FOOTER ATTRIBUTION
   ========================================================================== */
.footer-attribution {
    text-align: center;
    padding: var(--bv-spacing-sm) 0;
    margin-top: var(--bv-spacing-sm);
}

.footer-attribution span {
    font-family: var(--bv-font-accent);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    color: var(--bv-stone);
    font-weight: 400;
}

.footer-attribution a {
    color: var(--bv-stone);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-attribution a:hover {
    color: var(--bv-white);
    border-bottom-color: var(--bv-white);
}

.footer-credit {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   NEWS GRID
   ========================================================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bv-spacing-lg);
}

.news-card {
    background: var(--bv-pure-white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--bv-shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bv-shadow-medium);
}

.news-card__image-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card__image {
    transform: scale(1.05);
}

.news-card__body {
    padding: var(--bv-spacing-md) var(--bv-spacing-md) var(--bv-spacing-lg);
}

.news-card__date {
    display: block;
    font-family: var(--bv-font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bv-stone);
    margin-bottom: var(--bv-spacing-xs);
}

.news-card__title {
    font-family: var(--bv-font-display);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: var(--bv-spacing-sm);
}

.news-card__title a {
    color: var(--bv-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card__title a:hover {
    color: var(--bv-stone);
}

.news-card__excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--bv-charcoal, #555);
    margin-bottom: var(--bv-spacing-md);
}

.news-card__link {
    font-family: var(--bv-font-accent);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bv-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card__link:hover {
    color: var(--bv-stone);
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: var(--bv-spacing-md);
    }
}

/* ==========================================================================
   SERVICES LANDING PAGE
   ========================================================================== */
.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--bv-spacing-lg);
}

.service-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bv-pure-white);
    box-shadow: var(--bv-shadow-soft);
    overflow: hidden;
}

.service-preview--reverse {
    direction: rtl;
}

.service-preview--reverse > * {
    direction: ltr;
}

.service-preview__image {
    overflow: hidden;
}

.service-preview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--bv-transition-smooth);
}

.service-preview:hover .service-preview__image img {
    transform: scale(1.03);
}

.service-preview__placeholder {
    width: 100%;
    height: 100%;
    background: var(--bv-jet);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-preview__placeholder span {
    font-family: var(--bv-font-display);
    font-size: 5rem;
    font-weight: 300;
    color: var(--bv-anthracite);
}

.service-preview__content {
    padding: var(--bv-spacing-md) var(--bv-spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-preview__title {
    font-family: var(--bv-font-accent);
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: var(--bv-spacing-xs);
}

.service-preview__excerpt {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--bv-graphite);
    margin-bottom: var(--bv-spacing-lg);
}

@media (max-width: 768px) {
    .services-list {
        gap: var(--bv-spacing-md);
    }

    .service-preview {
        grid-template-columns: 80px 1fr;
        min-height: auto;
        box-shadow: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        background: transparent;
    }

    .service-preview--reverse {
        direction: ltr;
    }

    /* Hide the large placeholder image on mobile */
    .service-preview__image {
        display: flex;
        align-items: flex-start;
        padding-top: var(--bv-spacing-sm);
    }

    .service-preview__placeholder {
        width: 60px;
        height: 60px;
        background: var(--bv-jet);
        border-radius: 4px;
    }

    .service-preview__placeholder span {
        font-size: 1.5rem;
    }

    /* If there's a real image, make it small and square */
    .service-preview__image img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 4px;
    }

    .service-preview__content {
        padding: var(--bv-spacing-sm) 0 var(--bv-spacing-md);
    }

    /* Hide the duplicate number in content area on mobile */
    .service-preview__number {
        display: none;
    }

    .service-preview__title {
        font-size: 1.15rem;
        margin-bottom: 0.35rem;
    }

    .service-preview__excerpt {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: var(--bv-spacing-sm);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-preview .btn {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
        align-self: flex-start;
    }

    .service-preview:hover .service-preview__image img {
        transform: none;
    }

    .service-preview .luxury-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .service-preview {
        grid-template-columns: 56px 1fr;
    }

    .service-preview__placeholder,
    .service-preview__image img {
        width: 48px;
        height: 48px;
    }

    .service-preview__placeholder span {
        font-size: 1.2rem;
    }

    .service-preview__title {
        font-size: 1.05rem;
    }

    .service-preview__excerpt {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
}

/* ==========================================================================
   SERVICE DETAIL PAGE
   ========================================================================== */
.service-detail {
    max-width: 800px;
    margin: var(--bv-spacing-lg) auto 0;
}

.service-detail__body {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--bv-charcoal);
}

.service-detail__body h2,
.service-detail__body h3 {
    margin-top: var(--bv-spacing-xl);
    margin-bottom: var(--bv-spacing-md);
}

.service-detail__body p {
    margin-bottom: var(--bv-spacing-md);
}

.service-detail__body img {
    max-width: 100%;
    height: auto;
    margin: var(--bv-spacing-lg) 0;
}

/* ==========================================================================
   MOBILE MENU REFINEMENTS
   ========================================================================== */

/* Lock body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 992px) {
    /* Tighter spacing between nav items */
    .nav-menu {
        gap: 0;
    }

    /* Refined nav link sizing */
    .nav-link {
        font-size: 1.1rem;
        font-weight: 400;
        letter-spacing: 0.12em;
        display: block;
        padding: 1rem 0;
    }

    /* Language switcher spacing */
    .language-switcher {
        margin-top: 1.5rem;
    }

    /* CRITICAL: When the mobile overlay is open, keep links white
       even if the header has .scrolled (which normally turns links black) */
    .site-header.scrolled .main-nav.active .nav-link,
    .site-header.scrolled .main-nav.active .nav-link:hover {
        color: var(--bv-white);
    }

    .site-header.scrolled .main-nav.active .language-switcher li a {
        color: var(--bv-white);
    }

    /* Subtle separator lines between items for elegance */
    .main-nav.active .nav-item,
    .main-nav.active .menu-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav.active .nav-item:last-child,
    .main-nav.active .menu-item:last-child {
        border-bottom: none;
    }

    /* Remove the underline animation on mobile — not needed */
    .main-nav.active .nav-link::after {
        display: none;
    }

    .main-nav.active .nav-link:hover {
        opacity: 0.7;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .luxury-divider {
        background: #999;
    }

    .shadow-soft,
    .shadow-medium,
    .shadow-luxury {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .legal-content {
        max-width: 100%;
    }
}
