:root {
    --glass-bg: rgba(9, 10, 16, 0.82);
    --glass-border: rgba(197, 160, 89, 0.28);
    /* Champagne Gold */
    --glass-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.85);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.92);
    --text-muted: rgba(255, 255, 255, 0.68);
    --accent: #C5A059;
    /* Champagne Black Gold */
    --accent-light: #F0D59E;
    --accent-glow: rgba(197, 160, 89, 0.40);
    --secondary: #8B1C31;
    /* Shiny Royal Red Wine */
    --secondary-light: #D43859;
    --secondary-glow: rgba(184, 37, 66, 0.60);
    --bg-dark: #040406;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
}

main {
    flex: 1 0 auto;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* --- Scroll Progress Bar --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3.5px;
    background: linear-gradient(90deg, var(--accent), var(--secondary-light), var(--accent-light));
    z-index: 10000;
    /* box-shadow: none; */
    transition: width 0.1s cubic-bezier(0.1, 0.9, 0.2, 1);
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-weight: 500;
    color: var(--accent);
    text-shadow: none;
    letter-spacing: -0.015em;
}

.cinzel-font {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.wine-text,
.number-tag,
.read-more,
.timeline-year,
.role-company {
    color: var(--secondary-light) !important;
    text-shadow: 0 0 8px rgba(212, 56, 89, 0.5), 0 0 16px rgba(139, 28, 49, 0.35);
    font-weight: 600;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
}

a:hover {
    color: var(--secondary-light);
    text-shadow: 0 0 12px rgba(212, 56, 89, 0.85);
}

/* --- Scroll Animation Background Canvas --- */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    width: 100vw;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 0;
    background-color: #040407;
    pointer-events: none;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
    contain: strict;
}

/* Subtle Luxury Vignette Overlay for ideal balance of background visibility & text readability */
#canvas-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 40%, rgba(4, 4, 7, 0.12) 0%, rgba(4, 4, 7, 0.50) 100%),
        linear-gradient(180deg, rgba(4, 4, 7, 0.38) 0%, rgba(4, 4, 7, 0.08) 30%, rgba(4, 4, 7, 0.08) 70%, rgba(4, 4, 7, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

#video-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.46;
    /* Increased visibility for richer presence */
    filter: contrast(1.10) brightness(0.92) saturate(0.96);
    pointer-events: none;
    display: block;
    transform: translateZ(0);
    will-change: transform;
}

#embersCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    width: 100vw;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 1;
    pointer-events: none;
}

main {
    position: relative;
    z-index: 2;
}

/* --- Layout & Containers --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

section {
    padding: 5.8rem 0 4.8rem 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* --- Glassmorphism Foundation Panels --- */
.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 2rem 1.8rem;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.glass-panel.tracking {
    transition: transform 0.08s ease-out;
}

/* Flashlight Glow tracking mouse */
.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(650px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(197, 160, 89, 0.16), transparent 45%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.glass-panel:hover::before {
    opacity: 1;
}

.glass-panel:hover {
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6);
    border-color: rgba(197, 160, 89, 0.45);
    transform: translateY(-3px) scale(1.006);
}

.glass-panel>* {
    position: relative;
    z-index: 1;
    transform: translateZ(16px);
}

.section-header {
    margin-bottom: 3.2rem;
    text-align: center;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    background: linear-gradient(135deg, #fae8c8 0%, #dfba73 50%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid rgba(197, 160, 89, 0.35);
    background-color: rgba(197, 160, 89, 0.08);
    padding: 0.28rem 0.95rem;
    border-radius: 50px;
    margin-bottom: 1.1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.15);
}

.section-header h2 {
    font-size: clamp(2.3rem, 4.2vw, 3.1rem);
    line-height: 1.2;
    margin-bottom: 1.1rem;
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: initial;
    filter: none;
}

.section-header p {
    font-size: 1.06rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.approach-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: -0.4rem;
    margin-bottom: 0.85rem;
    background: linear-gradient(115deg, #c5a059 0%, #dfba73 18%, #fae8c8 32%, #ffffff 44%, #fffdf7 48%, #f7de9d 56%, #dfba73 68%, #c5a059 82%, #a8833b 92%, #c5a059 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.85));
    animation: goldenGlossShine 8.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

/* --- Interactive Luxury Cursor Glow Tracker --- */
#cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, rgba(139, 28, 49, 0.08) 35%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: blur(35px);
    transition: opacity 0.4s ease;
}

/* Standard scroll reveals */
.fade-in {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered Text Masking */
.text-reveal {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    filter: none !important;
}

.mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: baseline;
    line-height: 1.18;
    padding-bottom: 6px;
    contain: layout style;
}

/* Subtle Slow Glossy Shiny Golden Shine Engine */
@keyframes goldenGlossShine {
    0% {
        background-position: 180% 50%;
    }

    68%,
    100% {
        background-position: -40% 50%;
    }
}

.word {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.85s;
    background: linear-gradient(115deg, #c5a059 0%, #dfba73 18%, #fae8c8 32%, #ffffff 44%, #fffdf7 48%, #f7de9d 56%, #dfba73 68%, #c5a059 82%, #a8833b 92%, #c5a059 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 16px rgba(197, 160, 89, 0.28));
    animation: goldenGlossShine 8.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.text-reveal.visible .word {
    transform: translateY(0);
    opacity: 1;
}

.d-1 {
    transition-delay: 0.1s;
    animation-delay: 0s;
}

.d-2 {
    transition-delay: 0.2s;
    animation-delay: 0.22s;
}

.d-3 {
    transition-delay: 0.3s;
    animation-delay: 0.44s;
}

.d-4 {
    transition-delay: 0.4s;
    animation-delay: 0.66s;
}

.d-5 {
    transition-delay: 0.5s;
    animation-delay: 0.88s;
}

.d-6 {
    transition-delay: 0.6s;
    animation-delay: 1.1s;
}

.d-7 {
    transition-delay: 0.7s;
}

/* ==========================================================================
           1. PREMIUM LUXURY PRELOADER - SIMPLE, ELEGANT & PROFESSION-FOCUSED
           ========================================================================== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 45%, #13151f 0%, #08080c 70%, #030305 100%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.85s ease;
    pointer-events: all;
    overflow: hidden;
    padding: 1.5rem;
    text-align: center;
}

#loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 460px;
    width: 100%;
}

.loader-logo-wrap {
    margin-bottom: 1.1rem;
    position: relative;
}

.loader-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(197, 160, 89, 0.4));
    animation: loaderLogoPulse 3s ease-in-out infinite alternate;
}

@keyframes loaderLogoPulse {
    0% {
        transform: scale(0.96);
        filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
    }

    100% {
        transform: scale(1.04);
        filter: drop-shadow(0 0 20px rgba(223, 186, 115, 0.55));
    }
}

.loader-name {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.85rem, 4.2vw, 2.6rem);
    font-weight: 600;
    letter-spacing: 5px;
    background: linear-gradient(135deg, #ffffff 10%, #fae8c8 45%, #dfba73 80%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.35rem;
    line-height: 1.15;
    text-transform: uppercase;
}

.loader-profession {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 2.2px;
    color: var(--accent-light);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.92;
}

.loader-keyword-box {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(197, 160, 89, 0.25);
    padding: 0.4rem 1.1rem;
    border-radius: 30px;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    min-height: 36px;
}

.loader-keyword-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-light);
    box-shadow: 0 0 6px var(--accent-light);
    animation: loaderDotPulse 1.6s infinite ease-in-out;
}

@keyframes loaderDotPulse {

    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

.loader-keyword {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #f1f5f9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.loader-progress-wrap {
    width: 100%;
    max-width: 320px;
}

.loader-bar-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c5a059, #fae8c8, #ffffff);
    box-shadow: none !important;
    /* Zero big glow */
    border-radius: 2px;
    transition: width 0.1s linear;
}

.loader-percent-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.65rem;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 0.64rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.loader-status {
    color: #94a3b8;
    font-size: 0.62rem;
    letter-spacing: 1.2px;
    font-weight: 500;
}

.loader-percent {
    color: var(--accent-light);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* ==========================================================================
           2. TOP MENU (NAVBAR) - FROSTED GLASS BLUR & DYNAMIC NAVIGATION
           ========================================================================== */
#navbar,
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.82rem 0;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        backdrop-filter 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        -webkit-backdrop-filter 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: backdrop-filter, background, box-shadow;
}

/* Scrolled Glass State (When scrolling down the page) */
#navbar.scrolled,
nav.scrolled {
    background: rgba(6, 7, 13, 0.78);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75), 0 0 25px rgba(197, 160, 89, 0.08);
    padding: 0.42rem 0;
}

/* Dynamic Active Blur State (Triggered on click & during smooth scroll transition) */
#navbar.nav-blur-active,
#navbar.is-navigating,
nav.nav-blur-active,
nav.is-navigating {
    background: rgba(7, 9, 18, 0.88) !important;
    backdrop-filter: blur(36px) saturate(220%) brightness(1.08) !important;
    -webkit-backdrop-filter: blur(36px) saturate(220%) brightness(1.08) !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.48) !important;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.88), 0 0 35px rgba(197, 160, 89, 0.25), inset 0 -1px 0 rgba(232, 203, 140, 0.4) !important;
    padding: 0.42rem 0;
}

/* Bottom Shimmer Line during Navigation */
.nav-shimmer-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.85) 40%, rgba(184, 37, 66, 0.85) 70%, transparent 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: none;
    z-index: 10;
}

#navbar.nav-blur-active .nav-shimmer-line,
#navbar.is-navigating .nav-shimmer-line,
nav.nav-blur-active .nav-shimmer-line,
nav.is-navigating .nav-shimmer-line {
    opacity: 1;
    transform: scaleX(1);
    animation: shimmerSweep 1.4s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes shimmerSweep {
    0% {
        filter: brightness(1) drop-shadow(0 0 4px var(--accent-light));
        opacity: 0.7;
    }

    100% {
        filter: brightness(1.7) drop-shadow(0 0 12px var(--accent));
        opacity: 1;
    }
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    min-height: 44px;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(1.2rem, 3vw, 2.5rem);
    box-sizing: border-box;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    line-height: 1;
    flex-shrink: 0;
    padding: 0.2rem 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-logo:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.nav-logo:active {
    transform: scale(0.97);
}

.nav-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(197, 160, 89, 0.25));
    transition: filter 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 14px rgba(250, 232, 200, 0.45));
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: clamp(2rem, 2.6vw, 2.85rem);
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    padding: 0.42rem 0.65rem;
    border-radius: 20px;
    line-height: 1;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    background: transparent;
    transition: color 0.25s ease,
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
    user-select: none;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow: 0 0 14px rgba(197, 160, 89, 0.2);
}

.nav-links a:active {
    transform: scale(0.96);
}

.nav-links a:focus {
    outline: none !important;
}

/* Active Nav Link Glowing Pill State (Dynamically Driven by ScrollSpy) */
.nav-links a.active {
    color: #ffffff !important;
    background: rgba(197, 160, 89, 0.2) !important;
    border-color: rgba(197, 160, 89, 0.6) !important;
    box-shadow: 0 0 18px rgba(197, 160, 89, 0.4), inset 0 0 10px rgba(197, 160, 89, 0.25) !important;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(232, 203, 140, 0.75);
}

/* Top CTA Button in Nav */
.nav-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.4rem !important;
    height: 34px !important;
    padding: 0 1.25rem !important;
    border: 1px solid rgba(197, 160, 89, 0.5) !important;
    border-radius: 20px !important;
    background: rgba(16, 16, 24, 0.85) !important;
    color: var(--accent-light) !important;
    font-size: 0.80rem !important;
    font-weight: 600 !important;
    letter-spacing: 1.4px !important;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.5) !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    z-index: 1 !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    margin-left: 0;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
}

.nav-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: translateX(-50%);
    transition: width 0.35s ease;
    pointer-events: none;
    z-index: 2;
}

.nav-cta-btn:hover {
    color: #ffffff !important;
    border-color: #b82542 !important;
    background: linear-gradient(135deg, #8b1c31 0%, #4a0815 100%) !important;
    box-shadow: 0 4px 16px rgba(139, 28, 49, 0.45) !important;
}

.nav-cta-btn:active {
    transform: scale(0.96) !important;
}

.nav-cta-btn:hover::before {
    width: 100%;
}

.magnetic {
    transition: transform 0.3s ease-out;
}

.magnetic.tracking {
    transition: none;
}

/* Language Switcher Component */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 14, 22, 0.85);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 14px;
    padding: 2px 4px;
    gap: 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    height: 26px;
    box-sizing: border-box;
    flex-shrink: 0;
    line-height: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    padding: 2px 5px;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    color: #ffffff;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #0b0b10 !important;
    font-weight: 700;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.45);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.55rem;
    user-select: none;
    line-height: 1;
}

/* Mobile Navigation Toggle Button */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    background: rgba(14, 14, 22, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    gap: 4px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-mobile-toggle:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: var(--accent);
}

.nav-mobile-toggle .bar {
    display: block;
    width: 16px;
    height: 1.8px;
    background-color: var(--accent-light);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background-color 0.3s ease;
}

.nav-mobile-toggle.open .bar-1 {
    transform: translateY(5.8px) rotate(45deg);
}

.nav-mobile-toggle.open .bar-2 {
    opacity: 0;
    transform: scaleX(0);
}

.nav-mobile-toggle.open .bar-3 {
    transform: translateY(-5.8px) rotate(-45deg);
}

/* Mobile Dropdown Menu Drawer */
.nav-mobile-dropdown {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: rgba(7, 9, 17, 0.96);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 16px;
    margin: 0.4rem 1rem 0.5rem 1rem;
    padding: 0 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 25px rgba(197, 160, 89, 0.15);
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    box-sizing: border-box;
}

.nav-mobile-dropdown.open {
    display: flex !important;
    flex-direction: column;
    max-height: calc(100dvh - 72px);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 0.95rem 1rem calc(1.3rem + env(safe-area-inset-bottom, 0px)) 1rem;
    opacity: 1;
}

.nav-mobile-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.12);
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #ffffff;
    background: rgba(197, 160, 89, 0.16);
    border-color: rgba(197, 160, 89, 0.45);
    box-shadow: 0 0 14px rgba(197, 160, 89, 0.25);
}

.nav-cta-btn-mobile {
    background: linear-gradient(135deg, rgba(139, 28, 49, 0.85), rgba(74, 8, 21, 0.95)) !important;
    color: #ffffff !important;
    border-color: rgba(197, 160, 89, 0.5) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    text-align: center;
    font-weight: 600;
    margin-top: 0.35rem;
    box-sizing: border-box;
}

/* Mobile Language Switcher */
.nav-mobile-lang-wrap {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.mobile-lang-switcher {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    height: auto !important;
    gap: 0.6rem !important;
    padding: 0.35rem !important;
    border-radius: 12px !important;
    background: rgba(14, 14, 22, 0.95) !important;
    border: 1px solid rgba(197, 160, 89, 0.3) !important;
    box-sizing: border-box;
}

.mobile-lang-switcher .lang-btn {
    flex: 1 1 0 !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    padding: 0.6rem 0.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.25s ease;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap !important;
    box-sizing: border-box;
}

.mobile-lang-switcher .lang-btn.active,
.mobile-lang-switcher .lang-btn:active {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.3), rgba(139, 28, 49, 0.45));
    border-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.35);
}

@media (max-width: 1024px) {
    .nav-inner {
        justify-content: space-between;
        gap: 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }
}

@media (max-width: 600px) {
    .nav-logo {
        gap: 0.6rem;
    }

    .nav-logo-img {
        height: 28px;
    }

    .nav-mobile-dropdown {
        margin: 0.4rem 0.6rem 0.4rem 0.6rem;
        padding: 0 0.8rem;
    }

    .nav-mobile-dropdown.open {
        padding: 0.9rem 0.9rem;
    }

    .mobile-nav-link {
        font-size: 0.76rem;
        padding: 0.65rem 0.8rem;
    }
}

/* ==========================================================================
           3. HERO (TOP BANNER) WITH MOUSE-SHIFT PHOTO
           ========================================================================== */
#hero {
    padding-top: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-name {
    background: linear-gradient(135deg, #ffffff 0%, #fae8c8 45%, var(--accent) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.title-sub {
    display: block;
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: clamp(2.5rem, 4.2vw, 3.8rem);
    font-weight: 700;
    font-style: italic;
    line-height: 1.12;
    letter-spacing: 0.5px;
    text-transform: none;
    max-width: 620px;
    margin-top: 0;
    margin-bottom: 0;
    background: linear-gradient(115deg, #c5a059 0%, #dfba73 18%, #fae8c8 32%, #ffffff 44%, #fffdf7 48%, #f7de9d 56%, #dfba73 68%, #c5a059 82%, #a8833b 92%, #c5a059 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 20px rgba(197, 160, 89, 0.32));
    animation: goldenGlossShine 8.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 540px;
    margin-bottom: 2.2rem;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Buttons - Clean Luxury Elevation & Smooth Wine Surge */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.68rem 1.6rem;
    border-radius: 30px;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 600;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    transition: color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, filter 0.25s ease;
    will-change: transform, box-shadow;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Subtle top gold accent line expanding on hover & touch */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fae8c8, transparent);
    transform: translateX(-50%);
    transition: width 0.35s ease;
    pointer-events: none;
    z-index: 2;
}

/* Dynamic Radial Touch / Mouse Spotlight */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--btn-mouse-x, 50%) var(--btn-mouse-y, 50%), rgba(255, 255, 255, 0.38) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.btn:hover::after,
.btn.tracking::after,
.btn:active::after,
.btn.touch-pressed::after {
    opacity: 1;
}

.btn:hover::before,
.btn.touch-pressed::before {
    width: 100%;
}

.btn:active,
.btn.touch-pressed {
    transform: scale(0.95) translateY(0px) !important;
    filter: brightness(1.2);
}

/* Primary Button: Champagne Gold -> Luxury Wine */
.btn-primary {
    background: linear-gradient(135deg, #fae8c8 0%, #dfba73 35%, #c5a059 70%, #9e782e 100%);
    border: 1px solid rgba(250, 232, 200, 0.9);
    color: #1a1205;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(197, 160, 89, 0.35), 0 0 10px rgba(223, 186, 115, 0.25);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
    animation: btnGlowPulse 4.5s ease-in-out infinite;
}

@keyframes btnGlowPulse {

    0%,
    100% {
        box-shadow: 0 4px 18px rgba(197, 160, 89, 0.35), 0 0 10px rgba(223, 186, 115, 0.2);
    }

    50% {
        box-shadow: 0 6px 26px rgba(197, 160, 89, 0.6), 0 0 18px rgba(250, 232, 200, 0.45);
    }
}

.btn-primary:hover,
.btn-primary.touch-pressed {
    background: linear-gradient(135deg, #b82542 0%, #8b1c31 50%, #4a0815 100%);
    border-color: #fca5a5;
    box-shadow: 0 8px 25px rgba(184, 37, 66, 0.5), 0 0 15px rgba(252, 165, 165, 0.35);
    color: #ffffff;
    text-shadow: none;
}

/* Secondary Button */
.btn-secondary {
    background: rgba(14, 14, 20, 0.75);
    border: 1px solid rgba(197, 160, 89, 0.45);
    color: var(--accent-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover,
.btn-secondary.touch-pressed {
    background: linear-gradient(135deg, #8b1c31 0%, #4a0815 100%);
    border-color: #b82542;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Kinetic Arrow Animation */
.btn span {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover span:last-child,
.btn.touch-pressed span:last-child,
.btn:active span:last-child {
    transform: translateX(5px);
}

/* Mouse-shift Portrait Card */
.hero-photo-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-photo-card {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(197, 160, 89, 0.2);
    transition: transform 0.15s ease-out;
    transform-style: preserve-3d;
    background: #0d0d12;
}

.hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: contrast(1.05) brightness(0.98);
    transition: transform 0.5s ease;
}

.hero-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.4rem 1.2rem 1.3rem;
    text-align: center;
    background: linear-gradient(0deg, rgba(7, 7, 10, 0.78) 0%, rgba(7, 7, 10, 0.45) 50%, rgba(7, 7, 10, 0.12) 80%, transparent 100%);
    z-index: 2;
    box-sizing: border-box;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    pointer-events: none;
}

.hero-photo-name {
    font-family: 'Cinzel', 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #f5d696;
    letter-spacing: 1.2px;
    margin-bottom: 0.35rem;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 1),
        0 4px 12px rgba(0, 0, 0, 0.95),
        0 8px 24px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.85);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero-photo-card:hover .hero-photo-name {
    color: #ffe6aa;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 1),
        0 4px 14px rgba(0, 0, 0, 0.98),
        0 8px 28px rgba(0, 0, 0, 0.95),
        0 0 24px rgba(223, 186, 115, 0.65);
}

.hero-photo-role {
    font-size: 0.76rem;
    color: #ffffff;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    text-align: center;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 1),
        0 2px 8px rgba(0, 0, 0, 0.95),
        0 4px 16px rgba(0, 0, 0, 0.9);
}

/* --- Note: Responsive hero adaptations are consolidated in the master @media queries at the bottom of stylesheet --- */

/* ==========================================================================
           4. BRAND PHILOSOPHY SECTION - LUXURY HOURGLASS & QUOTE SHOWCASE
           ========================================================================== */
#wine-section {
    padding: 4.5rem 0 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
}

.philosophy-showcase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    width: 100%;
}

/* --- Interactive Single-Hand Luxury Clock (Time & Maturation) --- */
.clock-interactive-wrapper {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem;
    border-radius: 50%;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.clock-interactive-wrapper:hover {
    transform: translateY(-2px) scale(1.04);
}

.clock-aura-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 203, 140, 0.28) 0%, rgba(197, 160, 89, 0.12) 45%, transparent 70%);
    filter: blur(18px);
    pointer-events: none;
    transition: all 0.5s ease;
    opacity: 0.6;
}

.clock-interactive-wrapper:hover .clock-aura-glow,
.clock-interactive-wrapper.full .clock-aura-glow {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(250, 232, 200, 0.45) 0%, rgba(197, 160, 89, 0.25) 45%, transparent 75%);
    filter: blur(20px);
    opacity: 0.85;
}

.clock-svg-box {
    width: 85px;
    height: 85px;
    position: relative;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 10px rgba(197, 160, 89, 0.35));
    transition: filter 0.3s ease;
}

.clock-interactive-wrapper:hover .clock-svg-box {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 16px rgba(250, 232, 200, 0.5));
}

.single-clock-hand {
    transition: transform 0.05s linear;
}

.hourglass-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--accent-light);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.hourglass-tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-light);
    box-shadow: 0 0 6px var(--accent-light);
}

.hourglass-interactive-wrapper.full .hourglass-status-tag {
    color: #ffffff;
}

/* --- High-Impact Glassmorphic Philosophy Quote Showcase Card --- */
.quote-showcase-card {
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1.5px solid rgba(197, 160, 89, 0.45);
    border-radius: 24px;
    padding: 3rem 3.4rem;
    box-shadow: 0 0 35px rgba(197, 160, 89, 0.22), inset 0 0 25px rgba(197, 160, 89, 0.08);
    position: relative;
    overflow: hidden;
    max-width: 840px;
    width: 100%;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.quote-showcase-card:hover {
    box-shadow: 0 0 50px rgba(197, 160, 89, 0.35), inset 0 0 30px rgba(197, 160, 89, 0.12);
    border-color: rgba(240, 213, 158, 0.75);
    transform: translateY(-2px);
}

.quote-watermark-glyph {
    position: absolute;
    top: -15px;
    left: 24px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 11rem;
    line-height: 1;
    color: rgba(197, 160, 89, 0.09);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.quote-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 0.74rem;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--accent-light);
    font-weight: 700;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

.quote-statement {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.45rem, 2.7vw, 2.15rem);
    line-height: 1.5;
    color: #ffffff;
    font-style: italic;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
    margin: 0;
    padding: 0;
}

.quote-divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 1.8rem auto 1.5rem auto;
    position: relative;
    z-index: 1;
}

.quote-author-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.quote-author-avatar-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid rgba(197, 160, 89, 0.55);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.35);
    flex-shrink: 0;
}

.quote-author-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.quote-author-info {
    text-align: left;
}

.quote-author-name {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
}

.quote-author-role {
    font-size: 0.72rem;
    color: var(--accent-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.92;
    line-height: 1.3;
}

/* --- Next Component Unlock Gateway - Innovative Luxury Discover Signature --- */
.wine-unlock-gateway {
    margin-top: 2.2rem;
    opacity: 0;
    transform: translateY(22px);
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5;
    width: 100%;
}

.wine-unlock-gateway.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.luxury-discover-trigger {
    display: inline-flex;
    align-items: center;
    gap: 1.6rem;
    padding: 0.85rem 2.2rem 0.85rem 1rem;
    background: radial-gradient(circle at 10% 50%, rgba(197, 160, 89, 0.12) 0%, rgba(20, 15, 12, 0.85) 100%);
    border: 1.5px solid rgba(197, 160, 89, 0.45);
    border-radius: 60px;
    cursor: pointer;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65), 0 0 20px rgba(197, 160, 89, 0.15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

/* Landing page champagne gold hover surface */
.luxury-discover-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fae8c8 0%, #dfba73 35%, #c5a059 70%, #9e782e 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.luxury-discover-trigger:hover {
    border-color: rgba(250, 232, 200, 0.95);
    box-shadow: 0 12px 35px rgba(197, 160, 89, 0.5), 0 0 25px rgba(223, 186, 115, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.luxury-discover-trigger:hover::before {
    opacity: 1;
}

.luxury-discover-trigger:active {
    transform: scale(0.98) translateY(-1px);
}

.luxury-discover-trigger:hover .discover-eyebrow {
    color: #3b2a0c;
    opacity: 0.95;
}

.luxury-discover-trigger:hover .discover-main-label {
    color: #1a1205;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.luxury-discover-trigger:hover .discover-center-icon {
    background: #1a1205;
    color: #fae8c8;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.6);
}

.luxury-discover-trigger:hover .discover-track {
    stroke: rgba(26, 18, 5, 0.3);
}

.luxury-discover-trigger:hover .discover-indicator {
    stroke: #1a1205;
    filter: none;
}

/* Orbital Rotating Compass Ring */
.discover-orbital-ring {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discover-spin-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: rotateCompassRing 14s linear infinite;
    transform-origin: center;
}

@keyframes rotateCompassRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.discover-track {
    fill: none;
    stroke: rgba(197, 160, 89, 0.25);
    stroke-width: 2;
    stroke-dasharray: 4 6;
    transition: stroke 0.35s ease;
}

.discover-indicator {
    fill: none;
    stroke: #fae8c8;
    stroke-width: 3;
    stroke-dasharray: 25 150;
    stroke-linecap: round;
    filter: drop-shadow(0 0 4px #dfba73);
    transition: stroke 0.35s ease, filter 0.35s ease;
}

.discover-center-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fae8c8 0%, #dfba73 50%, #c5a059 100%);
    color: #120d06;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.6);
    position: relative;
    z-index: 2;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

/* Typography in Trigger */
.discover-text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0.15rem;
    position: relative;
    z-index: 2;
}

.discover-eyebrow {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-light);
    opacity: 0.85;
    transition: color 0.35s ease, opacity 0.35s ease;
}

.discover-main-label {
    font-family: 'Outfit', 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    transition: color 0.35s ease, text-shadow 0.35s ease;
}

/* Elegant Fine Diamond Rule Connecting Downwards */
.discover-elegant-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.4rem;
    margin-bottom: 0;
    width: 180px;
    opacity: 0.75;
}

.discover-elegant-rule .rule-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.6), transparent);
}

.discover-elegant-rule .rule-diamond {
    font-size: 0.6rem;
    color: var(--accent-light);
    animation: diamondShimmer 2.5s infinite ease-in-out;
}

@keyframes diamondShimmer {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
        filter: drop-shadow(0 0 6px var(--accent));
    }
}

/* ==========================================================================
           5. ABOUT ME SECTION
           ========================================================================== */
#about {
    position: relative;
    padding-top: 0.2rem;
    min-height: auto;
    justify-content: flex-start;
}

#about .section-header {
    margin-top: 0;
    margin-bottom: clamp(1.4rem, 2.5vw, 2.2rem);
}

#about .section-header h2 {
    margin-top: 0;
    margin-bottom: 0 !important;
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 700;
    font-style: italic;
    line-height: 1.05;
    letter-spacing: 1px;
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: initial;
    filter: none;
}

#about .section-header h2 span.word {
    background: linear-gradient(115deg, #c5a059 0%, #dfba73 18%, #fae8c8 32%, #ffffff 44%, #fffdf7 48%, #f7de9d 56%, #dfba73 68%, #c5a059 82%, #a8833b 92%, #c5a059 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 16px rgba(197, 160, 89, 0.28));
    animation: goldenGlossShine 8.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

#about .grid-2 {
    transform: none;
    opacity: 1;
    filter: none;
    transition: all 0.6s ease;
}

.about-portrait-card {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(197, 160, 89, 0.35);
    box-shadow: var(--glass-shadow), 0 0 25px rgba(184, 37, 66, 0.2);
    transition: all 0.5s ease;
}

.about-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.signature-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signature-name {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    font-style: italic;
    color: var(--accent);
    font-weight: 600;
}

/* ==========================================================================
           6. NUMBERS SECTION (IMPACT METRICS)
           ========================================================================== */
#numbers .grid-3 {
    gap: 1.4rem;
    position: relative;
    z-index: 3;
    margin: 1.5rem 0;
}

.stat-card {
    position: relative;
    padding: 1.15rem 0.95rem;
    text-align: center;
    border-radius: 13px;
    cursor: pointer;
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(14, 14, 20, 0.78);
    border: 1px solid rgba(197, 160, 89, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
    overflow: visible;
}

/* Hover Overdrive State */
.stat-card:hover {
    border-color: var(--accent-light) !important;
    background: rgba(22, 20, 30, 0.95) !important;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95), 0 0 30px rgba(197, 160, 89, 0.4), 0 0 20px rgba(184, 37, 66, 0.3) !important;
    z-index: 10;
}

.stat-front {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.stat-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0.6rem 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    background: rgba(14, 14, 20, 0.96);
    border-radius: 12px;
    color: #f1f5f9;
    font-size: 0.71rem;
    line-height: 1.32;
    text-align: center;
    box-sizing: border-box;
}

.stat-card:hover .stat-front,
.stat-card.is-flipped .stat-front,
.stat-card.touch-active .stat-front {
    opacity: 0;
    transform: scale(0.9);
}

.stat-card:hover .stat-back,
.stat-card.is-flipped .stat-back,
.stat-card.touch-active .stat-back {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    border: 1px solid var(--accent);
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.25);
}

.stat-num {
    font-size: 1.95rem;
    font-weight: 800;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.05;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.68rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 500;
    line-height: 1.25;
}

/* ==========================================================================
           7. PHILOSOPHY SECTION (INTERACTIVE 3D CARD DECK)
           ========================================================================== */
.philosophy-stack-wrapper {
    position: relative;
    width: 100%;
    perspective: 1200px;
    padding: 1.2rem 0 1.8rem;
}

.philosophy-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.philosophy-card {
    position: relative;
    padding: 1.4rem 1.2rem;
    border-radius: 14px;
    min-height: 185px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(14, 14, 20, 0.85);
    border: 1px solid rgba(197, 160, 89, 0.24);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s ease,
        border-color 0.4s ease,
        opacity 0.45s ease,
        background 0.4s ease;
    will-change: transform, box-shadow, opacity;
    overflow: visible;
}

/* Default: Card 1 is middle-aligned in the center, with Cards 2 & 3 stacked symmetrically behind it */
@media (min-width: 769px) {
    .philosophy-grid:not(.is-expanded):not(:hover) .philosophy-card:nth-child(1) {
        transform: translate3d(calc(100% + 1.5rem), 0, 0);
        z-index: 10;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 24px rgba(197, 160, 89, 0.16);
    }

    .philosophy-grid:not(.is-expanded):not(:hover) .philosophy-card:nth-child(2) {
        transform: translate3d(-14px, -8px, -20px) rotate(-2.5deg) scale(0.96);
        z-index: 5;
        opacity: 0.88;
        border-color: rgba(184, 37, 66, 0.4);
        box-shadow: -6px 12px 30px rgba(0, 0, 0, 0.85), 0 0 15px rgba(184, 37, 66, 0.18);
    }

    .philosophy-grid:not(.is-expanded):not(:hover) .philosophy-card:nth-child(3) {
        transform: translate3d(calc(-100% - 1.5rem + 14px), -8px, -20px) rotate(2.5deg) scale(0.96);
        z-index: 5;
        opacity: 0.88;
        border-color: rgba(197, 160, 89, 0.35);
        box-shadow: 6px 12px 30px rgba(0, 0, 0, 0.85), 0 0 15px rgba(197, 160, 89, 0.15);
    }

    /* Hover / Expanded State: Card 1 moves Left, Card 2 in Middle, Card 3 moves Right */
    .philosophy-grid:hover .philosophy-card,
    .philosophy-grid.is-expanded .philosophy-card {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
        opacity: 1;
        z-index: 5;
    }

    .philosophy-grid:hover .philosophy-card:nth-child(1),
    .philosophy-grid.is-expanded .philosophy-card:nth-child(1) {
        transition-delay: 0ms;
    }

    .philosophy-grid:hover .philosophy-card:nth-child(2),
    .philosophy-grid.is-expanded .philosophy-card:nth-child(2) {
        transition-delay: 45ms;
    }

    .philosophy-grid:hover .philosophy-card:nth-child(3),
    .philosophy-grid.is-expanded .philosophy-card:nth-child(3) {
        transition-delay: 90ms;
    }

    /* Individual Card Hover Overdrive when expanded */
    .philosophy-grid:hover .philosophy-card:hover,
    .philosophy-grid.is-expanded .philosophy-card:hover {
        transform: translate3d(0, -8px, 15px) scale(1.025) !important;
        border-color: var(--accent-light) !important;
        background: rgba(20, 18, 28, 0.95) !important;
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.95), 0 0 35px rgba(197, 160, 89, 0.35) !important;
        z-index: 20 !important;
    }
}

@media (max-width: 768px) {
    .philosophy-stack-wrapper {
        perspective: none;
        padding: 0.5rem 0 1rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        perspective: none;
        transform: none !important;
    }

    .philosophy-card {
        min-height: auto;
        transform: none !important;
        opacity: 1 !important;
        padding: 1.3rem 1.15rem;
        border-radius: 12px;
    }
}

.number-tag {
    font-size: 0.68rem;
    margin-bottom: 0.35rem;
    display: inline-block;
    font-family: 'Cinzel', serif;
    letter-spacing: 1.2px;
}

.philosophy-card h3 {
    font-size: 1.02rem;
    margin-bottom: 0.35rem;
    color: #ffffff;
    line-height: 1.25;
}

.philosophy-card p {
    font-size: 0.78rem;
    line-height: 1.45;
}

/* ==========================================================================
           8. CAREER HISTORY (TIMELINE)
           ========================================================================== */
.timeline {
    position: relative;
    padding-left: 2.8rem;
    margin-left: 0.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0%;
    background: linear-gradient(to bottom, var(--accent), var(--secondary-light));
    box-shadow: 0 0 15px var(--accent), 0 0 12px var(--secondary);
    transition: height 2s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.3s;
}

.timeline.visible .timeline-progress {
    height: 100%;
}

.timeline-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, #ffffff 30%, #ffffff 70%, transparent);
    border-radius: 1px;
    box-shadow: 0 0 8px #ffffff, 0 0 14px rgba(255, 255, 255, 0.85);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.timeline.visible .timeline-pulse {
    animation: pulse-travel 3.5s infinite linear 1s;
}

@keyframes pulse-travel {
    0% {
        top: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.2rem;
    top: 0.4rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    box-shadow: 0 0 12px var(--secondary-light);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
}

.timeline.visible .timeline-item:nth-child(3)::before {
    transform: scale(1);
    transition-delay: 0.3s;
}

.timeline.visible .timeline-item:nth-child(4)::before {
    transform: scale(1);
    transition-delay: 0.6s;
}

.timeline.visible .timeline-item:nth-child(5)::before {
    transform: scale(1);
    transition-delay: 0.9s;
}

.timeline.visible .timeline-item:nth-child(6)::before {
    transform: scale(1);
    transition-delay: 1.2s;
}

.timeline.visible .timeline-item:nth-child(7)::before {
    transform: scale(1);
    transition-delay: 1.5s;
}

.timeline-year {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: 1.8px;
    background: linear-gradient(135deg, #ff8fa3 0%, #ff6b8b 50%, #dfba73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 10px rgba(255, 107, 139, 0.45));
}

.role-company {
    font-size: 0.88rem;
    font-weight: 600;
    color: #ff9ebb;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 0 12px rgba(212, 56, 89, 0.5);
}

.timeline-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

.timeline-bullet {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-top: 0.35rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

.timeline-bullet span.dot {
    color: #fae8c8;
    font-size: 1.1rem;
    line-height: 1;
    text-shadow: 0 0 8px rgba(197, 160, 89, 0.7);
}

/* ==========================================================================
           9. MY PROJECTS (MANDATES) & MODAL
           ========================================================================= */
#mandates.container {
    max-width: 1360px;
}

.mandates-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.95rem;
    width: 100%;
    padding: 2rem 0.5rem;
    perspective: 1000px;
}

.mandate-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    cursor: pointer;
    border-radius: 14px;
    padding: 1.25rem 1rem;
    position: relative;
    overflow: hidden;
    background: rgba(14, 14, 20, 0.76);
    border: 1px solid rgba(197, 160, 89, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease;
    will-change: transform, box-shadow;
}

/* Dynamic Organic Floating Wave Physics across the 5 Mandate Cards (Alternating Tilts & Buoyancy) */
.mandate-card:nth-child(1) {
    animation: floatMandate1 6.2s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.mandate-card:nth-child(2) {
    animation: floatMandate2 6.8s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
    animation-delay: -1.5s;
}

.mandate-card:nth-child(3) {
    animation: floatMandate3 5.9s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
    animation-delay: -2.8s;
}

.mandate-card:nth-child(4) {
    animation: floatMandate4 7.2s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
    animation-delay: -4.2s;
}

.mandate-card:nth-child(5) {
    animation: floatMandate5 6.5s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
    animation-delay: -5.5s;
}

@keyframes floatMandate1 {
    0% {
        transform: translateY(2px) rotate(-2.8deg);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.65), 0 0 12px rgba(197, 160, 89, 0.06);
    }

    50% {
        transform: translateY(-10px) rotate(-1.6deg);
        box-shadow: 0 22px 42px rgba(0, 0, 0, 0.88), 0 0 24px rgba(197, 160, 89, 0.18);
    }

    100% {
        transform: translateY(6px) rotate(-3.4deg);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.55), 0 0 8px rgba(197, 160, 89, 0.04);
    }
}

@keyframes floatMandate2 {
    0% {
        transform: translateY(6px) rotate(2.4deg);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.58), 0 0 10px rgba(184, 37, 66, 0.08);
    }

    50% {
        transform: translateY(-9px) rotate(1.2deg);
        box-shadow: 0 24px 44px rgba(0, 0, 0, 0.9), 0 0 26px rgba(184, 37, 66, 0.2);
    }

    100% {
        transform: translateY(2px) rotate(3.0deg);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.65), 0 0 12px rgba(184, 37, 66, 0.08);
    }
}

@keyframes floatMandate3 {
    0% {
        transform: translateY(-6px) rotate(-1.5deg);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.78), 0 0 20px rgba(197, 160, 89, 0.15);
    }

    50% {
        transform: translateY(7px) rotate(-0.6deg);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.55), 0 0 8px rgba(197, 160, 89, 0.05);
    }

    100% {
        transform: translateY(-8px) rotate(-2.2deg);
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.88), 0 0 24px rgba(197, 160, 89, 0.2);
    }
}

@keyframes floatMandate4 {
    0% {
        transform: translateY(5px) rotate(3.0deg);
        box-shadow: 0 9px 20px rgba(0, 0, 0, 0.6), 0 0 10px rgba(184, 37, 66, 0.07);
    }

    50% {
        transform: translateY(-10px) rotate(1.8deg);
        box-shadow: 0 26px 48px rgba(0, 0, 0, 0.92), 0 0 28px rgba(197, 160, 89, 0.22);
    }

    100% {
        transform: translateY(3px) rotate(3.6deg);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.62), 0 0 12px rgba(184, 37, 66, 0.08);
    }
}

@keyframes floatMandate5 {
    0% {
        transform: translateY(-4px) rotate(-2.6deg);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.75), 0 0 16px rgba(197, 160, 89, 0.12);
    }

    50% {
        transform: translateY(8px) rotate(-1.4deg);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.55), 0 0 8px rgba(197, 160, 89, 0.05);
    }

    100% {
        transform: translateY(-7px) rotate(-3.2deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.86), 0 0 22px rgba(197, 160, 89, 0.18);
    }
}

/* Diagonal Light Sheen Effect */
.mandate-card::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(135deg,
            transparent 40%,
            rgba(197, 160, 89, 0.07) 48%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(184, 37, 66, 0.09) 52%,
            transparent 60%);
    transform: rotate(25deg) translateY(-120%);
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 2;
}

.mandate-card:hover::after {
    transform: rotate(25deg) translateY(120%);
}

.mandate-card:hover {
    animation-play-state: paused !important;
    border-color: rgba(197, 160, 89, 0.5) !important;
    transform: translateY(-4px) scale(1.01) !important;
    background: rgba(22, 20, 28, 0.95) !important;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6) !important;
    z-index: 20;
}

.mandate-card h3 {
    margin: 0.35rem 0 0.45rem 0;
    font-size: 1.02rem;
    color: #ffffff;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.mandate-card:hover h3 {
    color: var(--accent-light);
    text-shadow: 0 0 12px rgba(197, 160, 89, 0.4);
}

.mandate-metrics-pill {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-light);
    background: rgba(197, 160, 89, 0.12);
    padding: 0.2rem 0.45rem;
    border-radius: 10px;
    margin-bottom: 0.35rem;
    border: 1px solid rgba(197, 160, 89, 0.25);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    transition: all 0.35s ease;
}

.mandate-card:hover .mandate-metrics-pill {
    background: rgba(197, 160, 89, 0.22);
    border-color: var(--accent-light);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.35);
    transform: scale(1.03);
}

.mandate-card .number-tag {
    font-size: 0.68rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.8px;
    display: block;
}

.mandate-card .quote {
    font-style: italic;
    margin-bottom: 0.7rem;
    color: #cbd5e1 !important;
    text-shadow: none !important;
    font-size: 0.77rem;
    line-height: 1.38;
}

.read-more-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.35s ease;
}

.mandate-card:hover .read-more-wrapper {
    border-top-color: rgba(197, 160, 89, 0.35);
}

.read-more {
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 1px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.35s ease;
}

.read-more span {
    display: inline-block;
    transition: transform 0.35s ease;
}

.mandate-card:hover .read-more {
    color: var(--accent-light) !important;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

.mandate-card:hover .read-more span {
    transform: translateX(5px);
}

.mandate-card-media {
    width: 100%;
    height: 105px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.65rem;
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.2);
    background: #08080c;
}

.mandate-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
    filter: brightness(0.92) contrast(1.05);
    display: block;
}

.mandate-card:hover .mandate-card-media img {
    transform: scale(1.08);
    filter: brightness(1.06) contrast(1.1);
}

.mandate-card-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(14, 14, 20, 0.8) 100%);
    pointer-events: none;
}

/* Modal Media Showcase Gallery */
.modal-media-showcase {
    margin: 0.85rem 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.modal-main-img-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.32);
    background: #050508;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(197, 160, 89, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-main-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.modal-thumbs-row {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding: 0.2rem 0.1rem 0.4rem 0.1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 160, 89, 0.4) transparent;
}

.modal-thumb-btn {
    width: 72px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: #08080c;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    opacity: 0.6;
    transition: all 0.25s ease;
}

.modal-thumb-btn:hover {
    opacity: 0.9;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.modal-thumb-btn.active {
    opacity: 1;
    border-color: var(--accent-light);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
    transform: scale(1.05);
}

.modal-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1100px) {
    .mandates-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.95rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(197, 160, 89, 0.4) transparent;
    }

    .mandates-row .mandate-card {
        min-width: 260px;
        flex: 0 0 260px;
        scroll-snap-align: start;
    }
}

@media (max-width: 600px) {
    .mandates-row {
        gap: 0.75rem;
        padding-top: 1rem;
        padding-bottom: 0.8rem;
    }

    .mandates-row .mandate-card {
        min-width: 240px;
        flex: 0 0 240px;
        padding: 1.1rem 0.9rem;
    }
}

/* Case Study Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: rgba(14, 14, 18, 0.97);
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 16px;
    max-width: 720px;
    width: 100%;
    max-height: 84vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.92), 0 0 35px rgba(197, 160, 89, 0.2);
    padding: 1.8rem 2.2rem;
    position: relative;
    transform: scale(0.94) translateY(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 160, 89, 0.45) rgba(14, 14, 18, 0.6);
}

.modal-container::-webkit-scrollbar {
    width: 5px;
}

.modal-container::-webkit-scrollbar-track {
    background: rgba(14, 14, 18, 0.6);
    border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.4);
    border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary-light);
    transform: rotate(90deg);
}

.modal-header-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fae8c8 0%, #dfba73 50%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.35rem;
    display: inline-block;
}

.modal-title {
    font-size: 1.55rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.25;
    padding-right: 2rem;
}

.modal-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin: 1.1rem 0 1.5rem 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.22);
    padding: 0.95rem 1.15rem;
    border-radius: 12px;
}

.modal-metric-card h4 {
    font-size: 1.45rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fae8c8 0%, #dfba73 50%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.modal-metric-card p {
    font-size: 0.68rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

.modal-section {
    margin-bottom: 1.3rem;
}

.modal-section h4 {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--accent);
    margin-bottom: 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-section p,
.modal-section li {
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.55;
}

.modal-section ul {
    padding-left: 1.3rem;
    margin-top: 0.35rem;
}

.modal-quote-box {
    background: rgba(139, 28, 49, 0.12);
    border-left: 3px solid var(--secondary-light);
    padding: 0.95rem 1.3rem;
    border-radius: 0 10px 10px 0;
    margin: 1.2rem 0;
    font-style: italic;
    color: #f1f5f9;
    font-size: 0.86rem;
    line-height: 1.5;
}

.modal-nav-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-nav-btn {
    background: rgba(14, 14, 20, 0.8);
    border: 1px solid rgba(197, 160, 89, 0.35);
    color: var(--accent-light);
    padding: 0.48rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-nav-btn:hover {
    border-color: var(--accent);
    background: rgba(197, 160, 89, 0.15);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

/* ==========================================================================
           10. BOARD ROLES & AWARDS
           ========================================================================== */
.list-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.list-row:last-child {
    border-bottom: none;
}

.role-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.15rem;
    line-height: 1.35;
}

.list-row .role-company {
    font-size: 0.78rem;
    font-weight: 600;
    color: #ff9ebb;
}

.role-desc {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.3rem;
    line-height: 1.45;
}

.list-row .timeline-year {
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ==========================================================================
           11. INFINITE CLIENT LOGOS MARQUEE STRIP
           ========================================================================== */
.marquee-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0.65rem 0;
    background: transparent;
    border-top: 1px solid rgba(197, 160, 89, 0.16);
    border-bottom: 1px solid rgba(197, 160, 89, 0.16);
    position: relative;
    margin-top: 2.2rem;
    margin-bottom: 2.2rem;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 1) 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 1) 94%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    white-space: nowrap;
    animation: marqueeLogos 45s linear infinite;
    will-change: transform;
    padding: 0;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-logo-item {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), 0 0 10px rgba(197, 160, 89, 0.2);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1.5px solid rgba(197, 160, 89, 0.3);
    overflow: hidden;
    padding: 5px;
    cursor: pointer;
}

.marquee-logo-item:hover {
    transform: scale(1.12) translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.marquee-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

@keyframes marqueeLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1.2rem));
    }
}

@media (max-width: 768px) {
    .marquee-container {
        padding: 0.5rem 0;
        margin-top: 1.6rem;
        margin-bottom: 1.6rem;
    }

    .marquee-logo-item {
        width: 54px;
        height: 54px;
        padding: 4px;
    }

    .marquee-track {
        gap: 1.6rem;
        animation-duration: 32s;
    }

    @keyframes marqueeLogos {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 0.8rem));
        }
    }
}

/* ==========================================================================
           12. TESTIMONIALS SLIDESHOW CAROUSEL
           ========================================================================== */
#testimonials {
    padding: 3.8rem 0 3.8rem 0;
    min-height: auto;
}

#testimonials .section-header {
    margin-bottom: 2rem;
}

.testimonials-box {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 2.2rem 2.2rem 1.8rem 2.2rem;
    text-align: center;
    border-radius: 14px;
}

.testimonial-slide {
    display: none;
    animation: fadeInSlide 0.6s ease forwards;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide.memorial-slide {
    position: relative;
    background: radial-gradient(ellipse at 50% 25%, rgba(60, 42, 22, 0.4) 0%, rgba(18, 14, 20, 0.65) 100%);
    border: 1px solid rgba(223, 186, 115, 0.35);
    border-radius: 12px;
    padding: 1.8rem 1.6rem 1.4rem;
    box-shadow: inset 0 0 24px rgba(223, 186, 115, 0.06), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.memorial-tribute-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #dfba73;
    background: rgba(223, 186, 115, 0.12);
    border: 1px solid rgba(223, 186, 115, 0.35);
    padding: 0.25rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.92rem, 1.25vw, 1.06rem);
    line-height: 1.62;
    color: #f8fafc;
    font-style: italic;
    margin-bottom: 1.1rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.testimonial-quote p {
    margin-bottom: 0.85rem;
}

.testimonial-quote p:last-child {
    margin-bottom: 0;
}

.testimonial-author {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.4px;
}

.testimonial-role {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 0.35rem;
    line-height: 1.45;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.3rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--accent);
    color: #000;
    transform: scale(1.08);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    max-width: 280px;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-indicator.active {
    background: var(--accent);
    width: 18px;
    border-radius: 6px;
}

/* ==========================================================================
           13. ARTICLES & INSIGHTS (CLEAN LUXURY EDITORIAL STYLE)
           ========================================================================== */
.article-card {
    position: relative;
    padding: 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 13px;
    background: rgba(14, 14, 20, 0.72);
    border: 1px solid rgba(197, 160, 89, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

/* Subtle top gold accent line that smoothly expands on hover */
.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: translateX(-50%);
    transition: width 0.4s ease;
    pointer-events: none;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.45) !important;
    background: rgba(18, 18, 26, 0.9) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 18px rgba(197, 160, 89, 0.15) !important;
}

.article-card:hover::before {
    width: 100%;
}

.article-date {
    font-size: 0.65rem;
    color: var(--secondary-light);
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.article-title {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.article-card:hover .article-title {
    color: var(--accent-light);
}

.article-desc {
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.48;
    margin-bottom: 0.95rem;
}

.article-pub {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s ease, border-top-color 0.3s ease;
}

.article-pub span.pub-arrow {
    font-style: normal;
    color: var(--accent);
    opacity: 0.5;
    font-size: 0.88rem;
    transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.article-card:hover .article-pub {
    color: var(--accent-light);
    border-top-color: rgba(197, 160, 89, 0.25);
}

.article-card:hover .article-pub span.pub-arrow {
    opacity: 1;
    color: #ffffff;
    transform: translateX(4px);
}

/* ==========================================================================
           14. PERSONAL SIDE (HOBBIES & LIFESTYLE + LIGHTBOX)
           ========================================================================== */
.hobby-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.95rem;
    padding: 1.2rem 0;
    perspective: 1000px;
}

.hobby-card {
    padding: 1.15rem 0.9rem;
    border-radius: 13px;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: rgba(14, 14, 20, 0.72);
    border: 1px solid rgba(197, 160, 89, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease,
        background 0.45s ease;
    will-change: transform, box-shadow;
}

/* Floating Wave Physics - Individual Phase & Trajectory */
.hobby-card:nth-child(1) {
    animation: floatHobby1 5.8s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.hobby-card:nth-child(2) {
    animation: floatHobby2 6.6s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
    animation-delay: -1.6s;
}

.hobby-card:nth-child(3) {
    animation: floatHobby3 6.1s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
    animation-delay: -3.2s;
}

.hobby-card:nth-child(4) {
    animation: floatHobby4 7.2s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
    animation-delay: -4.8s;
}

@keyframes floatHobby1 {
    0% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.65), 0 0 14px rgba(197, 160, 89, 0.08);
    }

    50% {
        transform: translateY(-8px) rotate(0.45deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85), 0 0 24px rgba(197, 160, 89, 0.2);
    }

    100% {
        transform: translateY(4px) rotate(-0.35deg);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.55), 0 0 8px rgba(197, 160, 89, 0.05);
    }
}

@keyframes floatHobby2 {
    0% {
        transform: translateY(5px) rotate(-0.4deg);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.58), 0 0 12px rgba(184, 37, 66, 0.09);
    }

    50% {
        transform: translateY(-9px) rotate(0.5deg);
        box-shadow: 0 22px 42px rgba(0, 0, 0, 0.86), 0 0 26px rgba(184, 37, 66, 0.22);
    }

    100% {
        transform: translateY(-1px) rotate(-0.25deg);
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.65), 0 0 14px rgba(184, 37, 66, 0.1);
    }
}

@keyframes floatHobby3 {
    0% {
        transform: translateY(-6px) rotate(0.35deg);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.78), 0 0 22px rgba(197, 160, 89, 0.16);
    }

    50% {
        transform: translateY(6px) rotate(-0.45deg);
        box-shadow: 0 9px 20px rgba(0, 0, 0, 0.56), 0 0 10px rgba(197, 160, 89, 0.07);
    }

    100% {
        transform: translateY(-8px) rotate(0.55deg);
        box-shadow: 0 21px 42px rgba(0, 0, 0, 0.86), 0 0 25px rgba(197, 160, 89, 0.22);
    }
}

@keyframes floatHobby4 {
    0% {
        transform: translateY(4px) rotate(-0.45deg);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.6), 0 0 12px rgba(184, 37, 66, 0.08);
    }

    50% {
        transform: translateY(-10px) rotate(0.4deg);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.88), 0 0 30px rgba(197, 160, 89, 0.25);
    }

    100% {
        transform: translateY(2px) rotate(-0.3deg);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.62), 0 0 14px rgba(184, 37, 66, 0.1);
    }
}

/* Ambient Light Sweep Effect */
.hobby-card::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(135deg,
            transparent 40%,
            rgba(197, 160, 89, 0.08) 48%,
            rgba(255, 255, 255, 0.16) 50%,
            rgba(184, 37, 66, 0.1) 52%,
            transparent 60%);
    transform: rotate(25deg) translateY(-120%);
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 2;
}

.hobby-card:hover::after {
    transform: rotate(25deg) translateY(120%);
}

.hobby-card:hover {
    animation-play-state: paused !important;
    transform: translateY(-4px) scale(1.01) !important;
    border-color: rgba(197, 160, 89, 0.5) !important;
    background: rgba(22, 20, 28, 0.88) !important;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6) !important;
    z-index: 10;
}

.hobby-icon-box {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.55rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.28);
    color: var(--accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 12px rgba(197, 160, 89, 0.06);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    animation: iconFloatPulse 4.5s ease-in-out infinite alternate;
}

@keyframes iconFloatPulse {
    0% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 12px rgba(197, 160, 89, 0.06);
    }

    100% {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25), inset 0 0 15px rgba(197, 160, 89, 0.15);
    }
}

.hobby-card:hover .hobby-icon-box {
    background: rgba(184, 37, 66, 0.22);
    border-color: var(--accent-light);
    color: var(--accent-light);
    transform: scale(1.12) translateY(-4px);
    box-shadow: none;
}

.hobby-svg-icon {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hobby-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.hobby-card:hover .hobby-title {
    color: var(--accent-light);
    text-shadow: 0 0 12px rgba(197, 160, 89, 0.5);
}

.hobby-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.38;
}

.hobby-click-hint {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #fae8c8 0%, #dfba73 50%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.35));
    transition: all 0.35s ease;
}

.hobby-card:hover .hobby-click-hint {
    background: linear-gradient(135deg, #ffffff 0%, #fae8c8 45%, #dfba73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 14px rgba(232, 203, 140, 0.8));
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .hobby-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Lightbox Modal (Subtle Translucent Backdrop & Crystal Glass) */
#lightboxModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 5, 12, 0.22);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99995;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

#lightboxModal.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    background: linear-gradient(145deg, rgba(16, 18, 28, 0.72) 0%, rgba(8, 10, 18, 0.78) 100%);
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 20px;
    max-width: 540px;
    width: 100%;
    padding: 2.2rem 2.4rem;
    text-align: center;
    position: relative;
    transform: scale(0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(197, 160, 89, 0.18);
}

#lightboxModal.active .lightbox-content {
    transform: scale(1);
}

/* ==========================================================================
           15. CONTACT FORM & DIRECT CHANNELS
           ========================================================================== */
#contactSection,
.contact-section {
    padding-bottom: 4rem;
    margin-bottom: 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-grid,
#contact,
#contactCard {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 960px;
    width: 100%;
    margin: 0 auto 2rem auto;
    padding: 2.4rem 2.6rem;
    background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.08) 0%, rgba(14, 14, 18, 0.96) 65%);
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 40px rgba(197, 160, 89, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
    scroll-margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.contact-grid::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.14) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(40px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

.form-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.15rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.14);
}

.form-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--accent-light);
}

.form-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

.form-confidential-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.form-confidential-tag svg {
    width: 12px;
    height: 12px;
    stroke: var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
    width: 100%;
}

.form-group label,
.direct-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 600;
    background: linear-gradient(135deg, #fae8c8 0%, #dfba73 50%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.25));
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.field-icon {
    position: absolute;
    left: 0.85rem;
    width: 15px;
    height: 15px;
    stroke: rgba(197, 160, 89, 0.6);
    stroke-width: 1.75;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    box-sizing: border-box;
    background: rgba(18, 18, 24, 0.85);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 9px;
    padding: 0.68rem 0.85rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.84rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-input.has-icon,
.form-select.has-icon {
    padding-left: 2.35rem;
}

.form-textarea.has-icon {
    padding-left: 2.35rem;
}

.textarea-container {
    align-items: flex-start;
}

.textarea-icon {
    top: 0.75rem;
}

.form-textarea {
    min-height: 72px;
    resize: vertical;
    line-height: 1.5;
}

.input-container:focus-within .field-icon {
    stroke: var(--accent);
    filter: drop-shadow(0 0 6px rgba(197, 160, 89, 0.6));
    transform: scale(1.08);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.18), 0 8px 24px rgba(0, 0, 0, 0.6);
    background: rgba(22, 22, 30, 0.95);
}

.select-container {
    position: relative;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 2.2rem;
}

.form-select option {
    background: #0e0e14;
    color: #ffffff;
    padding: 0.6rem;
}

.select-chevron {
    position: absolute;
    right: 0.85rem;
    width: 14px;
    height: 14px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: transform 0.25s ease;
}

.select-chevron svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.select-container:focus-within .select-chevron {
    transform: rotate(180deg);
}

.contact-privacy-box {
    margin-top: 0.1rem;
    margin-bottom: 0.15rem;
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 9px;
    text-align: left;
    transition: all 0.3s ease;
}

.contact-privacy-box:hover {
    border-color: rgba(197, 160, 89, 0.38);
    background: rgba(197, 160, 89, 0.03);
}

.contact-submit-cta {
    margin-top: 0.15rem;
    padding: 0.72rem 1.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    justify-content: center;
    background: linear-gradient(135deg, #e8cb92 0%, #c5a059 50%, #9e7d3b 100%) !important;
    color: #0b0b10 !important;
    border: none !important;
    border-radius: 9px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.32);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.contact-submit-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(197, 160, 89, 0.45);
    background: linear-gradient(135deg, #f2d9a6 0%, #d4b068 50%, #ae8c46 100%) !important;
}

.contact-submit-cta:active {
    transform: translateY(0);
}

.privacy-heading-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 0.4rem;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.privacy-heading-text {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: 0.4px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.privacy-heading-btn:hover .privacy-heading-text {
    color: #fff;
}

.privacy-view-tag {
    font-size: 0.66rem;
    color: var(--accent);
    letter-spacing: 0.4px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.32);
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.privacy-heading-btn:hover .privacy-view-tag {
    background: rgba(197, 160, 89, 0.28);
    color: #fff;
    border-color: var(--accent);
}

.privacy-text {
    font-size: 0.71rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
}

.privacy-inline-link {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    transition: color 0.2s ease;
}

.privacy-inline-link:hover {
    color: #fff;
}

/* ==========================================================================
   PRIVACY POLICY MODAL
   ========================================================================== */
.privacy-modal-container {
    max-width: 840px;
    max-height: 86vh;
    padding: 2.2rem 2.6rem;
    text-align: left;
}

.privacy-modal-updated {
    font-size: 0.84rem;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-bottom: 1.4rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    font-weight: 500;
}

.privacy-modal-body {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.75;
}

.privacy-modal-intro {
    font-size: 0.96rem;
    line-height: 1.75;
    color: #f1ede6;
    margin-bottom: 1.6rem;
    background: rgba(255, 255, 255, 0.025);
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
}

.privacy-modal-intro p {
    margin: 0 0 0.65rem 0;
}

.privacy-modal-intro p:last-child {
    margin-bottom: 0;
}

.privacy-section-block {
    margin-bottom: 1.6rem;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-section-block:last-child {
    border-bottom: none;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
}

.privacy-section-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: 0.5px;
    margin-bottom: 0.65rem;
}

.privacy-modal-body p {
    margin: 0 0 0.75rem 0;
    color: var(--text-secondary);
}

.privacy-modal-body ul {
    margin: 0.4rem 0 0.95rem 1.4rem;
    padding: 0;
    list-style-type: disc;
}

.privacy-modal-body li {
    margin-bottom: 0.35rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.privacy-modal-body a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.privacy-modal-body a:hover {
    color: #fff;
}

.privacy-modal-footer {
    margin-top: 1.8rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 600px) {
    .privacy-modal-container {
        padding: 1.6rem 1.25rem;
        max-height: 90vh;
    }

    .privacy-section-title {
        font-size: 0.98rem;
    }

    .privacy-modal-body {
        font-size: 0.88rem;
    }
}

/* ==========================================================================
   18. CONTACT POPUP MODAL
   ========================================================================== */
#contactModal {
    z-index: 99990 !important;
}

#privacyPolicyModal {
    z-index: 99995 !important;
}

.contact-modal-container {
    max-width: 980px;
    width: 95%;
    max-height: 90vh;
    padding: 2.2rem 2.6rem;
    text-align: left;
    background: rgba(12, 12, 16, 0.98);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.95), 0 0 50px rgba(197, 160, 89, 0.2);
    overflow-y: auto;
}

.contact-modal-container .modal-header-tag {
    font-size: 0.72rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.contact-modal-container .modal-title {
    font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    margin-bottom: 0.35rem;
    line-height: 1.15;
    background: linear-gradient(115deg, #c5a059 0%, #dfba73 18%, #fae8c8 32%, #ffffff 44%, #fffdf7 48%, #f7de9d 56%, #dfba73 68%, #c5a059 82%, #a8833b 92%, #c5a059 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.85));
    animation: goldenGlossShine 8.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.contact-modal-sub {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.3rem;
    max-width: 780px;
}

.contact-modal-slot {
    width: 100%;
}

.contact-modal-slot .contact-grid {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    max-width: 100%;
}

.contact-modal-slot .contact-grid::before {
    display: none;
}

.contact-section-placeholder {
    width: 100%;
    min-height: 480px;
}

@media (max-width: 920px) {

    .contact-grid,
    .contact-modal-slot .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .contact-modal-container {
        padding: 1.6rem 1.4rem;
        max-height: 92vh;
    }
}

/* Left Column: Direct Info Cards */
.contact-direct-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
    height: 100%;
    text-align: left;
}

.direct-header-area {
    margin-bottom: 0.15rem;
}

.direct-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.2rem 0.65rem;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 20px;
    margin-bottom: 0.45rem;
}

.pulse-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}

.direct-eyebrow {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 700;
    color: var(--accent-light);
}

.direct-card-title {
    font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 0 0.35rem 0;
    line-height: 1.2;
    background: linear-gradient(115deg, #c5a059 0%, #dfba73 18%, #fae8c8 32%, #ffffff 44%, #fffdf7 48%, #f7de9d 56%, #dfba73 68%, #c5a059 82%, #a8833b 92%, #c5a059 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.85));
    animation: goldenGlossShine 8.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.direct-card-desc {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.direct-items-stack {
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
    width: 100%;
}

.direct-item {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0.78rem 1rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(197, 160, 89, 0.16);
    border-left: 2px solid rgba(197, 160, 89, 0.35);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    overflow: hidden;
    min-width: 0;
}

.direct-item:hover {
    border-color: var(--accent);
    border-left: 2px solid var(--accent);
    background: rgba(197, 160, 89, 0.08);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(197, 160, 89, 0.15);
}

.direct-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.direct-val {
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 1.3;
}

.direct-arrow-cue {
    color: rgba(197, 160, 89, 0.5);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-left: auto;
    padding-left: 0.4rem;
}

.direct-item:hover .direct-arrow-cue {
    color: var(--accent);
    transform: translate(2px, -2px);
}

.direct-item-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.95rem;
    padding: 0.78rem 1rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(197, 160, 89, 0.16);
    border-left: 2px solid rgba(197, 160, 89, 0.35);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.direct-item-social:hover {
    border-color: var(--accent);
    border-left: 2px solid var(--accent);
    background: rgba(197, 160, 89, 0.06);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.direct-trust-note {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 0.6rem;
    color: var(--text-muted);
    font-size: 0.74rem;
    line-height: 1.4;
}

.direct-trust-note svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
    flex-shrink: 0;
}

.social-mini-links {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.social-mini-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-mini-icon:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-mini-icon svg {
    width: 14px;
    height: 14px;
}

.direct-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.direct-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ==========================================================================
           16. FOOTER
           ========================================================================== */
footer {
    margin-top: auto;
    padding: 4rem 0 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.18);
    background: #040406;
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.footer-quote {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 2.7vw, 2.2rem);
    color: #f1f5f9;
    font-style: italic;
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
}

/* Footer Button Refinements */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.social-links .btn {
    padding: 0.52rem 1.25rem;
    font-size: 0.73rem;
    letter-spacing: 1.2px;
}

.back-to-top-btn {
    margin: 1.8rem auto 1.2rem auto;
    padding: 0.55rem 1.4rem;
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: rgba(14, 14, 20, 0.75);
    border-radius: 30px;
    color: var(--accent-light);
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.back-to-top-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b82542, #8b1c31);
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.45s ease;
    z-index: -1;
    border-radius: inherit;
}

.back-to-top-btn:hover {
    border-color: #b82542;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.back-to-top-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

.back-to-top-btn span {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.back-to-top-btn:hover span:last-child {
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 1px;
    margin-top: 1.8rem;
}

.footer-powered-by {
    margin-top: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
}

.powered-by-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 600;
}

.powered-by-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.92;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    padding: 0.15rem 0.4rem;
}

.powered-by-logo-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.oneit-lockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.05;
}

.oneit-title {
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
    display: inline-block;
}

.oneit-cyan {
    color: #00b4f0;
    font-weight: 800;
    transition: text-shadow 0.3s ease;
}

.powered-by-logo-link:hover .oneit-cyan {
    text-shadow: 0 0 10px rgba(0, 180, 240, 0.65);
}

.oneit-by {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.54rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.2px;
    margin-top: 1px;
}

/* ==========================================================================
           INNOVATIVE ANIMATIONS: FLOATING BADGES, SHIMMER & SIDE HUD
           ========================================================================== */
@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }
}

.section-tag,
.number-tag {
    animation: badgeFloat 4.5s ease-in-out infinite;
}

@keyframes shimmerSweep {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.section-header h2 span.word,
.section-header h2 .word,
h2.serif.text-reveal span.word,
h2.text-reveal span.word {
    background: linear-gradient(115deg, #c5a059 0%, #dfba73 18%, #fae8c8 32%, #ffffff 44%, #fffdf7 48%, #f7de9d 56%, #dfba73 68%, #c5a059 82%, #a8833b 92%, #c5a059 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 16px rgba(197, 160, 89, 0.28));
    animation: goldenGlossShine 8.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* ==========================================================================
   INTERACTIVE EXECUTIVE SPOTLIGHT JOURNAL STAGE (ULTRA INNOVATIVE & ANIMATED)
   ========================================================================== */
#articles {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}

.article-spotlight-stage {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

/* Left Selector Column */
.spotlight-nav {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.spotlight-tab-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.95rem 1.15rem;
    background: rgba(12, 14, 24, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.spotlight-tab-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    opacity: 0.6;
    transition: opacity 0.35s ease, color 0.35s ease;
}

.spotlight-tab-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spotlight-tab-source {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.76rem;
    font-style: italic;
    font-weight: 600;
    color: var(--accent-light);
}

.spotlight-tab-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.12rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.35s ease;
}

.spotlight-tab-date {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Active Glowing Left Beam */
.spotlight-tab-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-light), var(--accent));
    opacity: 0;
    transform: scaleY(0);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.spotlight-tab-item:hover {
    background: rgba(197, 160, 89, 0.12);
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateX(4px);
}

.spotlight-tab-item.active {
    background: linear-gradient(135deg, rgba(24, 26, 38, 0.68), rgba(10, 12, 20, 0.76));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(197, 160, 89, 0.2);
}

.spotlight-tab-item.active .spotlight-tab-beam {
    opacity: 1;
    transform: scaleY(1);
}

.spotlight-tab-item.active .spotlight-tab-num {
    opacity: 1;
    color: var(--accent-light);
}

.spotlight-tab-item.active .spotlight-tab-title {
    color: var(--accent-light);
}

/* Right Stage Display Panel */
.spotlight-display-wrapper {
    position: relative;
    background: linear-gradient(150deg, rgba(14, 16, 26, 0.58) 0%, rgba(6, 7, 12, 0.68) 100%);
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-radius: 16px;
    padding: 2.5rem 2.8rem;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 30px rgba(197, 160, 89, 0.12);
}

/* Laser Progress Track */
.spotlight-laser-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
}

.spotlight-laser-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--secondary-light), var(--accent), var(--accent-light));
    box-shadow: 0 0 10px var(--accent);
}

/* Dynamic Panels */
.spotlight-panel {
    display: none;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.spotlight-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: spotlightFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes spotlightFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.spotlight-watermark {
    position: absolute;
    top: -2rem;
    right: 0rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 8.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(197, 160, 89, 0.06);
    pointer-events: none;
    user-select: none;
}

.spotlight-tag-row {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.2rem;
}

.spotlight-live-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    box-shadow: 0 0 10px var(--secondary-light);
    animation: livePulse 1.8s infinite ease-in-out;
}

.spotlight-pub-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 600;
    color: var(--accent);
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.spotlight-category-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.spotlight-date-badge {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.spotlight-stage-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.22;
    margin-bottom: 1rem;
    background: linear-gradient(115deg, #c5a059 0%, #dfba73 18%, #fae8c8 32%, #ffffff 44%, #fffdf7 48%, #f7de9d 56%, #dfba73 68%, #c5a059 82%, #a8833b 92%, #c5a059 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 16px rgba(197, 160, 89, 0.28));
    animation: goldenGlossShine 8.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.spotlight-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 95%;
}

.spotlight-action-row {
    display: flex;
    align-items: center;
}

.spotlight-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.6rem;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(139, 28, 49, 0.25));
    border: 1px solid var(--accent);
    border-radius: 30px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.spotlight-btn:hover {
    background: var(--accent);
    color: #040406;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

.spotlight-btn .btn-arrow {
    transition: transform 0.3s ease;
}

.spotlight-btn:hover .btn-arrow {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .article-spotlight-stage {
        grid-template-columns: 1fr;
    }

    .spotlight-display-wrapper {
        padding: 1.8rem 1.4rem;
    }

    .spotlight-title {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   ELEGANT MODERATE SCROLL REVEAL ANIMATIONS (SOFT 2PX BLUR & SMOOTH MOTION)
   ========================================================================== */

/* Base initial states for elements to reveal on scroll */
.fade-in,
.scroll-reveal,
.stat-card,
.philosophy-card,
.mandate-card,
.gov-card,
.award-card,
.test-card,
.article-card,
.article-pure-item,
.spotlight-tab-item,
.spotlight-display-wrapper,
.article-spotlight-stage,
.personal-card,
.timeline-item,
.quote-showcase-card {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(2.5px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.6s ease;
    will-change: opacity, transform, filter;
}

/* Horizontal slide variants */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-24px) scale(0.98);
    filter: blur(2.5px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.6s ease;
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(24px) scale(0.98);
    filter: blur(2.5px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.6s ease;
}

/* Active Visible Trigger State */
.fade-in.is-visible,
.scroll-reveal.is-visible,
.stat-card.is-visible,
.philosophy-card.is-visible,
.mandate-card.is-visible,
.gov-card.is-visible,
.award-card.is-visible,
.test-card.is-visible,
.article-card.is-visible,
.article-pure-item.is-visible,
.spotlight-tab-item.is-visible,
.spotlight-display-wrapper.is-visible,
.article-spotlight-stage.is-visible,
.personal-card.is-visible,
.timeline-item.is-visible,
.quote-showcase-card.is-visible,
.scroll-reveal-left.is-visible,
.scroll-reveal-right.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    filter: blur(0);
}

/* Balanced Stagger Delays */
.grid-3>*:nth-child(1),
.grid-2>*:nth-child(1) {
    transition-delay: 0ms;
}

.grid-3>*:nth-child(2),
.grid-2>*:nth-child(2) {
    transition-delay: 80ms;
}

.grid-3>*:nth-child(3) {
    transition-delay: 160ms;
}

.grid-3>*:nth-child(4) {
    transition-delay: 70ms;
}

.grid-3>*:nth-child(5) {
    transition-delay: 140ms;
}

.grid-3>*:nth-child(6) {
    transition-delay: 210ms;
}

/* Stat card entry pulse effect */
.stat-card.is-visible {
    animation: statCardGlow 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes statCardGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }

    40% {
        box-shadow: 0 0 18px 3px rgba(197, 160, 89, 0.28);
    }

    100% {
        box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.85);
    }
}

/* Modern CSS Scroll-Driven Animations (Baseline / Chrome / Edge / Safari Supported) */
@media (prefers-reduced-motion: no-preference) {
    @supports ((animation-timeline: view()) and (animation-range: entry)) {
        @keyframes scrollEntryFadeUp {
            from {
                opacity: 0;
                transform: translateY(24px) scale(0.98);
                filter: blur(2.5px);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        .scroll-driven-item {
            animation: scrollEntryFadeUp linear both;
            animation-timeline: view();
            animation-range: entry 5% cover 30%;
        }
    }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE ARCHITECTURE
   ========================================================================== */

/* --- 1. TOUCH & COARSE POINTER DEVICE OPTIMIZATIONS --- */
@media (hover: none) and (pointer: coarse) {

    /* Hide desktop-only mouse follower */
    #cursor-glow {
        display: none !important;
    }

    /* Ambient continuous luxury 3D breathing float for Executive Portrait on Mobile & Tablet */
    .hero-photo-card {
        animation: heroPhotoFloatingMobile 7.5s ease-in-out infinite alternate !important;
    }

    @keyframes heroPhotoFloatingMobile {
        0% {
            transform: perspective(1000px) rotateY(-2.5deg) rotateX(1.5deg) translateY(0px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(197, 160, 89, 0.22);
        }

        50% {
            transform: perspective(1000px) rotateY(2.5deg) rotateX(-1.5deg) translateY(-6px);
            box-shadow: 0 22px 48px rgba(0, 0, 0, 0.95), 0 0 32px rgba(197, 160, 89, 0.32);
        }

        100% {
            transform: perspective(1000px) rotateY(-1.8deg) rotateX(1deg) translateY(3px);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 160, 89, 0.18);
        }
    }

    /* Active Tap & Touch Press Animations for Cards */
    .mandate-card:active,
    .mandate-card.touch-pressed,
    .hobby-card:active,
    .hobby-card.touch-pressed,
    .philosophy-card:active,
    .philosophy-card.touch-pressed,
    .article-card:active,
    .article-card.touch-pressed {
        transform: translateY(-4px) scale(0.99) !important;
        border-color: rgba(240, 213, 158, 0.8) !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9), 0 0 28px rgba(197, 160, 89, 0.35) !important;
        background: rgba(24, 22, 32, 0.95) !important;
        transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease !important;
    }

    .article-card:active::before,
    .article-card.touch-pressed::before {
        width: 100% !important;
    }

    .hobby-card:active .hobby-icon-box,
    .hobby-card.touch-pressed .hobby-icon-box {
        background: rgba(184, 37, 66, 0.3) !important;
        border-color: var(--accent-light) !important;
        color: var(--accent-light) !important;
        transform: scale(1.1) translateY(-2px) !important;
    }

    /* Touch Tap Animations & Feedback for all Button Elements */
    .btn:active,
    .btn.touch-pressed,
    .btn-primary:active,
    .btn-primary.touch-pressed,
    .btn-secondary:active,
    .btn-secondary.touch-pressed,
    .luxury-discover-trigger:active,
    .luxury-discover-trigger.touch-pressed,
    .spotlight-btn:active,
    .spotlight-btn.touch-pressed,
    .modal-nav-btn:active,
    .modal-nav-btn.touch-pressed,
    .carousel-btn:active,
    .carousel-btn.touch-pressed,
    .back-to-top-btn:active,
    .back-to-top-btn.touch-pressed {
        transform: scale(0.96) translateY(0px) !important;
        filter: brightness(1.22);
        box-shadow: 0 4px 24px rgba(197, 160, 89, 0.55), 0 0 15px rgba(240, 213, 158, 0.4) !important;
        transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), filter 0.15s ease, box-shadow 0.15s ease !important;
    }

    .btn-primary:active,
    .btn-primary.touch-pressed {
        background: linear-gradient(135deg, #b82542 0%, #8b1c31 50%, #4a0815 100%) !important;
        border-color: #fca5a5 !important;
        color: #ffffff !important;
    }

    .btn-secondary:active,
    .btn-secondary.touch-pressed {
        background: linear-gradient(135deg, #8b1c31 0%, #4a0815 100%) !important;
        border-color: #b82542 !important;
        color: #ffffff !important;
    }

    .btn:active span:last-child,
    .btn.touch-pressed span:last-child,
    .spotlight-btn:active .btn-arrow,
    .spotlight-btn.touch-pressed .btn-arrow {
        transform: translateX(6px) !important;
    }

    .direct-item:active,
    .direct-item-social:active {
        background: rgba(197, 160, 89, 0.18);
        border-color: var(--accent);
        transform: scale(0.98);
        box-shadow: 0 0 18px rgba(197, 160, 89, 0.25);
    }

    /* Touch Tap Support for Stat Cards */
    .stat-card.touch-active .stat-front {
        opacity: 0;
        transform: scale(0.9);
    }

    .stat-card.touch-active .stat-back {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
        border: 1px solid var(--accent);
        box-shadow: 0 0 28px rgba(197, 160, 89, 0.45);
    }
}

/* --- 2. STANDARD DESKTOP (1025px to 1439px) --- */
@media (min-width: 1025px) and (max-width: 1439px) {
    .container {
        max-width: 1180px;
        padding: 0 1.8rem;
    }

    .nav-inner {
        justify-content: space-between;
        align-items: center;
        gap: 0.8rem;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: clamp(1rem, 1.5vw, 1.8rem);
    }

    .nav-links {
        display: flex !important;
        align-items: center;
        gap: clamp(0.7rem, 1.4vw, 1.8rem) !important;
    }

    .nav-mobile-toggle {
        display: none !important;
    }

    .nav-mobile-dropdown {
        display: none !important;
    }

    .nav-links a {
        padding: 0.35rem clamp(0.3rem, 0.45vw, 0.55rem);
        font-size: clamp(0.72rem, 0.8vw, 0.78rem);
        letter-spacing: 1.1px;
        white-space: nowrap;
    }

    .nav-cta-btn {
        padding: 0 clamp(0.75rem, 1vw, 1.05rem) !important;
        font-size: clamp(0.7rem, 0.8vw, 0.76rem) !important;
        height: 32px !important;
        margin-left: 0 !important;
        white-space: nowrap;
    }
}

/* --- 3. TABLET (768px to 1024px) — ELEGANT, BALANCED LUXURY NAVBAR WITH HAMBURGER DRAWER --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 clamp(1.2rem, 3vw, 2.2rem);
        max-width: 100%;
        box-sizing: border-box;
    }

    #navbar {
        padding: 0.65rem 0 !important;
        background: rgba(7, 9, 17, 0.9) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(197, 160, 89, 0.2) !important;
    }

    /* Balanced, centered inner navbar */
    .nav-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 clamp(1.2rem, 3vw, 2.2rem) !important;
        box-sizing: border-box !important;
        gap: 1rem !important;
    }

    /* 1. LEFT: ACAR Logo - prominent & sharp */
    .nav-logo {
        display: inline-flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
    }

    .nav-logo-img {
        height: clamp(30px, 3.8vw, 36px) !important;
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
    }

    /* 2. RIGHT: Language Switcher + Hamburger Toggle */
    .nav-right {
        display: flex !important;
        align-items: center !important;
        gap: clamp(0.6rem, 1.6vw, 1.1rem) !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }

    /* Hide horizontal desktop links on tablet to prevent squashing and overflow */
    .nav-links {
        display: none !important;
    }

    /* Show sleek hamburger toggle button */
    .nav-mobile-toggle {
        display: flex !important;
        width: 38px !important;
        height: 38px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        border-radius: 9px !important;
        border: 1px solid rgba(197, 160, 89, 0.35) !important;
        background: rgba(14, 14, 22, 0.85) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    }

    /* Language Switcher pill on Tablet */
    .lang-switcher {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 32px !important;
        padding: 2px 6px !important;
        gap: 3px !important;
        border-radius: 16px !important;
        background: rgba(14, 14, 22, 0.85) !important;
        border: 1px solid rgba(197, 160, 89, 0.35) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
        flex-shrink: 0 !important;
    }

    .lang-btn {
        font-size: 0.68rem !important;
        padding: 3px 7px !important;
        letter-spacing: 0.8px !important;
        border-radius: 10px !important;
        line-height: 1 !important;
    }

    .lang-divider {
        font-size: 0.62rem !important;
        opacity: 0.35 !important;
    }

    /* Tablet Dropdown Drawer */
    .nav-mobile-dropdown {
        width: calc(100% - clamp(2rem, 5vw, 4rem)) !important;
        max-width: 580px !important;
        margin: 0.5rem auto !important;
        border-radius: 18px !important;
        box-sizing: border-box !important;
    }

    .nav-mobile-dropdown.open {
        display: flex !important;
        flex-direction: column !important;
        max-height: calc(100dvh - 80px) !important;
        max-height: calc(100vh - 80px) !important;
        padding: 1.2rem 1.4rem calc(1.5rem + env(safe-area-inset-bottom, 0px)) 1.4rem !important;
    }

    .mobile-nav-link {
        font-size: 0.92rem !important;
        padding: 0.75rem 1.1rem !important;
        min-height: 48px !important;
    }

    .nav-cta-btn-mobile {
        min-height: 48px !important;
        font-size: 0.9rem !important;
    }

    section {
        padding: 4.2rem 0 3rem 0;
        min-height: auto;
    }

    .section-header {
        margin-bottom: 2.2rem;
        text-align: center;
    }

    .section-header h2 {
        font-size: clamp(2.2rem, 4.2vw, 2.8rem);
        line-height: 1.18;
    }

    .section-tag {
        font-size: 0.78rem;
        letter-spacing: 2px;
        padding: 0.26rem 0.85rem;
        margin-bottom: 0.8rem;
    }

    .section-header p {
        font-size: 1.05rem;
        line-height: 1.68;
        max-width: 660px;
        margin: 0 auto;
    }

    /* Hero Section on Tablet */
    #hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1.08fr 0.92fr;
        gap: 2.2rem;
        align-items: center;
        width: 100%;
    }

    .hero-title {
        margin-bottom: 0.85rem;
    }

    .title-sub {
        font-size: clamp(2.1rem, 4.2vw, 2.9rem);
        letter-spacing: 0.4px;
        line-height: 1.15;
        margin-top: 0;
    }

    .hero-desc {
        font-size: 1.08rem;
        line-height: 1.68;
        max-width: 100%;
        margin-bottom: 1.6rem;
    }

    .hero-cta-group {
        display: flex;
        flex-direction: row;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .hero-cta-group .btn {
        font-size: 0.84rem;
        padding: 0.75rem 1.45rem;
        min-height: 46px;
    }

    .hero-photo-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-photo-card {
        width: 100%;
        max-width: 350px;
        aspect-ratio: 4 / 5;
        border-radius: 22px;
    }

    .hero-photo-overlay {
        padding: 1.8rem 1rem 1.1rem;
    }

    .hero-photo-name {
        font-size: 1.38rem;
    }

    .hero-photo-role {
        font-size: 0.74rem;
        letter-spacing: 1.8px;
    }

    /* Philosophy / Wine Section */
    #wine-section {
        padding: 3.5rem 0 2rem 0;
    }

    .clock-svg-box {
        width: 78px;
        height: 78px;
    }

    .quote-showcase-card {
        padding: 2.2rem 2rem;
        border-radius: 20px;
    }

    .quote-statement {
        font-size: 1.5rem;
        line-height: 1.55;
    }

    .quote-author-name {
        font-size: 1.02rem;
    }

    .quote-author-role {
        font-size: 0.8rem;
    }

    .luxury-discover-trigger {
        padding: 0.75rem 1.5rem 0.75rem 0.9rem;
        max-width: 330px;
        margin: 0 auto;
    }

    /* About Section */
    #about .section-header h2 {
        font-size: clamp(2.2rem, 4.2vw, 2.8rem);
    }

    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: 2rem;
        align-items: center;
    }

    .about-portrait-card {
        max-width: 340px;
        margin: 0 auto;
        border-radius: 20px;
    }

    .about-text p {
        font-size: 1.04rem;
        line-height: 1.7;
        margin-bottom: 1.1rem;
    }

    .signature-block {
        margin-top: 1.5rem;
        padding-top: 0.9rem;
    }

    /* Philosophy Cards */
    .philosophy-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .philosophy-card {
        padding: 1.35rem 1.15rem;
        min-height: auto;
    }

    .philosophy-card h3 {
        font-size: 1.2rem;
    }

    .philosophy-card p {
        font-size: 0.95rem;
        line-height: 1.58;
    }

    /* Matrix Numbers */
    #numbers .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.3rem 1rem;
        min-height: 130px;
    }

    .stat-num {
        font-size: 2.4rem;
    }

    .stat-label {
        font-size: 0.82rem;
    }

    /* Career Timeline */
    .timeline {
        padding-left: 2.2rem;
    }

    .timeline-item {
        margin-bottom: 2rem;
    }

    .timeline-item::before {
        left: -2.75rem;
    }

    .timeline-year {
        font-size: 0.82rem;
    }

    .role-company {
        font-size: 1rem;
    }

    .timeline-item h3 {
        font-size: 1.2rem;
    }

    .timeline-bullet {
        font-size: 0.95rem;
    }

    /* Mandates */
    .mandates-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .mandates-row .mandate-card {
        flex: 0 0 300px;
        min-width: 300px;
        scroll-snap-align: start;
        padding: 1.25rem 1.1rem;
    }

    /* Governance & Board */
    .board-card {
        padding: 1.7rem 1.5rem;
    }

    .role-title {
        font-size: 1.1rem;
    }

    .tenure-badge {
        font-size: 0.8rem;
    }

    .board-card p {
        font-size: 1.02rem;
        line-height: 1.68;
    }

    .achieve-chip {
        font-size: 0.78rem;
    }

    /* Testimonials */
    .testimonials-box {
        max-width: 660px;
        padding: 2.4rem 2.2rem;
    }

    .testimonial-quote {
        font-size: 1.25rem;
        line-height: 1.58;
    }

    /* Articles Spotlight */
    .article-spotlight-stage {
        display: grid;
        grid-template-columns: 1fr 1.35fr;
        gap: 1.6rem;
    }

    .spotlight-display-wrapper {
        padding: 1.9rem 1.7rem;
    }

    .spotlight-title {
        font-size: 1.7rem;
    }

    /* Personal Side */
    .hobby-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1rem;
    }

    /* Contact */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: 2rem;
        padding: 2.2rem 1.8rem;
    }
}

/* --- 4. MOBILE (< 768px) — SWITCH TO HAMBURGER NAVIGATION --- */
@media (max-width: 767px) {

    /* Global Container & Spacings */
    .container {
        padding: 0 clamp(1rem, 3.5vw, 1.4rem) !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    section {
        padding: 3.6rem 0 2.5rem 0 !important;
        min-height: auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .section-header {
        margin-bottom: 2rem !important;
        text-align: center !important;
        width: 100% !important;
    }

    .section-header h2 {
        font-size: clamp(2.1rem, 7.5vw, 2.65rem) !important;
        line-height: 1.15 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .section-header p {
        font-size: 1.02rem !important;
        line-height: 1.65 !important;
        max-width: 100% !important;
        word-break: break-word !important;
    }

    .section-tag {
        font-size: 0.76rem !important;
        letter-spacing: 2px !important;
        padding: 0.25rem 0.85rem !important;
        margin-bottom: 0.8rem !important;
    }

    /* Navbar on Mobile (< 768px): Hamburger Navigation */
    #navbar {
        padding: 0.5rem 0 !important;
        background: rgba(7, 9, 17, 0.92) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(197, 160, 89, 0.2) !important;
    }

    .nav-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        gap: 0.5rem !important;
        padding: 0.45rem clamp(0.75rem, 3vw, 1.25rem) !important;
        box-sizing: border-box !important;
    }

    .nav-logo {
        display: inline-flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
    }

    .nav-logo-img {
        height: clamp(26px, 5.5vw, 30px) !important;
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
    }

    .nav-right {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }

    .nav-links {
        display: none !important;
    }

    .lang-switcher {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 28px !important;
        padding: 2px 4px !important;
        gap: 2px !important;
        border-radius: 14px !important;
        background: rgba(14, 14, 22, 0.85) !important;
        border: 1px solid rgba(197, 160, 89, 0.3) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) !important;
        flex-shrink: 0 !important;
    }

    .lang-btn {
        font-size: 0.6rem !important;
        padding: 2px 5px !important;
        letter-spacing: 0.5px !important;
        border-radius: 9px !important;
        line-height: 1 !important;
    }

    .lang-divider {
        font-size: 0.55rem !important;
        opacity: 0.3 !important;
    }

    .nav-mobile-toggle {
        display: flex !important;
        width: 34px !important;
        height: 34px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        border-radius: 8px !important;
        padding: 0 !important;
    }

    .nav-mobile-dropdown {
        width: calc(100% - clamp(1rem, 4vw, 1.6rem)) !important;
        max-width: 500px !important;
        margin: 0.4rem auto !important;
        padding: 0 0.85rem !important;
        box-sizing: border-box !important;
    }

    .nav-mobile-dropdown.open {
        display: flex !important;
        flex-direction: column !important;
        max-height: calc(100dvh - 72px) !important;
        max-height: calc(100vh - 72px) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior: contain !important;
        padding: 0.9rem 0.95rem calc(1.3rem + env(safe-area-inset-bottom, 0px)) 0.95rem !important;
    }

    .mobile-nav-link {
        font-size: 0.84rem !important;
        padding: 0.65rem 0.85rem !important;
        min-height: 44px !important;
        box-sizing: border-box !important;
    }

    .nav-cta-btn-mobile {
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .mobile-lang-switcher {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        gap: 0.5rem !important;
        box-sizing: border-box !important;
    }

    .mobile-lang-switcher .lang-btn {
        flex: 1 1 0 !important;
        font-size: 0.78rem !important;
        padding: 0.6rem 0.35rem !important;
        min-height: 44px !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Hero Section on Mobile */
    #hero {
        padding-top: 6.8rem !important;
        padding-bottom: 2.4rem !important;
        min-height: auto !important;
        display: block !important;
    }

    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 2rem !important;
        width: 100% !important;
    }

    .hero-grid>div:first-child {
        width: 100% !important;
        max-width: 100% !important;
        order: 1 !important;
    }

    .hero-photo-wrapper {
        order: -1 !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .hero-photo-card {
        width: 100% !important;
        max-width: 300px !important;
        aspect-ratio: 4 / 5 !important;
        border-radius: 20px !important;
        margin: 0 auto !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(197, 160, 89, 0.22) !important;
    }

    .hero-title {
        margin-bottom: 0.85rem !important;
        width: 100% !important;
    }

    .title-sub {
        font-size: clamp(2rem, 7.2vw, 2.5rem) !important;
        letter-spacing: 0.3px !important;
        margin-top: 0 !important;
        margin-bottom: 0.85rem !important;
        line-height: 1.15 !important;
        font-weight: 700 !important;
        font-style: italic !important;
        text-transform: none !important;
    }

    .hero-desc {
        font-size: clamp(1.02rem, 3.5vw, 1.14rem) !important;
        line-height: 1.68 !important;
        max-width: 95% !important;
        margin: 0 auto 1.8rem auto !important;
    }

    .hero-cta-group {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
        flex-wrap: wrap !important;
    }

    .hero-cta-group .btn {
        flex: 1 1 150px !important;
        min-height: 48px !important;
        font-size: 0.85rem !important;
        padding: 0.82rem 1.4rem !important;
        text-align: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
        letter-spacing: 1.2px !important;
        font-weight: 600 !important;
    }

    /* Philosophy / Wine Section */
    #wine-section {
        padding: 3.2rem 0 1.6rem 0 !important;
    }

    .clock-svg-box {
        width: 72px !important;
        height: 72px !important;
    }

    .quote-showcase-card {
        padding: 1.8rem 1.3rem !important;
        border-radius: 18px !important;
        max-width: 100% !important;
    }

    .quote-statement {
        font-size: clamp(1.28rem, 4.6vw, 1.6rem) !important;
        line-height: 1.52 !important;
    }

    /* About Section */
    #about {
        padding-top: 1.6rem !important;
    }

    .grid-2 {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .about-portrait-card {
        max-width: 300px !important;
        margin: 0 auto 1.4rem auto !important;
    }

    .about-text p {
        font-size: 1.02rem !important;
        line-height: 1.7 !important;
    }

    /* Philosophy Cards */
    .philosophy-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.1rem !important;
    }

    .philosophy-card {
        padding: 1.4rem 1.25rem !important;
        min-height: auto !important;
    }

    /* Impact Metrics / Numbers */
    #numbers .grid-3 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
    }

    .stat-card {
        min-height: 115px !important;
        padding: 1.05rem 0.85rem !important;
    }

    /* Career Timeline */
    .timeline {
        padding-left: 1.85rem !important;
    }

    .timeline-item::before {
        left: -2.25rem !important;
    }

    /* Mandates */
    .mandates-row {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 0.95rem !important;
        padding: 0.6rem 0 1rem 0 !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .mandates-row .mandate-card {
        flex: 0 0 270px !important;
        min-width: 250px !important;
        scroll-snap-align: start !important;
    }

    /* Articles Spotlight Stage */
    .article-spotlight-stage {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.1rem !important;
    }

    .spotlight-nav {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        gap: 0.75rem !important;
        padding-bottom: 0.6rem !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .spotlight-tab-item {
        flex: 0 0 240px !important;
    }

    /* Personal Hobbies */
    .hobby-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
    }

    /* Contact */
    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        padding: 1.8rem 1.3rem !important;
        gap: 1.6rem !important;
    }

    .form-input,
    .form-textarea,
    .form-select {
        font-size: 16px !important;
        padding: 0.8rem 0.95rem !important;
        box-sizing: border-box !important;
    }
}

/* --- 5. COMPACT SMARTPHONES (<= 480px e.g. Pixel 8, iPhone 12/14/15/16 Pro, Galaxy) --- */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem !important;
    }

    .title-sub {
        font-size: clamp(1.85rem, 6.8vw, 2.2rem) !important;
        letter-spacing: 0.2px !important;
        line-height: 1.15 !important;
    }

    .hero-desc {
        font-size: 1.02rem !important;
        line-height: 1.65 !important;
    }

    .hero-cta-group {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 320px !important;
        gap: 0.7rem !important;
    }

    .hero-cta-group .btn {
        width: 100% !important;
        flex: none !important;
    }

    .hero-photo-card {
        max-width: 290px !important;
        border-radius: 18px !important;
    }

    .mandates-row .mandate-card {
        flex: 0 0 calc(85vw - 1rem) !important;
        min-width: 240px !important;
        max-width: 300px !important;
    }

    .spotlight-tab-item {
        flex: 0 0 230px !important;
    }
}

/* --- 6. EXTRA SMALL PHONES (<= 380px e.g. iPhone SE, Galaxy Z Fold Folded) --- */
@media (max-width: 380px) {
    .container {
        padding: 0 0.85rem !important;
    }

    .title-sub {
        font-size: 1.65rem !important;
        letter-spacing: 0.2px !important;
        line-height: 1.16 !important;
    }

    .hero-desc {
        font-size: 0.98rem !important;
    }

    .hero-photo-card {
        max-width: 260px !important;
    }

    #numbers .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .hobby-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .mandates-row .mandate-card {
        min-width: 220px !important;
        flex: 0 0 220px !important;
    }

    .modal-metrics-grid {
        grid-template-columns: 1fr !important;
    }

    .quote-statement {
        font-size: 1.18rem !important;
    }

    .modal-nav-btn {
        flex: 1 1 100% !important;
    }
}