/* ==========================================================================
   JEWELS BY NIMIT — GLOBAL STYLESHEET
   Luxury B2B Export Jewelry Manufacturer, Jaipur, India
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS (CSS CUSTOM PROPERTIES)
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-void: #0A0906;         /* Primary Deep Dark (Jaipur Onyx) */
    --color-obsidian: #050503;     /* Obsidian/Tarmac Black */
    --color-surface: #13120E;      /* Secondary Surface (Deep Amber Charcoal) */
    --color-surface-light: #1E1C16;/* Card Hover / Raised Surfaces */
    
    --color-gold: #D4AF37;         /* Classic Jaipur Gold (Metallic) */
    --color-gold-hover: #E5C158;   /* Polished Gold Highlight */
    --color-gold-muted: #8C6D23;   /* Aged Gold Shadow */
    --color-gold-glow: rgba(212, 175, 55, 0.15); /* Soft Gold Glow tint */
    
    --color-text-primary: #F5F4F0; /* Warm Alabaster Off-White */
    --color-text-secondary: #A8A6A1; /* Muted Champagne Gray */
    --color-border: rgba(212, 175, 55, 0.12); /* Subtle Gold Border */
    --color-border-hover: rgba(212, 175, 55, 0.35); /* Focus Border */
    
    /* Typography */
    --font-primary: 'DM Sans', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-accent: 'Playfair Display SC', serif;
    
    /* Spacing Scale */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 1rem;     /* 16px */
    --spacing-md: 1.5rem;   /* 24px */
    --spacing-lg: 3rem;     /* 48px */
    --spacing-xl: 5rem;     /* 80px */
    --spacing-xxl: 8rem;    /* 128px */
    
    --container-pad: 2rem;
    --header-height: 80px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-snappy: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------------
   2. MODERN CSS RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base */
    -webkit-text-size-adjust: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-void);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.02em;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    /* Custom cursor will override this on desktop */
    cursor: default;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-snappy);
}

img, picture, svg, video {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Accessibility: Focus Visible outline (gold, 2px offset) */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

button, input, select, textarea {
    font: inherit;
    background: transparent;
    border: none;
    color: inherit;
}

button {
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

/* --------------------------------------------------------------------------
   3. NOISE GRAIN OVERLAY, SCROLLBARS & CUSTOM CURSOR
   -------------------------------------------------------------------------- */
/* Subtle Luxury Grain Texture Overlay */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.022; /* Extremely subtle luxury tactile feel */
    pointer-events: none;
    z-index: 99999; /* Stay on top of everything */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Custom Cursor Elements */
.custom-cursor-dot,
.custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100000;
    border-radius: 50%;
    opacity: 0; /* Hidden until mouse moves */
    transform: translate(-50%, -50%);
}

.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
}

.custom-cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold);
    transition: background-color 0.3s, border-color 0.3s;
}

.custom-cursor-ring.cursor-inverted {
    background-color: #ffffff;
    border-color: transparent;
    mix-blend-mode: difference;
}

/* Desktop Custom Scrollbar */
@media (min-width: 769px) {
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    ::-webkit-scrollbar-track {
        background: var(--color-void);
    }
    ::-webkit-scrollbar-thumb {
        background: var(--color-gold-muted);
        border-radius: 4px;
        border: 2px solid var(--color-void);
        transition: var(--transition-snappy);
    }
    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-gold);
    }
}

/* Mobile Scrollbar Hide */
@media (max-width: 768px) {
    html, body {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    ::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Opera */
    }
}

/* Hide Default cursor on desktop for custom cursor */
@media (min-width: 769px) {
    body {
        cursor: none;
    }
    a, button, [data-cursor] {
        cursor: none !important;
    }
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY SCALE
   -------------------------------------------------------------------------- */
h1, .h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-text-primary);
}

h2, .h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-text-primary);
}

h3, .h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    line-height: 1.3;
}

h4, .h4 {
    font-family: var(--font-accent);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

p, .body-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--color-text-secondary);
}

.text-lead {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text-primary);
}

/* --------------------------------------------------------------------------
   5. LAYOUT & UTILITIES
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

/* Luxury Section Label Preceded by Gold Line */
.section-label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: var(--spacing-sm);
}

.section-label::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
    vertical-align: middle;
}

/* Horizontal Gold Line Styles */
hr.hr-gold {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    opacity: 0.6;
    margin: var(--spacing-lg) 0;
    transform-origin: center;
}

/* --------------------------------------------------------------------------
   6. COMPONENT STYLES
   -------------------------------------------------------------------------- */

/* Header / Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 9999;
    border-bottom: 1px solid rgba(212, 175, 55, 0);
    transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.nav-scrolled {
    background-color: rgba(10, 9, 6, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    align-items: flex-start;
}

.nav-logo-wordmark {
    display: block;
}

.nav-logo-tagline {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    margin-top: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link-item {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-secondary);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link-item:hover,
.nav-link-item.active {
    color: var(--color-gold);
}

.nav-link-item::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 24px;
    height: 1px;
    background-color: var(--color-gold);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-nav-cta {
    padding: 10px 22px;
    font-size: 0.75rem;
}

.nav-whatsapp {
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
}

.nav-whatsapp:hover {
    background-color: var(--color-gold-glow);
    border-color: var(--color-gold);
    color: var(--color-gold-hover);
}

/* Mobile Hamburger Toggle */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
    padding: 0;
}

.nav-hamburger-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-hamburger.is-active .nav-hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.is-active .nav-hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.is-active .nav-hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay Menu */
.nav-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-void);
    z-index: 9998;
    display: none;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
}

.nav-mobile-container {
    width: 100%;
    padding: 0 var(--container-pad);
}

.nav-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.nav-mobile-item {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-text-primary);
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-mobile-item:hover,
.nav-mobile-item.active {
    color: var(--color-gold);
}

.nav-mobile-item::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 24px;
    height: 1px;
    background-color: var(--color-gold);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-mobile-item:hover::after,
.nav-mobile-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-mobile-cta {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--color-gold);
    padding: 14px 36px; /* Optimized 44px touch target height */
    margin-top: 10px;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-mobile-cta:hover {
    background-color: var(--color-gold);
    color: var(--color-void);
}

.nav-mobile-cta::after {
    display: none;
}

.nav-mobile-footer {
    margin-top: 40px;
}

.nav-mobile-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    padding: 12px 20px; /* Optimized 44px touch target height */
    transition: color 0.3s ease;
}

.nav-mobile-whatsapp:hover {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
}

/* Card Styles */
.card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: var(--spacing-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.card:hover {
    border-color: var(--color-border-hover);
    background-color: var(--color-surface-light);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 
                0 0 30px rgba(212, 175, 55, 0.05);
}

/* --------------------------------------------------------------------------
   7. BUTTONS (WITH CLIP-PATH HOVER REVEALS)
   -------------------------------------------------------------------------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    border-radius: 0;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Primary Button: Circle Expand Reveal from Center */
.btn-primary {
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    background: transparent;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-gold);
    z-index: -1;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary:hover {
    color: var(--color-void);
    border-color: var(--color-gold);
}

.btn-primary:hover::before {
    clip-path: circle(125% at 50% 50%);
}

/* Secondary Button: Sliding Slanted Wipe Reveal */
.btn-secondary {
    color: var(--color-text-primary);
    border: 1px solid rgba(245, 244, 240, 0.2);
    background: transparent;
}

.btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-text-primary);
    z-index: -1;
    clip-path: polygon(-10% 0, -5% 0, -25% 100%, -30% 100%);
    transition: clip-path 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-secondary:hover {
    color: var(--color-void);
    border-color: var(--color-text-primary);
}

.btn-secondary:hover::before {
    clip-path: polygon(-10% 0, 115% 0, 100% 100%, -30% 100%);
}

/* Ghost Button: Elegant Line Wipe and Light Glow Background */
.btn-ghost {
    color: var(--color-gold);
    border: 1px solid transparent;
    background: transparent;
    padding: 16px 20px;
}

.btn-ghost::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.05);
    z-index: -1;
    clip-path: polygon(0 95%, 100% 95%, 100% 100%, 0 100%);
    transition: clip-path 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-ghost:hover::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.btn-ghost:hover {
    color: var(--color-gold-hover);
}

/* --------------------------------------------------------------------------
   8. IMAGE REVEAL STYLING
   -------------------------------------------------------------------------- */
/* Shimmer Pulse Placeholder Animation */
@keyframes shimmer { 
    0%  { background-position: -200% 0; } 
    100%{ background-position:  200% 0; } 
}

.reveal-image {
    position: relative;
    overflow: hidden;
    display: block;
    --clip-path-reveal: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    background: linear-gradient(90deg, 
        var(--color-surface) 25%, 
        rgba(201, 168, 76, 0.08) 50%, 
        var(--color-surface) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 2.2s infinite;
}

.reveal-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-gold);
    z-index: 2;
    clip-path: var(--clip-path-reveal);
}

.reveal-image img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1.15);
    transition: transform 1.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* --------------------------------------------------------------------------
   9. FOOTER SECTION STYLING
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--color-void);
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    position: relative;
    z-index: 10;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Brand Column */
.brand-col .footer-logo {
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

.brand-col .footer-logo-wordmark {
    display: block;
}

.brand-col .footer-tagline {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.brand-col .footer-description {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 300px;
}

/* Labels */
.footer-label {
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

/* Links & Text Lists */
.footer-links-list,
.footer-markets-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    transition: var(--transition-snappy);
}

.footer-links-list a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

/* Contact Info list */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.footer-contact-info p {
    margin: 0;
}

.footer-contact-info a {
    color: var(--color-text-secondary);
    transition: var(--transition-snappy);
}

.footer-contact-info a:hover {
    color: var(--color-gold);
}

/* Export Markets */
.footer-markets-list li {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    list-style-type: none;
}

.footer-markets-list .markets-open {
    font-family: var(--font-accent);
    font-size: 10px;
    letter-spacing: 0.05em;
    color: var(--color-gold-muted);
}

/* Divider & Bottom bar */
.footer-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0 0 var(--spacing-md) 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(168, 166, 161, 0.4);
}

.footer-bottom .footer-copy {
    font-family: var(--font-primary);
}

.footer-bottom .footer-materials {
    font-family: var(--font-accent);
    color: rgba(168, 166, 161, 0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Responsiveness */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg) var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
}

/* ==========================================================================
   10. HOMEPAGE HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 700px;
    background-color: var(--color-void);
    background-image: linear-gradient(rgba(10, 10, 8, 0.75), rgba(10, 10, 8, 0.85)), url('images/hero_home.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
    padding-bottom: var(--header-height);
    z-index: 1;
}

/* Background Atmosphere */
.hero-grain-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04; /* Subtle luxury texture overlay */
    pointer-events: none;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
}

.hero-container-inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Initial States for Smooth Entrance (Flicker Prevention) */
.hero-label {
    margin-bottom: var(--spacing-sm);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 6.5vw, 4.5rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.05;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

.hero-seo-title {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--color-gold-muted);
    margin-top: 12px;
    opacity: 0;
}

.hero-subheading {
    font-family: var(--font-primary);
    font-size: 1.125rem; /* 18px */
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin-bottom: var(--spacing-md);
    opacity: 0;
}

.hero-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: var(--spacing-lg);
}

.hero-cta-btn {
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    opacity: 0;
}

@media (max-height: 800px) and (min-width: 769px) {
    .hero-title {
        font-size: clamp(2rem, 5.5vw, 3.8rem);
    }
    .hero-seo-title {
        margin-top: 8px;
    }
    .hero-subheading {
        margin-bottom: var(--spacing-sm);
        font-size: 1rem;
    }
    .hero-cta-row {
        margin-bottom: var(--spacing-md);
    }
    .hero-stats {
        gap: 40px;
    }
}

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

.hero-stat-item strong {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--color-gold);
    line-height: 1.2;
}

.hero-stat-item span {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-secondary);
}

/* Vertical Rotated Label */
.hero-vertical-label {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 5;
    opacity: 0;
}

.hero-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-gold-muted);
    text-transform: uppercase;
}

.hero-vertical-line {
    width: 1px;
    height: 100px;
    background-color: rgba(212, 175, 55, 0.25);
}

/* SplitText Line Wrap Styles */
.hero-title-line-wrap {
    overflow: hidden;
    display: block;
}

.hero-title-line-inner {
    display: inline-block;
    opacity: 0; /* Set by GSAP, but good for base */
}

/* Responsiveness */
@media (max-width: 1200px) {
    .hero-vertical-label {
        display: none; /* Avoid overlapping text on narrow desktop viewports */
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100svh;
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: var(--spacing-xl);
        justify-content: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
    
    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }
    
    .hero-cta-row .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

/* ==========================================================================
   11. HORIZONTAL MARQUEE TICKER
   ========================================================================== */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background-color: var(--color-obsidian);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.marquee-item {
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    opacity: 0.85;
    text-transform: uppercase;
}

.marquee-diamond {
    color: var(--color-gold);
    opacity: 0.5;
    margin: 0 24px;
    font-size: 10px;
}

/* Seamless infinite left-to-right scroll */
@keyframes marquee-scroll {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ==========================================================================
   12. WHO WE ARE (OUR IDENTITY) SECTION
   ========================================================================== */
.identity-section {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-void);
    overflow: hidden;
    z-index: 1;
}

.identity-grid {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Image Column */
.identity-image-col {
    position: relative;
    z-index: 2;
}

.identity-image-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: var(--color-surface);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
    animation: gold-shimmer-pulse 3s infinite ease-in-out;
}

.identity-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes gold-shimmer-pulse {
    0% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.02);
    }
    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.08);
        border-color: rgba(212, 175, 55, 0.2);
    }
    100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.02);
    }
}

/* Right Content Column */
.identity-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.identity-label {
    margin-bottom: var(--spacing-sm);
}

.identity-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.15;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

.identity-subtitle-seo {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--color-gold-muted);
    margin-top: 12px;
    opacity: 0;
}

.identity-body {
    margin-bottom: var(--spacing-md);
}

.identity-body p {
    font-family: var(--font-primary);
    font-size: 1.0625rem; /* 17px */
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.identity-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem; /* 24px */
    font-style: italic;
    color: var(--color-gold);
    border-left: 2px solid var(--color-gold);
    padding-left: 24px;
    margin: var(--spacing-md) 0 var(--spacing-lg) 0;
    line-height: 1.5;
}

/* Decorative Background Number */
.identity-bg-number {
    position: absolute;
    right: -5%;
    top: 5%;
    font-family: var(--font-serif);
    font-size: 30vw;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
    opacity: 0; /* Animated to 0.03 by GSAP */
    pointer-events: none;
    z-index: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .identity-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .identity-image-wrap {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .identity-bg-number {
        font-size: 45vw;
        right: 0%;
        top: 25%;
    }
}

/* ==========================================================================
   13. PROOF / STATISTICS SECTION
   ========================================================================== */
.proof-section {
    width: 100%;
    background-color: var(--color-obsidian);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.proof-grid {
    display: grid;
    /* 3 columns + 2 1px divider columns = 5 total grid columns */
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: center;
    width: 100%;
}

.proof-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 var(--spacing-sm);
    opacity: 0; /* Initial state, animated in by GSAP trigger */
}

.proof-number {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem); /* large 7vw cormorant garamond */
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 12px;
}

.proof-label {
    font-family: var(--font-primary);
    font-size: 13px; /* 13px DM Sans 400 */
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    max-width: 200px;
}

/* Vertical 1px Gold Divider */
.proof-divider {
    width: 100%;
    height: 90px;
    background-color: rgba(212, 175, 55, 0.25);
    transform: scaleY(0); /* Initial state, animated in by GSAP */
}

/* Responsive Layout */
@media (max-width: 768px) {
    .proof-section {
        padding: var(--spacing-lg) 0;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .proof-divider {
        display: none; /* Hide vertical dividers on mobile viewports */
    }
    
    .proof-col {
        padding: 0;
    }
    
    .proof-number {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
}

