/* ============================================
   KAMEHA MEDIA GROUP - PREMIUM WEBSITE
   Cinematic. Story-Driven. Unforgettable.
   Version 2.0 - Refined
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Brand Colors */
    --color-navy: #222B52;
    --color-navy-dark: #1a2142;
    --color-navy-light: #2d3a6b;
    --color-orange: #F94B0C;
    --color-orange-dark: #d63d08;
    --color-cream: #F8F7F0;
    --color-cream-dark: #eae9e2;
    --color-light-blue: #D9E6ED;
    --color-white: #FFFFFF;
    --color-gray: #787878;
    --color-gray-light: #a8a8a8;
    --color-black: #0a0a0a;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'futura-pt', 'Futura', sans-serif;

    /* Font Sizes - Fluid Typography */
    --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.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --text-4xl: clamp(2.5rem, 1.75rem + 3.75vw, 4rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 5.5rem);
    --text-6xl: clamp(3.5rem, 2.25rem + 6.25vw, 7rem);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    --space-6xl: 12rem;

    /* Layout */
    --max-width: 1400px;
    --max-width-narrow: 800px;
    --container-padding: clamp(1rem, 5vw, 3rem);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 800ms cubic-bezier(0.16, 1, 0.3, 1);

    /* Premium Easing Curves (inspired by Build in Amsterdam, Twice) */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
    --ease-cinematic: cubic-bezier(0.45, 0.02, 0.09, 0.98);
    --ease-smooth: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow-orange: 0 0 40px rgba(249, 75, 12, 0.3);
    --shadow-glow-navy: 0 0 30px rgba(34, 43, 82, 0.4);

    /* Z-index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-loader: 1000;
    --z-cursor: 10000;
}

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Smooth scroll disabled for Lenis control */
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;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-navy);
    background-color: var(--color-cream);
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor - NAVY color scheme */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: var(--color-navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
}

.cursor.hover {
    width: 50px;
    height: 50px;
    border-color: var(--color-cream);
    background-color: rgba(34, 43, 82, 0.2);
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
    body { cursor: auto; }
    .cursor, .cursor-dot { display: none; }
}

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

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

button {
    font-family: inherit;
    font-size: inherit;
    cursor: none;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

::selection {
    background-color: var(--color-navy);
    color: var(--color-cream);
}

/* ============================================
   GRAIN TEXTURE OVERLAY (Supersolid-inspired)
   ============================================ */
.grain-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
    animation: grain-animation 0.5s steps(6) infinite;
}

@keyframes grain-animation {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

/* Reduce grain on mobile for performance */
@media (max-width: 768px) {
    .grain-overlay {
        animation: none;
        opacity: 0.02;
    }
}

/* ============================================
   TEXT REVEAL ANIMATIONS (Build in Amsterdam / Noomo inspired)
   ============================================ */
.text-reveal {
    overflow: hidden;
}

.text-reveal-inner {
    display: block;
    transform: translateY(110%);
    transition: transform 0.8s var(--ease-out-expo);
}

.text-reveal.visible .text-reveal-inner,
.text-reveal.in-view .text-reveal-inner {
    transform: translateY(0);
}

/* Staggered text reveal */
.stagger-text .text-reveal-inner {
    transition-delay: calc(var(--stagger-index, 0) * 0.1s);
}

/* Character-by-character reveal */
.char-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.char-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Clip-path reveal (vertical wave) */
.clip-reveal {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transition: clip-path 1s var(--ease-cinematic);
}

.clip-reveal.visible {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* ============================================
   SPLIT TEXT ANIMATION
   ============================================ */
.split-text-line {
    overflow: hidden;
    display: block;
}

.split-text-line span {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.9s var(--ease-cinematic), opacity 0.6s ease;
}

.split-text-line.visible span {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   MIX BLEND MODE EFFECTS
   ============================================ */
.blend-difference {
    mix-blend-mode: difference;
}

.blend-exclusion {
    mix-blend-mode: exclusion;
}

.blend-overlay {
    mix-blend-mode: overlay;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

.text-display {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.text-body-lg {
    font-size: var(--text-lg);
    line-height: 1.7;
}

.text-meta {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

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

.container-narrow {
    max-width: var(--max-width-narrow);
}

.section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.section-dark {
    background-color: var(--color-navy);
    color: var(--color-cream);
}

.section-cream {
    background-color: var(--color-cream);
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid {
    display: grid;
}

/* ============================================
   LOADING SCREEN - Wave Reveal Animation
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: var(--z-loader);
}

/* Premium exit animation - slide up with clip-path */
.loader.loaded {
    animation: loaderExit 1s var(--ease-cinematic) forwards;
}

@keyframes loaderExit {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
}

.loader-logo-container {
    position: relative;
    width: 280px;
    height: 280px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wave portion - show top 65%, hide bottom 35% */
.loader-wave {
    width: 200px;
    height: auto;
    position: absolute;
    z-index: 2;
    clip-path: inset(0 0 35% 0);
    opacity: 1;
}

/* Text portion - show bottom 35%, hide top 65% */
.loader-text {
    width: 200px;
    height: auto;
    position: absolute;
    z-index: 2;
    clip-path: inset(65% 0 0 0);
    opacity: 1;
}

@keyframes textReveal {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Subtle glow behind logo */
.loader-glow {
    position: absolute;
    top: calc(50% + 10px);
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle at center,
        rgba(249, 115, 50, 0.55) 0%,
        rgba(249, 150, 80, 0.4) 15%,
        rgba(249, 180, 100, 0.25) 30%,
        rgba(249, 200, 120, 0.12) 45%,
        rgba(249, 220, 150, 0.05) 60%,
        transparent 75%
    );
    transform: translate(-50%, -50%) scale(0);
    z-index: 1;
    animation: glowExpand 2s var(--ease-out-expo) 0.2s forwards;
    border-radius: 50%;
    filter: blur(60px);
}

@keyframes glowExpand {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Loading counter */
.loader-counter {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: rgba(248, 247, 240, 0.5);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Wave reveal animation element */
.loader-wave-reveal {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(0deg, var(--color-cream) 0%, transparent 100%);
    animation: waveRevealBg 2.5s ease-out forwards;
    z-index: 0;
    opacity: 0.1;
}

@keyframes waveRevealBg {
    0% { height: 0%; }
    100% { height: 100%; }
}

@keyframes waveReveal {
    0% {
        height: 0%;
        clip-path: polygon(
            0% 100%,
            10% 100%,
            20% 100%,
            30% 100%,
            40% 100%,
            50% 100%,
            60% 100%,
            70% 100%,
            80% 100%,
            90% 100%,
            100% 100%,
            100% 100%,
            0% 100%
        );
    }
    50% {
        height: 60%;
        clip-path: polygon(
            0% 40%,
            10% 35%,
            20% 45%,
            30% 38%,
            40% 48%,
            50% 42%,
            60% 50%,
            70% 44%,
            80% 52%,
            90% 46%,
            100% 40%,
            100% 100%,
            0% 100%
        );
    }
    100% {
        height: 100%;
        clip-path: polygon(
            0% 0%,
            10% 2%,
            20% 0%,
            30% 3%,
            40% 0%,
            50% 2%,
            60% 0%,
            70% 3%,
            80% 0%,
            90% 2%,
            100% 0%,
            100% 100%,
            0% 100%
        );
    }
}

@keyframes loaderGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(249, 75, 12, 0.4))
                drop-shadow(0 0 40px rgba(249, 75, 12, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(249, 75, 12, 0.6))
                drop-shadow(0 0 70px rgba(249, 75, 12, 0.35));
    }
}

.loader-progress {
    width: 200px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: var(--space-2xl);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-cream), var(--color-light-blue));
    width: 0%;
    transition: width 0.3s ease;
}

/* ============================================
   WATER RIPPLE CANVAS - Click Only
   ============================================ */
#ripple-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-base);
    opacity: 0.5;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg) 0;
    z-index: var(--z-fixed);
    transition: var(--transition-base);
}

.nav.scrolled {
    background-color: rgba(248, 247, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-md);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    height: 45px;
    width: auto;
    transition: var(--transition-base);
}

/* Logo swap for transparent vs scrolled nav */
.nav-logo-light {
    display: block;
}

.nav-logo-dark {
    display: none;
}

.nav.scrolled .nav-logo-light {
    display: none;
}

.nav.scrolled .nav-logo-dark {
    display: block;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: var(--space-sm) 0;
    color: var(--color-cream);
    transition: color var(--transition-base);
}

.nav.scrolled .nav-link {
    color: var(--color-navy);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-cream);
    transition: width var(--transition-slow), background-color var(--transition-base);
}

.nav.scrolled .nav-link::after {
    background-color: var(--color-navy);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: var(--space-2xl);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-sm);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--color-cream);
    transition: var(--transition-base);
}

.nav.scrolled .nav-toggle span {
    background-color: var(--color-navy);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
        z-index: 10;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-cream);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-xl);
        transition: right var(--transition-slower);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
    }

    /* Fix mobile menu: ensure links are visible against cream background */
    .nav-link {
        font-size: var(--text-2xl);
        color: var(--color-navy) !important;
    }

    .nav-link::after {
        background-color: var(--color-navy) !important;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: var(--space-lg);
    }
}

/* ============================================
   BUTTONS - Orange accent used sparingly
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: transparent;
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
    box-shadow: 0 0 20px rgba(249, 75, 12, 0.25),
                0 0 40px rgba(249, 75, 12, 0.15),
                inset 0 0 20px rgba(249, 75, 12, 0.05);
}

.btn-primary:hover {
    /* Sunset transition: orange → coral/pink */
    color: #FF5A6E;
    border-color: #FF5A6E;
    background-color: rgba(255, 90, 110, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 90, 110, 0.4),
                0 0 50px rgba(255, 90, 110, 0.25),
                0 0 80px rgba(255, 107, 53, 0.15),
                inset 0 0 25px rgba(255, 90, 110, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 90, 110, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

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

.btn-secondary:hover {
    background-color: var(--color-navy);
    color: var(--color-cream);
}

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

.btn-ghost:hover {
    background-color: var(--color-cream);
    color: var(--color-navy);
}

.btn-text {
    padding: 0;
    text-transform: none;
    font-weight: 500;
}

.btn-arrow {
    display: inline-block;
    transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   HERO SECTION - Centered Layout
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(34, 43, 82, 0.85) 0%,
        rgba(34, 43, 82, 0.6) 50%,
        rgba(34, 43, 82, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-cream);
    text-align: center;
    max-width: 900px;
}

.hero-content-centered {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-tag-line {
    width: 40px;
    height: 1px;
    background-color: var(--color-cream);
}

.hero-tag-text {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-cream);
    opacity: 0.8;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--color-cream);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

/* NO orange in hero title - all cream/white */
.hero-title-accent {
    font-style: italic;
}

.hero-subtitle {
    font-size: var(--text-xl);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto var(--space-2xl);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-cream);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll-text {
    font-size: var(--text-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.hero-scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background-color: currentColor;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================
   POSITIONING SECTION - No wave icon
   ============================================ */
.positioning {
    padding: var(--space-6xl) 0;
    background-color: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.positioning-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url('../assets/images/brand/wave-navy.png');
    background-size: cover;
    background-position: center;
}

.positioning-content {
    position: relative;
    text-align: center;
}

.positioning-line {
    font-size: var(--text-3xl);
    color: var(--color-cream);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(40px);
}

.positioning-line.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.positioning-line:nth-child(2) {
    animation-delay: 0.2s;
}

.positioning-line:nth-child(3) {
    animation-delay: 0.4s;
}

/* ============================================
   PARALLAX IMAGE BREAK SECTIONS
   Full-width cinematic image breaks
   ============================================ */
.parallax-break {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-5xl);
    margin-bottom: var(--space-2xl);
    z-index: 1;
}

.parallax-break-tall {
    height: 90vh;
    min-height: 600px;
}

.parallax-break-medium {
    height: 60vh;
    min-height: 400px;
}

.parallax-break-image {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.parallax-break-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(34, 43, 82, 0.3) 0%,
        rgba(34, 43, 82, 0.5) 50%,
        rgba(34, 43, 82, 0.3) 100%
    );
    z-index: 1;
}

.parallax-break-overlay-dark {
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(34, 43, 82, 0.6) 50%,
        rgba(10, 10, 10, 0.4) 100%
    );
}

.parallax-break-overlay-gradient {
    background: linear-gradient(
        to bottom,
        rgba(34, 43, 82, 0.1) 0%,
        rgba(34, 43, 82, 0.3) 100%
    );
}

.parallax-break-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-xl);
}

.parallax-break-text {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-style: italic;
    color: var(--color-cream);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s var(--ease-out-expo);
}

.parallax-break-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.parallax-break-quote {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 2rem + 3vw, 4.5rem);
    font-style: italic;
    color: var(--color-cream);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s var(--ease-out-expo);
    text-align: center;
    padding: 0 var(--space-lg);
}

.parallax-break-quote.visible {
    opacity: 1;
    transform: translateY(0);
}

.parallax-break-attribution {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-cream);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s var(--ease-out-expo) 0.2s;
    margin-top: var(--space-md);
    letter-spacing: 0.05em;
}

.parallax-break-attribution.visible {
    opacity: 0.7;
    transform: translateY(0);
}

a.parallax-break-attribution:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 768px) {
    .parallax-break {
        height: 60vh;
        min-height: 350px;
        margin-top: var(--space-4xl);
        margin-bottom: var(--space-xl);
    }

    .parallax-break-tall {
        height: 70vh;
    }

    /* Disable parallax on mobile to prevent glitchy scrolling */
    .parallax-break-image {
        top: 0 !important;
        height: 100% !important;
        transform: none !important;
        will-change: auto !important;
    }

    .parallax-break-text {
        font-size: var(--text-2xl);
    }

    .parallax-break-quote {
        font-size: var(--text-lg);
        padding: var(--space-md);
        white-space: normal;
    }

    .parallax-break-attribution {
        font-size: var(--text-sm);
    }
}

/* Orange gradient accent with glow */
.positioning-line-accent {
    font-style: italic;
    background: linear-gradient(90deg, #FFB088 0%, #FF6B35 50%, #FF5A6E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.positioning-line-accent::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #FFB088 0%, #FF6B35 50%, #FF5A6E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(10px);
    opacity: 0.8;
    z-index: -1;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
    padding: var(--space-5xl) 0;
    padding-bottom: var(--space-6xl);
    position: relative;
    z-index: 2;
    background-color: var(--color-cream);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.section-tag-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #FFB088 0%, #FF6B35 50%, #FF5A6E 100%);
}

.section-tag-text {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gray);
}

.section-title {
    font-size: var(--text-4xl);
}

.section-link {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-navy);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.section-link-arrow {
    transition: transform var(--transition-base);
}

.section-link:hover .section-link-arrow {
    transform: translateX(4px);
}

/* Portfolio Grid - Bento Style */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: var(--space-lg);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.portfolio-item:nth-child(1) {
    grid-column: span 7;
    grid-row: span 2;
}

.portfolio-item:nth-child(2) {
    grid-column: span 5;
}

.portfolio-item:nth-child(3) {
    grid-column: span 5;
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .portfolio-item:nth-child(1),
    .portfolio-item:nth-child(2),
    .portfolio-item:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-xl);
    background: linear-gradient(to top, rgba(34, 43, 82, 0.9), transparent);
    transform: translateY(100%);
    transition: transform var(--transition-slower);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-category {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-light-blue);
    margin-bottom: var(--space-sm);
}

.portfolio-title {
    font-size: var(--text-xl);
    color: var(--color-cream);
    font-weight: 600;
}

/* Video Portfolio Items */
.portfolio-item.video-item {
    background-color: var(--color-navy);
}

.portfolio-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.portfolio-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.portfolio-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform var(--transition-slower), opacity var(--transition-base);
}

.portfolio-item.video-item:hover .portfolio-video-thumbnail {
    transform: scale(1.05);
}

.portfolio-item.video-item.playing .portfolio-video-thumbnail {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 3;
}

.video-play-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 22px solid rgba(255, 255, 255, 0.9);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 5px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.portfolio-item.video-item.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   SERVICES SECTION - With hover background images
   ============================================ */
.services-section {
    padding: var(--space-3xl) 0;
    padding-bottom: var(--space-5xl);
    background-color: var(--color-navy);
    color: var(--color-cream);
    position: relative;
    z-index: 2;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/Kameha Ai Artwork/beneath the surface copy.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.services-intro {
    max-width: 600px;
    margin-bottom: var(--space-3xl);
}

.services-intro-text {
    font-size: var(--text-lg);
    line-height: 1.7;
    opacity: 0.9;
}

.services-tagline {
    font-size: var(--text-xl);
    font-style: italic;
    line-height: 1.5;
    max-width: 700px;
    margin-bottom: var(--space-2xl);
    opacity: 0.85;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: var(--space-2xl);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Service card background image on hover - uses dynamic JS */
.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity var(--transition-slower);
    z-index: 0;
}

.service-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 43, 82, 0.9), rgba(34, 43, 82, 0.8));
    z-index: 1;
}

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

.service-card-content {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--space-lg);
    color: var(--color-cream);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    color: var(--color-light-blue);
}

.service-title {
    font-size: var(--text-xl);
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.service-description {
    font-size: var(--text-base);
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: var(--space-lg);
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-meta-item {
    font-size: var(--text-sm);
    opacity: 0.6;
}

.service-meta-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--color-light-blue);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: var(--space-6xl) 0;
    background-color: var(--color-cream);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
}

@media (max-width: 600px) {
    .stats-section {
        padding: var(--space-4xl) 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.stat-item {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.stat-link {
    text-decoration: none;
    display: block;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1;
    margin-bottom: var(--space-md);
    white-space: nowrap;
}

.stat-label {
    font-size: var(--text-base);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gray);
    font-weight: 500;
}

/* ============================================
   CLIENT LOGOS MARQUEE
   ============================================ */
.clients-section {
    padding: var(--space-5xl) 0;
    overflow: hidden;
    background-color: var(--color-cream-dark);
}

.clients-heading {
    text-align: center;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gray);
    margin-bottom: var(--space-3xl);
    font-weight: 500;
}

.clients-marquee {
    display: flex;
    animation: marquee 50s linear infinite;
}

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

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    flex-shrink: 0;
    height: 70px;
    width: auto;
    margin: 0 var(--space-4xl);
    opacity: 0.75;
    filter: grayscale(100%);
    transition: var(--transition-base);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .clients-section {
        padding: var(--space-4xl) 0;
    }
    .clients-heading {
        margin-bottom: var(--space-2xl);
    }
    .client-logo {
        height: 55px;
        margin: 0 var(--space-2xl);
    }
}

/* ============================================
   TESTIMONIALS SECTION - Carousel
   ============================================ */
.testimonials-section {
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.testimonials-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-3xl);
}

/* Navigation Arrows */
.testimonials-nav {
    display: flex;
    gap: var(--space-sm);
}

.testimonials-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-navy);
    background: transparent;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-nav-btn:hover {
    background: var(--color-navy);
    color: var(--color-cream);
    transform: scale(1.05);
}

.testimonials-nav-btn:active {
    transform: scale(0.95);
}

.testimonials-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonials-nav-btn:disabled:hover {
    background: transparent;
    color: var(--color-navy);
    transform: none;
}

/* Carousel Container */
.testimonials-carousel {
    position: relative;
    margin: 0 calc(var(--space-xl) * -1);
    padding: 0 var(--space-xl);
}

.testimonials-track {
    display: flex;
    gap: var(--space-xl);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Card Styles */
.testimonial-card {
    flex: 0 0 calc((100% - var(--space-xl) * 2) / 3);
    background-color: var(--color-white);
    border-radius: 12px;
    padding: var(--space-2xl);
    box-shadow: 0 4px 20px rgba(34, 43, 82, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0) scale(1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFB088, #FF6B35, #FF5A6E, var(--color-navy));
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(34, 43, 82, 0.15);
}

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

/* Card entrance animation */
.testimonial-card.animate-in {
    animation: cardSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.testimonial-quote-icon {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-xl);
    font-size: 4rem;
    color: var(--color-orange);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    opacity: 0.25;
    transform: scale(1.1) rotate(-5deg);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.testimonial-star {
    color: #FFB800;
    font-size: var(--text-lg);
    transition: transform 0.2s ease;
}

.testimonial-card:hover .testimonial-star {
    animation: starPulse 0.4s ease forwards;
}

.testimonial-card:hover .testimonial-star:nth-child(1) { animation-delay: 0s; }
.testimonial-card:hover .testimonial-star:nth-child(2) { animation-delay: 0.05s; }
.testimonial-card:hover .testimonial-star:nth-child(3) { animation-delay: 0.1s; }
.testimonial-card:hover .testimonial-star:nth-child(4) { animation-delay: 0.15s; }
.testimonial-card:hover .testimonial-star:nth-child(5) { animation-delay: 0.2s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-style: italic;
    color: var(--color-gray);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.4s ease;
}

.testimonial-card.expanded .testimonial-text {
    -webkit-line-clamp: unset;
    display: block;
}

.testimonial-card.expanded {
    z-index: 10;
    box-shadow: 0 25px 50px rgba(34, 43, 82, 0.2);
}

.testimonial-card.truncated:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-white));
    pointer-events: none;
}

.testimonial-expand {
    display: none;
    font-size: var(--text-sm);
    color: var(--color-orange);
    cursor: pointer;
    margin-top: calc(var(--space-md) * -1);
    margin-bottom: var(--space-lg);
    font-weight: 500;
    transition: color 0.2s ease;
}

.testimonial-expand:hover {
    color: var(--color-navy);
}

.testimonial-card.truncated .testimonial-expand {
    display: block;
}

.testimonial-card.expanded .testimonial-expand {
    display: block;
}

.testimonial-card {
    cursor: pointer;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(217, 230, 237, 0.5);
    position: relative;
    z-index: 5;
    background: var(--color-white);
}

.testimonial-name {
    font-weight: 700;
    font-size: var(--text-base);
    color: var(--color-navy);
    margin-bottom: 2px;
    opacity: 1 !important;
}

.testimonial-role {
    font-size: var(--text-sm);
    color: var(--color-gray);
    font-weight: 500;
    opacity: 1 !important;
}

/* Progress Indicators */
.testimonials-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.testimonials-dots {
    display: flex;
    gap: var(--space-sm);
}

.testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--color-light-blue);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonials-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(90deg, #FFB088 0%, #FF6B35 50%, #FF5A6E 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-dot:hover {
    transform: scale(1.2);
    background: var(--color-navy);
}

.testimonials-dot.active {
    width: 32px;
    border-radius: 6px;
    background: var(--color-navy);
}

.testimonials-dot.active::after {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FFB088 0%, #FF6B35 50%, #FF5A6E 100%);
    animation: dotFill 4s linear forwards;
}

@keyframes dotFill {
    from { width: 0; }
    to { width: 100%; }
}

.testimonials-counter {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    color: var(--color-gray);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.testimonials-current {
    font-size: var(--text-xl);
    color: var(--color-navy);
    font-weight: 600;
}

.testimonials-separator {
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 1100px) {
    .testimonial-card {
        flex: 0 0 calc((100% - var(--space-xl)) / 2);
    }
}

@media (max-width: 768px) {
    .testimonials-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
    }

    .testimonial-card {
        flex: 0 0 calc(100% - var(--space-md));
    }

    .testimonials-nav-btn {
        width: 40px;
        height: 40px;
    }

    .testimonials-progress {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ============================================
   CTA SECTION - With image background
   ============================================ */
.cta-section {
    padding: var(--space-6xl) 0;
    background-color: var(--color-navy);
    color: var(--color-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background image instead of text */
.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 43, 82, 0.9), rgba(34, 43, 82, 0.85));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
}

.cta-subtitle {
    font-size: var(--text-lg);
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-black);
    color: var(--color-cream);
    padding: var(--space-5xl) 0 var(--space-2xl);
}

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

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: var(--space-lg);
}

.footer-tagline {
    font-size: var(--text-base);
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.footer-location {
    font-size: var(--text-sm);
    opacity: 0.5;
}

.footer-heading {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    color: var(--color-gray-light);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link {
    font-size: var(--text-base);
    opacity: 0.7;
    transition: var(--transition-base);
    display: inline-block;
    padding: var(--space-xs) 0;
    min-height: 44px;
    line-height: 1.5;
}

.footer-link:hover {
    opacity: 1;
    color: var(--color-light-blue);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer-social-link:hover {
    border-color: var(--color-light-blue);
    background-color: var(--color-navy);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-size: var(--text-sm);
    opacity: 0.5;
}

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

.footer-legal-link {
    font-size: var(--text-sm);
    opacity: 0.5;
    transition: var(--transition-base);
}

.footer-legal-link:hover {
    opacity: 1;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PARALLAX
   ============================================ */
.parallax-container {
    overflow: hidden;
    position: relative;
}

.parallax-element {
    will-change: transform;
}

/* ============================================
   MAGNETIC BUTTONS
   ============================================ */
.magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-navy);
    z-index: var(--z-modal);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.page-transition.active {
    transform: translateY(0);
}

/* ============================================
   PROCESS SECTION - Navy 3D circles with wave animation
   ============================================ */
.process-section {
    padding: var(--space-5xl) 0;
    background-color: var(--color-white);
}

.process-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.process-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-light-blue), var(--color-navy), var(--color-light-blue));
}

@media (max-width: 800px) {
    .process-timeline {
        flex-direction: column;
        gap: var(--space-2xl);
    }

    .process-timeline::before {
        display: none;
    }
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
}

/* 3D Navy circle with subtle orange glow behind */
.process-step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, var(--color-navy-light), var(--color-navy-dark));
    color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-xl);
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 1;
    box-shadow:
        0 4px 15px rgba(34, 43, 82, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Subtle orange glow behind the circle */
.process-step-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(249, 75, 12, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.process-step.animated .process-step-number {
    opacity: 1;
    transform: scale(1);
}

.process-step.animated .process-step-number::before {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Stagger the animation for wave effect */
.process-step:nth-child(1) .process-step-number { transition-delay: 0s; }
.process-step:nth-child(2) .process-step-number { transition-delay: 0.15s; }
.process-step:nth-child(3) .process-step-number { transition-delay: 0.3s; }
.process-step:nth-child(4) .process-step-number { transition-delay: 0.45s; }

.process-step-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.process-step-description {
    font-size: var(--text-sm);
    color: var(--color-gray);
    max-width: 200px;
    margin: 0 auto;
}

/* ============================================
   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;
}

.overflow-hidden {
    overflow: hidden;
}

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

.mt-auto {
    margin-top: auto;
}

.mb-0 {
    margin-bottom: 0;
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-navy);
    color: var(--color-cream);
    padding: var(--space-md) var(--space-xl);
    border-radius: 4px;
    font-weight: 600;
    z-index: calc(var(--z-loader) + 1);
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: var(--space-md);
}

/* Focus States */
.nav-link:focus,
.btn:focus,
.portfolio-item:focus,
.work-item:focus,
.service-card:focus,
.filter-btn:focus,
.footer-link:focus,
.contact-social-link:focus {
    outline: 2px solid var(--color-orange);
    outline-offset: 3px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(249, 75, 12, 0.2);
}

/* Form Accessibility */
.form-input[aria-invalid="true"],
.form-textarea[aria-invalid="true"],
.form-select[aria-invalid="true"] {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.form-error-message {
    color: #e74c3c;
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
}

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

    .parallax-break-image {
        transform: none !important;
    }

    .loader-glow,
    .wave-glow,
    .grain-overlay {
        animation: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .portfolio-overlay,
    .work-item-overlay {
        background: rgba(34, 43, 82, 0.95);
    }

    .btn {
        border: 2px solid currentColor;
    }
}

/* ============================================
   PROCESS SECTION - HOW WE WORK
   ============================================ */
.process-section {
    padding: var(--space-5xl) 0;
    background-color: var(--color-navy);
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/Kameha Ai Artwork/Kameha Wave copy.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    position: relative;
    z-index: 1;
}

.process-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}

.process-subtitle {
    font-size: var(--text-lg);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.process-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
}

/* Wave Path Animation */
.process-wave-path {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 120px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.process-wave-svg {
    width: 100%;
    height: 100%;
}

.process-wave-line {
    fill: none;
    stroke: var(--color-orange);
    stroke-width: 3;
    opacity: 0.3;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s var(--ease-out-expo);
}

.process-section.animate .process-wave-line {
    stroke-dashoffset: 0;
}

.process-wave-glow {
    fill: none;
    stroke: var(--color-orange);
    stroke-width: 6;
    opacity: 0.15;
    filter: blur(8px);
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s var(--ease-out-expo);
}

.process-section.animate .process-wave-glow {
    stroke-dashoffset: 0;
}

/* Process Steps Grid */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl) var(--space-xl);
    }

    .process-wave-path {
        display: none;
    }
}

@media (max-width: 500px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Timeline Progress Indicator */
.process-timeline {
    position: relative;
    height: 4px;
    margin-bottom: var(--space-3xl);
    display: flex;
    align-items: center;
}

.process-timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%);
    border-radius: 2px;
}

.process-timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-cream);
    transform: translateY(-50%);
    border-radius: 2px;
    transition: width 0.5s var(--ease-out-expo);
}

.process-timeline-dots {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.process-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.process-dot.active {
    background: var(--color-cream);
    border-color: var(--color-cream);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(247, 244, 239, 0.4);
}

.process-dot.completed {
    background: var(--color-cream);
    border-color: var(--color-cream);
}

@media (max-width: 768px) {
    .process-timeline {
        display: none;
    }
}

/* Process Step Item */
.process-step {
    text-align: center;
    cursor: pointer;
    padding: var(--space-xl);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.process-step-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
    z-index: 0;
}

.process-step-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(34, 43, 82, 0.3), rgba(34, 43, 82, 0.8));
}

.process-step-content {
    position: relative;
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(247, 244, 239, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.process-step:hover .process-step-bg {
    opacity: 0.35;
    transform: scale(1.05);
}

.process-step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--space-md);
    color: var(--color-orange);
    opacity: 0.8;
    transition: all 0.5s var(--ease-out-expo);
}

.process-step:hover .process-step-icon {
    opacity: 1;
    transform: scale(1.1);
}

.process-step-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.process-step-brief {
    font-size: var(--text-sm);
    opacity: 0.7;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.process-step-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    color: var(--color-orange);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--ease-out-expo);
}

.process-step:hover .process-step-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Process Modal */
.process-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.process-modal.active {
    opacity: 1;
    visibility: visible;
}

.process-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.process-modal-content {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--color-navy);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s var(--ease-out-expo);
}

.process-modal.active .process-modal-content {
    transform: scale(1) translateY(0);
}

.process-modal-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.process-modal-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, var(--color-navy) 100%);
}

.process-modal-header {
    padding: var(--space-2xl);
    padding-top: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.process-modal-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFB088 0%, #FF6B35 50%, #FF5A6E 100%);
    color: var(--color-cream);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.process-modal-title {
    font-size: var(--text-3xl);
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
}

.process-modal-tagline {
    font-size: var(--text-lg);
    color: var(--color-cream);
    opacity: 0.7;
    font-style: italic;
}

.process-modal-body {
    padding: var(--space-2xl);
    color: var(--color-cream);
}

.process-modal-description {
    font-size: var(--text-base);
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.process-modal-list {
    margin-bottom: var(--space-xl);
}

.process-modal-list-title {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-orange);
    margin-bottom: var(--space-md);
}

.process-modal-list ul {
    list-style: none;
}

.process-modal-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
    opacity: 0.85;
}

.process-modal-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(180deg, #FFB088 0%, #FF6B35 50%, #FF5A6E 100%);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.process-modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out-expo);
}

.process-modal-close:hover {
    background: linear-gradient(135deg, #FFB088 0%, #FF6B35 50%, #FF5A6E 100%);
    transform: rotate(90deg);
}

.process-modal-close svg {
    width: 20px;
    height: 20px;
}

/* Process Step Stagger Animation */
.process-step {
    opacity: 0;
    transform: translateY(40px);
}

.process-section.animate .process-step {
    animation: processStepReveal 0.8s var(--ease-out-expo) forwards;
}

.process-section.animate .process-step:nth-child(1) { animation-delay: 0.2s; }
.process-section.animate .process-step:nth-child(2) { animation-delay: 0.4s; }
.process-section.animate .process-step:nth-child(3) { animation-delay: 0.6s; }
.process-section.animate .process-step:nth-child(4) { animation-delay: 0.8s; }

@keyframes processStepReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus Visible (for modern browsers) */
.btn:focus-visible,
.nav-link:focus-visible,
.portfolio-item:focus-visible,
.work-item:focus-visible {
    outline: 3px solid var(--color-orange);
    outline-offset: 4px;
}

/* Remove outline for mouse users */
.btn:focus:not(:focus-visible),
.nav-link:focus:not(:focus-visible),
.portfolio-item:focus:not(:focus-visible) {
    outline: none;
}

/* ============================================
   SOCIAL FEED SECTION
   ============================================ */
.social-feed-section {
    padding: var(--space-5xl) 0;
    background-color: var(--color-cream);
}

.social-feed-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.social-feed-title {
    font-size: var(--text-4xl);
    color: var(--color-navy);
    margin-bottom: var(--space-md);
}

.social-feed-subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* Social Platform Cards */
.social-platforms {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.social-platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-xl) var(--space-2xl);
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid rgba(34, 43, 82, 0.08);
    transition: all 0.4s var(--ease-out-expo);
    text-decoration: none;
    min-width: 140px;
}

.social-platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(34, 43, 82, 0.12);
    border-color: var(--color-orange);
}

.social-platform-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    border-radius: 50%;
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
}

.social-platform-icon svg {
    color: var(--color-cream);
}

.social-platform-card:hover .social-platform-icon {
    background: linear-gradient(180deg, #FFB088 0%, #FF6B35 50%, #FF5A6E 100%);
    transform: scale(1.1);
}

.social-platform-name {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--space-xs);
}

.social-platform-handle {
    font-size: var(--text-sm);
    color: var(--color-gray);
}

@media (max-width: 768px) {
    .social-platforms {
        gap: var(--space-md);
    }

    .social-platform-card {
        padding: var(--space-lg);
        min-width: 120px;
    }

    .social-platform-icon {
        width: 50px;
        height: 50px;
    }

    .social-platform-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Social Feed Embed */
.social-feed-embed {
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--space-2xl);
    border: 1px solid rgba(34, 43, 82, 0.08);
}

.social-feed-embed-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(34, 43, 82, 0.08);
}

.social-feed-embed-header svg {
    color: var(--color-orange);
}

.social-feed-embed-header span {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-navy);
}

/* Social Feed Grid */
.social-feed-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
}

@media (max-width: 1100px) {
    .social-feed-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .social-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.social-feed-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.social-feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out-expo);
}

.social-feed-item:hover img {
    transform: scale(1.1);
}

.social-feed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 43, 82, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-feed-overlay svg {
    color: var(--color-cream);
}

.social-feed-item:hover .social-feed-overlay {
    opacity: 1;
}

/* Social Feed CTA Item */
.social-feed-cta {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-feed-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
    padding: var(--space-md);
}

.social-feed-cta-content svg {
    color: var(--color-orange);
    transition: transform 0.3s ease;
}

.social-feed-cta:hover .social-feed-cta-content svg {
    transform: scale(1.2);
}

.social-feed-cta-content span {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-cream);
}

/* ============================================
   FONT CLASSES
   ============================================ */

/* Font Classes - Body */
body.font-avenir {
    --font-primary: 'avenir-next', 'Avenir', sans-serif;
}

body.font-inter {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.font-space-grotesk {
    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.font-plus-jakarta {
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.font-sora {
    --font-primary: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.font-outfit {
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.font-manrope {
    --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.font-dm-sans {
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.font-poppins {
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Font Classes - Headers */
body.header-mango {
    --font-display: 'futura-pt', 'Futura', sans-serif;
}

body.header-druk {
    --font-display: 'druk', Impact, sans-serif;
}

body.header-halyard {
    --font-display: 'halyard-display', sans-serif;
}

body.header-aeonik {
    --font-display: 'aeonik', sans-serif;
}

body.header-neue-montreal {
    --font-display: 'neue-montreal', sans-serif;
}

body.header-dunbar {
    --font-display: 'dunbar-tall', sans-serif;
}

body.header-freight {
    --font-display: 'freight-display-pro', Georgia, serif;
}

body.header-ivypresto {
    --font-display: 'ivypresto-display', Georgia, serif;
}

body.header-mencken {
    --font-display: 'mencken-std', Georgia, serif;
}

/* Apply display font to key headlines */
.hero-title, .section-title,
.about-hero-title, .values-title, .about-process-title,
.brand-story-title, .cta-title {
    font-family: var(--font-display);
}

/* Special styling for condensed header fonts */
body.header-bebas .hero-title,
body.header-bebas .about-hero-title,
body.header-bebas .cta-title {
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

body.header-oswald .hero-title,
body.header-oswald .about-hero-title,
body.header-oswald .cta-title {
    font-weight: 600;
    letter-spacing: 0.01em;
}

body.header-unbounded .hero-title,
body.header-unbounded .about-hero-title,
body.header-unbounded .cta-title {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Bold weights for sans-serif header fonts */
body.header-space-grotesk .hero-title,
body.header-sora .hero-title,
body.header-poppins .hero-title,
body.header-outfit .hero-title,
body.header-space-grotesk .about-hero-title,
body.header-sora .about-hero-title,
body.header-poppins .about-hero-title,
body.header-outfit .about-hero-title {
    font-weight: 700;
}

