:root {
    --bg: #f5f4f0;
    --bg-white: #ffffff;
    --ink: #0d0d0d;
    --ink-muted: #6b6b6b;
    --ink-light: #a8a8a8;
    --accent: #e63329;
    --accent-warm: #f5a623;
    --border: rgba(13,13,13,0.1);
    --border-strong: rgba(13,13,13,0.25);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --max-w: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    cursor: none;
    overflow-x: hidden;
}

/* ── Custom Cursor ── */
.cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--ink);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}
.cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.18s var(--ease-expo);
    opacity: 0.6;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 56px; height: 56px; opacity: 1;
}

/* ── Noise Overlay ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9000;
}

/* ── Grid lines ── */
.grid-lines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: 0 2rem;
}
.grid-lines span {
    border-left: 1px solid rgba(13,13,13,0.035);
}
.grid-lines span:last-child { border-right: 1px solid rgba(13,13,13,0.035); }

/* ── Container ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }

/* ── NAV ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(245, 244, 240, 0.88);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--ink);
    display: flex; align-items: center; gap: 6px;
}
.logo-star {
    color: var(--accent);
    display: inline-block;
    animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--ease-expo);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg-white);
    background: var(--ink);
    border: none;
    padding: 0.55rem 1.4rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-expo);
    display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-2px); }

/* ── Hamburger ── */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: all 0.3s var(--ease-expo); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-strong);
    z-index: 99;
    padding: 2rem;
    transform: translateY(-120%);
    transition: transform 0.5s var(--ease-expo);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.mobile-nav a {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--ink);
    text-decoration: none;
    display: block;
    transition: color 0.3s, transform 0.3s;
}
.mobile-nav a:hover { color: var(--accent); transform: translateX(8px); }

/* ── HERO ── */
#home {
    min-height: 100svh;
    background: var(--bg-white);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding-top: 72px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Animated BG rings */
.hero-rings {
    position: absolute;
    top: 50%; left: 60%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(13,13,13,0.06);
    animation: ring-pulse 6s ease-in-out infinite;
}
.ring:nth-child(1) { width: 300px; height: 300px; margin: -150px; animation-delay: 0s; }
.ring:nth-child(2) { width: 500px; height: 500px; margin: -250px; animation-delay: 0.8s; }
.ring:nth-child(3) { width: 720px; height: 720px; margin: -360px; animation-delay: 1.6s; }
.ring:nth-child(4) { width: 960px; height: 960px; margin: -480px; animation-delay: 2.4s; }
@keyframes ring-pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%,-50%) scale(1); }
    50% { opacity: 0.1; transform: translate(-50%,-50%) scale(1.04); }
}

/* Floating ticker */
.hero-ticker {
    position: absolute;
    top: 120px; right: -20px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--ink-light);
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    animation: ticker-float 4s ease-in-out infinite;
}
@keyframes ticker-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-content { padding: 4rem 0 6rem; }

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    opacity: 0; transform: translateY(20px);
    animation: reveal 0.8s var(--ease-expo) forwards 0.1s;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: var(--accent);
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 10.5rem);
    line-height: 0.92;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}
.hero-h1 .line {
    display: block;
    overflow: hidden;
}
.hero-h1 .line-inner {
    display: block;
    opacity: 0;
    transform: translateY(110%);
    animation: line-reveal 1s var(--ease-expo) forwards;
}
.hero-h1 .line:nth-child(1) .line-inner { animation-delay: 0.25s; }
.hero-h1 .line:nth-child(2) .line-inner { animation-delay: 0.38s; }
.hero-h1 .line:nth-child(3) .line-inner { animation-delay: 0.51s; }

@keyframes line-reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

.hero-h1 .accent-word { color: var(--accent); }

.hero-sub-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    opacity: 0; transform: translateY(20px);
    animation: reveal 0.9s var(--ease-expo) forwards 0.7s;
}
.hero-sub-row p {
    font-size: 1.1rem;
    color: var(--ink-muted);
    max-width: 480px;
    line-height: 1.7;
}
.hero-stats {
    display: flex; gap: 3rem; flex-shrink: 0;
}
.hero-stat-n {
    font-family: var(--font-display);
    font-size: 2.8rem;
    letter-spacing: 0.02em;
    display: block;
    line-height: 1;
}
.hero-stat-l {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── Marquee ── */
.marquee-strip {
    background: var(--ink);
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 28s linear infinite;
}
.marquee-item {
    flex-shrink: 0;
    padding: 0 2.5rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    display: flex; align-items: center; gap: 2.5rem;
}
.marquee-item span.dot { color: var(--accent); font-size: 1.2rem; }
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── Section base ── */
section { padding: 8rem 0; border-bottom: 1px solid var(--border); overflow: hidden; }

/* ── Section label ── */
.section-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-light);
    margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 1rem;
}
.section-label::after {
    content: '';
    display: block; flex: 1;
    height: 1px;
    background: var(--border);
}
.section-h {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 5rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
}
.section-head { margin-bottom: 5rem; }

/* ── Reveal animations ── */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Staggered children */
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }
.stagger > *:nth-child(1) { --i: 1; }
.stagger > *:nth-child(2) { --i: 2; }
.stagger > *:nth-child(3) { --i: 3; }
.stagger > *:nth-child(4) { --i: 4; }
.stagger > *:nth-child(5) { --i: 5; }
.stagger > *:nth-child(6) { --i: 6; }

/* ── WORK section ── */
#work { background: var(--bg); }

.filter-bar {
    display: flex; gap: 0.4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}
.filter-btn {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
    background: transparent;
    border: 1px solid var(--border-strong);
    padding: 0.5rem 1.3rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-expo);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2px;
}
.p-card {
    position: relative; overflow: hidden;
    background: #e8e7e3;
    display: none;
}
.p-card.show { display: block; animation: card-in 0.6s var(--ease-expo) both; }
@keyframes card-in { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

.p-card.span-8 { grid-column: span 8; }
.p-card.span-4 { grid-column: span 4; }

.p-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: auto;
    transition: transform 1.4s var(--ease-expo), filter 0.4s;
    filter: grayscale(15%);
}
.p-card:hover img { transform: scale(1.06); filter: grayscale(0%); }

.p-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.75) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}
.p-card:hover .p-card-overlay { opacity: 1; }
.p-card-title { font-family: var(--font-display); font-size: 1.6rem; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; transform: translateY(12px); transition: transform 0.4s var(--ease-expo); }
.p-card-tag { font-family: var(--font-mono); font-size: 0.65rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em; transform: translateY(12px); transition: transform 0.4s var(--ease-expo) 0.05s; }
.p-card:hover .p-card-title, .p-card:hover .p-card-tag { transform: translateY(0); }

.p-card-img { width: 100%; display: block; }
.p-card.span-8 .p-card-img { aspect-ratio: 8/5; }
.p-card.span-4 .p-card-img { aspect-ratio: 4/5; }

/* ── PRICING ── */
#pricing { background: var(--bg-white); }

.pricing-split {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}
.pricing-blurb p {
    font-size: 1.05rem;
    color: var(--ink-muted);
    line-height: 1.75;
}
.pricing-note {
    margin-top: 2rem;
    padding: 1.2rem;
    border-left: 2px solid var(--accent);
    background: rgba(230,51,41,0.04);
}
.pricing-note p {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rate-table {
    border: 1px solid var(--border);
    overflow: hidden;
}
.rate-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding: 1.6rem 2rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-white);
    gap: 2rem;
    transition: padding-left 0.4s var(--ease-expo), background 0.3s;
    position: relative;
}
.rate-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--accent);
    transition: width 0.4s var(--ease-expo);
}
.rate-row:hover { padding-left: 2.8rem; background: rgba(245,244,240,0.8); }
.rate-row:hover::before { width: 3px; }
.rate-row:last-child { border-bottom: none; }

.rate-name {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.rate-scope {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
}
.rate-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    letter-spacing: 0.02em;
    text-align: right;
    white-space: nowrap;
}

/* ── PROFILE ── */
#profile { background: var(--ink); color: #fff; border-bottom-color: rgba(255,255,255,0.08); }

#profile .section-label { color: rgba(255,255,255,0.3); }
#profile .section-label::after { background: rgba(255,255,255,0.08); }
#profile .section-h { color: #fff; }

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
    align-items: start;
}

.profile-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.profile-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    margin-top: 4rem;
}
.profile-num-cell {
    background: var(--ink);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
}
.profile-num-cell:hover { background: #1a1a1a; }
.profile-num-n {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.profile-num-l {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.profile-img-wrap {
    position: relative;
}
.profile-img-wrap img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(30%);
    display: block;
    transition: filter 0.6s;
}
.profile-img-wrap:hover img { filter: grayscale(0%); }
.profile-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.profile-img-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.profile-img-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── SERVICES ── */
#services { background: var(--bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.svc-cell {
    background: var(--bg);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
}
.svc-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}
.svc-cell:hover { background: transparent; }
.svc-cell:hover::before { opacity: 1; }
.svc-cell > * { position: relative; z-index: 1; }

.svc-num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--ink-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: block;
    transition: color 0.3s;
}
.svc-cell:hover .svc-num { color: rgba(255,255,255,0.5); }

.svc-title {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    line-height: 1;
    color: var(--ink);
    transition: color 0.3s;
}
.svc-cell:hover .svc-title { color: #fff; }

.svc-desc {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.7;
    transition: color 0.3s;
}
.svc-cell:hover .svc-desc { color: rgba(255,255,255,0.75); }

.svc-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.8rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-light);
    transition: all 0.3s var(--ease-expo);
}
.svc-cell:hover .svc-arrow { color: #fff; gap: 1rem; }
.svc-arrow-icon { font-size: 0.8rem; }

/* ── CONTACT ── */
#contact { background: var(--bg-white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}
.contact-intro p {
    font-size: 1.1rem;
    color: var(--ink-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: rgba(230,51,41,0.06);
    border: 1px solid rgba(230,51,41,0.2);
    padding: 0.4rem 0.9rem;
}
.contact-badge::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Studio channels */
.studio-channels {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 3rem;
}
.studio-channel {
    background: var(--bg-white);
    padding: 1.6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background 0.3s, padding-left 0.4s var(--ease-expo);
    position: relative;
}
.studio-channel::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 0;
    background: var(--accent);
    transition: width 0.4s var(--ease-expo);
}
.studio-channel:hover { background: rgba(245,244,240,0.8); padding-left: 2.6rem; }
.studio-channel:hover::before { width: 3px; }
.channel-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--ink-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 0.25rem;
}
.channel-value {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.3s;
}
.channel-value:hover { color: var(--accent); }
.channel-arrow { font-size: 1rem; color: var(--ink-light); transition: transform 0.3s var(--ease-expo), color 0.3s; }
.studio-channel:hover .channel-arrow { transform: translate(4px,-4px); color: var(--accent); }

/* Designer cards grid */
.designers-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.designers-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--border-strong); }

.designer-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.designer-card {
    background: var(--bg-white);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
}
.designer-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: var(--ink);
    transition: height 0.5s var(--ease-expo);
}
.designer-card:hover { background: var(--bg); }
.designer-card:hover::after { height: 3px; }

.designer-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 2px solid var(--border);
    transition: border-color 0.3s;
    position: relative;
}
.designer-card:hover .designer-avatar { border-color: var(--accent); }
.designer-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: filter 0.4s;
}
.designer-card:hover .designer-avatar img { filter: grayscale(0%); }

.designer-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink);
    display: block;
    margin-bottom: 0.2rem;
}
.designer-role {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-light);
    display: block;
    margin-bottom: 1rem;
}
.designer-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--ink-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    word-break: break-all;
}
.designer-email:hover { color: var(--accent); }
.designer-email-icon { font-size: 0.8rem; flex-shrink: 0; color: var(--accent); }
.designer-specs {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.designer-tag {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 0.2rem 0.6rem;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    padding: 3rem 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}
.footer-logo span { color: var(--accent); }
.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.footer-links a {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ── Scroll progress bar ── */
.progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: var(--accent);
    width: 0%;
    z-index: 200;
    transition: width 0.1s linear;
}

/* ── Back to top ── */
.back-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 44px; height: 44px;
    background: var(--ink);
    color: #fff;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    z-index: 50;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s var(--ease-expo), background 0.3s;
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--accent); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .pricing-split { grid-template-columns: 1fr; gap: 3rem; }
    .profile-grid { grid-template-columns: 1fr; gap: 4rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .rate-row { grid-template-columns: 1fr auto; }
    .rate-scope { display: none; }
    .hero-rings { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; }

    section { padding: 5rem 0; }
    .hero-content { padding: 2rem 0 4rem; }
    .hero-stats { gap: 2rem; }
    .hero-sub-row { flex-direction: column; align-items: flex-start; }

    .portfolio-grid { grid-template-columns: 1fr; gap: 1px; }
    .p-card.span-8, .p-card.span-4 { grid-column: span 1; }
    .p-card.span-8 .p-card-img { aspect-ratio: 16/10; }
    .p-card.span-4 .p-card-img { aspect-ratio: 16/10; }

    .services-grid { grid-template-columns: 1fr; }
    .designer-cards { grid-template-columns: 1fr; }
    .profile-numbers { grid-template-columns: repeat(2, 1fr); }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .footer-links { display: none; }

    .rate-row { padding: 1.2rem 1.2rem; }
    .rate-price { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .section-h { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .profile-numbers { grid-template-columns: 1fr; }
}