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

:root {
    /* Editorial, jewel-toned, cinematic */
    --primary-color: #0a0a0a;
    --secondary-color: #1a1a1a;
    --accent-color: #c5d6e0;
    --accent-light: #dce8ee;
    --accent-dark: #8fa8b8;
    --accent-jewel: #7b9aa8;
    --accent-teal: #5c8a9a;
    --text-primary: #ffffff;
    --text-secondary: #b8c5ce;
    --text-light: #8a9aa6;
    --bg-white: #000000;
    --bg-light: #0a0a0a;
    --bg-section: #0d0d0d;
    --bg-accent: #0f1214;
    --bg-dark: #000000;
    --bg-gradient: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    --border-color: #1e2529;
    --border-dark: #2a3338;
    --border-light: #14181b;
    --gradient-subtle: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    --gradient-feather: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.03) 30%, rgba(0,0,0,0.06) 100%);
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2.5rem;
    --spacing-xxl: 4rem;
    --spacing-editorial: 5rem;
    --max-width: 1000px;
    
    /* Moodboard palette: jewel-toned, solar, peacock iridescence */
    --burple: #3c2bae;
    --burple-glow: rgba(60, 43, 174, 0.45);
    --peacock-teal: #0d9488;
    --golden-sunlight: #d4a853;
    /* Orb 1: Midnight Fantasy – smooth gradual gradient, violet/purple */
    --orb-midnight: radial-gradient(ellipse 100% 100% at 50% 50%,
      rgba(95, 46, 168, 0.35) 0%,
      rgba(75, 29, 137, 0.22) 25%,
      rgba(47, 26, 153, 0.12) 50%,
      rgba(43, 15, 84, 0.05) 75%,
      transparent 100%);
    /* Orb 2: Neon Cyan–Magenta – smooth gradual gradient */
    --orb-neon: radial-gradient(ellipse 100% 100% at 50% 50%,
      rgba(0, 240, 255, 0.28) 0%,
      rgba(200, 0, 255, 0.18) 35%,
      rgba(200, 0, 255, 0.08) 65%,
      transparent 100%);
    /* Orb 3: Glittery Peacock – smooth gradual gradient, aqua/teal */
    --orb-peacock: radial-gradient(ellipse 100% 100% at 50% 50%,
      rgba(0, 255, 208, 0.25) 0%,
      rgba(0, 127, 127, 0.14) 40%,
      rgba(0, 76, 153, 0.06) 70%,
      transparent 100%);
    /* Section overlay tints (soft) */
    --iridescent-mid: rgba(60, 43, 174, 0.12);
    --iridescent-teal: rgba(13, 148, 136, 0.1);
    
    /* Typography – editorial: serif headers, clean sans body */
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;

    /* Premium section gradients (e.l.f.-style full-bleed zones) */
    --gradient-zone-teal: linear-gradient(160deg, rgba(13, 148, 136, 0.08) 0%, rgba(0, 0, 0, 0) 50%);
    --gradient-zone-midnight: linear-gradient(180deg, rgba(60, 43, 174, 0.06) 0%, transparent 40%);
    --gradient-zone-warm: linear-gradient(160deg, rgba(212, 168, 83, 0.05) 0%, transparent 45%);
    --section-divider: linear-gradient(90deg, transparent 0%, var(--border-color) 15%, var(--border-color) 85%, transparent 100%);
}

/* Editorial atmosphere: subtle floating orbs and iridescent gradients (muse energy, never loud) */
@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
    33% { transform: translate(6%, -4%) scale(1.04); opacity: 0.92; }
    66% { transform: translate(-4%, 6%) scale(0.98); opacity: 0.8; }
}
@keyframes shimmer-drift {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.95; }
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.95; transform: translate(-50%, -50%) scale(1.08); }
}

.section-atmosphere {
    position: relative;
    overflow: hidden;
}
.section-atmosphere > * {
    position: relative;
    z-index: 1;
}
/* Soft gradient overlay – very subtle, gradual */
.section-atmosphere::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 90% 70% at 20% 30%, var(--iridescent-mid) 0%, transparent 55%),
                radial-gradient(ellipse 80% 60% at 80% 70%, var(--iridescent-teal) 0%, transparent 50%);
    animation: shimmer-drift 18s ease-in-out infinite;
    opacity: 0.85;
}
/* Floating orb – soft glow (reduced blur for scroll performance) */
.section-atmosphere::after {
    content: '';
    position: absolute;
    width: min(70vw, 520px);
    height: min(70vw, 520px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: float-orb 20s ease-in-out infinite;
    filter: blur(42px);
    opacity: 0.9;
    will-change: transform;
}
/* 1. Midnight Fantasy orb – welcome 1, activations */
.welcome-screen.section-atmosphere::after {
    right: -10%;
    bottom: 10%;
    background: var(--orb-midnight);
}
#activations.section-atmosphere::after {
    left: -8%;
    bottom: 20%;
    background: var(--orb-midnight);
    animation-delay: -7s;
}
/* 2. Neon Cyan–Magenta orb – welcome 2, connect */
.welcome-screen.section-atmosphere.welcome-screen--2::after {
    left: -5%;
    top: 20%;
    background: var(--orb-neon);
    animation-delay: -5s;
}
.connect-section.section-atmosphere::after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(75vw, 560px);
    height: min(75vw, 560px);
    background: var(--orb-neon);
    animation: none;
    filter: blur(32px);
    opacity: 0.38;
}
/* 3. Glittery Peacock orb – welcome 3, skills */
.welcome-screen.section-atmosphere.welcome-screen--3::after {
    right: 5%;
    top: 30%;
    background: var(--orb-peacock);
    animation-delay: -10s;
}
.skills-section.section-atmosphere::after {
    right: -5%;
    top: 40%;
    width: min(50vw, 380px);
    height: min(50vw, 380px);
    background: var(--orb-peacock);
    animation-delay: -3s;
}
/* Portfolio sections – every section gets an orb so none feel empty */
#consumer.section-atmosphere::after {
    left: -8%;
    bottom: 15%;
    background: var(--orb-midnight);
    animation-delay: -2s;
}
#brand-kits.section-atmosphere::after {
    right: -10%;
    top: 20%;
    background: var(--orb-peacock);
    animation-delay: -6s;
}
#short-form-videos.section-atmosphere::after {
    left: -5%;
    top: 30%;
    background: var(--orb-neon);
    animation-delay: -4s;
}
#ugc.section-atmosphere::after {
    right: -8%;
    bottom: 25%;
    background: var(--orb-midnight);
    animation-delay: -1s;
}
#social-media.section-atmosphere::after {
    left: -10%;
    top: 25%;
    background: var(--orb-peacock);
    animation-delay: -8s;
}
#process.section-atmosphere::after {
    right: -5%;
    bottom: 20%;
    background: var(--orb-neon);
    animation-delay: -5s;
}
#website.section-atmosphere::after {
    left: -8%;
    top: 40%;
    background: var(--orb-midnight);
    animation-delay: -3s;
}
/* Intro: Midnight Fantasy overlay (soft violet halo behind video) */
.intro-reveal.section-atmosphere::before {
    background: radial-gradient(ellipse 80% 60% at 50% 50%,
      rgba(95, 46, 168, 0.12) 0%,
      rgba(75, 29, 137, 0.06) 50%,
      transparent 85%);
    opacity: 0.85;
    animation: none;
}
.intro-reveal.section-atmosphere::after {
    left: 15%;
    top: 25%;
    width: min(60vw, 440px);
    height: min(60vw, 440px);
    background: var(--orb-midnight);
    animation: none;
    filter: blur(32px);
    opacity: 0.45;
}

html {
    overflow: hidden;
    height: 100%;
    color-scheme: dark;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-primary);
    background-color: #000;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative;
}

/* Scroll container: normal scroll, no snap; smooth behavior for programmatic scroll */
.scroll-container {
    position: relative;
    z-index: 1;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    contain: layout style;
    /* Smooth wheel/trackpad scrolling; nav links use JS scrollTo(smooth) */
    scroll-behavior: auto;
    overscroll-behavior-y: contain;
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.scroll-container::-webkit-scrollbar {
    display: none;
}

/* Full-viewport sections: exactly 100vh (intro, welcome, connect) */
.intro-reveal,
.welcome-screen,
.connect-section {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    flex-shrink: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Content sections: grow with content, never crop */
.skills-section,
section.portfolio-section,
section#website {
    min-height: 100vh;
    min-height: 100dvh;
    flex-shrink: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
    padding-bottom: 3rem;
}

/* Welcome sequence – each takes over entire screen */
.welcome-screen {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem 6rem;
    background: #000;
    flex-shrink: 0;
}

.welcome-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #fff;
    text-align: center;
    margin: 0;
    line-height: 1.05;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.welcome-body {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    font-weight: 300;
    line-height: 1.85;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
    text-align: center;
    max-width: 42ch;
    margin: 0 auto;
    padding: 0 1rem;
}
.welcome-2-photo {
    margin-bottom: 1.5rem;
}
.welcome-2-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    display: block;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .welcome-2-img {
        width: 80px;
        height: 80px;
    }
}

.welcome-screen .scroll-indicator--welcome {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

/* INTRO: first and only thing visible on load – exactly one full screen */
.intro-reveal {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-width: 100vw;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Intro loading overlay – shown until video can play */
.intro-loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--primary-color);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.intro-loader[aria-hidden="true"].intro-loader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.intro-loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-dark);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: intro-spin 0.9s linear infinite;
}
.intro-loader-text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}
@keyframes intro-spin {
    to { transform: rotate(360deg); }
}

.intro-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: layout style paint;
    will-change: transform;
}
.intro-video.intro-video-active {
    will-change: transform;
}

.intro-name {
    position: relative;
    z-index: 2;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.8s ease-out, transform 1.8s ease-out;
    text-align: center;
    max-width: 90vw;
    pointer-events: none;
    text-shadow: 0 0 40px rgba(0,0,0,0.4);
    -webkit-font-smoothing: antialiased;
}

.intro-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.intro-name.intro-name-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Kiss link under name */
.intro-by-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.2s ease-out 0.4s, transform 1.2s ease-out 0.4s;
}

.intro-center:has(.intro-name-visible) .intro-by-wrap {
    opacity: 1;
    transform: translateY(0);
}

.intro-kiss-link {
    display: block;
    line-height: 0;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.intro-kiss-link:hover {
    transform: scale(1.08);
    opacity: 0.95;
}

/* Kiss image (transparent PNG) */
.intro-kiss-img {
    display: block;
    width: clamp(80px, 18vw, 140px);
    height: auto;
    pointer-events: auto;
}

/* Scroll indicator – gentle pulse */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: opacity 0.4s ease, color 0.4s ease;
}

.scroll-indicator:hover {
    color: var(--accent-color);
    opacity: 1;
}

.scroll-indicator-arrow {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.6; transform: rotate(45deg) translateY(0); }
    50% { opacity: 1; transform: rotate(45deg) translateY(6px); }
}

@media (max-width: 768px) {
    .intro-name {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        letter-spacing: 0.14em;
    }
    .intro-kiss-img {
        width: clamp(64px, 22vw, 100px);
    }
    .scroll-indicator {
        bottom: 1.5rem;
    }
}

/* Personal interludes – full viewport, centered, signature font */
.interlude {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 300;
    line-height: 1.9;
    padding: 4rem 3rem;
    color: #c5d6e0;
    letter-spacing: 0.02em;
    background: var(--bg-dark);
    flex-shrink: 0;
}

.interlude p {
    margin: 0 auto;
    max-width: 28ch;
    color: #c5d6e0;
}

.interlude em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent-light);
}

/* Ensure all text is readable with consistent dark text */
h1, h2, h3, h4, h5, h6, p, span, a, li, .section-title, .section-subtitle, .section-description {
    color: var(--text-primary);
}

/* Dark sections need light text */
/* All sections use light background with dark text */

/* Content sections: light background (sections are direct children now) */
.hero,
.about-section,
.skills-section,
.portfolio-section,
#website {
    background: var(--bg-white);
}

.skills-section .section-title,
.skills-section .section-subtitle,
.skills-section .section-description,
.skills-section .skill-name,
.skills-section .skill-level,
.skills-section .skill-detail,
.skills-section .info-title,
.skills-section .degree-name,
.skills-section .degree-detail,
.skills-section .language-tag {
    color: var(--text-primary);
}

.skills-section .language-tag {
    background: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.skills-section .skill-item {
    background: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-primary);
    border-left: 2px solid var(--accent-color);
}

.skills-section .skill-item:hover {
    border-left-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.06);
}

/* Connect section: Resume, LinkedIn, Contact */
.connect-content {
    text-align: center;
}
.connect-year {
    font-family: var(--font-body);
    font-size: 0.625rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
    font-weight: 300;
}
.connect-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.connect-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: var(--font-body);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.connect-link:hover {
    color: var(--accent-color);
    border-color: var(--border-color);
    background: rgba(255, 255, 255, 0.04);
}
.connect-sep {
    color: var(--border-dark);
    font-size: 0.7rem;
    font-weight: 300;
}

/* Minimal-content section: centered in 100vh */
.connect-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-white);
    position: relative;
}

/* Email Popup - appears only when Contact is clicked */
.email-popup {
    margin-top: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
}

.connect-section.show-email .email-popup {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    max-height: 200px;
}

.email-popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.email-address {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    font-weight: 400;
}

.email-address:hover {
    color: var(--burple);
}

.email-copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.email-copy-btn:hover {
    border-color: var(--burple);
    color: var(--burple);
    background: rgba(37, 99, 235, 0.05);
}

.email-copy-btn svg {
    width: 14px;
    height: 14px;
}

.email-copy-btn.copied {
    border-color: var(--golden-sunlight);
    color: var(--golden-sunlight);
}

.email-copy-btn.copied .copy-text::after {
    content: 'ed!';
}

@media (max-width: 768px) {
    .email-popup-content {
        padding: 1.25rem 1.5rem;
    }
    
    .email-address {
        font-size: 1rem;
        word-break: break-all;
        text-align: center;
    }
}

/* Content sections: generous padding for premium spacing (e.l.f.-level) */
.skills-section .container,
.portfolio-section .container,
#website .container {
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 5rem var(--spacing-xl) 4.5rem;
    padding-bottom: 5.5rem;
    box-sizing: border-box;
    overflow: visible;
}

/* Sections with carousels: less top padding so video content is visible on scroll */
#short-form-videos .container,
#ugc .container,
#consumer .container {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
}

.interlude::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color) 20%, var(--border-color) 80%, transparent 100%);
    opacity: 0.5;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography – editorial, light weights */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

h1 {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.15;
}

h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.02em;
    line-height: 1.25;
}

h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.01em;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Navigation – minimal, fade background when scrolling */
/* Nav: hidden on first screen (intro only); appears after user scrolls down */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.nav-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.94);
    border-bottom-color: var(--border-color);
    /* Backdrop blur is expensive during scroll; solid bar reads cleaner */
    backdrop-filter: none;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.35rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
}

.logo {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-display);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 0.7rem;
    transition: color 0.4s ease, opacity 0.4s ease;
    position: relative;
    padding: 0.2rem 0;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--burple);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.4s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
    background: var(--burple);
}

.nav-menu a.active {
    color: var(--burple);
    font-weight: 500;
}

/* Hero Section - Full viewport, refined editorial */
.hero {
    background: var(--bg-white);
    padding: clamp(4rem, 12vw, 8rem) var(--spacing-xl) clamp(4rem, 10vw, 6rem);
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    margin-top: 2rem;
}

.hero-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    display: block;
    margin-bottom: 0.5rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.hero-role {
    font-size: 0.6875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 400;
    font-family: var(--font-body);
}

.hero-year {
    font-size: 0.625rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    font-family: var(--font-body);
}

.hero-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.hero-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.6875rem;
    transition: color 0.4s ease, opacity 0.4s ease;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
}

.hero-link:hover {
    color: var(--accent-color);
}

.hero-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.hero-link:hover::after {
    width: 100%;
}

.link-separator {
    color: var(--border-dark);
    font-size: 0.75rem;
    margin: 0 var(--spacing-xs);
}

/* Section Styles - Editorial spacing (full-screen sections handle own padding) */
section.portfolio-section .container,
.about-section .container,
.skills-section .container {
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
}


/* Consumer & Lifestyle Products */
#consumer .container {
    padding-bottom: var(--spacing-md);
}

#consumer .section-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

/* Brand Kits Section */
#brand-kits .container {
    padding-bottom: 1.5rem;
}

.brand-kits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl) var(--spacing-xxl);
    align-items: start;
}

/* Strict grid so both cards align: title row, credit row, embed, link */
.brand-kit-item {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    min-width: 0;
    align-items: start;
}

/* Same-height rows so "Golden Moments" and "Permanent" sit on same level */
.brand-kit-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    margin: 0;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.brand-kit-credit {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1.5rem 0;
    font-family: var(--font-body);
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

/* Empty credit keeps same row height, invisible */
.brand-kit-credit--empty {
    visibility: hidden;
    margin: 0 0 1.5rem 0;
    min-height: 2rem;
}

.brand-kit-item .canva-embed-wrap {
    margin-top: 0;
    margin-bottom: 1rem;
}

.canva-embed-wrap {
    position: relative;
    width: 100%;
    padding-top: 138.8889%;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px 0 rgba(63, 69, 81, 0.16);
    border: 1px solid var(--border-color);
    background: var(--bg-light);
}

.canva-embed-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.canva-embed-inner .canva-iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
    padding: 0;
    margin: 0;
}

.brand-kit-link {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 1.125rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    text-align: center;
    margin-top: 0.75rem;
}

.brand-kit-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: rgba(197, 214, 224, 0.06);
}

@media (max-width: 768px) {
    .brand-kits-content {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-md) var(--spacing-xl);
    }
}

/* Coolplay section — COB 300 project */
#coolplay .section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}
#coolplay .section-subtitle {
    font-size: 1rem;
    margin-top: 0.25rem;
}
#coolplay .section-description {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}
.coolplay-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl) var(--spacing-xxl);
}
.coolplay-embed-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 2rem;
}
.coolplay-placeholder-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 28ch;
    margin: 0;
    line-height: 1.6;
}

/* Coolplay brand kit — image grid */
.coolplay-brand-kit {
    max-width: 100%;
}
.coolplay-brand-kit .brand-kit-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.coolplay-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-xl);
    margin-top: 0;
}
.coolplay-image-wrap {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.coolplay-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background: var(--bg-subtle, #0f1419);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.coolplay-caption {
    display: none;
}

@media (max-width: 768px) {
    .coolplay-images {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

/* Coolplay campaign ads — category grid + detail (Syne, DM Sans, Unbounded) */
.coolplay-campaigns-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: var(--spacing-xxl) 0 0.35rem 0;
    color: var(--text-primary, #fff);
}
.coolplay-campaigns-intro {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-xl) 0;
}
.coolplay-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.coolplay-cat {
    font-family: 'Syne', sans-serif;
    text-align: left;
    padding: 1.5rem 1.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: #0f151f;
    color: rgba(255,255,255,0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    border: 1px solid rgba(255,255,255,0.06);
}
.coolplay-cat:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.1);
}
.coolplay-cat-num {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0.9;
}
.coolplay-cat-name {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.coolplay-cat-sub {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
.coolplay-cat--teal .coolplay-cat-name { color: #00d5d7; }
.coolplay-cat--purple .coolplay-cat-name { color: #a78bfa; }
.coolplay-cat--gold .coolplay-cat-name { color: #eab308; }
.coolplay-cat--blue .coolplay-cat-name { color: #66b0f0; }

@media (min-width: 640px) {
    .coolplay-categories {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Coolplay detail — inline expansion below categories (no overlay) */
.coolplay-detail {
    margin-top: var(--spacing-xl);
    padding: 1.5rem;
    background: #0f151f;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}
.coolplay-detail[hidden] {
    display: none !important;
}
.coolplay-detail-close {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    margin-bottom: 1.25rem;
    transition: background 0.2s, color 0.2s;
}
.coolplay-detail-close:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}
.coolplay-detail-inner {
    width: 100%;
}
.coolplay-detail-content {
    display: none;
}
.coolplay-detail-visual {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #1a2332;
}
.coolplay-detail-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.about-section .section-title {
    font-size: 2rem;
}

.about-content p {
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
}

/* Skills & Tools - full viewport chapter */
.skills-section {
    padding: 0;
}

.skills-section .section-title {
    font-size: 1.5rem;
}

.skills-section .section-description {
    font-size: 0.75rem;
}

/* Skills category strip – full-bleed bar (e.l.f.-style category strip) */
.skills-section .skills-focus {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: -2rem -2rem 1.5rem -2rem;
    padding: 1rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
@media (max-width: 768px) {
    .skills-section .skills-focus {
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0.875rem 1rem;
        font-size: 0.6875rem;
        letter-spacing: 0.1em;
    }
}

#process .section-title {
    font-size: 1.5rem;
}

#process .section-description {
    font-size: 0.75rem;
}

/* Portfolio sections - full viewport chapters */
.portfolio-section {
    padding: 0;
}

.about-section {
    border-bottom: none;
}

/* Companies Section - Now part of About */

.companies-ticker {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    animation: scroll-down 20s linear infinite;
    width: 100%;
}

/* Seamless loop: content is 2 identical halves; we scroll by exactly 50% so reset is invisible */
@keyframes scroll-down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 80px;
    padding: var(--spacing-sm);
    transition: all 0.3s ease;
}

.company-logo {
    width: auto;
    height: auto;
    object-fit: contain;
    max-width: 100px;
    max-height: 60px;
}

.company-logo.logo-large {
    max-width: 120px;
    max-height: 70px;
}

.company-logo.logo-antonio {
    max-width: 140px;
    max-height: 90px;
}

.company-logo.logo-medium,
.company-logo.logo-small {
    max-width: 100px;
    max-height: 60px;
}

@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-companies {
        position: static;
    }
    
    .ticker-item {
        height: 70px;
    }
    
    .company-logo,
    .company-logo.logo-medium,
    .company-logo.logo-small {
        max-width: 200px;
        max-height: 100px;
    }
    
    .company-logo.logo-large {
        max-width: 250px;
        max-height: 120px;
    }
    
    .company-logo.logo-antonio {
        max-width: 320px;
        max-height: 160px;
    }
}

.skills-section {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.portfolio-section {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

/* Full-bleed gradient zones for premium feel (e.l.f.-style) */
.portfolio-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
}
#short-form-videos.portfolio-section::before {
    background: var(--gradient-zone-teal);
    opacity: 1;
}
#ugc.portfolio-section::before {
    background: var(--gradient-zone-midnight);
    opacity: 1;
}
#activations.portfolio-section::before {
    background: var(--gradient-zone-warm);
    opacity: 1;
}
.portfolio-section > *,
.portfolio-section .container {
    position: relative;
    z-index: 1;
}

.portfolio-section:nth-child(even) {
    background-color: #000000;
}

/* Premium editorial titles – bold, confident (e.l.f.-level) */
.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    letter-spacing: 0.02em;
    line-height: 1.2;
    font-family: var(--font-display);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    font-family: var(--font-body);
}

.section-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    line-height: 1.75;
    font-weight: 400;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}

/* Project/Client Title */
.project-client-title {
    text-align: center;
    margin: 1rem auto 1.5rem;
    max-width: 500px;
    padding: 0 var(--spacing-md);
}

.client-name {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 0;
    font-family: var(--font-body);
}

/* About Section */
.about-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    overflow: visible;
}

.about-content {
    max-width: none;
}

.about-content p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    letter-spacing: 0.01em;
    max-width: 600px;
}

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

.about-companies {
    position: sticky;
    top: 100px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.companies-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    letter-spacing: -0.01em;
    font-family: var(--font-display);
}

.companies-ticker-container {
    height: 320px;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    margin-left: 0;
    margin-right: 0;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.skill-item {
    background: var(--bg-white);
    padding: 0.375rem 0.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.skill-item:hover {
    border-color: var(--border-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.skill-name {
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 500;
    font-family: var(--font-display);
}

.skill-level {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: var(--spacing-xs);
}

.skill-detail {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: normal;
    margin-top: var(--spacing-xs);
    font-weight: 300;
}

.skill-item-adobe {
    border-left: 2px solid var(--accent-color);
}

.skill-item:hover {
    border-color: var(--accent-light);
    border-left-color: var(--accent-color);
    transform: translateY(-1px);
    background: rgba(0, 217, 255, 0.03);
}

/* Education & Languages */
.education-languages {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.education-section,
.languages-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.education-item {
    margin-bottom: 1rem;
}

.degree-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.degree-detail {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.languages-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.language-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.8125rem;
    color: var(--text-primary);
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .education-languages {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Events & Activations */
.activations-showcase {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    align-items: start;
}

.activation-featured {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-color);
    padding: var(--spacing-xl);
    border-radius: 8px;
}

.activation-featured .activation-tag {
    margin-bottom: 0.35rem;
}

.activation-featured .activation-name {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

.activation-featured .activation-detail {
    margin-bottom: 1.25rem;
    max-width: 52ch;
}

.activation-video-wrap--featured {
    max-width: 700px;
    width: 100%;
    margin: 0 auto 1rem;
    aspect-ratio: 9 / 16;
    max-height: 70vh;
    border-radius: 8px;
    overflow: hidden;
    background: #0a0a0a;
}

.activation-featured .activation-video-label {
    margin-bottom: 0.5rem;
}

.activation-support {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-teal, #0d9488);
    padding: var(--spacing-lg);
    border-radius: 8px;
}

.activation-support .activation-name {
    font-size: 1.1rem;
}

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

.activations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.activation-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-left: 2px solid var(--accent-color);
    padding: var(--spacing-lg);
    transition: all 0.2s ease;
}

.activation-card:hover {
    border-color: var(--border-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.activation-card-upcoming {
    border-left-color: var(--accent-teal);
}

.activation-card-soon {
    border-left-color: var(--border-dark);
    opacity: 0.92;
}

.activation-tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.activation-name {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    font-family: var(--font-display);
}

.activation-detail {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Expandable activation card (click to show video) */
.activation-card-expandable {
    cursor: pointer;
}

.activation-card-head {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.activation-card-toggle {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--accent-color);
    letter-spacing: 0.05em;
}

.activation-card-expandable .activation-card-head:hover .activation-card-toggle,
.activation-card-expandable.activation-card-expanded .activation-card-toggle {
    text-decoration: underline;
}

.activation-card-expand {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    display: none;
}

.activation-card-expandable.activation-card-expanded .activation-card-expand {
    display: block;
}

.activation-video-wrap {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 0.75rem;
    aspect-ratio: 9 / 16;
    max-height: 60vh;
    background: #000;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.activation-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.activation-video-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.activation-instagram-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.activation-instagram-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: rgba(197, 214, 224, 0.06);
}

@media (max-width: 768px) {
    .activations-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* Portfolio Sections */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

/* Unified Card System - Centered, Consistent */
.premium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
    justify-items: center;
}

.premium-tile {
    position: relative;
    display: block;
    width: 100%;
    max-width: 500px;
    overflow: visible;
    text-decoration: none;
    color: inherit;
    background: var(--bg-white);
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 1px solid var(--border-color);
    margin: 0 auto;
}

.premium-tile:not(.premium-tile-instagram) {
    aspect-ratio: 4 / 3;
}

.premium-tile:hover {
    transform: scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(139, 115, 85, 0.2);
}

.premium-tile-instagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 9 / 16;
}

.premium-tile-instagram .instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.tile-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
}

.tile-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tile-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tile-image-primary {
    opacity: 1;
    z-index: 1;
}

.tile-image-secondary {
    opacity: 0;
    z-index: 2;
    visibility: visible;
}

.premium-tile:hover .tile-image-primary {
    opacity: 0;
}

.premium-tile:hover .tile-image-secondary {
    opacity: 1;
}

/* Video tile styles */
.tile-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.premium-tile[data-type="video"] .tile-image-primary {
    z-index: 1;
}

.premium-tile[data-type="video"]:hover .tile-image-primary {
    opacity: 0;
}

.premium-tile[data-type="video"]:hover .tile-video {
    opacity: 1;
}

/* Ensure videos are ready but paused until hover */
.tile-video {
    pointer-events: none;
}

.tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-tile:hover .tile-overlay {
    transform: translateY(0);
    opacity: 1;
}

.tile-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tile-tag {
    font-size: 0.625rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
}

.tile-title {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--bg-white);
    margin: 0;
    font-family: var(--font-display);
}

/* Responsive */
@media (max-width: 768px) {
    .premium-grid {
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .premium-tile {
        max-width: 100%;
    }
    
    .premium-tile:not(.premium-tile-instagram) {
        aspect-ratio: 4 / 3;
    }
    
    .tile-overlay {
        padding: 1rem;
    }
    
    .tile-title {
        font-size: 1.125rem;
    }
}

/* Campaigns Section - Premium Editorial Layout */
.campaigns-section {
    background: var(--bg-white);
}

.campaigns-header {
    padding: 6rem 0 4rem;
    border-bottom: none;
}

.campaigns-header .container {
    max-width: 1400px;
}

.campaigns-header .section-title {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    font-family: var(--font-display);
}

.campaigns-header .section-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    font-family: var(--font-body);
}

.campaigns-projects {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.campaign-project {
    border-bottom: none;
    margin-bottom: 3rem;
    width: 100%;
}

.campaign-project:last-child {
    margin-bottom: 0;
}

.campaign-project-header {
    padding: 0;
    margin-bottom: 1.5rem;
}

.campaign-project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.campaign-client-tag {
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-light);
    font-family: var(--font-body);
    margin-bottom: 0.25rem;
}

.campaign-project-title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    font-family: var(--font-display);
}

.campaign-project-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.campaign-project-media {
    width: 100%;
    background: var(--bg-white);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.campaign-reel-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.campaign-reel-wrapper blockquote.instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Responsive */
@media (max-width: 768px) {
    .campaigns-header {
        padding: 2rem 0 1.5rem;
    }
    
    .campaigns-header .section-title {
        font-size: 1.5rem;
    }
    
    .campaign-project {
        margin-bottom: 2rem;
    }
    
    .campaign-project-header {
        margin-bottom: 1rem;
    }
    
    .campaign-project-title {
        font-size: 1.25rem;
    }
    
    .campaign-reel-wrapper {
        max-width: 100%;
    }
    
    .campaigns-projects {
        padding: 0 var(--spacing-sm);
    }
}

.project-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.project-card:hover {
    border-color: var(--border-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    width: 100%;
    min-height: 280px;
    background-color: var(--bg-light);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    color: var(--text-light);
    font-size: 0.9375rem;
}

.project-image blockquote.instagram-media {
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.company-thumbnails {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.thumbnail-item {
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    position: relative;
}

.thumbnail-item:hover {
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.thumbnail-item.active {
    border-color: var(--text-primary);
    border-width: 2px;
    background-color: var(--bg-light);
}

.thumbnail-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.thumbnail-label {
    padding: var(--spacing-xs) var(--spacing-sm);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thumbnail-item.active .thumbnail-label {
    color: var(--text-primary);
    font-weight: 600;
}

.company-main-display {
    width: 100%;
    margin-bottom: var(--spacing-md);
}

.main-image-container {
    width: 100%;
    min-height: 500px;
    background-color: var(--bg-light);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.main-project-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.4s ease;
}

.main-reel-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-reel-container blockquote.instagram-media {
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.project-description-panel {
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    min-height: 100px;
    transition: all 0.3s ease;
}

.project-description-panel .project-tag {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-body);
}

.project-specific-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .main-image-container {
        min-height: 300px;
    }
    
    .company-thumbnails {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .thumbnail-img {
        height: 150px;
    }
}

.project-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    max-width: 100%;
}

.overlay-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-top: var(--spacing-sm);
    font-weight: 400;
}

.project-tag {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-info {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 500;
    font-family: var(--font-display);
}

.project-client-tag {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-body);
}

.project-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.project-tools {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.project-placeholder {
    background-color: var(--bg-light);
    border: 1px dashed var(--border-dark);
    padding: var(--spacing-xl);
    text-align: center;
    color: var(--text-light);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.process-step {
    background-color: var(--bg-white);
    padding: var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--text-primary);
    transition: all 0.2s ease;
}

.process-step:hover {
    border-color: var(--border-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.process-step h3 {
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 500;
    font-family: var(--font-display);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.75rem;
    line-height: 1.6;
    min-height: auto;
    font-weight: 300;
}

/* Website Showcase Section - fit in 100vh */
.website-showcase {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.website-content {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.website-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.website-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.website-note {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.website-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--text-primary);
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 0;
    font-size: 0.8125rem;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--text-primary);
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.15);
}

.website-button:hover {
    background: transparent;
    color: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
}

/* Contact Section */
.contact-content {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem 0;
}

.contact-email {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.contact-email:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: var(--bg-white);
    text-align: center;
    padding: var(--spacing-md) var(--spacing-md);
    border-top: 1px solid var(--border-dark);
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 300;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.65rem;
        flex-wrap: nowrap;
    }
    .nav-menu a {
        font-size: 0.65rem;
        white-space: nowrap;
    }
    .nav-container {
        padding: 0.3rem var(--spacing-sm);
        min-height: 36px;
    }
    .logo {
        font-size: 0.6rem;
        flex-shrink: 0;
    }

    .hero {
        min-height: auto;
        padding: 2rem var(--spacing-md);
    }

    .hero-photo {
        width: 100px;
        height: 100px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-role {
        font-size: 0.625rem;
    }

    .hero-positioning {
        font-size: 0.875rem;
    }

    .hero-links {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
    }

    .hero-link {
        width: 100%;
        text-align: center;
    }

    .link-separator {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* Native smooth scroll off — main scroll is .scroll-container (auto); in-page nav uses JS */
html {
    scroll-behavior: auto;
}

/* Remove animations and playful effects */
@keyframes fadeInUp {
    /* Removed for professional look */
}

/* Unified Stacked Card Carousel - Overlapped Cards */
.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 1rem auto 0;
    padding: 0 var(--spacing-md);
    width: 100%;
    overflow: visible;
}

/* Short-Form and UGC: same size – prominent, matching dimensions */
.carousel-container--video {
    max-width: 760px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 0 var(--spacing-lg);
}
.carousel-container--video .carousel-wrapper {
    padding: 2rem 0;
}
.carousel-container--video .carousel-card {
    max-width: 700px;
}
.carousel-container--video .carousel-card-video,
.carousel-container--video .carousel-video {
    max-width: 700px;
    min-height: 420px;
}
.carousel-container--video .carousel-video {
    min-height: 420px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.carousel-stack {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.carousel-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: transparent;
    overflow: visible;
    display: block;
}


.carousel-card-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

/* Card positioning - stacked with overlap, all cards same vertical level */
.carousel-card[data-index="0"] {
    transform: translateX(-48%) scale(0.9);
    opacity: 0.5;
    z-index: 1;
    filter: blur(0.5px);
    pointer-events: none;
}

.carousel-card[data-index="0"]::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: 2px;
    pointer-events: none;
    z-index: 1;
}

.carousel-card[data-index="1"] {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 3;
    filter: blur(0);
    pointer-events: auto;
}

.carousel-card[data-index="2"] {
    transform: translateX(48%) scale(0.9);
    opacity: 0.5;
    z-index: 1;
    filter: blur(0.5px);
    pointer-events: none;
}

.carousel-card[data-index="2"]::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: 2px;
    pointer-events: none;
    z-index: 1;
}

/* Hide text on non-centered cards so Omar's / Aristocat etc. never overlap */
.carousel-card[data-index="0"] .video-caption,
.carousel-card[data-index="0"] .video-case-study,
.carousel-card[data-index="0"] .video-instagram-link,
.carousel-card[data-index="2"] .video-caption,
.carousel-card[data-index="2"] .video-case-study,
.carousel-card[data-index="2"] .video-instagram-link {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 0;
    position: absolute;
    left: -9999px;
}
/* Keep only the centered card's content in layout so stacking is clear */
.carousel-card {
    isolation: isolate;
}
.carousel-card[data-index="1"] {
    isolation: isolate;
}

.carousel-card-image {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.carousel-card-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.carousel-card-instagram {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    overflow: visible;
}

.carousel-card-instagram .instagram-media {
    width: 100% !important;
    max-width: 540px !important;
    min-width: 326px !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    display: block !important;
    overflow: visible !important;
}

/* Ensure Instagram iframes are responsive and show fully */
.carousel-card-instagram iframe {
    width: 100% !important;
    max-width: 540px !important;
    min-width: 326px !important;
    height: auto !important;
    min-height: 600px !important;
    display: block !important;
    overflow: visible !important;
}

/* Remove any height constraints from Instagram embed container */
.carousel-card-instagram .instagram-media > div {
    width: 100% !important;
    max-width: 540px !important;
    overflow: visible !important;
}

/* Video card styling - natural size, no cropping */
.carousel-card-video {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    background: rgba(0,0,0,0.3);
}
.carousel-card-video.is-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.carousel-card-video.is-loading::before {
    content: '';
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border: 3px solid var(--border-dark);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: intro-spin 0.9s linear infinite;
}

.carousel-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 320px;
    display: block;
    object-fit: contain;
    border-radius: 2px;
    background: transparent;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: layout style paint;
}

.video-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.video-case-study {
    margin-top: 0.75rem;
    padding: 0 1rem;
}

.case-study-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: center;
    margin: 0;
    font-weight: 300;
}

/* Premium CTA buttons – pill style (e.l.f. "Shop Now" level) */
.video-instagram-link {
    display: inline-block;
    text-align: center;
    margin-top: 1rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: transparent;
}

.video-instagram-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: rgba(197, 214, 224, 0.06);
}


/* UGC Content section — placeholder card */
.ugc-card.ugc-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.ugc-placeholder-content {
    text-align: center;
    padding: 2rem;
}

.ugc-placeholder-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ugc-placeholder-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 300;
}

/* Instagram Links Below Carousel */
.instagram-links {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.instagram-links-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 400;
}

.instagram-links-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.instagram-link {
    font-size: 0.875rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.instagram-link:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .instagram-links-container {
        gap: 1.5rem;
    }
}

/* Card overlay for image cards */
.carousel-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
    transform: translateY(4px);
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel-card:hover .carousel-card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.carousel-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.carousel-card-tag {
    font-size: 0.625rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
}

.carousel-card-title {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--bg-white);
    margin: 0;
    font-family: var(--font-display);
}

/* Navigation arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.carousel-nav:hover {
    background: var(--text-primary);
    color: var(--bg-white);
    border-color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.25);
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.98);
}

.carousel-nav-prev {
    left: 0.5rem;
}

.carousel-nav-next {
    right: 0.5rem;
}

.carousel-nav svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 var(--spacing-sm);
        max-width: 100%;
    }
    
    .carousel-card {
        max-width: 360px;
    }

    .carousel-container--video .carousel-card {
        max-width: 100%;
    }
    .carousel-container--video .carousel-card-video,
    .carousel-container--video .carousel-video {
        max-width: 100%;
        min-height: 380px;
    }
    
    .carousel-card[data-index="0"] {
        transform: translateX(-48%) scale(0.85);
    }
    
    .carousel-card[data-index="2"] {
        transform: translateX(48%) scale(0.85);
    }
    
    .carousel-card-instagram .instagram-media {
        min-width: 100% !important;
    }
    
    .carousel-nav {
        width: 32px;
        height: 32px;
    }
    
    .carousel-nav-prev {
        left: 0.25rem;
    }
    
    .carousel-nav-next {
        right: 0.25rem;
    }
    
    .carousel-nav svg {
        width: 14px;
        height: 14px;
    }
}

/* Social Media Showcase Section - natural height */
.social-showcase {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 var(--spacing-md);
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    font-family: var(--font-display);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 0.25rem;
}

.stat-detail {
    font-size: 0.6875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
}

.social-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

/* Social Media: center the phone in the middle of the page */
.social-content-grid--centered {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
}
.social-content-grid--centered .phone-mockup {
    width: 100%;
    max-width: 320px;
}
.social-content-grid--centered .social-details {
    display: none;
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 564px;
}

.instagram-feed-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    width: 100%;
    overflow: hidden;
}

.instagram-feed-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.instagram-logo {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.instagram-handle {
    font-size: 0.75rem;
    color: var(--text-light);
}

.instagram-feed-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: var(--bg-light);
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

.instagram-feed-scroll .instagram-media {
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    padding: 0 !important;
    display: block !important;
    background: var(--bg-light) !important;
}

.instagram-feed-scroll .instagram-media > div {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.instagram-feed-scroll .instagram-media iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    height: auto !important;
    min-height: 500px !important;
}

/* Force override Instagram's inline min-width styles */
.instagram-feed-scroll blockquote[style*="min-width"] {
    min-width: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Ensure Instagram embed content fits phone width */
.instagram-feed-scroll .instagram-media {
    font-size: 0.875rem !important;
    min-width: 100% !important;
}

.instagram-feed-scroll .instagram-media * {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Override Instagram's minimum width constraint */
.instagram-feed-scroll .instagram-media[style*="min-width"] {
    min-width: 100% !important;
    width: 100% !important;
}

.instagram-feed-scroll .instagram-media iframe[style*="min-width"] {
    min-width: 100% !important;
    width: 100% !important;
}

.instagram-post {
    padding: 12px 0;
    border-bottom: 1px solid #efefef;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px 12px;
}

.post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #404040 0%, #1a1a1a 100%);
    border: 2px solid var(--border-color);
}

.post-info {
    flex: 1;
}

.post-username {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #000;
}

.post-location {
    font-size: 0.75rem;
    color: var(--text-light);
}

.post-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #262626 0%, #0a0a0a 100%);
    margin-bottom: 12px;
}

.post-actions {
    display: flex;
    gap: 16px;
    padding: 0 16px 8px;
}

.action-icon {
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 2px;
    opacity: 0.8;
}

.post-likes {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #000;
    padding: 0 16px 8px;
}

.post-caption {
    font-size: 0.8125rem;
    color: #000;
    padding: 0 16px;
    line-height: 1.4;
}

.post-caption strong {
    font-weight: 600;
}

.phone-description {
    text-align: center;
    max-width: 300px;
}

.phone-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.phone-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.website-link {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.website-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: rgba(197, 214, 224, 0.06);
}

/* Social Details */
.social-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.detail-card {
    padding: 1.5rem 1.75rem;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.detail-title {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.detail-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Reels Horizontal Carousel */
.reels-carousel-section {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.reels-title {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.reels-horizontal-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.reels-horizontal-carousel::-webkit-scrollbar {
    height: 4px;
}

.reels-horizontal-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.reels-horizontal-carousel::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 2px;
}

.reel-card {
    flex: 0 0 140px;
    scroll-snap-align: start;
}

.reel-preview {
    width: 140px;
    height: 200px;
    background: linear-gradient(135deg, #262626 0%, #0a0a0a 100%);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.reel-info {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Responsive */
@media (max-width: 968px) {
    .social-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .phone-mockup {
        order: 1;
    }

    .social-details {
        order: 2;
    }

    .social-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .phone-frame {
        width: 240px;
        height: 500px;
    }

    .social-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}

/* Respect system preference: no decorative motion */
@media (prefers-reduced-motion: reduce) {
    .section-atmosphere::before,
    .section-atmosphere::after {
        animation: none !important;
    }
    .scroll-container {
        scroll-behavior: auto;
    }
}

/* ── Under construction overlay ─────────────────────────────────────────── */

html.site-under-construction {
    overflow: hidden;
}

html.site-under-construction .scroll-container,
html.site-under-construction .navbar {
    visibility: hidden;
    pointer-events: none;
}

.under-construction-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 5vw, 3rem);
    background: var(--bg-dark);
    color: var(--text-primary);
    text-align: center;
    overflow: hidden;
}

html.site-under-construction .under-construction-overlay {
    display: flex;
}

.under-construction-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: float-orb 18s ease-in-out infinite alternate;
}

.under-construction-orb--1 {
    width: min(70vw, 520px);
    height: min(70vw, 520px);
    top: -12%;
    left: -8%;
    background: var(--orb-midnight);
}

.under-construction-orb--2 {
    width: min(60vw, 440px);
    height: min(60vw, 440px);
    bottom: -10%;
    right: -6%;
    background: var(--orb-peacock);
    animation-delay: -6s;
}

.under-construction-inner {
    position: relative;
    z-index: 1;
    max-width: 36rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.75rem, 2.5vw, 1.25rem);
}

.under-construction-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-light);
}

.under-construction-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.15;
    color: var(--text-primary);
}

.under-construction-status {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.06em;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.under-construction-note {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 28rem;
    margin-top: 0.5rem;
}

.under-construction-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 0.5rem;
    margin-top: clamp(1rem, 3vw, 2rem);
}

.under-construction-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.25s ease;
}

.under-construction-link:hover,
.under-construction-link:focus-visible {
    color: var(--accent-color);
    outline: none;
}

.under-construction-contact-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.under-construction-email-popup {
    margin-top: 1.25rem;
    opacity: 0;
    transform: translateY(12px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
}

.under-construction-email-popup.is-visible {
    opacity: 1;
    transform: translateY(0);
    max-height: 160px;
    pointer-events: auto;
}

.under-construction-email-popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(8px);
}

.under-construction-email {
    font-family: var(--font-display);
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.under-construction-copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.under-construction-copy-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.under-construction-copy-btn.copied {
    border-color: var(--golden-sunlight);
    color: var(--golden-sunlight);
}

.under-construction-copy-btn.copied .copy-text::after {
    content: 'ed!';
}

.under-construction-link--disabled {
    color: var(--text-light);
    cursor: default;
    pointer-events: none;
    opacity: 0.55;
}

.under-construction-sep {
    color: var(--text-light);
    font-size: 0.75rem;
    user-select: none;
}

@media (prefers-reduced-motion: reduce) {
    .under-construction-orb {
        animation: none;
    }
}
