/* ─── Variables ─────────────────────────────────────────── */
:root {
    --bg:            #07040e;
    --surface:       #0e0a1c;
    --surface-2:     #160f28;
    --purple:        #8b5cf6;
    --purple-mid:    #6d28d9;
    --purple-dark:   #3b0764;
    --purple-glow:   rgba(139, 92, 246, 0.25);
    --purple-dim:    rgba(139, 92, 246, 0.1);
    --text:          #f0ecff;
    --text-muted:    #9b8ec4;
    --text-dim:      #4e4570;
    --border:        rgba(139, 92, 246, 0.14);
    --border-subtle: rgba(240, 236, 255, 0.06);
    --font-sans:     'Inter', system-ui, -apple-system, sans-serif;
    --font-serif:    'Cormorant Garamond', Georgia, serif;
    --ease:          cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


::selection { background: var(--purple); color: #fff; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; font: inherit; color: inherit; cursor: pointer; }

em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--purple);
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple-dark); border-radius: 2px; }

/* ─── Page Transition ───────────────────────────────────── */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--purple-mid);
    z-index: 9000;
    transform-origin: bottom;
    transform: scaleY(1);
    transition: transform 0.75s var(--ease);
    pointer-events: none;
}
.page-transition.out { transform: scaleY(0); }


/* ─── Container ─────────────────────────────────────────── */
.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* ─── Nav ───────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5vw;
    transition: padding 0.4s var(--ease), background 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    padding: 1.25rem 5vw;
    background: rgba(7, 4, 14, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: var(--border);
}
.nav.menu-open { border-color: transparent; background: transparent !important; }

.nav-logo {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    z-index: 160;
    position: relative;
    transition: color 0.2s ease;
}
.nav-logo:hover { color: var(--purple); }

/* Hamburger */
.hamburger {
    z-index: 160;
    position: relative;
    width: 44px; height: 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    padding: 8px;
}
.ham-line {
    display: block;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.45s var(--ease), width 0.3s var(--ease), opacity 0.2s ease;
}
.ham-line:first-child { width: 26px; }
.ham-line:last-child  { width: 18px; }

.hamburger.active .ham-line:first-child {
    width: 22px;
    transform: translateY(4.25px) rotate(45deg);
}
.hamburger.active .ham-line:last-child {
    width: 22px;
    transform: translateY(-4.25px) rotate(-45deg);
}

/* ─── Menu Overlay ──────────────────────────────────────── */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5vw 4rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}
.menu-overlay::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: radial-gradient(ellipse at 50% 100%, rgba(139,92,246,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.menu-nav ul { display: flex; flex-direction: column; gap: 0; }

.menu-nav ul li { overflow: hidden; border-top: 1px solid var(--border-subtle); }
.menu-nav ul li:last-child { border-bottom: 1px solid var(--border-subtle); }

.menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-size: clamp(2.2rem, 5.5vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    transform: translateY(110%);
    transition: transform 0.6s var(--ease), color 0.2s ease;
    transition-delay: calc(var(--i) * 0.07s);
    cursor: pointer;
}
.menu-overlay.open .menu-link { transform: translateY(0); }
.menu-link:hover { color: var(--purple); }
.menu-link.menu-active { color: var(--purple); }
.menu-link::after {
    content: '↗';
    font-size: 0.4em;
    font-weight: 400;
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.menu-link:hover::after { opacity: 1; transform: translate(0, 0); }

.menu-footer {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease 0.4s, transform 0.5s var(--ease) 0.4s;
}
.menu-overlay.open .menu-footer { opacity: 1; transform: translateY(0); }

.menu-socials { display: flex; gap: 2rem; }
.menu-socials a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s ease;
    cursor: pointer;
}
.menu-socials a:hover { color: var(--text); }

.menu-location {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 75svh;
    display: flex;
    align-items: flex-end;
    padding: 0 5vw 5rem;
    overflow: hidden;
}

.hero-grain {
    position: absolute;
    inset: -50%;
    width: 200%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.04;
    animation: grain 10s steps(10) infinite;
    pointer-events: none;
    z-index: 0;
}
/* Purple ambient light behind hero */
.hero::after {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 70%; height: 80%;
    background: radial-gradient(ellipse, rgba(109,40,217,0.18) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.hero::before {
    content: '';
    position: absolute;
    bottom: 0; right: -5%;
    width: 55%; height: 65%;
    background: radial-gradient(ellipse, rgba(139,92,246,0.1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

@keyframes grain {
    0%   { transform: translate(0%,0%); }
    10%  { transform: translate(-5%,-8%); }
    20%  { transform: translate(-12%,5%); }
    30%  { transform: translate(6%,-20%); }
    40%  { transform: translate(-4%,20%); }
    50%  { transform: translate(-14%,8%); }
    60%  { transform: translate(14%,0%); }
    70%  { transform: translate(0%,12%); }
    80%  { transform: translate(4%,28%); }
    90%  { transform: translate(-8%,8%); }
    100% { transform: translate(0%,0%); }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1360px;
}

.hero-eyebrow {
    font-size: clamp(0.65rem, 1vw, 0.875rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(12px);
    animation: heroFadeUp 0.9s var(--ease) 0.2s forwards;
}

.hero-name {
    font-size: clamp(4.5rem, 13vw, 17rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
}
.hero-line {
    display: block;
    overflow: hidden;
}
.hero-line:first-child {
    opacity: 0;
    transform: translateY(100%);
    animation: heroSlideUp 1s var(--ease) 0.35s forwards;
}
.hero-line:last-child {
    opacity: 0;
    transform: translateY(100%);
    animation: heroSlideUp 1s var(--ease) 0.5s forwards;
    /* Purple outline effect on last word */
    -webkit-text-stroke: 2px var(--text);
    color: transparent;
}

.hero-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp 0.9s var(--ease) 0.7s forwards;
}

.hero-location {
    font-size: clamp(0.7rem, 1vw, 0.875rem);
    font-weight: 300;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
}

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

/* Play button */
.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, color 0.3s ease;
    background: rgba(139,92,246,0.04);
}
.play-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--purple);
    transform: translateX(-105%);
    transition: transform 0.45s var(--ease);
}
.play-btn:hover { border-color: var(--purple); }
.play-btn:hover::before { transform: translateX(0); }
.play-btn:hover .play-svg { color: #fff; }

.play-svg {
    width: 11px; height: 11px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}
.play-btn span { position: relative; z-index: 1; }

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem; right: 5vw;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.scroll-line-track {
    width: 1px;
    height: 64px;
    background: rgba(139,92,246,0.15);
    overflow: hidden;
}
.scroll-line-fill {
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, var(--purple));
    animation: scrollFill 2.2s var(--ease) infinite;
}
@keyframes scrollFill {
    0%   { transform: translateY(-100%); opacity: 0; }
    30%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateY(250%); opacity: 0; }
}

/* ─── Marquee strip ─────────────────────────────────────── */
.marquee-strip {
    overflow: hidden;
    background: var(--purple-mid);
    padding: 0.9rem 0;
    border-top: 1px solid rgba(139,92,246,0.3);
    border-bottom: 1px solid rgba(139,92,246,0.3);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marqueeScroll 18s linear infinite;
    width: max-content;
    will-change: transform;
}
.marquee-track span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.marquee-dot {
    font-size: 0.35rem !important;
    opacity: 0.6;
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

/* ─── Sections ──────────────────────────────────────────── */
.section {
    padding: clamp(5rem, 10vw, 10rem) 0;
    border-top: 1px solid var(--border-subtle);
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.section-link {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.2s ease;
    cursor: pointer;
}
.section-link:hover { color: var(--purple); }

/* ─── Work Grid ─────────────────────────────────────────── */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border-subtle);
}

.project-card {
    display: block;
    background: var(--bg);
    overflow: hidden;
    position: relative;
}

.card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

/* Animated gradient video simulators */
.card-bg {
    position: absolute;
    inset: 0;
    background-size: 300% 300%;
    animation: bgFlow 9s ease infinite;
}
.card-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(139,92,246,0.08) 50%, transparent 100%);
    background-size: 200% 200%;
    animation: shimmerDrift 4s linear infinite;
}
.card-bg::after {
    content: '';
    position: absolute;
    width: 60%; height: 60%;
    top: 20%; left: 20%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
    animation: lightFloat 7s ease-in-out infinite;
}

.vs1 { background-image: linear-gradient(-45deg, #120824, #1e0a3c, #08051a, #2a1050); animation-duration: 8s; }
.vs2 { background-image: linear-gradient(-45deg, #1a0810, #300a1e, #08051a, #200830); animation-duration: 11s; }
.vs3 { background-image: linear-gradient(-45deg, #060d1f, #0d1a38, #05080f, #1a2850); animation-duration: 9s; }
.vs4 { background-image: linear-gradient(-45deg, #180a28, #2c1248, #0a0514, #3a1858); animation-duration: 12s; }
.vs5 { background-image: linear-gradient(-45deg, #0e1218, #1a2230, #060810, #243040); animation-duration: 10s; }
.vs6 { background-image: linear-gradient(-45deg, #1a0a0a, #2e1020, #0a0514, #200a28); animation-duration: 7s; }

/* Social page video sims (portrait variants) */
.ss1 { background-image: linear-gradient(-45deg, #120824, #2a1050, #1e0a3c, #08051a); animation-duration: 9s; }
.ss2 { background-image: linear-gradient(-45deg, #200830, #1a0810, #300a1e, #08051a); animation-duration: 12s; }
.ss3 { background-image: linear-gradient(-45deg, #0d1a38, #060d1f, #1a2850, #05080f); animation-duration: 10s; }
.ss4 { background-image: linear-gradient(-45deg, #2c1248, #3a1858, #180a28, #0a0514); animation-duration: 8s; }
.ss5 { background-image: linear-gradient(-45deg, #1a2230, #243040, #0e1218, #060810); animation-duration: 11s; }
.ss6 { background-image: linear-gradient(-45deg, #2e1020, #200a28, #1a0a0a, #0a0514); animation-duration: 9s; }

@keyframes bgFlow {
    0%, 100% { background-position: 0% 50%; }
    33%       { background-position: 100% 0%; }
    66%       { background-position: 50% 100%; }
}
@keyframes shimmerDrift {
    0%   { background-position: 200% 200%; }
    100% { background-position: -200% -200%; }
}
@keyframes lightFloat {
    0%, 100% { transform: translate(0%, 0%) scale(1); }
    25%       { transform: translate(30%, -20%) scale(1.1); }
    50%       { transform: translate(20%, 30%) scale(0.95); }
    75%       { transform: translate(-20%, 10%) scale(1.05); }
}

/* Card hover */
.card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(7,4,14,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.project-card:hover .card-overlay { opacity: 1; }
.project-card:hover .card-bg { animation-duration: calc(var(--dur, 9s) / 2.5); }

.card-cat {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240,236,255,0.8);
    border: 1px solid rgba(139,92,246,0.4);
    padding: 0.3rem 0.75rem;
    background: rgba(139,92,246,0.1);
    backdrop-filter: blur(6px);
}
.card-view {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text);
}

/* Card info bar */
.card-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    border-top: 1px solid var(--border-subtle);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.project-card:hover .card-info {
    background: var(--surface);
    border-color: var(--border);
}

.card-num {
    font-size: 0.65rem;
    color: var(--text-dim);
    font-weight: 400;
    letter-spacing: 0.06em;
}
.card-title {
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}
.project-card:hover .card-title { color: var(--purple); }
.card-sub {
    display: block;
    font-size: 0.62rem;
    font-weight: 400;
    color: var(--text-dim);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 0.35rem;
    opacity: 0.7;
}

/* ─── Process Section ───────────────────────────────────── */
.process-section {
    border-top: 1px solid var(--border-subtle);
}
.process-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: clamp(3rem, 6vw, 6rem);
}
.process-heading {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0.75rem 0 0;
}
.process-heading em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--purple-light);
}
.process-intro {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.75;
    max-width: 480px;
    margin: 0;
    align-self: end;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-subtle);
}
.process-step {
    padding: 2.5rem 2rem 2.5rem 0;
    border-right: 1px solid var(--border-subtle);
    padding-right: 2.5rem;
}
.process-step:last-child { border-right: none; padding-right: 0; }
.process-step:not(:first-child) { padding-left: 2.5rem; }
.process-num {
    display: block;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--purple);
    margin-bottom: 1.5rem;
}
.process-line {
    width: 24px;
    height: 1px;
    background: var(--border-subtle);
    margin-bottom: 1.25rem;
}
.process-name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}
.process-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .process-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-step:nth-child(2) { border-right: none; padding-right: 0; }
    .process-step:nth-child(3) { padding-left: 0; }
    .process-step:nth-child(3), .process-step:nth-child(4) { border-top: 1px solid var(--border-subtle); }
}
@media (max-width: 560px) {
    .process-steps { grid-template-columns: 1fr; }
    .process-step { border-right: none; border-top: 1px solid var(--border-subtle); padding: 2rem 0; }
    .process-step:first-child { border-top: none; }
}

/* ─── Social Teaser ─────────────────────────────────────── */
.social-teaser {
    position: relative;
    padding: clamp(5rem, 9vw, 9rem) 0;
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
}
.social-teaser-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(109,40,217,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.social-teaser-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.social-teaser-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}
.social-teaser-heading {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
}
.social-teaser-heading em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--purple-light);
}
.social-teaser-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    margin: 0;
}
.social-teaser-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    padding: 0.8rem 1.75rem;
    border: 1px solid rgba(139,92,246,0.5);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.social-teaser-btn svg {
    width: 16px; height: 16px;
    transition: transform 0.25s var(--ease);
}
.social-teaser-btn:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}
.social-teaser-btn:hover svg { transform: translateX(4px); }

.social-teaser-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.teaser-card {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 2px;
}
.teaser-card video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.teaser-card:nth-child(2) { transform: translateY(1.5rem); }

@media (max-width: 768px) {
    .social-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
    .social-teaser-preview { max-width: 360px; }
}

/* ─── About Section ─────────────────────────────────────── */
.about-section {
    padding: clamp(5rem, 10vw, 10rem) 0;
    border-top: 1px solid var(--border);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: start;
}

.about-left {
    position: sticky;
    top: 6rem;
}

.about-portrait {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 2px;
    overflow: hidden;
    background: var(--surface);
}

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

.about-portrait-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1025 0%, #0e0a1a 100%);
    color: rgba(255,255,255,0.15);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,4,14,0.4) 0%, transparent 50%);
    pointer-events: none;
}

.about-right {
    padding-top: 0.5rem;
}

.about-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0.75rem 0 2rem;
    color: var(--text);
}

.about-heading em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--purple-light, #c4b5fd);
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.about-body p {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.5rem;
}

.about-stat-num {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about-stat-num span {
    color: var(--purple);
}

.about-stat-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.about-skill {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: rgba(255,255,255,0.55);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.about-skill:hover {
    border-color: var(--purple);
    color: var(--purple-light, #c4b5fd);
}

@media (max-width: 768px) {
    .about-inner {
        grid-template-columns: 1fr;
    }
    .about-left {
        position: static;
    }
    .about-portrait {
        aspect-ratio: 4/3;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* ─── Brands Section ────────────────────────────────────── */
.brands-section {
    padding: clamp(4rem, 7vw, 7rem) 0;
    border-top: 1px solid var(--border-subtle);
    overflow: hidden;
}
.brands-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.brands-ticker-outer {
    overflow: hidden;
    position: relative;
}
.brands-ticker-outer::before,
.brands-ticker-outer::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 12%;
    z-index: 1;
    pointer-events: none;
}
.brands-ticker-outer::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}
.brands-ticker-outer::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.brands-ticker {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: brandScroll 28s linear infinite;
    gap: 0;
}
.brands-ticker:hover { animation-play-state: paused; }

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

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3vw;
    flex-shrink: 0;
}

.brand-logo {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.45;
    transition: opacity 0.3s ease;
    display: block;
}
.brand-item:hover .brand-logo { opacity: 1; }

.brand-fallback {
    display: none;
    font-size: clamp(1rem, 1.6vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.25s ease;
}
.brand-item:hover .brand-fallback { color: var(--text); }

/* ─── About ─────────────────────────────────────────────── */
.about-section { background: var(--surface); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: start;
}

.about-left { padding-top: 0.5rem; }

.about-heading {
    font-size: clamp(2.2rem, 4.5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-top: 2rem;
}
.about-heading em {
    font-size: 1.06em;
    display: inline-block;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-img-placeholder {
    aspect-ratio: 4 / 5;
    background: var(--surface-2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(139,92,246,0.06) 0%, transparent 70%);
}
.about-img-placeholder span {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    position: relative;
}

.about-body { display: flex; flex-direction: column; gap: 1.5rem; }

.about-body p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-muted);
}

.ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 1.75rem;
    border: 1px solid var(--border);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    width: fit-content;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.ghost-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--purple-dim);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease);
}
.ghost-btn:hover { border-color: var(--purple); }
.ghost-btn:hover::before { transform: translateX(0); }
.ghost-btn span { position: relative; z-index: 1; }

/* ─── Services ──────────────────────────────────────────── */
.services-section { padding-top: clamp(4rem, 8vw, 8rem); padding-bottom: clamp(4rem, 8vw, 8rem); }

.services-list {
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-subtle);
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}
.service-row:hover { background: var(--surface); }
.service-row:hover { padding-left: 1.5rem; padding-right: 1.5rem; margin: 0 -1.5rem; }

.service-left {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
}
.service-num {
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    flex-shrink: 0;
}
.service-name {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}
.service-row:hover .service-name { color: var(--purple); }

.service-desc {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
}

.service-arrow {
    font-size: 1.4rem;
    color: var(--text-dim);
    transition: color 0.2s ease, transform 0.2s ease;
}
.service-row:hover .service-arrow {
    color: var(--purple);
    transform: translate(3px, -3px);
}

/* ─── Contact ───────────────────────────────────────────── */
/* ─── Social CTA Section ─────────────────────────────────── */
.social-cta-section {
    padding: clamp(7rem, 13vw, 15rem) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.social-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.social-cta-heading {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin: 0;
}
.social-cta-heading em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--purple-light);
}
.social-cta-body {
    max-width: 480px;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}
.social-cta-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.social-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 2.25rem;
    background: var(--purple);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s var(--ease);
}
.social-cta-btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.social-cta-btn:hover { background: var(--purple-mid); transform: translateY(-2px); }
.social-cta-btn:hover svg { transform: translateX(4px); }
.social-cta-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.social-cta-link:hover { color: var(--text); border-color: var(--purple); }

.contact-section {
    padding: clamp(7rem, 13vw, 15rem) 0;
    position: relative;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    bottom: -20%; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 60%;
    background: radial-gradient(ellipse, rgba(109,40,217,0.2) 0%, transparent 65%);
    pointer-events: none;
}

.contact-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.contact-heading {
    font-size: clamp(3rem, 8vw, 10rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.05em;
}
.contact-heading em { font-size: 1.0em; }

.contact-email {
    font-size: clamp(0.9rem, 1.5vw, 1.25rem);
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.3rem;
    transition: color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}
.contact-email:hover {
    color: var(--purple);
    border-color: var(--purple);
}

.contact-socials { display: flex; gap: 2rem; }
.contact-socials a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}
.contact-socials a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--purple);
    transition: width 0.3s var(--ease);
}
.contact-socials a:hover { color: var(--purple); }
.contact-socials a:hover::after { width: 100%; }

/* ─── Contact Form ──────────────────────────────────────── */
.contact-top {
    max-width: 600px;
    margin-bottom: clamp(3rem, 5vw, 5rem);
    position: relative;
    z-index: 1;
}

.contact-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    margin-top: 1.5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: start;
    position: relative;
    z-index: 1;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.form-input {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
    font-family: inherit;
    font-weight: 300;
    color: var(--text);
    transition: border-color 0.25s ease, background 0.25s ease;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(255,255,255,0.2); }

.form-input:focus {
    border-color: var(--purple);
    background: rgba(139,92,246,0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='1.5'%3E%3Cpath d='M5 7.5l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.form-select option {
    background: #1a1025;
    color: var(--text);
}

.form-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.form-pill {
    font-size: 0.7rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: transparent;
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.form-pill:hover {
    border-color: rgba(139,92,246,0.5);
    color: rgba(255,255,255,0.75);
}

.form-pill.active {
    border-color: var(--purple);
    background: rgba(139,92,246,0.15);
    color: #c4b5fd;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--purple);
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    width: fit-content;
    transition: background 0.25s ease, transform 0.2s ease;
}

.form-submit:hover { background: #7c3aed; }

.form-submit svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
}

/* Calendly sidebar card */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 6rem;
}

.calendly-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
}

.calendly-eyebrow {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 0.75rem;
}

.calendly-heading {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.calendly-heading em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: #c4b5fd;
}

.calendly-sub {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.75rem;
}

.calendly-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 1.5rem;
    border: 1px solid var(--purple);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c4b5fd;
    background: rgba(139,92,246,0.08);
    transition: background 0.25s ease, color 0.25s ease;
    width: 100%;
    justify-content: center;
}

.calendly-btn:hover {
    background: rgba(139,92,246,0.2);
    color: #fff;
}

.calendly-btn svg {
    width: 15px; height: 15px;
    flex-shrink: 0;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-email-link {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.25rem;
    width: fit-content;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.contact-email-link:hover {
    color: var(--purple);
    border-color: var(--purple);
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-sidebar {
        position: static;
    }
    .form-row--2 {
        grid-template-columns: 1fr;
    }
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-subtle);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text-dim);
}

/* ─── Modal ─────────────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.modal.open { opacity: 1; pointer-events: all; }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 1, 8, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-box {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 1100px;
    transform: scale(0.94) translateY(12px);
    transition: transform 0.55s var(--ease);
}
.modal.open .modal-box { transform: scale(1) translateY(0); }

.modal-box--portrait {
    max-width: 420px;
    width: min(90vw, 420px);
}

.modal-close {
    position: absolute;
    top: -3rem; right: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}
.modal-close svg { width: 16px; height: 16px; }
.modal-close:hover { color: var(--text); }

.modal-video {
    aspect-ratio: 16 / 9;
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
}
.modal-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.modal-play-icon { width: 40px; height: 40px; color: var(--purple); margin-bottom: 0.5rem; }
.modal-placeholder p { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.modal-placeholder span { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.06em; }

/* ─── Social Page ───────────────────────────────────────── */
.social-hero {
    position: relative;
    min-height: 55svh;
    display: flex;
    align-items: flex-end;
    padding: 0 5vw 5rem;
    overflow: hidden;
    border-bottom: 1px solid var(--border-subtle);
}
.social-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(109,40,217,0.15) 0%, transparent 65%);
    pointer-events: none;
}
.social-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 8rem;
}
.social-hero-title {
    font-size: clamp(3rem, 8vw, 9rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 1.5rem 0 1.5rem;
}
.social-hero-sub {
    font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
    font-weight: 300;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.7;
}

/* Filter bar */
.filter-bar {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 72px;
    z-index: 50;
    background: rgba(7,4,14,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.filters {
    display: flex;
    gap: 0.5rem;
}
.filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    border: 1px solid transparent;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.filter-btn:hover { color: var(--text); border-color: var(--border); }
.filter-btn.active {
    color: var(--purple);
    border-color: var(--border);
    background: var(--purple-dim);
}

/* ─── Vimeo click-to-play ───────────────────────────────── */
.vimeo-lazy {
    position: relative;
    cursor: pointer;
}
.vimeo-thumb {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.vimeo-play-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7,4,14,0);
    transition: background 0.3s ease;
    z-index: 3;
    cursor: pointer;
}
.social-card:hover .vimeo-play-cover,
.project-card:hover .vimeo-play-cover { background: rgba(7,4,14,0.25); }

.vimeo-play-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(139,92,246,0.75);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.3s ease, transform 0.3s var(--ease), background 0.2s ease;
}
.social-card:hover .vimeo-play-btn,
.project-card:hover .vimeo-play-btn {
    opacity: 1;
    transform: scale(1);
}
.vimeo-play-btn:hover {
    background: var(--purple);
    transform: scale(1.1) !important;
}
.vimeo-play-btn svg {
    width: 16px; height: 16px;
    color: #fff;
    margin-left: 2px;
}
.vimeo-lazy iframe {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: none;
}

/* Social grid (portrait 9:16) */
.social-section { border-top: none; }

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border-subtle);
}

.social-card {
    display: block;
    background: var(--bg);
    overflow: hidden;
    transition: opacity 0.3s ease;
}
.social-card.hidden { opacity: 0.15; pointer-events: none; }

.social-media {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
}

.social-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(to top, rgba(7,4,14,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.social-card:hover .social-overlay { opacity: 1; }

.content-type {
    align-self: flex-end;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240,236,255,0.7);
    border: 1px solid rgba(139,92,246,0.4);
    padding: 0.3rem 0.75rem;
    background: rgba(139,92,246,0.1);
    backdrop-filter: blur(6px);
}

.social-info {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-subtle);
    transition: background 0.3s ease;
}
.social-card:hover .social-info { background: var(--surface); }

.social-title {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
    transition: color 0.2s ease;
}
.social-card:hover .social-title { color: var(--purple); }

.social-client {
    font-size: 0.68rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
}

/* ─── Scroll Reveal ─────────────────────────────────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
    transition-delay: var(--delay, 0s);
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .work-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .services-list .service-row { grid-template-columns: 1fr 1fr; }
    .service-arrow { display: none; }
}

@media (max-width: 700px) {
    .hero { align-items: flex-start; padding-top: 30svh; }
    .hero-bar { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .social-grid { grid-template-columns: 1fr; }
    .services-list .service-row { grid-template-columns: 1fr; gap: 0.75rem; }
    .contact-socials { flex-wrap: wrap; gap: 1.25rem; }
    .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
    .menu-link { font-size: clamp(2rem, 10vw, 4rem); }
}

/* ─── Mobile (phones) ───────────────────────────────────── */
@media (max-width: 480px) {

    /* Global spacing */
    .container { padding: 0 1.25rem; }
    .section { padding: clamp(3.5rem, 10vw, 5rem) 0; }

    /* Work card numbers — nudge left */
    .card-num { margin-left: -2px; }

    /* Hero */
    .hero-name { font-size: clamp(3.5rem, 18vw, 6rem); }
    .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.12em; }
    .hero-location { font-size: 0.7rem; }

    /* Work grid — 1 column, taller cards */
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .card-media { aspect-ratio: 16 / 10; }

    /* Section headers */
    .section-header { margin-bottom: 2rem; }

    /* Social teaser */
    .social-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .social-teaser-preview {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 4px;
    }
    .teaser-card:nth-child(2) { transform: translateY(0.75rem); }
    .social-teaser-heading { font-size: clamp(2rem, 10vw, 3rem); }

    /* Process */
    .process-steps { grid-template-columns: 1fr; gap: 0; }
    .process-step { padding: 1.75rem 0; border-right: none; border-top: 1px solid var(--border-subtle); }
    .process-step:first-child { border-top: none; }
    .process-heading { font-size: clamp(1.8rem, 9vw, 2.5rem); }

    /* About */
    .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-left { position: static; }
    .about-portrait { aspect-ratio: 4 / 3; }
    .about-heading { font-size: clamp(1.8rem, 9vw, 2.5rem); }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .about-stat:last-child:nth-child(odd) { grid-column: 1 / -1; }
    .about-skills { gap: 0.4rem; }
    .about-skill { font-size: 0.65rem; padding: 0.4rem 0.85rem; }

    /* Contact */
    .contact-heading { font-size: clamp(2.5rem, 14vw, 4rem); line-height: 0.95; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .contact-sidebar { position: static; }
    .form-row--2 { grid-template-columns: 1fr; gap: 1.25rem; }
    .form-pills { gap: 0.4rem; }
    .form-pill { font-size: 0.65rem; padding: 0.45rem 0.9rem; }
    .form-submit { width: 100%; justify-content: center; }
    .calendly-btn { width: 100%; justify-content: center; }
    .contact-top { margin-bottom: 2.5rem; }

    /* Modals — centered on phone */
    .modal {
        align-items: center;
        padding: 1.25rem;
    }
    .modal-box {
        width: 100%;
        max-width: 100%;
        max-height: 90svh;
        overflow-y: auto;
        border-radius: 10px;
        padding: 1.25rem;
    }
    .modal-box--portrait {
        max-width: 100%;
        width: 100%;
    }
    .modal-video { border-radius: 6px; overflow: hidden; }
    .modal-close {
        position: absolute;
        top: -2.5rem;
        right: 0;
    }

    /* Brands ticker — slightly tighter logos */
    .brand-logo { height: 22px; }
    .brand-item { padding: 0 1.25rem; }

    /* Social page grid */
    .social-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

    /* Footer */
    .footer-inner { flex-direction: column; gap: 0.4rem; text-align: center; font-size: 0.7rem; }
}
