/* ==========================================================================
   PREMIUM DESIGN SYSTEM VARIABLES
   ========================================================================== */
:root {
    /* Brand Colors */
    --primary: #0E4D43;
    --primary-light: #146C6A;
    --accent: #D4AF37;
    --accent-light: #E7C765;
    --dark: #08151B;
    --white: #FFFFFF;
    --bg: #F8F6F1;
    --border: #E8E4DB;

    /* Animation Timings */
    --ease-premium: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: 0.4s var(--ease-premium);
    --transition-fast: 0.25s ease;
}

/* ==========================================================================
   GLOBAL RESET & RENDERING OPTIMIZATIONS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
    /* High-end vector font rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   PREMIUM DESKTOP HEADER LAYOUT
   ========================================================================== */
.header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: top var(--transition-smooth);
    will-change: top;
}

.header-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(14, 77, 67, 0.08);
    border-radius: 32px;
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    box-shadow: 0 16px 48px rgba(8, 21, 27, 0.03);
    transition: min-height var(--transition-smooth), 
                border-radius var(--transition-smooth), 
                background var(--transition-smooth), 
                box-shadow var(--transition-smooth);
    will-change: min-height, border-radius, background;
}

/* Desktop Scroll State Sticky Transitions */
.header.scrolled {
    top: 0;
}

.header.scrolled .header-container {
    border-radius: 0 0 32px 32px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 40px rgba(8, 21, 27, 0.06);
    min-height: 92px;
}

/* ==========================================================================
   LOGO ARCHITECTURE
   ========================================================================== */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 80px; 
    width: auto;
    display: block;
    object-fit: contain;
    transition: height var(--transition-smooth);
    will-change: height;
}

.header.scrolled .logo img {
    height: 68px;
}

/* ==========================================================================
   DESKTOP NAVIGATION (Typography-First Design)
   ========================================================================== */
.desktop-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 48px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px; 
    text-transform: uppercase; 
    position: relative;
    padding: 8px 0;
    display: inline-block;
    transition: color var(--transition-fast);
}

/* Luxury Framed Accent Hover Effect */
.desktop-nav a::before,
.desktop-nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-smooth);
    will-change: width;
}
.desktop-nav a::before { top: 0; left: 0; }
.desktop-nav a::after { bottom: 0; right: 0; }

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--primary);
}

.desktop-nav a:hover::before,
.desktop-nav a:hover::after,
.desktop-nav a.active::before,
.desktop-nav a.active::after {
    width: 100%;
}

/* ==========================================================================
   LUXURY INTERACTIVE CTA BUTTON
   ========================================================================== */
.header-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    height: 54px;
    text-decoration: none;
    background: var(--primary);
    border-radius: 14px;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    z-index: 1;
    will-change: transform, box-shadow;
}

.header-btn .btn-text {
    color: var(--white);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 3;
    transition: color var(--transition-smooth);
}

.header-btn .btn-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    transform: translateY(102%);
    transition: transform var(--transition-smooth);
    z-index: 2;
    will-change: transform;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(14, 77, 67, 0.18);
}

.header-btn:hover .btn-slide {
    transform: translateY(0);
}

.header-btn:hover .btn-text {
    color: var(--dark);
}

/* ==========================================================================
   MOBILE MENU TOGGLE SYSTEM
   ========================================================================== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 10000;
    outline: none;
}

.menu-toggle .bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition-smooth), 
                opacity var(--transition-smooth), 
                background var(--transition-smooth),
                top var(--transition-smooth);
    will-change: transform, opacity, top;
}

.menu-toggle .bar-1 { top: 2px; }
.menu-toggle .bar-2 { top: 11px; width: 75%; left: auto; right: 0; }
.menu-toggle .bar-3 { top: 20px; }

/* Micro-animations on Toggle Activation */
.menu-toggle.active .bar-1 { top: 11px; transform: rotate(45deg); background: var(--dark); }
.menu-toggle.active .bar-2 { opacity: 0; transform: translateX(12px); }
.menu-toggle.active .bar-3 { top: 11px; transform: rotate(-45deg); background: var(--dark); }

/* ==========================================================================
   BLUR OVERLAY LAYER
   ========================================================================== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 21, 27, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
    z-index: 998;
    will-change: opacity, visibility;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   MOBILE SIDEBAR DRAWER (Luxury Layout Upgrade)
   ========================================================================== */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0; 
    width: 380px;
    max-width: 85%;
    height: 100vh;
    background: var(--bg); 
    border-right: 1px solid var(--border);
    z-index: 9999;
    padding: 48px 40px;
    transform: translateX(-102%); 
    transition: transform var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 24px 0 64px rgba(8, 21, 27, 0.08);
    /* Safe-scrolling container logic for minor viewports */
    overflow-y: auto;
    scrollbar-width: none; /* Firefox hidden layout */
    will-change: transform;
}

.mobile-sidebar::-webkit-scrollbar {
    display: none; /* Webkit hidden track layout */
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.sidebar-top {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.sidebar-top img {
    height: 80px; 
    width: auto;
    object-fit: contain;
}

/* Chronological Transition Stagger on Items */
.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.sidebar-links li {
    opacity: 0;
    transform: translateX(-24px);
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
    will-change: transform, opacity;
}

.mobile-sidebar.active .sidebar-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-sidebar.active .sidebar-links li:nth-child(1) { transition-delay: 0.10s; }
.mobile-sidebar.active .sidebar-links li:nth-child(2) { transition-delay: 0.16s; }
.mobile-sidebar.active .sidebar-links li:nth-child(3) { transition-delay: 0.22s; }
.mobile-sidebar.active .sidebar-links li:nth-child(4) { transition-delay: 0.28s; }

.sidebar-links a {
    text-decoration: none;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.sidebar-links a .num {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: var(--accent);
    margin-right: 16px;
    font-weight: 800;
    position: relative;
    top: -2px;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    color: var(--primary);
    transform: translateX(6px);
}

/* Structural Footer Details Container */
.sidebar-contact {
    margin-top: auto; 
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.contact-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    margin-bottom: 2px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-item i {
    color: var(--accent);
    font-size: 15px;
    transition: transform var(--transition-fast);
}

.contact-item:hover {
    color: var(--primary);
}

.contact-item:hover i {
    transform: scale(1.12) rotate(-8deg);
}

/* Social Alignment Layout */
.sidebar-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(14, 77, 67, 0.04);
    border-radius: 50%;
    color: var(--primary);
    font-size: 15px;
    text-decoration: none;
    transition: background var(--transition-fast), 
                color var(--transition-fast), 
                transform var(--transition-fast), 
                box-shadow var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 77, 67, 0.12);
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    text-decoration: none;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    transition: background var(--transition-fast), color var(--transition-fast);
    flex-shrink: 0;
}

.sidebar-btn:hover {
    background: var(--accent);
    color: var(--dark);
}

/* ==========================================================================
   RESPONSIVE LAYOUT STAGE (991px Viewport Breakpoint)
   ========================================================================== */
@media (max-width: 991px) {
    .desktop-nav, 
    .header-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
    
    /* Architecturally Flat & Secure Mobile Navigation Bar Layout */
    .header {
        top: 0 !important;
    }

    .header-container {
        border-radius: 0 0 24px 24px !important; 
        border-left: none;
        border-right: none;
        border-top: none;
        min-height: 88px;
        padding: 0 24px;
        background: var(--white); 
        box-shadow: 0 8px 32px rgba(8, 21, 27, 0.05);
    }
    
    .logo img {
        height: 64px;
    }
    
    /* Fixed Container Parameters for Scrolled Targets */
    .header.scrolled .header-container {
        min-height: 80px;
    }

    .header.scrolled .logo img {
        height: 58px;
    }
}

/* ==========================================================================
   RESPONSIVE LAYOUT STAGE (576px Handset Breakpoint)
   ========================================================================== */
@media (max-width: 576px) {
    .header-container {
        min-height: 80px;
        padding: 0 20px;
    }

    .logo img {
        height: 58px; 
    }

    .header.scrolled .header-container {
        min-height: 80px;
        padding: 0px 20px;
    }

    .header.scrolled .logo img {
        height: 58px;
    }

    .mobile-sidebar {
        padding: 40px 24px;
    }

    .sidebar-top img {
        height: 68px;
    }

    .sidebar-links {
        gap: 16px;
    }

    .sidebar-links a {
        font-size: 24px;
    }
}




/* ==========================================================================
   PREMIUM LIGHT FOOTER DESIGN SYSTEM
   ========================================================================== */
:root {
    --light-footer-bg: #ffffff; /* Clean, crisp light surface canvas */
    --primary-deep: #0E4D43;
    --primary-light: #146C6A;
    --luxury-gold: #D4AF37;
    --dark-charcoal: #08151B;
    --body-muted: #5A656B;
    --soft-border: rgba(14, 77, 67, 0.08);
    --bezier-luxury: cubic-bezier(0.25, 1, 0.3, 1);
}

.premium-light-footer {
    background-color: var(--light-footer-bg);
    padding: 90px 0 40px 0;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid var(--soft-border);
}

.premium-light-footer .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ==========================================================================
   MINIMALIST STRUCTURE COMPONENT GRID
   ========================================================================== */
.footer-minimal-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

/* Axis 1: Editorial Branding Profile */
.light-footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--dark-charcoal);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}
.light-footer-logo span {
    font-weight: 400;
    color: var(--luxury-gold);
    margin-left: 2px;
}

.light-footer-tagline {
    font-size: 14px;
    line-height: 1.65;
    color: var(--body-muted);
    max-width: 340px;
    margin: 0 0 25px 0;
}

/* Micro-Animated Minimal Social Badges */
.light-social-strip {
    display: flex;
    gap: 12px;
}

.light-social-strip a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(14, 77, 67, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.35s var(--bezier-luxury);
}

.light-social-strip a i {
    color: var(--primary-deep);
    font-size: 14px;
    transition: color 0.3s ease;
}

.light-social-strip a:hover {
    background-color: var(--primary-deep);
    transform: translateY(-2px);
}
.light-social-strip a:hover i {
    color: var(--light-footer-bg);
}

/* Axis 2: Clean Line Navigation Navigation */
.footer-nav-axis h5, 
.footer-contact-axis h5 {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-light);
    margin: 0 0 24px 0;
}

.footer-nav-axis ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav-axis ul a {
    font-size: 14.5px;
    color: var(--body-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav-axis ul a:hover {
    color: var(--dark-charcoal);
    padding-left: 4px;
}

/* Axis 3: Curated Contact Engine Alignment */
.footer-contact-axis {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-suite-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.suite-icon {
    color: var(--luxury-gold);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-suite-item p, 
.contact-suite-item a {
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--body-muted);
    text-decoration: none;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-suite-item a:hover {
    color: var(--primary-deep);
}

/* ==========================================================================
   BASELAINE DISCLOSURES TIER
   ========================================================================== */
.light-footer-divider {
    border: 0;
    height: 1px;
    background-color: var(--soft-border);
    margin: 0 0 30px 0;
}

.footer-light-baseline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.light-copyright {
    font-size: 13px;
    color: var(--body-muted);
    margin: 0;
}
.light-copyright span {
    color: var(--dark-charcoal);
    font-weight: 600;
}

.light-baseline-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.light-baseline-links a {
    font-size: 13px;
    color: var(--body-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.light-baseline-links a:hover {
    color: var(--luxury-gold);
}

.dot-separator {
    color: rgba(14, 77, 67, 0.2);
    font-size: 8px;
    user-select: none;
}

/* ==========================================================================
   RESPONSIVE LAYOUT SCALING BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
    .footer-minimal-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 50px 30px;
    }
    .footer-contact-axis {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .premium-light-footer { padding: 60px 0 30px 0; }
    .footer-minimal-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 45px;
    }
    .footer-contact-axis {
        grid-column: span 1;
    }
    .footer-light-baseline {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ==========================================================================
   UPDATED FOOTER LOGO IMAGE STYLING MATRIX
   ========================================================================== */
.light-footer-logo {
    display: inline-block;
    margin-bottom: 22px;
    transition: opacity 0.35s var(--bezier-luxury);
}

.light-footer-logo:hover {
    opacity: 0.85; /* Elegant, subtle interactive feedback */
}

.footer-logo-img {
    height: 80px;     /* Professional baseline height configuration for luxury marks */
    width: auto;      /* Strictly maintains vector or image aspect ratios */
    display: block;
    object-fit: contain;
}

/* Mobile responsive scaling optimization rules */
@media (max-width: 576px) {
    .footer-logo-img {
        height: 58px; /* Clean downscaling for structural balance on mobile viewports */
    }
}



.page-banner{

    position:relative;

    min-height:550px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:
    url('../Images/about-banner.jpg')
    center center/cover no-repeat;

}

.banner-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(8,21,27,.82),
    rgba(8,21,27,.75)
    );

}

.page-banner-content{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:900px;

    margin:auto;

}

.page-tag{

    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    color:#D4AF37;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;

}

.page-banner h1{

    font-size:
    clamp(3rem,8vw,6rem);

    font-family:
    'Playfair Display',
    serif;

    color:#fff;

    margin-bottom:20px;

}

.page-banner p{

    color:
    rgba(255,255,255,.82);

    font-size:18px;

    line-height:1.9;

    max-width:700px;

    margin:0 auto 40px;

}

.breadcrumb-box{

    display:inline-flex;

    align-items:center;

    gap:15px;

    padding:18px 30px;

    border-radius:60px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,.08);

}

.breadcrumb-box a{

    text-decoration:none;

    color:#fff;

    transition:.3s;

}

.breadcrumb-box a:hover{

    color:#D4AF37;

}

.breadcrumb-box span{

    color:#fff;

}

.breadcrumb-box .active{

    color:#D4AF37;

    font-weight:600;

}

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    width:28px;

    height:50px;

    border:
    2px solid rgba(255,255,255,.3);

    border-radius:50px;

}

.scroll-indicator span{

    position:absolute;

    top:10px;

    left:50%;

    transform:translateX(-50%);

    width:5px;

    height:5px;

    border-radius:50%;

    background:#D4AF37;

    animation:scrollMove 1.6s infinite;

}

@keyframes scrollMove{

    0%{

        opacity:0;

        transform:
        translate(-50%,0);

    }

    100%{

        opacity:1;

        transform:
        translate(-50%,18px);

    }

}

@media(max-width:768px){

    .page-banner{

        min-height:450px;

    }

    .page-banner p{

        font-size:16px;

    }

    .breadcrumb-box{

        padding:15px 22px;

    }

}

/* ==========================================================================
   CINEMATIC COMPACT BREADCRUMB HERO (45vh WITH 100px HEADER OFFSET)
   ========================================================================== */
:root {
    --brand-emerald-dark: #0E4D43;
    --brand-emerald-light: #146C6A;
    --brand-gold: #D4AF37;
    --brand-charcoal: #08151B;
    --text-white: #ffffff;
    --text-muted-light: #BAC6CC;
    --bezier-luxury: cubic-bezier(0.25, 1, 0.3, 1);
}

.cinematic-hero-section.compact-edition {
    position: relative;
    width: 100%;
    height: 45vh;               /* Clean, modern banner height proportion */
    min-height: 400px;          /* Safety net to prevent textual compression on small screens */
    padding-top: 100px;         /* Perfect spatial clearance for your 100px Absolute Header */
    display: flex;
    flex-direction: column;
    justify-content: center;    /* Balances text exactly inside the remaining 45vh area */
    background-color: var(--brand-charcoal);
    overflow: hidden;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ==========================================================================
   BACKGROUND & ATMOSPHERIC LAYERS
   ========================================================================== */
.hero-bg-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-kenburns-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) contrast(1.1);
    transform-origin: center center;
    animation: kenBurnsZoom 20s infinite alternate linear;
}

.hero-overlay-grade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 14, 18, 0.95) 0%, rgba(14, 77, 67, 0.35) 60%, rgba(8, 21, 27, 0.8) 100%);
    z-index: 2;
}

.hero-overlay-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 20%, rgba(5, 14, 18, 0.75) 100%);
    pointer-events: none;
    z-index: 3;
}

.hero-mist-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    opacity: 0.12;
    animation: mistDrift 60s infinite linear;
}

/* ==========================================================================
   CONTENT LAYOUT MANAGEMENT
   ========================================================================== */
.hero-content-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.hero-text-matrix {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -20px; /* Slight optical adjustment upwards for flawless equilibrium */
}

.hero-mini-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--brand-gold);
    margin-bottom: 14px;
}

.hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Scaled down perfectly to match the 45vh framework */
    font-weight: 800;
    color: var(--text-white);
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-main-title .gold-text {
    color: var(--brand-gold);
}

/* ==========================================================================
   FLOATING BREADCRUMB AXIS INTERACTION BASELINE
   ========================================================================== */
.hero-breadcrumb-axis {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-width: 1240px;
    padding: 0 25px;
    box-sizing: border-box;
}

.breadcrumb-pill-nav {
    display: inline-block;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 28px;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    top: -1px;
}

.breadcrumb-trail {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 13.5px;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-muted-light);
    font-weight: 600;
    transition: color 0.3s ease;
}

.breadcrumb-home-icon {
    font-size: 12px;
    color: var(--brand-emerald-light);
    transition: all 0.3s var(--bezier-luxury);
}

.breadcrumb-link:hover {
    color: var(--text-white);
}

.breadcrumb-link:hover .breadcrumb-home-icon {
    color: var(--brand-gold);
    transform: translateY(-1px);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 10px;
    user-select: none;
}

.breadcrumb-item.active-trail {
    font-weight: 700;
    color: var(--brand-gold);
}

/* ==========================================================================
   ANIMATIONS & TRANSITION TIMINGS
   ========================================================================== */
@keyframes kenBurnsZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes mistDrift {
    0% { transform: translateX(-5%); }
    100% { transform: translateX(5%); }
}

@keyframes fadeInUpWord {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.compact-edition.run-reveal-engine .reveal-stagger {
    opacity: 0;
    animation: fadeInUpWord 0.6s var(--bezier-luxury) forwards;
    animation-delay: calc(var(--order) * 120ms);
}

.compact-edition.run-reveal-engine .hero-main-title span {
    display: inline-block;
    animation: fadeInWordMajestic 0.7s var(--bezier-luxury) forwards;
    animation-delay: calc(var(--order) * 120ms + (var(--word-order) * 60ms)); 
    opacity: 0;
}

@keyframes fadeInWordMajestic {
    0% { opacity: 0; transform: translateY(10px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==========================================================================
   RESPONSIVE SCALING CONSTRAINTS
   ========================================================================== */
@media (max-width: 768px) {
    .cinematic-hero-section.compact-edition {
        height: 40vh;
        min-height: 350px;
        padding-top: 90px; /* Slight adaptation for tighter mobile headers if applicable */
    }
    .hero-main-title {
        font-size: 24px;
    }
    .breadcrumb-pill-nav {
        padding: 10px 20px;
    }
}