/* ==========================================================================
   Better Life Estate — Premium Visual Upgrades
   Layered on top of style.css. Adds editorial-level polish:
   dramatic typography, cinematic hero, bento grids, refined motion,
   decorative accents, and sophisticated hover states.
   ========================================================================== */


/* ==========================================================================
   PREMIUM TOKENS
   ========================================================================== */

:root {
    --display-font: 'Playfair Display', 'Cormorant Garamond', serif;
    --display-italic: italic 700 1em var(--display-font);

    --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* ==========================================================================
   TYPOGRAPHY — EDITORIAL
   ========================================================================== */

/* Bigger, more dramatic display sizes */
:root {
    --fs-display: clamp(3.4rem, 8vw, 7rem);
    --fs-h1-lg: clamp(2.6rem, 5vw, 4.5rem);
}

/* Section title with thinner italic accent */
.section-title em,
.hero-title em {
    font-style: italic;
    font-weight: 500;
}

/* Heading kicker — small uppercase label above titles */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.kicker.center {
    justify-content: center;
}

.kicker.center::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

/* Better section headers with eyebrow text */
.section-eyebrow {
    text-align: center;
    margin-bottom: 80px;
}

.section-eyebrow .section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow .section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 24px auto 0;
}

/* Drop cap for editorial paragraphs */
.drop-cap::first-letter {
    font-family: var(--display-font);
    font-size: 4.5em;
    line-height: 0.85;
    float: left;
    margin: 8px 14px 0 0;
    color: var(--gold);
    font-weight: 700;
}


/* ==========================================================================
   HERO — CINEMATIC SPLIT
   ========================================================================== */

.hero-cinematic {
    min-height: 100vh;
    position: relative;
    background: var(--navy-deep);
    color: var(--text-on-dark);
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: stretch;
}

.hero-cinematic .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.hero-cinematic .hero-text {
    padding: 140px 80px 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-cinematic .hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(193, 164, 97, 0.12), transparent 50%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    z-index: -1;
}

.hero-cinematic .hero-text::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grain);
    opacity: 0.4;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: -1;
}

.hero-cinematic .hero-image {
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero-cinematic .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: heroPan 24s ease-in-out infinite alternate;
}

@keyframes heroPan {
    from { transform: scale(1.05) translate(0, 0); }
    to { transform: scale(1.15) translate(-2%, -2%); }
}

.hero-cinematic .hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 22, 40, 0.4) 0%, transparent 40%, transparent 100%);
    pointer-events: none;
}

.hero-cinematic .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.9s var(--ease-cinematic) 0.2s forwards;
}

.hero-cinematic .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-cinematic .hero-headline {
    font-family: var(--display-font);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 1.1s var(--ease-cinematic) 0.35s forwards;
}

.hero-cinematic .hero-headline em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-light);
    display: block;
}

.hero-cinematic .hero-lead {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-cinematic) 0.5s forwards;
}

.hero-cinematic .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-cinematic) 0.65s forwards;
}

.hero-cinematic .hero-meta {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-cinematic) 0.85s forwards;
}

.hero-cinematic .hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-cinematic .hero-meta-num {
    font-family: var(--display-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.hero-cinematic .hero-meta-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 80px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    z-index: 3;
}

.hero-scroll::before {
    content: '';
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    animation: scrollLine 2.5s var(--ease-cinematic) infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleX(0.5); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: left; }
}


/* ==========================================================================
   PREMIUM BUTTONS
   ========================================================================== */

.btn-cinematic {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    border: none;
    border-radius: 0;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.6s var(--ease-cinematic), background 0.6s var(--ease-cinematic);
    text-decoration: none;
}

.btn-cinematic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s var(--ease-cinematic);
    z-index: 0;
}

.btn-cinematic:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-cinematic:hover {
    color: var(--navy);
}

.btn-cinematic > * {
    position: relative;
    z-index: 1;
}

.btn-cinematic .btn-arrow {
    transition: transform 0.5s var(--ease-cinematic);
}

.btn-cinematic:hover .btn-arrow {
    transform: translateX(6px);
}

/* Ghost button on dark */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 19px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: all 0.4s var(--ease-cinematic);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(193, 164, 97, 0.05);
}


/* ==========================================================================
   GOLD DIVIDER + DECORATIVE
   ========================================================================== */

.gold-rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    display: block;
}

.gold-rule.left { margin: 0 0 24px 0; }

.section-deco {
    position: relative;
}

.section-deco::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--gold) 50%, transparent);
    opacity: 0.5;
}


/* ==========================================================================
   PREMIUM CARDS — REFINED
   ========================================================================== */

.card-premium {
    position: relative;
    background: var(--white);
    padding: 48px 36px;
    border: 1px solid var(--border-color);
    transition: all 0.6s var(--ease-cinematic);
    overflow: hidden;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-cinematic);
}

.card-premium:hover {
    transform: translateY(-6px);
    border-color: var(--border-color-strong);
    box-shadow: 0 24px 60px rgba(10, 22, 40, 0.1);
}

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

.card-premium .card-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--display-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    opacity: 0.6;
}

.card-premium .card-icon-line {
    width: 56px;
    height: 56px;
    margin-bottom: 32px;
    color: var(--gold);
    transition: transform 0.6s var(--ease-cinematic);
}

.card-premium:hover .card-icon-line {
    transform: translateX(4px);
}

.card-premium h3,
.card-premium h4 {
    font-family: var(--display-font);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.card-premium p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}


/* ==========================================================================
   BENTO GRID — DESTINATIONS
   ========================================================================== */

.bento-destinations {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 380px 280px;
    gap: 16px;
    margin-top: 64px;
}

.bento-card {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
    isolation: isolate;
}

.bento-card:nth-child(1) {
    grid-row: span 2;
}

.bento-card:nth-child(4) {
    grid-column: span 2;
}

.bento-card .bento-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease-cinematic), filter 0.8s var(--ease-cinematic);
    z-index: 1;
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(5, 13, 26, 0.95));
    z-index: 2;
    transition: opacity 0.6s var(--ease-cinematic);
}

.bento-card:hover .bento-img {
    transform: scale(1.08);
    filter: brightness(0.85) saturate(1.1);
}

.bento-card .bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px;
    z-index: 3;
}

.bento-card .bento-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 12px;
    padding: 5px 12px;
    background: rgba(193, 164, 97, 0.15);
    border: 1px solid rgba(193, 164, 97, 0.4);
    backdrop-filter: blur(10px);
}

.bento-card h3 {
    font-family: var(--display-font);
    font-size: clamp(1.5rem, 2.5vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.bento-card .bento-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
    max-width: 380px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s var(--ease-cinematic), transform 0.5s var(--ease-cinematic);
}

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

.bento-card .bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    transition: gap 0.4s var(--ease-cinematic);
}

.bento-card:hover .bento-cta {
    gap: 14px;
}

.bento-card.featured h3 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}


/* ==========================================================================
   PROCESS — ALTERNATING TIMELINE
   ========================================================================== */

.process-cinematic {
    max-width: 1100px;
    margin: 64px auto 0;
    position: relative;
}

.process-cinematic::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border-color-strong) 10%, var(--border-color-strong) 90%, transparent);
    transform: translateX(-50%);
}

.process-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 56px;
    min-height: 120px;
}

.process-row:last-child { margin-bottom: 0; }

.process-row .process-content {
    padding: 28px 0;
}

.process-row:nth-child(odd) .process-content {
    grid-column: 1;
    text-align: right;
    padding-right: 16px;
}

.process-row:nth-child(odd) .process-spacer {
    grid-column: 3;
}

.process-row:nth-child(even) .process-content {
    grid-column: 3;
    text-align: left;
    padding-left: 16px;
}

.process-row:nth-child(even) .process-spacer {
    grid-column: 1;
}

.process-row .process-marker {
    grid-column: 2;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-family: var(--display-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    position: relative;
    z-index: 2;
    transition: all 0.5s var(--ease-cinematic);
}

.process-row:hover .process-marker {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(193, 164, 97, 0.35);
}

.process-content h3 {
    font-family: var(--display-font);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.process-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 420px;
}

.process-row:nth-child(odd) .process-content p {
    margin-left: auto;
}


/* ==========================================================================
   STATS COUNTER — DRAMATIC
   ========================================================================== */

.stats-cinematic {
    background: var(--navy-deep);
    color: var(--white);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.stats-cinematic::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(193, 164, 97, 0.08), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(193, 164, 97, 0.05), transparent 40%);
}

.stats-cinematic .container { position: relative; z-index: 2; }

.stats-cinematic .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    padding: 56px 32px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.4s var(--ease-cinematic);
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
    background: rgba(193, 164, 97, 0.04);
}

.stat-number {
    font-family: var(--display-font);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.stat-number .plus,
.stat-number .pct {
    font-size: 0.6em;
    margin-left: 2px;
    color: var(--gold-light);
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}


/* ==========================================================================
   SECTION SPACING & DIVIDERS
   ========================================================================== */

.section-tight { padding: 80px 20px; }
.section-large { padding: 140px 20px; }

.divider-fade {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color-strong), transparent);
    margin: 0 auto;
    max-width: 200px;
}


/* ==========================================================================
   WATERMARK / BACKGROUND ACCENT
   ========================================================================== */

.bg-watermark {
    position: relative;
    overflow: hidden;
}

.bg-watermark::before {
    content: 'BLE';
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: var(--display-font);
    font-size: 28vw;
    font-weight: 800;
    font-style: italic;
    color: rgba(193, 164, 97, 0.04);
    line-height: 0.85;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}


/* ==========================================================================
   FAQ — ELEVATED
   ========================================================================== */

.faq-elevated .faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    padding: 28px 0;
    margin-bottom: 0;
    transition: background 0.3s ease;
}

.faq-elevated .faq-item:last-child {
    border-bottom: none;
}

.faq-elevated .faq-item.active {
    background: transparent;
    border-left: none;
}

.faq-elevated .faq-q {
    padding: 0;
}

.faq-elevated .faq-q h4 {
    font-family: var(--display-font);
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.01em;
}


/* ==========================================================================
   IMAGE TREATMENTS
   ========================================================================== */

.img-frame {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.img-frame::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 1px solid var(--gold);
    z-index: -1;
    transition: all 0.6s var(--ease-cinematic);
}

.img-frame:hover::after {
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
}

.img-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s var(--ease-cinematic);
}

.img-frame:hover img {
    transform: scale(1.04);
}


/* ==========================================================================
   FOOTER UPGRADE
   ========================================================================== */

.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
    opacity: 0.4;
}

.footer-tagline {
    font-family: var(--display-font);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 64px;
    max-width: 720px;
    letter-spacing: -0.02em;
}

.footer-tagline em {
    color: var(--gold);
    font-weight: 700;
}


/* ==========================================================================
   RESPONSIVE — PREMIUM
   ========================================================================== */

@media (max-width: 1100px) {
    .hero-cinematic .hero-text {
        padding: 120px 48px 80px 48px;
    }
    .hero-scroll { left: 48px; }
    .bento-destinations {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 320px 320px 320px;
    }
    .bento-card:nth-child(1) {
        grid-row: span 1;
        grid-column: span 2;
    }
    .bento-card:nth-child(4) {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .hero-cinematic .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-cinematic .hero-image {
        display: none;
    }
    .hero-cinematic .hero-text {
        padding: 120px 24px 80px 24px;
    }
    .hero-cinematic::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('https://images.unsplash.com/photo-1582672060674-bc2bd808a8b5?w=1920&q=85') center/cover;
        opacity: 0.25;
        z-index: 0;
    }
    .hero-cinematic .hero-meta {
        grid-template-columns: 1fr 1fr;
    }
    .process-row {
        grid-template-columns: auto 1fr;
        gap: 20px;
        text-align: left;
    }
    .process-row .process-content,
    .process-row:nth-child(odd) .process-content,
    .process-row:nth-child(even) .process-content {
        grid-column: 2;
        text-align: left;
        padding: 0;
    }
    .process-row:nth-child(odd) .process-content p,
    .process-row:nth-child(even) .process-content p {
        margin-left: 0;
        margin-right: 0;
    }
    .process-row .process-spacer { display: none; }
    .process-row .process-marker {
        grid-column: 1;
        grid-row: 1;
    }
    .process-cinematic::before {
        left: 28px;
    }
    .stats-cinematic .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 600px) {
    .bento-destinations {
        grid-template-columns: 1fr;
        grid-template-rows: 320px 320px 320px 320px;
    }
    .bento-card:nth-child(1),
    .bento-card:nth-child(4) {
        grid-column: span 1;
    }
    .stats-cinematic .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .stat-item:last-child { border-bottom: none; }
}


/* ==========================================================================
   NAVIGATION FIX — match HTML/JS class names
   ========================================================================== */

/* Hide mobile nav by default on all viewports */
.nav-mobile {
    display: none;
}

.nav-overlay {
    display: none;
}

/* Hamburger toggle button — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* Hamburger animation when open */
body.nav-open .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
body.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
body.nav-open .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Tablet/mobile breakpoint — show hamburger, hide nav links */
@media (max-width: 980px) {
    .nav-links {
        display: none !important;
    }
    .nav-toggle {
        display: flex;
    }

    /* Mobile overlay backdrop */
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(10, 22, 40, 0.6);
        backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        z-index: 998;
        transition: opacity 0.4s var(--ease-cinematic), visibility 0.4s;
    }

    body.nav-open .nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile menu panel — slides in from right */
    .nav-mobile {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 85vw);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 100px 32px 32px 32px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-cinematic);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
    }

    body.nav-open .nav-mobile {
        transform: translateX(0);
    }

    .nav-mobile a {
        display: block;
        padding: 16px 0;
        font-family: 'Playfair Display', serif;
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--navy);
        border-bottom: 1px solid var(--border-color);
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .nav-mobile a:hover {
        color: var(--gold);
        padding-left: 8px;
    }

    .nav-mobile a[class*="btn-"] {
        margin-top: 24px;
        padding: 18px 24px;
        text-align: center;
        font-size: 0.95rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        background: var(--gold);
        color: var(--white) !important;
        border-bottom: none;
    }

    .nav-mobile a[class*="btn-"]:hover {
        background: var(--gold-dark);
        padding-left: 24px;
    }

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

/* Hide the legacy .nav-hamburger and .nav-mobile-overlay from style.css —
   they're not used by our HTML/JS but defined in old base CSS */
.nav-hamburger,
.nav-mobile-overlay {
    display: none !important;
}


/* ==========================================================================
   COMPANY VIDEO — premium player
   ========================================================================== */

.company-video-section {
    padding: 140px 20px 120px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.company-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold), transparent);
    opacity: 0.5;
}

.company-video-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.company-video-header h2 {
    font-family: var(--display-font);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 24px;
}

.company-video-header h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.company-video-header p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
}

.company-video-wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.company-video-wrap::before {
    content: '';
    position: absolute;
    top: 24px;
    left: -24px;
    right: 24px;
    bottom: -24px;
    border: 1px solid var(--gold);
    z-index: 0;
    transition: all 0.6s var(--ease-cinematic);
    pointer-events: none;
}

.company-video-wrap:hover::before {
    top: 12px;
    left: -12px;
    right: 12px;
    bottom: -12px;
}

.company-video-player {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--navy-deep);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 30px 80px rgba(10, 22, 40, 0.18);
    z-index: 1;
}

.company-video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-cinematic), filter 0.5s ease;
    z-index: 1;
}

.company-video-player:hover .company-video-poster {
    transform: scale(1.04);
    filter: brightness(0.85);
}

.company-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 30%, rgba(5, 13, 26, 0.85) 100%),
        linear-gradient(90deg, rgba(5, 13, 26, 0.4) 0%, transparent 50%);
    z-index: 2;
}

.company-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: var(--navy);
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-spring);
    padding-left: 4px;
    box-shadow: 0 16px 50px rgba(193, 164, 97, 0.4);
}

.company-video-play::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0.5;
    animation: playPulse 2.4s ease-out infinite;
}

@keyframes playPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

.company-video-player:hover .company-video-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold-light);
    box-shadow: 0 24px 70px rgba(193, 164, 97, 0.6);
}

.company-video-meta {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    color: var(--white);
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.company-video-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
    padding: 5px 12px;
    background: rgba(193, 164, 97, 0.15);
    border: 1px solid rgba(193, 164, 97, 0.4);
    backdrop-filter: blur(10px);
}

.company-video-title {
    font-family: var(--display-font);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 4px;
}

.company-video-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.65);
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    flex-shrink: 0;
}

.company-video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.company-video-player.playing .company-video-iframe {
    opacity: 1;
    visibility: visible;
}

.company-video-player.playing .company-video-poster,
.company-video-player.playing .company-video-overlay,
.company-video-player.playing .company-video-play,
.company-video-player.playing .company-video-meta {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Bullets below video */
.company-video-bullets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 56px auto 0;
}

.cv-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.cv-bullet svg {
    flex-shrink: 0;
    margin-top: 1px;
}

@media (max-width: 900px) {
    .company-video-section { padding: 100px 20px 80px; }
    .company-video-bullets {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .company-video-play {
        width: 72px;
        height: 72px;
    }
    .company-video-meta {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    .company-video-wrap::before {
        display: none;
    }
}

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