/* ============================================
   SHAEN — CREATIVE & PODCAST DESIGN SYSTEM
   Warm · Cinematic · Editorial · Artistic
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Core Palette — dark with warm amber/whiskey tones */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a24;
    --bg-card: #13131c;

    /* Warm accent tones */
    --amber: #f0a030;
    --amber-dim: rgba(240, 160, 48, 0.3);
    --amber-glow: rgba(240, 160, 48, 0.15);
    --whiskey: #c47a20;
    --neon-orange: #ff6a00;
    --neon-cyan: #00f0ff;
    --neon-cyan-dim: rgba(0, 240, 255, 0.2);

    /* Text */
    --text-primary: #f0ece4;
    --text-secondary: #a09890;
    --text-dim: #5a534d;

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-ui: 'Space Grotesk', monospace;

    /* Spacing */
    --section-pad: clamp(80px, 12vw, 160px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s var(--ease-out-expo);
    --transition-medium: 0.6s var(--ease-out-expo);
    --transition-slow: 1s var(--ease-out-expo);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

/* --- Ambient Canvas --- */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* --- Scanlines --- */
.scanlines {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px);
    opacity: 0.5;
}

/* --- Loader --- */
.loader {
    position: fixed;
    inset: 0;
    background: #FFF9E9 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: glyphPulse 1.5s ease-in-out infinite;
    margin-bottom: 30px;
}

.loader-logo-img {
    width: clamp(80px, 16vw, 150px);
    height: auto;
    filter:
        drop-shadow(0 0 18px rgba(240, 160, 48, 0.6)) drop-shadow(0 0 50px rgba(240, 160, 48, 0.25)) drop-shadow(0 0 100px rgba(240, 160, 48, 0.1));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@keyframes glyphPulse {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 40px var(--amber-dim), 0 0 80px var(--amber-dim);
    }

    50% {
        opacity: 0.7;
        text-shadow: 0 0 20px var(--amber-dim);
    }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--bg-tertiary);
    margin: 30px auto 20px;
    overflow: hidden;
    border-radius: 2px;
}

.loader-bar-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--amber), var(--neon-orange));
    animation: loaderFill 2.5s var(--ease-out-expo) forwards;
    box-shadow: 0 0 10px var(--amber-dim);
}

@keyframes loaderFill {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.loader-text {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.5em;
    color: var(--text-dim);
    animation: textBlink 1s ease-in-out infinite;
}

@keyframes textBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition-medium);
}

.nav.scrolled {
    padding: 14px 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(240, 160, 48, 0.08);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: all var(--transition-fast);
}

.nav-logo-img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: clamp(20px, 4vw, 50px);
    justify-content: flex-end;
}

.nav-link {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-transform: uppercase;
    transition: color var(--transition-fast);
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

/* Mobile Menu Button */
.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-menu-btn span {
    width: 28px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

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

.mobile-link {
    font-family: var(--font-display);
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--amber);
    text-shadow: 0 0 30px var(--amber-dim);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-studio-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-studio-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.25;
    filter: saturate(0.7) brightness(0.6) contrast(1.2);
    transform: scale(1.05);
    animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.12);
    }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 249, 233, 0.85) 30%, var(--bg-primary) 100%),
        linear-gradient(180deg, transparent 0%, var(--bg-primary) 95%),
        linear-gradient(0deg, var(--bg-primary) 0%, rgba(255, 249, 233, 0.5) 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(240, 160, 48, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 160, 48, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
    animation: gridSlide 20s linear infinite;
}

@keyframes gridSlide {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(60px);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-wrapper {
    margin-bottom: 24px;
    opacity: 0;
    animation: cinematicFadeIn 0.8s ease-in-out 0.4s forwards;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-main-logo {
    width: clamp(280px, 50vw, 600px);
    height: auto;
    filter:
        drop-shadow(0 0 15px rgba(240, 160, 48, 0.5)) drop-shadow(0 0 40px rgba(240, 160, 48, 0.2)) drop-shadow(0 0 80px rgba(240, 160, 48, 0.08));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-subtitle {
    font-family: var(--font-ui);
    font-size: clamp(12px, 1.5vw, 16px);
    letter-spacing: 0.35em;
    color: var(--text-secondary);
    margin-top: 10px;
    opacity: 0;
    animation: cinematicFadeIn 0.8s ease-in-out 1s forwards;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: cinematicFadeIn 0.8s ease-in-out 1.6s forwards;
}

@keyframes cinematicFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hero-scroll-indicator span {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 0.4em;
    color: var(--text-dim);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--amber), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ===========================================
   SECTION SHARED STYLES
   =========================================== */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.label-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--amber);
}

.label-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--amber), transparent);
}

.label-text {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--text-dim);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.section-title .accent {
    background: linear-gradient(135deg, var(--amber), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-header.center .section-label {
    justify-content: center;
}

/* ===========================================
   CREATIVE WORK SECTION
   =========================================== */
.creative-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* — Creative Hero — */
.creative-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.creative-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 130% 80% at 50% -10%, rgba(240, 160, 48, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 50%, rgba(240, 160, 48, 0.03) 0%, transparent 60%),
        var(--bg-primary);
}

.creative-light-sweep {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(240, 160, 48, 0.02) 30%,
            rgba(240, 160, 48, 0.04) 50%,
            rgba(240, 160, 48, 0.02) 70%,
            transparent 100%);
    animation: creativeSweep 8s ease-in-out infinite alternate;
}

@keyframes creativeSweep {
    0% {
        opacity: 0.4;
        transform: skewX(-2deg);
    }

    100% {
        opacity: 1;
        transform: skewX(2deg);
    }
}

.creative-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.creative-eyebrow {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.creative-wordmark {
    font-family: var(--font-display);
    font-size: clamp(40px, 10vw, 120px);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 32px;
    text-shadow:
        0 0 60px rgba(240, 160, 48, 0.12),
        0 0 120px rgba(240, 160, 48, 0.06);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.creative-tagline {
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 200;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

/* — Creative Philosophy / Approach — */
.creative-philosophy {
    padding: clamp(100px, 14vw, 180px) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.creative-philosophy-inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    align-items: start;
}

.creative-label-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 6px;
}

.creative-label-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--amber-dim);
}

.creative-label-line {
    width: 1px;
    height: 40px;
    background: rgba(240, 160, 48, 0.15);
}

.creative-label-text {
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 0.35em;
    color: var(--text-dim);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.creative-section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.creative-section-title em {
    font-style: italic;
    font-weight: 200;
    color: var(--amber);
}

.creative-body {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.creative-pillars {
    display: flex;
    gap: 14px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.creative-pillar {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.25em;
    padding: 10px 22px;
    border: 1px solid rgba(240, 160, 48, 0.12);
    color: var(--text-secondary);
    background: rgba(240, 160, 48, 0.03);
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.creative-pillar:hover {
    border-color: rgba(240, 160, 48, 0.3);
    color: var(--text-primary);
    background: rgba(240, 160, 48, 0.06);
}

/* — Creative Portfolio / Masonry Grid — */
.creative-portfolio {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--bg-primary);
}

.creative-portfolio-header {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 70px;
}

.creative-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    grid-auto-rows: 260px;
}

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

.masonry-item.masonry-large {
    grid-column: span 2;
}

.masonry-item.masonry-tall {
    grid-row: span 2;
}

.masonry-item.masonry-wide {
    grid-column: span 2;
}

.masonry-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.masonry-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) brightness(0.65) contrast(1.1);
    transition: all 0.8s var(--ease-out-expo);
    transform: scale(1.02);
}

.masonry-item:hover .masonry-img-wrap img {
    filter: saturate(0.9) brightness(0.85) contrast(1.05);
    transform: scale(1.08);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 15, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-tag {
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 0.35em;
    color: var(--amber);
    margin-bottom: 8px;
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid rgba(240, 160, 48, 0.25);
    background: rgba(240, 160, 48, 0.08);
    width: fit-content;
}

.masonry-overlay h3 {
    font-family: var(--font-display);
    font-size: clamp(14px, 1.6vw, 20px);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-primary);
}

/* — Behance CTA — */
.creative-cta {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.behance-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 42px;
    border: 1px solid rgba(240, 160, 48, 0.2);
    background: rgba(240, 160, 48, 0.03);
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.behance-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 160, 48, 0.08), rgba(255, 106, 0, 0.08));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.behance-link:hover {
    border-color: var(--amber);
    box-shadow: 0 0 40px rgba(240, 160, 48, 0.12), 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.behance-link:hover::before {
    opacity: 1;
}

.behance-link-text {
    position: relative;
    z-index: 1;
}

.behance-arrow {
    position: relative;
    z-index: 1;
    font-size: 20px;
    transition: transform var(--transition-fast);
}

.behance-link:hover .behance-arrow {
    transform: translateX(6px);
}

/* ===========================================
   PODCAST COMING SOON SECTION
   =========================================== */
.podcast-soon {
    position: relative;
    padding: var(--section-pad) 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(240, 160, 48, 0.03), transparent),
        var(--bg-primary);
}

.podcast-coming-soon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.podcast-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(240, 160, 48, 0.15);
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.podcast-placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) brightness(0.6);
    transition: var(--transition-medium);
}

.podcast-image-container:hover .podcast-placeholder-img {
    filter: saturate(0.9) brightness(0.8);
    transform: scale(1.02);
}

.podcast-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 15, 0.4);
}

.coming-soon-badge {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3em;
    padding: 12px 24px;
    border: 1px solid var(--amber);
    color: var(--amber);
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px var(--amber-dim);
}

.podcast-soon-text .about-description {
    font-size: clamp(16px, 1.8vw, 20px);
}

.about-description {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    position: relative;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(240, 160, 48, 0.06);
    z-index: 1;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.footer-logo-img {
    max-width: 220px;
    max-height: 75px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto 16px;
    object-fit: contain;
}

.footer-tagline {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--text-dim);
    text-align: center;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    text-transform: uppercase;
}

.footer-nav a:hover {
    color: var(--amber);
}

.footer-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-dim);
}

.footer-coords {
    color: var(--amber);
    opacity: 0.3;
}

/* ===========================================
   SCROLL REVEAL ANIMATION
   =========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
    .creative-philosophy-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .creative-label-col {
        flex-direction: row;
        align-items: center;
    }

    .creative-label-text {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .creative-portfolio-header {
        flex-direction: column;
        gap: 24px;
    }

    .creative-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
}

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

    .nav-menu-btn {
        display: flex;
    }

    .creative-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .masonry-item.masonry-large,
    .masonry-item.masonry-wide {
        grid-column: span 1;
    }

    .masonry-item.masonry-tall {
        grid-row: span 1;
    }

    .masonry-overlay {
        opacity: 1;
    }

    .hero-content {
        padding: 0 24px;
    }

    .behance-link {
        padding: 14px 28px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .creative-pillars {
        flex-direction: column;
        align-items: flex-start;
    }
}