@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

@layer reset, design-tokens, base, components, utilities, expert-effects;

@layer design-tokens {
  :root {
    /* Colors - Deep Charcoal & Navy Luxury Palette */
    --bg-color: #0a0f18; /* Deep Charcoal/Navy */
    --bg-secondary: #111827; /* Slightly lighter navy */
    --bg-tertiary: #05080c; /* Ultra dark */
    
    --text-primary: #ffffff; /* White text for dark mode */
    --text-secondary: #9ca3af; /* Soft gray for secondary text */
    --text-muted: #6b7280;
    
    --accent-gold: #C8A463; /* Muted Gold/Bronze */
    --accent-gold-dark: #a8874c;
    --accent-gold-light: rgba(200, 164, 99, 0.15);
    
    /* Glassmorphism settings - dark mode */
    --glass-bg: rgba(10, 15, 24, 0.65);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif; /* Or Playfair Display/Cinzel */
    --font-body: 'Montserrat', sans-serif; /* Or Inter */

    /* Fluid Typography */
    --fs-display: clamp(4rem, 12vw, 12rem);
    --fs-h1: clamp(3rem, 10vw, 9rem);
    --fs-h2: clamp(3rem, 6vw, 6rem);
    --fs-h3: clamp(2rem, 3.5vw, 3.5rem);
    --fs-h4: clamp(0.9rem, 1.2vw + 0.25rem, 1.1rem); /* Kickers */
    --fs-body: clamp(1.2rem, 1.6vw, 1.6rem);

    /* Fluid Spacing */
    --spacing-xs: clamp(0.5rem, 1vw, 1rem);
    --spacing-sm: clamp(1rem, 2vw, 2rem);
    --spacing-md: clamp(2rem, 4vw, 4rem);
    --spacing-lg: clamp(3rem, 6vw, 6rem);
    --spacing-xl: clamp(4rem, 8vw, 8rem);
    
    --container-width: 1400px;
    --transition-smooth: opacity 300ms ease, transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    --transition-bounce: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }
}

@layer reset {
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    scroll-behavior: smooth;
  }
  img {
    max-width: 100%;
    display: block;
    height: auto;
  }
  li { list-style: none; }
  a { text-decoration: none; color: inherit; }
}

@layer base {
  body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.8; /* Polished typography line-height */
    overflow-x: hidden;
    font-weight: 300;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
  }

  .accent-text {
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 300;
  }

  /* Utility Spacing */
  .mt-md { margin-top: var(--spacing-md); }
  .text-center { text-align: center; }
  
  /* 3D Text utility */
  .text-3d {
    color: var(--text-secondary);
    text-shadow: 
      0 1px 0 #0d1624,
      0 2px 0 #0b121e,
      0 3px 0 #090e18,
      0 4px 0 #070b13,
      0 5px 0 #04070c,
      0 6px 1px rgba(0,0,0,.1),
      0 0 5px rgba(0,0,0,.1),
      0 1px 3px rgba(0,0,0,.3),
      0 3px 5px rgba(0,0,0,.2),
      0 5px 10px rgba(0,0,0,.25),
      0 10px 10px rgba(0,0,0,.2),
      0 20px 20px rgba(0,0,0,.15);
    transform-style: preserve-3d;
    display: inline-block;
    transform: perspective(500px) rotateX(15deg) rotateY(-10deg);
    transition: transform 0.3s ease;
  }

  .text-3d:hover {
    transform: perspective(500px) rotateX(0deg) rotateY(0deg) scale(1.05);
  }
  
  /* Sections */
  .section-padding {
    padding: var(--spacing-xl) 0;
  }
}

@layer components {
  /* Container */
  .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
  }

  /* Navigation */
  /* Ultra-Luxurious Dark Marble Background Texture */
  .bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      radial-gradient(ellipse at 50% 15%, rgba(255, 255, 255, 0.18) 0%, transparent 65%),
      radial-gradient(ellipse at 85% 85%, rgba(17, 28, 46, 0.6) 0%, transparent 55%),
      linear-gradient(180deg, rgba(8, 8, 12, 0.45) 0%, rgba(8, 8, 12, 0.2) 50%, rgba(8, 8, 12, 0.55) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.70;
    z-index: -1;
    pointer-events: none;
    filter: contrast(1.15) brightness(0.95) grayscale(100%);
  }

  /* Navigation Bar */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.1rem 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(8, 8, 12, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(200, 164, 99, 0.25) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(200, 164, 99, 0.05);
  }
  
  .main-nav.scrolled {
    padding: 0.8rem 3.5rem;
    background: rgba(5, 5, 8, 0.94) !important;
    border-bottom: 1px solid rgba(200, 164, 99, 0.4) !important;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.95), 0 0 25px rgba(200, 164, 99, 0.1);
  }

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

  .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)) !important;
  }

  .logo a:hover img {
    transform: scale(1.04);
  }

  /* Mobile Nav Toggle Button */
  .nav-toggle {
    display: none;
    background: rgba(18, 22, 34, 0.75);
    border: 1px solid rgba(200, 164, 99, 0.4);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }

  .nav-toggle:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 18px rgba(200, 164, 99, 0.35);
  }

  .hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #EADCCB;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-toggle.is-active .line-1 {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--accent-gold);
  }
  .nav-toggle.is-active .line-2 {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.is-active .line-3 {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--accent-gold);
  }

  /* Mobile Nav Overlay */
  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 12, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-nav-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Mobile Nav Drawer */
  .mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 88%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: #090E17;
    border-left: 1px solid rgba(200, 164, 99, 0.35);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -25px 0 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(200, 164, 99, 0.1);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-nav-drawer.is-active {
    transform: translateX(0);
  }

  body.nav-locked {
    overflow: hidden !important;
    touch-action: none;
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(200, 164, 99, 0.18);
  }

  .mobile-nav-header .logo img {
    height: 38px;
  }

  .mobile-nav-close {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 164, 99, 0.3);
    color: #EADCCB;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-nav-close:hover {
    background: rgba(200, 164, 99, 0.2);
    color: #FFFFFF;
    border-color: var(--accent-gold);
  }

  .mobile-nav-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.15rem;
    min-height: 48px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #E2D9C8;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.25s ease;
    text-decoration: none;
  }

  .mobile-nav-link span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(135deg, rgba(200, 164, 99, 0.2) 0%, rgba(18, 24, 38, 0.95) 100%);
    border-color: rgba(200, 164, 99, 0.5);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(200, 164, 99, 0.15);
    transform: translateX(4px);
  }

  .mobile-nav-cta-wrap {
    margin-top: 0.5rem;
  }

  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 48px;
    padding: 1rem 1.5rem;
    background: linear-gradient(180deg, #E6CD9B 0%, #C8A362 50%, #9F7D3D 100%);
    color: #1C160B;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(200, 164, 99, 0.25);
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-nav-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
  }

  .mobile-nav-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(200, 164, 99, 0.15);
  }

  .mobile-social-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 164, 99, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8A463;
    transition: all 0.2s ease;
    text-decoration: none;
  }

  .mobile-social-icon:hover {
    background: var(--accent-gold);
    color: #0A0F18;
    transform: translateY(-2px);
  }

  /* Shimmering Metallic Luxury Tabs Track */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    background: rgba(18, 18, 26, 0.7);
    border: 1px solid rgba(200, 164, 99, 0.3);
    border-radius: 100px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.7), 0 4px 18px rgba(0, 0, 0, 0.5);
    list-style: none;
    margin: 0;
  }

  .nav-links li {
    margin: 0;
    padding: 0;
    display: flex;
  }

  /* Shimmering Tab Link */
  .nav-link {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    color: #e5dccb !important;
    padding: 8px 22px !important;
    border-radius: 100px !important;
    text-decoration: none !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    background: transparent !important;
    border: 1px solid transparent !important;
  }

  /* Shimmer Sweep Animation Overlay */
  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg, 
      transparent 0%, 
      rgba(200, 164, 99, 0.1) 25%, 
      rgba(255, 248, 225, 0.85) 50%, 
      rgba(200, 164, 99, 0.1) 75%, 
      transparent 100%
    );
    transform: skewX(-25deg);
    transition: left 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    z-index: 2;
  }

  /* Hover State: Glowing Metallic Pill & Shimmer Sweep */
  .nav-link:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(200, 164, 99, 0.25) 0%, rgba(20, 20, 32, 0.85) 100%) !important;
    border-color: rgba(200, 164, 99, 0.65) !important;
    box-shadow: 
      0 0 20px rgba(200, 164, 99, 0.35), 
      inset 0 0 10px rgba(200, 164, 99, 0.2) !important;
    transform: translateY(-1px);
  }

  .nav-link:hover::before {
    left: 150%;
  }

  /* Active Tab: Gold Shimmer Glow */
  .nav-link.active,
  .nav-link[aria-current="page"] {
    background: linear-gradient(135deg, rgba(200, 164, 99, 0.32) 0%, rgba(12, 12, 20, 0.95) 100%) !important;
    border: 1px solid rgba(200, 164, 99, 0.8) !important;
    box-shadow: 
      0 0 24px rgba(200, 164, 99, 0.45), 
      inset 0 0 12px rgba(200, 164, 99, 0.3) !important;
    color: #ffffff !important;
  }

  /* Buttons */
  .btn-primary, .btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 160ms cubic-bezier(0.23, 1, 0.32, 1), background-color 160ms cubic-bezier(0.23, 1, 0.32, 1), border-color 160ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .btn-primary:active, .btn-secondary:active {
    transform: scale(0.97);
  }

  .btn-primary {
    background: var(--text-primary);
    color: var(--bg-color);
    border-color: var(--text-primary);
    font-weight: 500;
  }
  
  .btn-secondary {
    background: transparent;
    border-color: var(--glass-highlight);
    backdrop-filter: blur(10px);
  }

  /* Button hover effects */
  .btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .btn-primary:hover, .btn-secondary:hover {
    color: var(--bg-color);
    border-color: var(--accent-gold);
  }
  
  .btn-primary:hover::before, .btn-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  /* Button text span to stay above background */
  .btn-primary span, .btn-secondary span, .hero-btn span {
    position: relative;
    z-index: 2;
  }

  /* 21st UI Vault: Pure Radiant Shimmer CTAs (Zero Movement) */
  @keyframes heroShimmerSweep {
    0% {
      transform: translateX(-150%) skewX(-25deg);
    }
    100% {
      transform: translateX(250%) skewX(-25deg);
    }
  }

  .hero-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    width: 100%;
    transform: none !important; /* Zero physical movement */
    transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  }

  /* Primary CTA: Solid Gold with Continuous Radiant Light Shimmer */
  .hero-btn-primary, .hero-btn:not(.hero-btn-secondary) {
    color: #111C2E !important;
    background: linear-gradient(135deg, #DFBF82 0%, #C8A463 50%, #B5904C 100%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 24px -4px rgba(200, 164, 99, 0.35), 
                inset 0 1px 1px rgba(255, 255, 255, 0.6);
  }

  .hero-btn-primary::before, .hero-btn:not(.hero-btn-secondary)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
    animation: heroShimmerSweep 3.5s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
  }

  .hero-btn-primary:hover, .hero-btn:not(.hero-btn-secondary):hover {
    box-shadow: 0 10px 30px -2px rgba(200, 164, 99, 0.5), 
                inset 0 1px 1px rgba(255, 255, 255, 0.8);
    filter: brightness(1.05);
  }

  /* Secondary CTA: Frosted Navy Glass with Continuous Gold Shimmer */
  .hero-btn-secondary {
    color: #C8A463 !important;
    background: rgba(17, 28, 46, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(200, 164, 99, 0.5);
    box-shadow: 0 8px 22px -2px rgba(0, 0, 0, 0.5), 
                0 0 15px rgba(200, 164, 99, 0.12);
    font-weight: 600;
  }

  .hero-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(200, 164, 99, 0.45) 50%, transparent 100%);
    animation: heroShimmerSweep 3.5s infinite ease-in-out 1.75s;
    pointer-events: none;
    z-index: 1;
  }

  .hero-btn-secondary:hover {
    background: rgba(26, 38, 58, 0.95);
    border-color: #C8A463;
    color: #FFFFFF !important;
    box-shadow: 0 10px 28px -2px rgba(0, 0, 0, 0.6), 
                0 0 25px rgba(200, 164, 99, 0.3);
  }

  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Extra height for parallax */
    z-index: -2;
    transform-origin: center;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 1;
    filter: brightness(1.18) contrast(1.06) saturate(1.05);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 120%),
                linear-gradient(90deg, rgba(17, 28, 46, 0.85) 0%, rgba(200, 164, 99, 0.4) 35%, rgba(244, 240, 234, 0.2) 70%, rgba(38, 46, 59, 0.6) 100%);
  }

  .hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
  }

  .hero-content {
    position: relative;
    z-index: 1;
    padding-top: 10vh;
  }

  .hero-title {
    font-size: var(--fs-display);
    margin-bottom: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    letter-spacing: -0.02em;
  }
  
  .hero-title .line {
    overflow: hidden;
    display: block;
  }
  
  .hero-title .word {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  /* Active state for stagger */
  .reveal-stagger.active .hero-title .word {
    transform: translateY(0);
  }
  
  .reveal-stagger.active .hero-title .line:nth-child(1) .word { transition-delay: 0.1s; }
  .reveal-stagger.active .hero-title .line:nth-child(2) .word { transition-delay: 0.2s; }

  .hero-subtitle {
    max-width: 500px;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.4s;
  }
  
  .reveal-stagger.active .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-stagger .btn-primary {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.6s;
  }
  
  .reveal-stagger.active .btn-primary {
    opacity: 1;
    transform: translateY(0);
  }

  /* Kicker / Subheadings */
  .section-kicker {
    font-family: var(--font-body);
    font-size: var(--fs-h4);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .text-center .section-kicker {
    justify-content: center;
  }
  
  .section-kicker::after {
    content: '';
    height: 1px;
    width: 40px;
    background: var(--accent-gold);
  }
  
  .text-center .section-kicker::before {
    content: '';
    height: 1px;
    width: 40px;
    background: var(--accent-gold);
  }

  /* About Section Grid (Overlapping Editorial layout) */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
  }
  
  @media (max-width: 900px) {
    .about-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
    }
  }

  .about-text .section-title {
    margin-bottom: var(--spacing-md);
  }

  .about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  .about-images {
    position: relative;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .image-scroll-wrapper {
    overflow: hidden;
    position: relative;
    height: 100%;
    border-radius: 8px;
  }
  .image-scroll-wrapper img {
    height: 120%;
    width: 100%;
    object-fit: cover;
    transform: translateY(-10%);
  }

  /* Seamless About Section (Zero Hard Lines / No Box Edges) */
  .about-seamless-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-color);
    overflow: hidden;
    padding: 6rem 0;
  }

  .about-portrait-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible !important;
    border-radius: 0 !important;
  }

  .about-portrait-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    -webkit-mask-image: 
      radial-gradient(ellipse 80% 85% at 58% 50%, #000 60%, transparent 100%),
      linear-gradient(to right, transparent 0%, #000 24%, #000 90%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: 
      radial-gradient(ellipse 80% 85% at 58% 50%, #000 60%, transparent 100%),
      linear-gradient(to right, transparent 0%, #000 24%, #000 90%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-composite: intersect;
  }

  .about-images .main-img {
    width: 80%;
    height: 80%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    filter: brightness(0.85);
  }
  
  .about-images .accent-img {
    width: 50%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 10%;
    z-index: 2;
    padding: 0.5rem; /* acts like a frame because of glass-panel */
  }

  /* Services Grid */
  .services-section {
    background: linear-gradient(to bottom, var(--bg-color), var(--bg-secondary), var(--bg-color));
  }
  
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
  }

  .service-card {
    padding: 3rem 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .service-icon {
    font-size: 2rem;
    color: var(--accent-gold);
  }

  .service-card h3 {
    font-size: var(--fs-h3);
    margin: 0;
  }

  .service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
  }

  /* Testimonial */
  .testimonial-wrapper {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-lg);
  }
  
  .testimonial-card {
    max-width: 900px;
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    position: relative;
  }
  
  .quote-mark {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: var(--accent-gold-light);
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
  }

  blockquote {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
  }
  
  .author-info h4 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  .author-info p {
    margin: 0;
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Footer */
  .main-footer {
    border-top: 1px solid var(--glass-border);
    padding: var(--spacing-xl) 0 2rem;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at bottom center, var(--bg-secondary) 0%, var(--bg-color) 100%);
  }

  .footer-logo {
    max-width: 250px;
    margin: 0 auto 2rem;
    opacity: 0.8;
  }

  .footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto var(--spacing-lg);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  @media (max-width: 768px) {
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
    }
  }

  @media (max-width: 480px) {
    .hero-content {
      padding-top: calc(var(--spacing-xl) * 2);
    }
  }

  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
}

@layer expert-effects {
  /* 1. Global Noise Overlay (Cinematic Texture) - adjusted for light mode */
  .noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  }

  /* 2. Advanced Glassmorphism */
  .glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 2px; /* Super sharp edges for modern editorial look */
    box-shadow: var(--glass-shadow);
  }
  
  .glowing-border {
    position: relative;
  }
  
  .glowing-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 40%, transparent 60%, var(--accent-gold-light) 100%);
    z-index: -1;
    border-radius: inherit;
  }

  /* Hover Lifts */
  .hover-lift {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  }
  
  .hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1), 
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: var(--glass-highlight);
  }

  /* Scroll Reveals */
  .reveal-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .reveal-fade-up.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Staggered Children reveal */
  .stagger-children .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .stagger-children.active .reveal-item {
    opacity: 1;
    transform: translateY(0);
  }
  
  .stagger-children.active .reveal-item:nth-child(1) { transition-delay: 0.1s; }
  .stagger-children.active .reveal-item:nth-child(2) { transition-delay: 0.25s; }
  .stagger-children.active .reveal-item:nth-child(3) { transition-delay: 0.4s; }
}

@layer expert-effects {
  /* Assessment Modal */
  .assessment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    background: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }
  .assessment-modal.is-open {
    opacity: 1;
    pointer-events: all;
  }
  .assessment-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .assessment-modal.is-open .assessment-content {
    transform: translateY(0);
  }
  .close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
  }
  .close-modal:hover {
    color: var(--text-primary);
  }
  .assessment-step {
    display: none;
    animation: fadeIn 0.5s forwards;
  }
  .assessment-step.is-active {
    display: block;
  }
  .assessment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  .assessment-option {
    padding: 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }
  .assessment-option:hover {
    background: rgba(226, 195, 126, 0.1);
    border-color: var(--accent-gold);
    transform: translateX(5px);
  }

  /* Pinned Scroll Section */
  .pinned-section {
    position: relative;
    background: var(--bg-color);
  }
  .pinned-container {
    display: flex;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
  }
  .pinned-left {
    flex: 1;
    padding: 50vh 0;
  }
  .pinned-right {
    flex: 1;
    position: relative;
  }
  .step-card {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 4rem;
    opacity: 0.3;
    transition: opacity 0.5s ease;
  }
  .step-card.is-active {
    opacity: 1;
  }
  .visual-container {
    position: sticky;
    top: 20vh;
    height: 60vh;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
  }
  .visual-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease, transform 1s ease;
    transform: scale(1.05);
  }
  .visual-item.is-active {
    opacity: 1;
    transform: scale(1);
  }

  /* Audio Equalizer */
  .equalizer-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 30px;
    margin: 1rem auto;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .podcast-card:hover .equalizer-container {
    opacity: 1;
  }
  .bar {
    width: 6px;
    background: var(--accent-gold);
    height: 5px;
    border-radius: 3px;
    animation: none;
  }
  .podcast-card:hover .bar {
    animation: equalize 1s infinite alternate ease-in-out;
  }
  .bar:nth-child(1) { animation-delay: 0.0s; }
  .bar:nth-child(2) { animation-delay: 0.2s; }
  .bar:nth-child(3) { animation-delay: 0.4s; }
  .bar:nth-child(4) { animation-delay: 0.1s; }
  .bar:nth-child(5) { animation-delay: 0.3s; }

  @keyframes equalize {
    0% { height: 5px; }
    100% { height: 30px; }
  }

  /* Ambient Media */
  .podcast-card {
    position: relative;
    overflow: hidden;
  }
  .ambient-bg {
    position: absolute;
    inset: -20px;
    background: linear-gradient(45deg, rgba(226,195,126,0.05), rgba(10,13,20,0), rgba(226,195,126,0.02));
    filter: blur(20px);
    z-index: 0;
    opacity: 0.5;
    transition: opacity 0.5s ease;
    animation: ambient-drift 10s infinite alternate ease-in-out;
  }
  .podcast-card:hover .ambient-bg {
    opacity: 1;
  }
  @keyframes ambient-drift {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-20px, 10px); }
  }
  .podcast-card > * {
    position: relative;
    z-index: 1;
  }

  
  /* Expert Feature 2: Magnetic Elements Support */
  .magnetic {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  /* Expert Feature 3: Image Parallax Overlay */
  .reveal-parallax {
    position: relative;
    overflow: hidden;
  }
  .reveal-parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2;
  }
  .reveal-parallax.is-revealed::after {
    transform: scaleY(0);
  }
}

/* Smooth Scrolling utility (Lenis) */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

@keyframes marqueeMove { 0% { transform: translateX(-33.33%); } 100% { transform: translateX(0%); } }
@keyframes spinStar { 100% { transform: rotate(360deg); } }
.marquee-track { animation: marqueeMove 15s linear infinite; }
.spin-star { display: inline-block; animation: spinStar 4s linear infinite; }

/* Custom Preloader */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  opacity: 0;
}
.loader-progress {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.loader-progress-bar {
  position: absolute;
  top: 0; left: 0; height: 100%;
  background: var(--accent-gold);
  width: 0%;
}

/* Horizontal Scroll Container */
.horizontal-scroll-container {
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
}
.horizontal-scroll-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 4rem;
  padding: 0 10vw;
}
.horizontal-scroll-section {
  overflow: hidden;
}

/* Interactive Hover States (Parallax Tilt) */
.parallax-image-wrapper {
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.parallax-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease-out;
}

/* Sticky Stack Cards - Responsive & Zero Clipping */
.stack-wrapper {
  position: relative;
  width: 100%;
}

.stack-card {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 80px;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.stack-card-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 1280px;
  width: 100%;
  min-height: 65vh;
  border-radius: 24px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.stack-card-text {
  flex: 1 1 50%;
  min-width: 320px;
  padding: clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.stack-card-image-wrap {
  flex: 1 1 50%;
  min-width: 320px;
  position: relative;
  min-height: 350px;
  box-sizing: border-box;
}

.stack-card-image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-card .service-icon {
  font-family: var(--font-heading);
  color: var(--accent-gold);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  display: block;
  letter-spacing: 0.05em;
}

.stack-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #ffffff;
  word-break: break-word;
  overflow: visible;
}

.stack-card p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.8;
  word-break: break-word;
}

@media (max-width: 900px) {
  .main-nav {
    padding: 0.85rem 1.25rem !important;
  }
  .main-nav .nav-links {
    display: none !important;
  }
  .nav-toggle {
    display: flex !important;
  }
}

/* Comprehensive Mobile Responsiveness Overrides */
@media (max-width: 768px) {
  :root {
    --fs-display: clamp(2.2rem, 8vw, 3.8rem);
    --fs-h1: clamp(2rem, 7.5vw, 3.5rem);
    --fs-h2: clamp(1.75rem, 6vw, 2.75rem);
    --fs-h3: clamp(1.25rem, 5vw, 2rem);
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.25rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3.5rem;
  }

  /* Global Container Spacing */
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* Instant Mobile Visibility for Reveal Elements */
  .reveal-fade-up,
  .stagger-children .reveal-item,
  .reveal-stagger {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Hero Section adjustments */
  .hero {
    min-height: 92svh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .hero-image-container {
    transform: none !important;
  }

  .hero-image {
    object-position: center 15% !important;
    transform: scale(1.04) !important;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 15, 24, 0.65) 0%, rgba(10, 15, 24, 0.35) 45%, rgba(10, 15, 24, 0.95) 100%) !important;
  }

  .hero-content {
    min-height: auto !important;
    padding-top: 6.5rem !important;
    padding-bottom: 2rem !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-content .reveal-stagger {
    transform: none !important;
    max-width: 100% !important;
  }

  .hero-title {
    font-size: clamp(2rem, 7.5vw, 3.2rem) !important;
    line-height: 1.18 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0 auto !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
  }
  
  /* Hero Bottom Badge */
  .hero-badge, .hero > div[style*="bottom: 0"] {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    border-top-right-radius: 24px !important;
    border-top-left-radius: 24px !important;
    border-right: none !important;
    border-left: none !important;
    border-top: 1px solid rgba(200, 164, 99, 0.45) !important;
    padding: 1.35rem 1.25rem !important;
    text-align: center !important;
    margin-top: auto !important;
    background: rgba(10, 14, 22, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(200, 164, 99, 0.15) !important;
  }

  .hero-badge h3 {
    font-size: 1.25rem !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 0.25rem !important;
  }

  .hero-badge p {
    font-size: 0.82rem !important;
    letter-spacing: 0.1em !important;
  }

  /* Media Section Responsive */
  .media-section {
    padding: 4rem 0 !important;
  }

  .media-grid-container {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    text-align: center !important;
  }

  .media-text-col {
    text-align: center !important;
  }

  .media-text-col .section-title {
    font-size: clamp(2rem, 6vw, 2.75rem) !important;
    margin-bottom: 1.25rem !important;
  }

  .media-text-col .section-subtitle {
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
    margin-bottom: 2rem !important;
  }

  .media-cta-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
    width: 100% !important;
  }

  .media-cta-group .btn-primary,
  .media-cta-group .btn-secondary {
    width: 100% !important;
    justify-content: center !important;
    padding: 1rem 1.5rem !important;
    font-size: 0.95rem !important;
  }

  .media-phone-col {
    margin: 0 auto !important;
    max-width: 100% !important;
  }

  .media-phone-img {
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  .media-phone-badge {
    right: 0% !important;
    bottom: 4% !important;
    padding: 0.65rem 1.15rem !important;
  }

  /* About Section Seamless Mobile */
  .about-seamless-section {
    min-height: auto !important;
    padding: 4.5rem 1.25rem 3.5rem 1.25rem !important;
    flex-direction: column !important;
  }

  .about-portrait-wrapper {
    position: relative !important;
    width: 100% !important;
    max-width: 320px !important;
    height: 380px !important;
    margin: 0 auto 2rem auto !important;
    transform: none !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .about-portrait-img {
    height: 100% !important;
    width: 100% !important;
    transform: none !important;
    object-position: center top !important;
    border-radius: 20px !important;
    -webkit-mask-image: 
      radial-gradient(ellipse 88% 88% at 50% 50%, #000 70%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 4%, #000 92%, transparent 100%) !important;
    -webkit-mask-composite: source-in !important;
    mask-image: 
      radial-gradient(ellipse 88% 88% at 50% 50%, #000 70%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 4%, #000 92%, transparent 100%) !important;
    mask-composite: intersect !important;
  }

  .about-text-content {
    max-width: 100% !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .about-text-content .section-title {
    font-size: clamp(2.2rem, 6vw, 3rem) !important;
    white-space: normal !important;
    margin-bottom: 1.25rem !important;
  }

  .about-text-content p {
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
    color: #EADCCB !important;
  }

  .about-text-content .btn-secondary {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }
  
  /* Free Guide Section Fixes */
  #free-guide-section {
    padding: 2.25rem 1.5rem !important;
    flex-direction: column !important;
    text-align: center !important;
    background: #FFFFFF !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
  }

  #free-guide-left {
    min-width: 100% !important;
    text-align: center !important;
  }

  #free-guide-left h3 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    color: #111C2E !important;
    margin-bottom: 1rem !important;
  }

  #free-guide-left p {
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
    color: #374151 !important;
    margin-bottom: 1.75rem !important;
  }

  #free-guide-left a {
    width: 100% !important;
    padding: 1.1rem 1.5rem !important;
    display: inline-block !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  #free-guide-right {
    min-width: 100% !important;
    margin-top: 1.5rem !important;
  }

  #free-guide-right img {
    max-width: 260px !important;
    margin: 0 auto !important;
  }

  /* Sticky Stack Cards Mobile Unpin & Vertical Stream */
  #approach {
    padding: 4rem 0 !important;
  }

  .stack-wrapper {
    padding-bottom: 0 !important;
  }

  .stack-card {
    min-height: auto !important;
    position: relative !important;
    top: 0 !important;
    padding: 0 0 2rem 0 !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .stack-card-content {
    min-height: auto !important;
    flex-direction: column !important;
    border-radius: 20px !important;
    border: 1px solid rgba(200, 164, 99, 0.25) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6) !important;
  }

  .stack-card-text {
    padding: 2rem 1.5rem !important;
    min-width: 100% !important;
    order: 1 !important;
  }

  .stack-card .service-icon {
    font-size: 2.25rem !important;
    margin-bottom: 0.5rem !important;
  }

  .stack-card h3 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
  }

  .stack-card p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    color: #9CA3AF !important;
  }

  .stack-card-image-wrap {
    min-height: 240px !important;
    min-width: 100% !important;
    position: relative !important;
    order: 2 !important;
  }

  .stack-card-image-wrap img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Footer Mobile */
  .main-footer {
    padding: 3.5rem 1.25rem 2rem 1.25rem !important;
  }

  .footer-logo {
    max-width: 180px !important;
    margin-bottom: 1.25rem !important;
  }

  .footer-tagline {
    font-size: 1.15rem !important;
    padding: 0 0.5rem !important;
    margin-bottom: 2rem !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 1.25rem !important;
    text-align: center !important;
  }

  .footer-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1.25rem !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.85rem, 7vw, 2.4rem) !important;
  }
  .hero-badge h3 {
    font-size: 1.15rem !important;
  }
  .hero-badge p {
    font-size: 0.75rem !important;
  }
}

/* ================= DR. DEBRA DURST LUXURY CONTACT INTAKE MODAL ================= */
.dd-contact-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dd-contact-modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.dd-contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.dd-contact-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  background: #090E17;
  border: 1px solid rgba(200, 164, 99, 0.35);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(200, 164, 99, 0.15);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dd-contact-modal-overlay.is-active .dd-contact-dialog {
  transform: scale(1);
}

.dd-contact-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: #6C7D93;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.dd-contact-close-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.dd-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .dd-form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .dd-contact-dialog {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
  }
}

.dd-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.dd-form-label {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #E2CEAA;
}

.dd-gold-star {
  color: #C8A463;
}

.dd-form-input {
  background-color: #121A28;
  border: 1px solid #233045;
  border-radius: 16px;
  color: #FFFFFF;
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 15px;
  font-weight: 400;
  padding: 14px 20px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
}

.dd-form-input:focus {
  outline: none;
  border-color: #C8A463;
  background-color: #152033;
  box-shadow: 0 0 0 3px rgba(200, 164, 99, 0.18), 0 6px 18px rgba(0, 0, 0, 0.5);
}

.dd-form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C8A463' stroke-width='2.2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px 16px;
  padding-right: 48px;
  cursor: pointer;
}

.dd-form-textarea {
  resize: none;
  min-height: 120px;
}

.dd-form-submit-wrap {
  margin-top: 0.5rem;
}

.dd-btn-gold-satin {
  background: linear-gradient(180deg, #E6CD9B 0%, #C8A362 50%, #9F7D3D 100%);
  color: #1C160B;
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.18em;
  border-radius: 16px;
  padding: 16px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 12px 30px -4px rgba(0, 0, 0, 0.7), 0 0 25px rgba(200, 164, 99, 0.22);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}

.dd-btn-gold-satin:hover {
  filter: brightness(1.08);
  box-shadow: 0 14px 35px -2px rgba(0, 0, 0, 0.8), 0 0 35px rgba(200, 164, 99, 0.35);
  transform: translateY(-1px);
}

.dd-btn-gold-satin:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

.dd-contact-success-content {
  text-align: center;
  padding: 2rem 1rem;
}

.dd-contact-success-content.is-hidden {
  display: none;
}

.dd-contact-form-content.is-hidden {
  display: none;
}

.dd-success-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200, 164, 99, 0.18);
  border: 1px solid #C8A463;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 25px rgba(200, 164, 99, 0.35);
}

.dd-success-title {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.dd-success-desc {
  font-size: 13px;
  color: #7B8A9E;
  max-width: 380px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.dd-btn-gold-outline {
  padding: 10px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(200, 164, 99, 0.5);
  background: transparent;
  color: #C8A463;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dd-btn-gold-outline:hover {
  background: #C8A463;
  color: #090D14;
}

