/* ==========================================================================
   JULIA CRAFT — FINE ARCHITECTURAL DESIGN SYSTEM (DELICATE SCALE)
   ========================================================================== */

:root {
    /* BLACK & CHARCOAL ARCHITECTURAL ELEVATIONS */
    --color-slate-dark: #0A0D0E;       /* Pitch Architectural Black */
    --color-slate-card: #121618;       /* Deep Black Card Surface */
    --color-slate-muted: #4A545C;      /* Soft Charcoal Muted */
    
    /* ACCENT PALETTE: LUXURY OLIVE GREEN & ARMY GREEN */
    --color-olive: #6B7B54;            /* Primary Olive Green Accent */
    --color-olive-light: #8E9F77;      /* Warm Olive / Army Highlight */
    --color-olive-hover: #52613F;      /* Deep Army Green Hover */
    --color-olive-rgb: 107, 123, 84;   /* Translucent RGB overlay base */
    
    /* Forwarding aliases to seamlessly link existing variables */
    --color-gold: var(--color-olive);
    --color-gold-light: var(--color-olive-light);
    --color-gold-hover: var(--color-olive-hover);
    
    /* WHITE & CLEAN SILK SURFACES */
    --color-bg-light: #FFFFFF;         /* Pure Crisp White */
    --color-bg-sand: #F4F6F2;          /* Soft Olive-Tinted Silk White */
    --color-text-dark: #0A0D0E;        /* Pitch Black Typography */
    --color-text-muted: #4B5448;      /* Muted Army Charcoal Text */
    --color-white: #FFFFFF;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
    background-color: var(--color-bg-light);
    -webkit-font-smoothing: antialiased;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) var(--color-slate-dark);
}

/* CUSTOM BOUTIQUE GOLD SCROLLBAR */
::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--color-slate-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 10px;
    border: 2px solid var(--color-slate-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
@media (min-width: 1024px) {
    body, a, button, select, input, textarea, .btn {
        cursor: none !important;
    }
}

.cursor-dot {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(var(--color-olive-rgb), 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

@media (min-width: 1024px) {
    .cursor-dot, .cursor-ring { display: block; }
}

/* Layout Utilities */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 2rem; }
.w-100 { width: 100%; }

.gold-badge-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 1.25;
    letter-spacing: -0.2px;
}

.section-subtext {
    font-size: 0.925rem;
    color: var(--color-text-muted);
    max-width: 540px;
    margin: 0.5rem auto 0;
    font-weight: 300;
}

.accent-line {
    width: 36px;
    height: 1px;
    background: var(--color-gold);
    margin: 0.85rem 0 1rem;
}

.accent-line.center { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(var(--color-olive-rgb), 0.25);
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(var(--color-olive-rgb), 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid rgba(var(--color-olive-rgb), 0.6);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.75rem; }
.btn-lg { padding: 0.75rem 1.6rem; font-size: 0.825rem; }

/* 1. NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.85rem 0;
    background: rgba(10, 13, 14, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(var(--color-olive-rgb), 0.2);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.65rem 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.navbar-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-monogram {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--color-olive-rgb), 0.12);
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 1.5px;
    display: block;
}

.brand-sub {
    font-size: 0.6rem;
    color: var(--color-gold);
    letter-spacing: 1.5px;
    display: block;
    margin-top: -3px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding-bottom: 2px;
}

.desktop-nav a:not(.nav-btn-gold)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.desktop-nav a:not(.nav-btn-gold):hover::after {
    width: 100%;
}

.desktop-nav a:hover { color: var(--color-gold); }

.nav-cta .nav-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: var(--color-gold);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(var(--color-olive-rgb), 0.25);
}

.nav-cta .nav-btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(var(--color-olive-rgb), 0.35);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--color-gold);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    background: var(--color-slate-dark);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--color-gold);
}

.mobile-nav-overlay.active { display: flex; }
.mobile-nav-link { color: var(--color-white); font-size: 0.95rem; }

/* 2. DUAL-LAYER CINEMATIC HERO (FIT EXACTLY IN 1 SINGLE VIEWPORT) */
.split-hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    padding-top: 65px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-slate-dark);
    color: var(--color-white);
    overflow: hidden;
    box-sizing: border-box;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.50;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 19, 26, 0.75) 0%, rgba(13, 19, 26, 0.55) 50%, rgba(13, 19, 26, 0.85) 100%);
    z-index: 2;
}

.hero-container-z {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 2.2rem;
    align-items: center;
}

.hero-video-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-frame-container {
    position: relative;
    width: 100%;
    height: clamp(320px, 52vh, 410px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(var(--color-olive-rgb), 0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.55);
    background: var(--color-slate-dark);
}

.video-frame-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-audio-widget {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 5;
}

.audio-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    background: rgba(10, 13, 14, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.725rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.audio-btn:hover {
    background: rgba(var(--color-olive-rgb), 0.18);
}

.sound-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 11px;
}

.sound-bars span {
    width: 2px;
    height: 100%;
    background: var(--color-gold);
    animation: soundWave 1.2s infinite ease-in-out alternate;
}

.sound-bars span:nth-child(2) { animation-delay: 0.2s; }
.sound-bars span:nth-child(3) { animation-delay: 0.4s; }
.sound-bars span:nth-child(4) { animation-delay: 0.6s; }

@keyframes soundWave {
    0% { height: 20%; }
    100% { height: 100%; }
}

.video-badge-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: rgba(10, 13, 14, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(var(--color-olive-rgb), 0.3);
    color: var(--color-white);
    font-size: 0.68rem;
    letter-spacing: 1.5px;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 6px #10B981;
}

.hero-content-col {
    display: flex;
    align-items: center;
}

.hero-editorial-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-pill {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 0.85rem;
}

.editorial-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
}

.editorial-title-main {
    display: block;
}

.serif-gold-display {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    display: block;
    color: var(--color-gold);
    margin-top: 0.25rem;
}

/* Sequential Right-to-Left Entrance Animation */
.hero-editorial-wrapper .slide-in-right {
    opacity: 0;
    transform: translateX(65px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.hero-editorial-wrapper.active .slide-in-right {
    opacity: 1;
    transform: translateX(0);
}

.hero-editorial-wrapper.active .slide-in-right.item-1 {
    transition-delay: 0.15s;
}

.hero-editorial-wrapper.active .slide-in-right.item-2 {
    transition-delay: 0.45s;
}

.hero-editorial-wrapper.active .slide-in-right.item-3 {
    transition-delay: 0.75s;
}

.hero-editorial-wrapper.active .slide-in-right.item-4 {
    transition-delay: 1.05s;
}

.hero-editorial-wrapper.active .slide-in-right.item-5 {
    transition-delay: 1.25s;
}

.hero-editorial-wrapper.active .slide-in-right.item-6 {
    transition-delay: 1.45s;
}

.editorial-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.65;
    max-width: 480px;
}

.editorial-stats-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(var(--color-olive-rgb), 0.25);
    width: max-content;
    margin-bottom: 1.75rem;
}

.stat-pill-item { display: flex; align-items: center; gap: 5px; }
.stat-val { font-size: 0.9rem; font-weight: 700; color: var(--color-gold); }
.stat-lbl { font-size: 0.725rem; color: rgba(255, 255, 255, 0.75); }
.stat-divider { color: rgba(var(--color-olive-rgb), 0.4); font-size: 0.725rem; }

.hero-actions-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* 3. TWO STATES MARKETS HUB */
.markets-section {
    padding: 60px 0;
    background-color: var(--color-bg-sand);
}

.markets-tab-container {
    margin-top: 2rem;
}

.tab-buttons-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.market-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(30, 25, 23, 0.12);
    background: var(--color-white);
    color: var(--color-text-dark);
    font-size: 0.825rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.market-tab-btn.active {
    background: var(--color-slate-dark);
    color: var(--color-gold);
    border-color: var(--color-slate-dark);
}

.market-tab-panel {
    display: none;
    background: var(--color-white);
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    border: 1px solid rgba(var(--color-olive-rgb), 0.25);
}

.market-tab-panel.active { display: block; }

.tab-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.panel-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-gold);
}

.tab-text-block h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 0.3rem 0 0.75rem;
}

.tab-text-block p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.tab-checklist {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.tab-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-dark);
}

.tab-checklist span { color: var(--color-gold); font-weight: 700; }

.panel-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* 4. PHILOSOPHY SECTION WITH BACKGROUND VIDEO (fondo2.mp4) & FROSTED GLASS CARDS */
.philosophy-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--color-slate-dark);
    color: var(--color-white);
    overflow: hidden;
    border-top: 1px solid rgba(var(--color-olive-rgb), 0.2);
    border-bottom: 1px solid rgba(var(--color-olive-rgb), 0.2);
}

.philosophy-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    z-index: 1;
}

.philosophy-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 19, 26, 0.7) 0%, rgba(13, 19, 26, 0.5) 50%, rgba(13, 19, 26, 0.75) 100%);
    z-index: 2;
}

.philosophy-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.quote-statement {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    padding-left: 1rem;
    border-left: 2px solid var(--color-gold);
}

.pillars-asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.pillar-box.glass-card {
    background: rgba(10, 13, 14, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(var(--color-olive-rgb), 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    color: var(--color-white);
}

.pillar-box.glass-card.active, 
.pillar-box.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--color-olive-rgb), 0.75);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    background: rgba(18, 22, 24, 0.92);
}

.box-num {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.35rem;
}

.pillar-box.glass-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.pillar-box.glass-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

/* 4.5 POST-TRANSACTION PROTECTION & PROPERTY TAX ADVOCACY */
.tax-advocacy-section {
    padding: 70px 0;
    background-color: var(--color-bg-sand);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.tax-advocacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2.5rem;
}

.tax-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.tax-card-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid rgba(var(--color-olive-rgb), 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    position: relative;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.tax-card-item:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.tax-card-item.highlight-card {
    background: linear-gradient(135deg, var(--color-slate-dark) 0%, #161D19 100%);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.tax-stamp-badge {
    align-self: flex-start;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    background: rgba(var(--color-olive-rgb), 0.18);
    border: 1px solid var(--color-gold);
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.tax-stamp-badge span { font-size: 0.65rem; font-weight: 800; display: block; letter-spacing: 1px; color: var(--color-olive); }
.tax-stamp-badge small { font-size: 0.6rem; color: var(--color-text-muted); display: block; }

.tax-card-headline {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 0.4rem;
}

.tax-card-sub {
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-olive);
}

.tax-card-question {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.tax-card-handwritten {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-gold);
    font-size: 0.875rem;
    margin-bottom: 0.65rem;
    display: block;
}

.tax-mini-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.tax-mini-list li {
    font-size: 0.78rem;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
}

.tax-mini-list span { color: var(--color-gold); font-weight: 700; }

.tax-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.tax-brand-signature {
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-olive);
}

.tax-card-item.cta-card h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.tax-card-item.cta-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.tax-editorial-box {
    background: var(--color-white);
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(var(--color-olive-rgb), 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.tax-editorial-box h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 0.3rem 0 0.75rem;
}

.tax-editorial-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.tax-checklist-container {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.tax-checklist-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(var(--color-olive-rgb), 0.2);
    color: var(--color-olive);
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.tax-checklist-item h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.tax-checklist-item p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.45;
}

/* 5. REVIEWS SECTION WITH LIGHTER BACKGROUND VIDEO (casa2.mp4) */
.spotlight-reviews {
    position: relative;
    padding: 60px 0;
    background-color: var(--color-slate-dark);
    color: var(--color-white);
    overflow: hidden;
}

.spotlight-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    z-index: 1;
}

.spotlight-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 13, 14, 0.65) 0%, rgba(10, 13, 14, 0.5) 50%, rgba(10, 13, 14, 0.75) 100%);
    z-index: 2;
}

.spotlight-reviews .container {
    position: relative;
    z-index: 3;
}

.reviews-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.review-card-item {
    background: rgba(10, 13, 14, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1.5rem 1.6rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(var(--color-olive-rgb), 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.review-card-item:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--color-olive-rgb), 0.6);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.stars-row {
    color: var(--color-gold);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.review-quote-text {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0 1.25rem;
}

.review-client-info {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.75rem;
}

.client-name { font-weight: 600; font-size: 0.95rem; display: block; }
.client-role { font-size: 0.78rem; color: var(--color-gold); }

.slider-controls {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.slide-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.slide-btn:hover { background: var(--color-gold); color: var(--color-slate-dark); }

/* 6. JOURNAL & MASONRY FEED */
.journal-section {
    padding: 60px 0;
    background-color: var(--color-bg-sand);
}

.masonry-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.masonry-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.masonry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
    border-color: rgba(var(--color-olive-rgb), 0.4);
}

.media-wrap {
    position: relative;
    height: 240px;
    background: var(--color-slate-dark);
    overflow: hidden;
}

.card-video, .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.masonry-card:hover .card-img,
.masonry-card:hover .card-video {
    transform: scale(1.04);
}

.media-overlay-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    background: rgba(10, 13, 14, 0.84);
    color: var(--color-gold);
    font-size: 0.7rem;
    font-weight: 600;
}

.card-body {
    padding: 1.25rem;
}

.card-body h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.card-body p {
    font-size: 0.825rem;
    color: var(--color-text-muted);
}

/* 7. LOUNGE & CONTACT */
.lounge-section {
    padding: 60px 0;
    background-color: var(--color-bg-light);
}

.lounge-card {
    background: var(--color-slate-dark);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    border: 1px solid rgba(var(--color-olive-rgb), 0.25);
}

.lounge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.lounge-heading {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin: 0.3rem 0 0.75rem;
}

.lounge-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.75rem;
}

.contact-methods-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(var(--color-olive-rgb), 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.method-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.method-value { font-family: var(--font-serif); font-size: 1.05rem; color: var(--color-gold); text-decoration: none; }

.lounge-form-col {
    background: var(--color-slate-card);
    padding: 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
}

.lounge-form h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 1rem; }

.form-field { margin-bottom: 0.85rem; }

.form-field input, .form-field select {
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(10, 13, 14, 0.85);
    color: var(--color-white);
    font-size: 0.825rem;
    outline: none;
}

.form-field input:focus, .form-field select:focus {
    border-color: var(--color-gold);
}

.form-success {
    display: none;
    margin-top: 1rem;
    padding: 0.65rem;
    border-radius: var(--radius-sm);
    background: rgba(var(--color-olive-rgb), 0.18);
    color: var(--color-gold);
    text-align: center;
    font-size: 0.825rem;
}

.form-success.active { display: block; }

/* 8. FOOTER */
.footer {
    background: #060809;
    color: rgba(255,255,255,0.6);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo { font-family: var(--font-serif); font-size: 1.25rem; color: var(--color-white); letter-spacing: 1.5px; }
.footer-sub { font-size: 0.725rem; color: var(--color-gold); display: block; }

.footer-right { display: flex; gap: 1.25rem; }
.footer-right a { color: var(--color-gold); font-size: 0.8rem; text-decoration: none; }

/* 5.5 CLOSING DAY & REAL CLIENT SUCCESS GALLERY */
.closings-section {
    padding: 70px 0;
    background-color: var(--color-bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.closings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

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

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

.closing-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(var(--color-olive-rgb), 0.25);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.closing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
    border-color: var(--color-gold);
}

.closing-img-wrap {
    position: relative;
    width: 100%;
    height: 310px;
    background: var(--color-slate-dark);
    overflow: hidden;
}

.closing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.closing-card:hover .closing-img {
    transform: scale(1.05);
}

.closing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 19, 26, 0.2) 0%, rgba(13, 19, 26, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.closing-card:hover .closing-overlay {
    opacity: 1;
}

.closing-tag {
    align-self: flex-start;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    background: rgba(10, 13, 14, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-gold);
    font-size: 0.725rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(var(--color-olive-rgb), 0.3);
}

.closing-zoom-icon {
    align-self: center;
    margin-bottom: auto;
    margin-top: auto;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-white);
    background: rgba(18, 24, 20, 0.88);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--color-gold);
}

.closing-card:hover .closing-zoom-icon {
    opacity: 1;
    transform: translateY(0);
}

.closing-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.closing-info h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--color-text-dark);
}

.closing-info p {
    font-size: 0.825rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.closing-meta {
    font-size: 0.725rem;
    font-weight: 600;
    color: var(--color-olive);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* LIGHTBOX MODAL STYLING */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 8, 9, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(var(--color-olive-rgb), 0.4);
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 1rem;
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

/* 6.5 RECOGNITION & #1 TOP PRODUCER SECTION WITH BACKGROUND VIDEO (casajulia.mp4) */
.recognition-section {
    position: relative;
    padding: 80px 0;
    background: var(--color-slate-dark);
    color: var(--color-white);
    overflow: hidden;
    border-top: 1px solid rgba(var(--color-olive-rgb), 0.25);
    border-bottom: 1px solid rgba(var(--color-olive-rgb), 0.25);
}

.recognition-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 1;
}

.recognition-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 13, 14, 0.72) 0%, rgba(10, 13, 14, 0.55) 50%, rgba(10, 13, 14, 0.78) 100%);
    z-index: 2;
}

.recognition-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2.5rem;
}

.award-card-col {
    display: flex;
    justify-content: center;
}

.award-graphic-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(var(--color-olive-rgb), 0.4);
    cursor: pointer;
    background: var(--color-slate-card);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    max-width: 370px;
    width: 100%;
}

.award-graphic-frame:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6);
}

.award-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.award-badge-ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(28, 25, 23, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
}

.ribbon-icon { font-size: 0.9rem; }
.ribbon-text { font-size: 0.725rem; font-weight: 700; color: var(--color-gold); letter-spacing: 0.5px; }

.award-zoom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(0deg, rgba(13, 19, 26, 0.9) 0%, transparent 100%);
    text-align: center;
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.award-graphic-frame:hover .award-zoom-overlay {
    opacity: 1;
    color: var(--color-gold);
}

.recognition-quote-col {
    display: flex;
    flex-direction: column;
}

.recognition-quote-box {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 2.2rem 2.2rem 1.8rem;
    border: 1px solid rgba(var(--color-olive-rgb), 0.25);
    backdrop-filter: blur(10px);
}

.quote-symbol {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    top: 5px;
    left: 15px;
    line-height: 1;
}

.instagram-quote-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.instagram-quote-text strong {
    color: var(--color-gold);
    font-style: normal;
}

.quote-author-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, #8C7536 100%);
    color: var(--color-slate-dark);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-weight: 600;
    font-size: 0.925rem;
    display: block;
    color: var(--color-white);
}

.author-title {
    font-size: 0.75rem;
    color: var(--color-gold);
}

/* ==========================================================================
   COMPREHENSIVE BOUTIQUE RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet & Mobile Screens (<= 992px) */
@media (max-width: 992px) {
    .split-hero {
        height: auto;
        min-height: 100vh;
        padding-top: 85px;
        padding-bottom: 40px;
    }
    
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .video-frame-container {
        height: clamp(260px, 42vh, 340px);
    }
    
    .tax-advocacy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .recognition-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tab-content-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lounge-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lounge-card {
        padding: 2rem 1.5rem;
    }

    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
    .editorial-title {
        font-size: clamp(1.4rem, 5.5vw, 1.85rem);
    }
    
    .editorial-subtext {
        font-size: 0.9rem;
    }
    
    .hero-actions-row {
        width: 100%;
        gap: 0.6rem;
    }
    
    .hero-actions-row .btn {
        width: 100%;
    }
    
    .tax-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .closings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Mobile Screens (<= 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .editorial-stats-row {
        width: 100%;
        box-sizing: border-box;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 0.6rem 0.85rem;
        gap: 0.5rem;
    }
    
    .stat-pill-item {
        font-size: 0.78rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .closings-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-asymmetric-grid {
        grid-template-columns: 1fr;
    }
    
    .masonry-feed-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ==========================================================================
   CINEMATIC SECTION SCROLL CROSSFADE & BLUR-FADE SYSTEM
   ========================================================================== */
.section-crossfade {
    will-change: opacity, filter, transform;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   TRANSLUCENT FROSTED GLASS CARDS & LIGHTENED BACKGROUND OVERLAYS
   ========================================================================== */
.hero-bg-video,
.philosophy-bg-video,
.spotlight-bg-video,
.recognition-bg-video {
    opacity: 0.82 !important;
}

.hero-video-overlay {
    background: linear-gradient(180deg, rgba(10, 13, 14, 0.40) 0%, rgba(10, 13, 14, 0.22) 50%, rgba(10, 13, 14, 0.45) 100%) !important;
}

.philosophy-video-overlay {
    background: linear-gradient(180deg, rgba(10, 13, 14, 0.40) 0%, rgba(10, 13, 14, 0.20) 50%, rgba(10, 13, 14, 0.45) 100%) !important;
}

.spotlight-video-overlay {
    background: linear-gradient(180deg, rgba(10, 13, 14, 0.30) 0%, rgba(10, 13, 14, 0.15) 50%, rgba(10, 13, 14, 0.35) 100%) !important;
}

.recognition-video-overlay {
    background: linear-gradient(180deg, rgba(10, 13, 14, 0.42) 0%, rgba(10, 13, 14, 0.25) 50%, rgba(10, 13, 14, 0.45) 100%) !important;
}

/* Translucent Glass Cards so background videos remain clearly visible */
.review-card-item,
.pillar-box.glass-card {
    background: rgba(10, 13, 14, 0.45) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
}

.review-card-item:hover,
.pillar-box.glass-card:hover,
.pillar-box.glass-card.active {
    background: rgba(18, 24, 20, 0.68) !important;
    border-color: var(--color-gold) !important;
}

/* FREQUENTLY ASKED QUESTIONS SECTION */
.faq-section {
    padding: 75px 0;
    background-color: var(--color-bg-sand);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-accordion-wrapper {
    max-width: 820px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(var(--color-olive-rgb), 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion-item[open] {
    border-color: var(--color-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-toggle-icon {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.faq-accordion-item[open] .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.925rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}
