/* ==========================================================================
   DreamLayers - Premium Animated Homepage Styles
   A luxurious dark aesthetic with layered depth effects
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors (Static) */
    --brand-orange: #c43c16;
    --brand-gold: #f4bc62;
    --brand-dark: #20120a;
    --brand-cream: #ead097;
    
    /* Extended Palette */
    --color-orange-light: #e85a33;
    --color-gold-light: #f8d08e;
    --color-dark-light: #3a251a;
    --color-cream-light: #f5e5c4;
    
    /* ========== DARK THEME (Default) ========== */
    --color-orange: #c43c16;
    --color-gold: #f4bc62;
    --color-dark: #20120a;
    --color-cream: #ead097;
    
    /* Theme-aware colors */
    --color-bg: #20120a;
    --color-bg-elevated: #2a1a12;
    --color-bg-card: rgba(255, 255, 255, 0.03);
    --color-text-primary: #fefefe;
    --color-text-secondary: rgba(254, 254, 254, 0.7);
    --color-text-muted: rgba(254, 254, 254, 0.5);
    --color-accent: #f4bc62;
    --color-accent-hover: #ead097;
    --color-border: rgba(254, 254, 254, 0.1);
    --color-border-strong: rgba(254, 254, 254, 0.2);
    
    /* Neutral Colors */
    --color-white: #fefefe;
    --color-white-90: rgba(254, 254, 254, 0.9);
    --color-white-70: rgba(254, 254, 254, 0.7);
    --color-white-50: rgba(254, 254, 254, 0.5);
    --color-white-30: rgba(254, 254, 254, 0.3);
    --color-white-10: rgba(254, 254, 254, 0.1);
    --color-white-05: rgba(254, 254, 254, 0.05);
    
    /* Overlay colors */
    --hero-overlay: linear-gradient(180deg, rgba(32, 18, 10, 0.5) 0%, rgba(32, 18, 10, 0.7) 50%, rgba(32, 18, 10, 0.9) 100%);
    --nav-gradient: linear-gradient(180deg, rgba(32, 18, 10, 0.9) 0%, rgba(32, 18, 10, 0) 100%);
    --glow-color: rgba(244, 188, 98, 0.08);
    --noise-opacity: 0.035;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ========== LIGHT THEME ========== */
[data-theme="light"] {
    --color-orange: #b53512;
    --color-gold: #d9a045;
    --color-dark: #f8f4f0;
    --color-cream: #8b6914;
    
    /* Theme-aware colors */
    --color-bg: #faf8f5;
    --color-bg-elevated: #ffffff;
    --color-bg-card: rgba(32, 18, 10, 0.03);
    --color-text-primary: #20120a;
    --color-text-secondary: rgba(32, 18, 10, 0.75);
    --color-text-muted: rgba(32, 18, 10, 0.55);
    --color-accent: #c43c16;
    --color-accent-hover: #b53512;
    --color-border: rgba(32, 18, 10, 0.1);
    --color-border-strong: rgba(32, 18, 10, 0.2);
    
    /* Neutral Colors - Inverted for light */
    --color-white: #20120a;
    --color-white-90: rgba(32, 18, 10, 0.9);
    --color-white-70: rgba(32, 18, 10, 0.7);
    --color-white-50: rgba(32, 18, 10, 0.5);
    --color-white-30: rgba(32, 18, 10, 0.3);
    --color-white-10: rgba(32, 18, 10, 0.1);
    --color-white-05: rgba(32, 18, 10, 0.05);
    
    /* Overlay colors */
    --hero-overlay: linear-gradient(180deg, rgba(250, 248, 245, 0.3) 0%, rgba(250, 248, 245, 0.6) 50%, rgba(250, 248, 245, 0.85) 100%);
    --nav-gradient: linear-gradient(180deg, rgba(250, 248, 245, 0.95) 0%, rgba(250, 248, 245, 0) 100%);
    --glow-color: rgba(196, 60, 22, 0.06);
    --noise-opacity: 0.02;
    
    /* Shadows - Softer for light */
    --shadow-sm: 0 2px 8px rgba(32, 18, 10, 0.08);
    --shadow-md: 0 4px 16px rgba(32, 18, 10, 0.1);
    --shadow-lg: 0 8px 32px rgba(32, 18, 10, 0.12);
}

:root {
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Syne', 'Helvetica Neue', sans-serif;
    
    /* Font Sizes (Fluid) */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
    --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 5rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 7rem);
    --text-6xl: clamp(4rem, 2.5rem + 7.5vw, 10rem);
    
    /* Spacing */
    --space-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
    --space-sm: clamp(0.75rem, 0.6rem + 0.75vw, 1.25rem);
    --space-md: clamp(1rem, 0.8rem + 1vw, 1.75rem);
    --space-lg: clamp(1.5rem, 1rem + 2.5vw, 3rem);
    --space-xl: clamp(2rem, 1.5rem + 2.5vw, 4rem);
    --space-2xl: clamp(3rem, 2rem + 5vw, 6rem);
    --space-3xl: clamp(4rem, 2.5rem + 7.5vw, 10rem);
    --space-4xl: clamp(6rem, 4rem + 10vw, 16rem);
    
    /* Layout */
    --container-max: 1400px;
    --container-padding: clamp(1.5rem, 3vw, 4rem);
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    --transition-fast: 0.2s var(--ease-out-quart);
    --transition-base: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
    
    /* Borders & Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Z-Index Scale */
    --z-behind: -1;
    --z-base: 1;
    --z-above: 10;
    --z-nav: 100;
    --z-overlay: 500;
    --z-modal: 1000;
}

/* --------------------------------------------------------------------------
   CSS Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: auto; /* Lenis handles smooth scroll */
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg);
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Selection */
::selection {
    background: var(--color-accent);
    color: var(--color-bg);
}

[data-theme="light"] ::selection {
    background: var(--brand-orange);
    color: #fefefe;
}

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

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Buttons */
button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
}

/* Italics using serif font */
em, i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

strong {
    font-weight: 600;
    color: var(--color-cream);
}

/* --------------------------------------------------------------------------
   Noise Overlay
   -------------------------------------------------------------------------- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-overlay);
    pointer-events: none;
    opacity: var(--noise-opacity);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    transition: opacity 0.5s ease;
}

/* --------------------------------------------------------------------------
   Mouse Glow Effect
   -------------------------------------------------------------------------- */
.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        var(--glow-color) 0%,
        rgba(234, 208, 151, 0.04) 30%,
        transparent 70%
    );
    pointer-events: none;
    z-index: var(--z-base);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease, background 0.5s ease;
}

body:hover .mouse-glow {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Theme Toggle Button
   -------------------------------------------------------------------------- */
.theme-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white-05);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-left: var(--space-md);
}

.theme-toggle:hover {
    background: var(--color-white-10);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

.theme-toggle__icon {
    width: 20px;
    height: 20px;
    color: var(--color-text-secondary);
    position: absolute;
    transition: all 0.4s var(--ease-out-expo);
}

/* Dark theme: show sun icon */
.theme-toggle__icon--sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle__icon--moon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* Light theme: show moon icon */
[data-theme="light"] .theme-toggle__icon--sun {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

[data-theme="light"] .theme-toggle__icon--moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-toggle {
    background: rgba(32, 18, 10, 0.05);
    border-color: rgba(32, 18, 10, 0.15);
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(32, 18, 10, 0.1);
    border-color: var(--color-accent);
}

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

/* --------------------------------------------------------------------------
   Section Labels
   -------------------------------------------------------------------------- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   Text Reveal Animation Classes
   -------------------------------------------------------------------------- */
.text-reveal {
    display: block;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

/* Ensure visibility once JS runs */
.text-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.text-highlight {
    color: var(--color-cream);
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-cream), transparent);
    transform: scaleX(0);
    transform-origin: left;
}

.text-highlight--gold {
    color: var(--color-gold);
}

.text-highlight--orange {
    color: var(--color-orange);
}

/* --------------------------------------------------------------------------
   Section Dividers
   -------------------------------------------------------------------------- */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-above);
    pointer-events: none;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--nav-gradient);
    opacity: 0;
    transition: opacity var(--transition-base), background 0.5s ease;
    pointer-events: none;
}

.nav.is-scrolled::before {
    opacity: 1;
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    gap: var(--space-md);
}

.nav__logo {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav__logo-img {
    width: 56px;
    height: auto;
    transition: transform var(--transition-base);
}

.nav__logo:hover .nav__logo-img {
    transform: scale(1.1);
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-cream);
    transition: color var(--transition-fast);
}

.nav__logo:hover .nav__logo-text {
    color: var(--color-gold);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-white-70);
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.nav__link:hover {
    color: var(--color-white);
}

.nav__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__cta {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-dark);
    background: var(--color-gold);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.nav__cta:hover {
    background: var(--color-cream);
    transform: scale(1.05);
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .theme-toggle {
        margin-left: auto;
    }
}

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

.hero__video-container {
    position: absolute;
    inset: 0;
    z-index: var(--z-behind);
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    transition: background 0.5s ease;
}

.hero__content {
    position: relative;
    z-index: var(--z-above);
    text-align: center;
    padding: var(--space-3xl) var(--container-padding);
}

.hero__title-wrapper {
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: var(--text-6xl);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    transition: color 0.5s ease;
}

.hero__title-line {
    display: block;
    overflow: hidden;
}

.hero__title-text {
    display: block;
    transform: translateY(100%);
    opacity: 0;
}

.hero__title-line:nth-child(2) .hero__title-text {
    font-style: italic;
    color: var(--color-gold);
}

.hero__subtitle-wrapper {
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--color-white-70);
    opacity: 0;
    transform: translateY(30px);
}

.hero__cta-wrapper {
    opacity: 0;
    transform: translateY(30px);
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-dark);
    background: var(--color-gold);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.hero__cta:hover {
    background: var(--color-cream);
    transform: scale(1.05);
    gap: var(--space-md);
}

.hero__cta-icon {
    width: 24px;
    height: 24px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Hero Shapes */
.hero__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero__shape--1 {
    top: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: var(--color-orange);
}

.hero__shape--2 {
    top: 50%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--color-gold);
}

.hero__shape--3 {
    bottom: 20%;
    left: 30%;
    width: 250px;
    height: 250px;
    background: var(--color-cream);
}

/* --------------------------------------------------------------------------
   Dream Layers Section
   -------------------------------------------------------------------------- */
.layers {
    position: relative;
    background: var(--color-bg);
    transition: background-color 0.5s ease;
}

.layers__intro {
    padding: var(--space-xl) 0 var(--space-md);
    text-align: center;
}

.layers__title {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text-primary);
    transition: color 0.5s ease;
}

.layers__title em {
    color: var(--color-gold);
}

/* Individual Layer */
.layer {
    position: relative;
    padding: var(--space-2xl) 0;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.layer:first-of-type {
    padding-top: var(--space-lg);
}

.layer__bg {
    position: absolute;
    inset: 0;
    z-index: var(--z-behind);
}

.layer__bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(234, 208, 151, 0.08) 0%,
        transparent 50%
    );
}

.layer__bg-gradient--design {
    background: radial-gradient(
        ellipse at 70% 50%,
        rgba(244, 188, 98, 0.1) 0%,
        transparent 50%
    );
}

.layer__bg-gradient--dev {
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(196, 60, 22, 0.08) 0%,
        transparent 50%
    );
}

.layer__bg-gradient--growth {
    background: radial-gradient(
        ellipse at 70% 50%,
        rgba(234, 208, 151, 0.1) 0%,
        transparent 50%
    );
}

.layer__bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.layer__bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.floating-element--1 {
    top: 20%;
    right: 15%;
    width: 100px;
    height: 100px;
    border: 2px solid var(--color-cream);
}

.floating-element--2 {
    top: 60%;
    right: 25%;
    width: 60px;
    height: 60px;
    background: var(--color-gold);
    filter: blur(20px);
}

.floating-element--3 {
    top: 40%;
    right: 10%;
    width: 40px;
    height: 40px;
    background: var(--color-orange);
    filter: blur(10px);
}

.layer__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.layer__container--reverse {
    direction: rtl;
}

.layer__container--reverse > * {
    direction: ltr;
}

.layer__content {
    opacity: 0;
    transform: translateX(-50px);
}

.layer__number {
    font-family: var(--font-serif);
    font-size: var(--text-6xl);
    font-weight: 600;
    color: var(--color-white-10);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.layer__label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.layer__heading {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
    transition: color 0.5s ease;
}

.layer__text {
    font-size: var(--text-lg);
    color: var(--color-white-70);
    margin-bottom: var(--space-lg);
    max-width: 50ch;
}

.layer__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.layer__tag {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-cream);
    background: var(--color-white-05);
    border: 1px solid var(--color-white-10);
    border-radius: var(--radius-full);
}

.layer__visual {
    opacity: 0;
    transform: translateX(50px);
}

.layer__divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-above);
}

.layer__divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Strategy Visual */
.strategy-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 500px;
    margin: 0 auto;
}

.strategy-visual__circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--color-cream);
    opacity: 0.2;
}

.strategy-visual__circle--1 {
    inset: 0;
}

.strategy-visual__circle--2 {
    inset: 15%;
}

.strategy-visual__circle--3 {
    inset: 30%;
    background: radial-gradient(
        circle,
        var(--color-cream) 0%,
        transparent 70%
    );
    opacity: 0.1;
}

.strategy-visual__lines {
    position: absolute;
    inset: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.strategy-visual__lines span {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, var(--color-cream), transparent);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

/* Design Visual */
.design-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    max-width: 500px;
    margin: 0 auto;
}

.design-visual__gallery {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    transform: perspective(1000px) rotateY(-10deg);
}

.design-visual__item {
    background: var(--color-white-05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-white-10);
    overflow: hidden;
}

.design-visual__item--1 {
    background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
    opacity: 0.3;
}

.design-visual__item--2 {
    background: linear-gradient(135deg, var(--color-cream), var(--color-gold));
    opacity: 0.25;
}

.design-visual__item--3 {
    background: linear-gradient(135deg, var(--color-orange), var(--color-dark));
    opacity: 0.2;
}

.design-visual__frame {
    position: absolute;
    inset: -10%;
    border: 1px solid var(--color-white-10);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

/* Development Visual */
.dev-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
    transition: background 0.5s ease, border-color 0.5s ease;
}

[data-theme="light"] .dev-visual {
    background: var(--color-bg-elevated);
    box-shadow: var(--shadow-lg);
}

.dev-visual__code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: var(--text-sm);
    line-height: 2;
}

.code-line {
    opacity: 0;
    transform: translateX(-30px);
}

.code-keyword {
    color: var(--color-orange);
}

.code-var {
    color: var(--color-cream);
}

.code-func {
    color: var(--color-gold);
}

.code-string {
    color: #98c379;
}

.code-prop {
    color: var(--color-cream);
}

.code-num {
    color: var(--color-gold);
}

.dev-visual__grid {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.dev-visual__grid span {
    width: 8px;
    height: 8px;
    background: var(--color-white-10);
    border-radius: 2px;
    opacity: 0;
}

/* Growth Visual */
.growth-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.growth-visual__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.metric {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.metric__value {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.metric__suffix {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    color: var(--color-gold);
}

.metric__label {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-white-50);
    margin-top: var(--space-xs);
}

.growth-visual__chart {
    position: relative;
    width: 100%;
    height: 100px;
}

.growth-chart {
    width: 100%;
    height: 100%;
}

.growth-chart__line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}

.growth-chart__fill {
    opacity: 0;
}

/* Responsive Layers */
@media (max-width: 968px) {
    .layer__container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .layer__container--reverse {
        direction: ltr;
    }
    
    .layer__visual {
        order: -1;
    }
}

/* --------------------------------------------------------------------------
   Services Section (Horizontal Scroll)
   -------------------------------------------------------------------------- */
.services {
    position: relative;
    background: var(--color-bg);
    padding: var(--space-xl) 0 var(--space-2xl);
    transition: background-color 0.5s ease;
}

.services__header {
    margin-bottom: var(--space-md);
    text-align: center;
}

.services__title {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text-primary);
    transition: color 0.5s ease;
}

.services__title em {
    color: var(--color-gold);
}

.services__wrapper {
    overflow: hidden;
}

.services__track {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--container-padding);
    will-change: transform;
}

.service-card {
    flex: 0 0 auto;
    width: clamp(280px, 25vw, 380px);
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .service-card {
    background: var(--color-bg-elevated);
    box-shadow: var(--shadow-md);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(244, 188, 98, 0.1) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
    transition: color 0.5s ease;
}

.service-card__text {
    font-size: var(--text-base);
    color: var(--color-white-50);
    line-height: 1.6;
}

.service-card__number {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--color-white-05);
    line-height: 1;
}

.services__progress {
    position: relative;
    width: 200px;
    height: 2px;
    margin: var(--space-xl) auto 0;
    background: var(--color-white-10);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.services__progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--color-gold);
    border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   Portfolio Section
   -------------------------------------------------------------------------- */
.portfolio {
    position: relative;
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--color-bg);
    transition: background-color 0.5s ease;
}

.portfolio__header {
    text-align: center;
    margin-bottom: var(--space-md);
}

.portfolio__title {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text-primary);
    transition: color 0.5s ease;
}

.portfolio__title em {
    color: var(--color-gold);
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.project-card__image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.project-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    background: linear-gradient(135deg, var(--color-dark-light), var(--color-dark));
}

.project-card:hover .project-card__image {
    transform: scale(1.1);
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(32, 18, 10, 0.8) 100%
    );
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.project-card:hover .project-card__overlay {
    opacity: 1;
}

.project-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    transform: translateY(20px);
    opacity: 0.8;
    transition: all var(--transition-base);
}

.project-card:hover .project-card__content {
    transform: translateY(0);
    opacity: 1;
}

.project-card__category {
    display: block;
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.project-card__title {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

[data-theme="light"] .project-card__title {
    color: #fefefe;
}

.project-card__text {
    font-size: var(--text-sm);
    color: var(--color-white-70);
    margin-bottom: var(--space-md);
}

.project-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gold);
    transition: gap var(--transition-base);
}

.project-card__link svg {
    width: 16px;
    height: 16px;
}

.project-card__link:hover {
    gap: var(--space-sm);
}

.portfolio__cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio__grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn--primary {
    color: var(--color-dark);
    background: var(--color-gold);
}

.btn--primary:hover {
    background: var(--color-cream);
    transform: scale(1.05);
    gap: var(--space-md);
}

.btn--outline {
    color: var(--color-gold);
    background: transparent;
    border: 2px solid var(--color-gold);
}

.btn--outline:hover {
    color: var(--color-dark);
    background: var(--color-gold);
    gap: var(--space-md);
}

.btn--large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-lg);
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
    overflow: hidden;
    transition: background-color 0.5s ease;
}

.about__bg {
    position: absolute;
    inset: 0;
    z-index: var(--z-behind);
}

.about__particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.3;
}

.particle--1 { top: 10%; left: 20%; }
.particle--2 { top: 30%; left: 80%; }
.particle--3 { top: 50%; left: 10%; }
.particle--4 { top: 70%; left: 60%; }
.particle--5 { top: 80%; left: 30%; }
.particle--6 { top: 20%; left: 70%; }

.about__blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.about__blur--1 {
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--color-gold);
    opacity: 0.08;
}

.about__blur--2 {
    bottom: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--color-orange);
    opacity: 0.06;
}

.about__container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about__content {
    position: relative;
    z-index: var(--z-above);
}

.about__title {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
    transition: color 0.5s ease;
}

.about__title em {
    color: var(--color-gold);
}

.about__text {
    margin-bottom: var(--space-2xl);
}

.about__text p {
    font-size: var(--text-lg);
    color: var(--color-white-70);
    margin-bottom: var(--space-md);
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.stat {
    text-align: center;
}

.stat__value {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.stat__label {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-white-50);
    margin-top: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* About Visual */
.about__visual {
    position: relative;
    perspective: 1000px;
}

.about__layers {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    margin: 0 auto;
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateY(-15deg);
}

.about__layer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(5px);
    background: rgba(32, 18, 10, 0.5);
    transition: all 0.5s ease;
}

[data-theme="light"] .about__layer {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-md);
}

.about__layer--1 {
    transform: translateZ(0);
    z-index: 1;
}

.about__layer--2 {
    transform: translateZ(-30px);
    z-index: 2;
    background: rgba(196, 60, 22, 0.1);
}

.about__layer--3 {
    transform: translateZ(-60px);
    z-index: 3;
    background: rgba(244, 188, 98, 0.1);
}

.about__layer--4 {
    transform: translateZ(-90px);
    z-index: 4;
    background: rgba(234, 208, 151, 0.1);
}

/* Responsive About */
@media (max-width: 968px) {
    .about__container {
        grid-template-columns: 1fr;
    }
    
    .about__visual {
        order: -1;
    }
    
    .about__layers {
        max-width: 300px;
    }
}

/* --------------------------------------------------------------------------
   Contact CTA Section
   -------------------------------------------------------------------------- */
.contact-cta {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
    overflow: hidden;
    transition: background-color 0.5s ease;
}

.contact-cta__bg {
    position: absolute;
    inset: 0;
    z-index: var(--z-behind);
}

.contact-cta__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(244, 188, 98, 0.15) 0%,
        transparent 60%
    );
}

.contact-cta__lines {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 100px;
}

.contact-cta__lines span {
    width: 1px;
    height: 300px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--color-gold) 50%,
        transparent 100%
    );
    opacity: 0.2;
}

.contact-cta__container {
    text-align: center;
}

.contact-cta__content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta__title {
    font-family: var(--font-serif);
    font-size: var(--text-5xl);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
    transition: color 0.5s ease;
}

.contact-cta__title em {
    color: var(--color-gold);
}

.contact-cta__text {
    font-size: var(--text-xl);
    color: var(--color-white-70);
    margin-bottom: var(--space-xl);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    position: relative;
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    transition: background-color 0.5s ease, border-color 0.5s ease;
}

[data-theme="light"] .footer {
    background: #f0ebe5;
}

.footer__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer__lines {
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.footer__container {
    position: relative;
    z-index: var(--z-above);
}

.footer__main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-cream);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    transition: color var(--transition-fast);
}

.footer__logo-img {
    width: 52px;
    height: auto;
    transition: transform var(--transition-base);
}

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

.footer__logo:hover .footer__logo-img {
    transform: scale(1.1);
}

.footer__tagline {
    font-size: var(--text-base);
    color: var(--color-white-50);
    max-width: 30ch;
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer__nav-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer__link {
    display: block;
    font-size: var(--text-base);
    color: var(--color-white-50);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-white-05);
}

.footer__copyright {
    font-size: var(--text-sm);
    color: var(--color-white-30);
}

.footer__legal {
    display: flex;
    gap: var(--space-lg);
}

.footer__legal-link {
    font-size: var(--text-sm);
    color: var(--color-white-30);
    transition: color var(--transition-fast);
}

.footer__legal-link:hover {
    color: var(--color-gold);
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer__main {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer__nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer__nav {
        grid-template-columns: 1fr;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading State */
.is-loading {
    opacity: 0;
}

/* Animation States */
.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--color-dark-light);
    border-radius: var(--radius-full);
}

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

/* --------------------------------------------------------------------------
   Light Theme Additional Overrides
   -------------------------------------------------------------------------- */
[data-theme="light"] .section-divider svg path,
[data-theme="light"] .layer__divider svg path {
    fill: var(--color-bg);
}

[data-theme="light"] .hero__shape {
    opacity: 0.15;
}

[data-theme="light"] .hero__shape--1 {
    background: var(--brand-gold);
}

[data-theme="light"] .hero__shape--2 {
    background: var(--brand-orange);
}

[data-theme="light"] .hero__shape--3 {
    background: var(--brand-cream);
}

[data-theme="light"] .floating-element {
    opacity: 0.25;
}

[data-theme="light"] .layer__bg-gradient {
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(196, 60, 22, 0.06) 0%,
        transparent 50%
    );
}

[data-theme="light"] .layer__bg-gradient--design {
    background: radial-gradient(
        ellipse at 70% 50%,
        rgba(244, 188, 98, 0.08) 0%,
        transparent 50%
    );
}

[data-theme="light"] .layer__bg-gradient--dev {
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(196, 60, 22, 0.06) 0%,
        transparent 50%
    );
}

[data-theme="light"] .layer__bg-gradient--growth {
    background: radial-gradient(
        ellipse at 70% 50%,
        rgba(244, 188, 98, 0.1) 0%,
        transparent 50%
    );
}

[data-theme="light"] .layer__bg-grid {
    background-image: 
        linear-gradient(rgba(32, 18, 10, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 18, 10, 0.03) 1px, transparent 1px);
}

[data-theme="light"] .layer__number {
    color: rgba(32, 18, 10, 0.08);
}

[data-theme="light"] .layer__tag {
    background: rgba(32, 18, 10, 0.05);
    border-color: rgba(32, 18, 10, 0.1);
    color: var(--color-text-secondary);
}

[data-theme="light"] .strategy-visual__circle {
    border-color: var(--brand-orange);
}

[data-theme="light"] .strategy-visual__circle--3 {
    background: radial-gradient(
        circle,
        var(--brand-orange) 0%,
        transparent 70%
    );
}

[data-theme="light"] .strategy-visual__lines span {
    background: linear-gradient(90deg, var(--brand-orange), transparent);
}

[data-theme="light"] .design-visual__item--1 {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-orange));
    opacity: 0.5;
}

[data-theme="light"] .design-visual__item--2 {
    background: linear-gradient(135deg, var(--brand-cream), var(--brand-gold));
    opacity: 0.4;
}

[data-theme="light"] .design-visual__item--3 {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-dark));
    opacity: 0.35;
}

[data-theme="light"] .design-visual__frame {
    border-color: rgba(32, 18, 10, 0.15);
}

[data-theme="light"] .code-keyword {
    color: #b53512;
}

[data-theme="light"] .code-var {
    color: #8b6914;
}

[data-theme="light"] .code-func {
    color: #c43c16;
}

[data-theme="light"] .code-string {
    color: #2d7a3e;
}

[data-theme="light"] .code-prop {
    color: #8b6914;
}

[data-theme="light"] .code-num {
    color: #c43c16;
}

[data-theme="light"] .dev-visual__grid span {
    background: rgba(32, 18, 10, 0.1);
}

[data-theme="light"] .metric__value,
[data-theme="light"] .metric__suffix {
    color: var(--brand-orange);
}

[data-theme="light"] .growth-chart__line {
    stroke: var(--brand-orange);
}

[data-theme="light"] .service-card__number {
    color: rgba(32, 18, 10, 0.05);
}

[data-theme="light"] .service-card::before {
    background: linear-gradient(
        135deg,
        rgba(196, 60, 22, 0.08) 0%,
        transparent 50%
    );
}

[data-theme="light"] .service-card:hover {
    border-color: var(--brand-orange);
}

[data-theme="light"] .service-card__icon {
    color: var(--brand-orange);
}

[data-theme="light"] .services__progress {
    background: rgba(32, 18, 10, 0.1);
}

[data-theme="light"] .services__progress-bar {
    background: var(--brand-orange);
}

[data-theme="light"] .project-card__overlay {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(32, 18, 10, 0.85) 100%
    );
}

[data-theme="light"] .project-card__category {
    color: var(--brand-gold);
}

[data-theme="light"] .project-card__link {
    color: var(--brand-gold);
}

[data-theme="light"] .btn--outline {
    color: var(--brand-orange);
    border-color: var(--brand-orange);
}

[data-theme="light"] .btn--outline:hover {
    background: var(--brand-orange);
    color: #fefefe;
}

[data-theme="light"] .btn--primary {
    background: var(--brand-orange);
}

[data-theme="light"] .btn--primary:hover {
    background: #b53512;
}

[data-theme="light"] .about__blur--1 {
    background: var(--brand-orange);
    opacity: 0.06;
}

[data-theme="light"] .about__blur--2 {
    background: var(--brand-gold);
    opacity: 0.05;
}

[data-theme="light"] .particle {
    background: var(--brand-orange);
}

[data-theme="light"] .stat__value {
    color: var(--brand-orange);
}

[data-theme="light"] .about__layer--2 {
    background: rgba(196, 60, 22, 0.08);
}

[data-theme="light"] .about__layer--3 {
    background: rgba(244, 188, 98, 0.1);
}

[data-theme="light"] .about__layer--4 {
    background: rgba(139, 105, 20, 0.08);
}

[data-theme="light"] .contact-cta__gradient {
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(196, 60, 22, 0.1) 0%,
        transparent 60%
    );
}

[data-theme="light"] .contact-cta__lines span {
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--brand-orange) 50%,
        transparent 100%
    );
}

[data-theme="light"] .footer__logo {
    color: var(--color-text-primary);
}

[data-theme="light"] .footer__logo:hover {
    color: var(--brand-orange);
}

[data-theme="light"] .footer__logo:hover .footer__logo-img {
    transform: scale(1.1);
}

[data-theme="light"] .footer__nav-title {
    color: var(--color-text-primary);
}

[data-theme="light"] .footer__link:hover {
    color: var(--brand-orange);
}

[data-theme="light"] .footer__legal-link:hover {
    color: var(--brand-orange);
}

[data-theme="light"] .nav__logo-text {
    color: var(--color-text-primary);
}

[data-theme="light"] .nav__logo:hover .nav__logo-text {
    color: var(--brand-orange);
}

[data-theme="light"] .nav__logo-img,
[data-theme="light"] .footer__logo-img {
    filter: none;
}

[data-theme="light"] .nav__link {
    color: var(--color-text-secondary);
}

[data-theme="light"] .nav__link:hover {
    color: var(--color-text-primary);
}

[data-theme="light"] .nav__link::after {
    background: var(--brand-orange);
}

[data-theme="light"] .nav__cta {
    background: var(--brand-orange);
    color: #fefefe;
}

[data-theme="light"] .nav__cta:hover {
    background: #b53512;
}

[data-theme="light"] .section-label {
    color: var(--brand-orange);
}

[data-theme="light"] .text-highlight {
    color: var(--brand-orange);
}

[data-theme="light"] .text-highlight--gold {
    color: #8b6914;
}

[data-theme="light"] .text-highlight--orange {
    color: var(--brand-orange);
}

[data-theme="light"] .layers__title em,
[data-theme="light"] .services__title em,
[data-theme="light"] .portfolio__title em,
[data-theme="light"] .about__title em,
[data-theme="light"] .contact-cta__title em {
    color: var(--brand-orange);
}

[data-theme="light"] .hero__title-line:nth-child(2) .hero__title-text {
    color: var(--brand-orange);
}

[data-theme="light"] .hero__cta {
    background: var(--brand-orange);
    color: #fefefe;
}

[data-theme="light"] .hero__cta:hover {
    background: #b53512;
}

/* Custom Scrollbar - Light Theme */
[data-theme="light"] ::-webkit-scrollbar-track {
    background: var(--color-bg);
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
    background: rgba(32, 18, 10, 0.2);
}

[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
    background: var(--brand-orange);
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
    .nav,
    .noise-overlay,
    .mouse-glow,
    .hero__video-container {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

