/**
 * tokens.css — Design Tokens
 *
 * Single source of truth for all visual properties:
 * palette, typography, spacing (8px grid), radii,
 * shadows, layout, motion, transitions.
 *
 * Colour theory: Pure black & white monochrome palette.
 * High-contrast ink-on-surface for maximum clarity.
 * WCAG AA verified.
 *
 * Note: Font @imports have been moved to HTML <link> tags for
 * async loading (CSS @import is render-blocking and sequential).
 */

/* ── Light Theme (default) ─────────────── */
:root {
    /* Palette — pure black & white */
    --color-ink:         #111111;
    --color-ink-light:   #444444;
    --color-ink-muted:   #888888;
    --color-surface:     #e9eaea;
    --color-surface-alt: #f5f5f5;
    --color-surface-glass: rgba(255, 255, 255, 0.55);
    --color-glass-border: rgba(255, 255, 255, 0.45);
    --color-glass-highlight: rgba(255, 255, 255, 0.7);
    --glass-blur:        16px;
    --glass-blur-heavy:  24px;
    --color-border:      #e0e0e0;
    --color-accent:      #111111;
    --color-accent-light: rgba(17, 17, 17, 0.08);
    --color-dark-bg:     #000000;
    --color-dark-surface: #1a1a1a;

    /* Typography */
    --font-heading:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-highlight: 'High Empathy', cursive;

    /* Type Scale — 6 sizes */
    --fs-xs:      0.75rem;
    --fs-sm:      0.875rem;
    --fs-base:    1rem;
    --fs-md:      1.25rem;
    --fs-lg:      clamp(1.75rem, 4vw, 3.5rem);
    --fs-display: clamp(2.5rem, 7vw, 6rem);

    /* Spacing — generous whitespace (8px grid, trend: Resonant Stark) */
    --sp-1:  0.5rem;    /*   8 */
    --sp-2:  1rem;      /*  16 */
    --sp-3:  1.5rem;    /*  24 */
    --sp-4:  2rem;      /*  32 */
    --sp-5:  3rem;      /*  48 */
    --sp-6:  4.5rem;    /*  72 */
    --sp-7:  7rem;      /* 112 */
    --sp-8:  10rem;     /* 160 */
    --sp-9:  13rem;     /* 208 */

    /* Radii — soft, rounded (trend: Frosted Touch) */
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;
    --radius-full: 9999px;

    /* Shadows — layered, soft (trend: Light Skeuomorphism) */
    --shadow-sm:   0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
    --shadow-md:   0 4px 12px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.03);
    --shadow-lg:   0 8px 30px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.03);
    --shadow-xl:   0 16px 48px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 40px rgba(0, 0, 0, 0.04);

    /* Layout */
    --max-w:         1600px;
    --max-w-narrow:  760px;
    --header-h:      80px;

    /* Motion — smooth, intentional */
    --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft:  cubic-bezier(0.45, 0, 0.55, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur-fast:   0.2s;
    --dur-med:    0.4s;
    --dur-slow:   0.7s;
    --dur-slower: 1s;
}
/**
 * reset.css — Global CSS Reset
 *
 * Removes browser default styles for a consistent baseline.
 * Applied before all other stylesheets.
 */

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

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

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

ul { list-style: none; }

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

::selection {
    background-color: var(--color-accent);
    color: var(--color-surface);
}
/**
 * base.css — Base Element Styles
 *
 * Foundation styles for html, body, and layout primitives
 * (container, skip-link). No component-specific rules here.
 */

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-ink);
    background-color: var(--color-surface);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Container ─────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-5);
}

/* ── Skip Link (Accessibility) ─────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--sp-3);
    background: var(--color-ink);
    color: var(--color-surface);
    padding: var(--sp-1) var(--sp-2);
    font-size: var(--fs-sm);
    z-index: 1100;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 0; }

/* ── Shared Section Styles ─────────────── */
.section-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 400;
    letter-spacing: 0.18em;
    color: var(--color-accent);
    margin-bottom: var(--sp-3);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}
.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: var(--sp-6);
    color: var(--color-ink);
}
.section-title strong {
    font-weight: 400;
}

/* ── Smooth theme transitions on key elements ── */
body,
.header,
.approach-item,
.work-item,
.contact-form,
.footer,
.mobile-nav,
.about-image,
.section-title,
.proof-strip,
.client-trust,
.vision,
.btn-vision,
.btn { transition: var(--theme-transition); }
/**
 * buttons.css — Simplified Button System
 *
 * Two types only for maximum clarity:
 * - Black button (primary actions)
 * - White button (actions on dark backgrounds)
 */

/* ═══════════════════════════════════════
   BUTTON SYSTEM — BLACK & WHITE ONLY
   ═══════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-full);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease-out),
                transform var(--dur-med) var(--ease-out),
                box-shadow var(--dur-med) var(--ease-out),
                color var(--dur-fast) var(--ease-out);
    position: relative;
}

.btn:focus-visible {
    outline: 2px solid var(--color-ink);
    outline-offset: 2px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ── BLACK BUTTON — Primary Actions ── */
.btn-primary {
    background: var(--color-ink);
    color: var(--color-surface);
}
.btn-primary:hover {
    background: var(--color-ink-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* ── WHITE BUTTON — Actions on Dark Backgrounds ── */
.btn-inverse {
    background: #fff;
    color: #111111;
}
.btn-inverse:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}
.btn-inverse:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ═══════════════════════════════════════
   SIZE VARIANTS
   ═══════════════════════════════════════ */

.btn-sm {
    padding: 0.6rem 1.6rem;
    font-size: var(--fs-xs);
    letter-spacing: 0.06em;
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: var(--fs-sm);
}

/* Full-width variant (for forms) */
.btn-full {
    display: flex;
    width: 100%;
}

/* ═══════════════════════════════════════
   UTILITY COMPONENTS
   ═══════════════════════════════════════ */

/* ── Status Badge (e.g., "Available for projects") ── */
.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--fs-xs);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-ink-muted);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* ── Link Button with Arrow (e.g., "View all →") ── */
.link-arrow {
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-ink-muted);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-1);
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--dur-med) var(--ease-out);
}
.link-arrow::after {
    content: '\2192';
    font-size: var(--fs-base);
    transition: transform var(--dur-med) var(--ease-out);
}
.link-arrow:hover {
    color: var(--color-ink);
    border-color: var(--color-ink);
    gap: var(--sp-2);
}
.link-arrow:hover::after {
    transform: translateX(3px);
}

/* ═══════════════════════════════════════
   LEGACY SUPPORT (backward compatibility)
   ═══════════════════════════════════════ */

/* Map all deprecated variants to black button */
.btn-secondary,
.btn-tertiary,
.btn-glass,
.btn-outline {
    background: var(--color-ink);
    color: var(--color-surface);
}
.btn-secondary:hover,
.btn-tertiary:hover,
.btn-glass:hover,
.btn-outline:hover {
    background: var(--color-ink-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Legacy icon animation */
.btn-glass .icon {
    transition: transform var(--dur-fast);
}
.btn-glass:hover .icon {
    transform: rotate(90deg);
}

/* Legacy: .btn-vision → black button */
.btn-vision {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--color-surface);
    background: var(--color-ink);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.6rem;
    text-decoration: none;
    letter-spacing: 0;
    text-transform: none;
    border: none;
    cursor: pointer;
    transition: all var(--dur-med) var(--ease-out);
}
.btn-vision:hover {
    background: var(--color-ink-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-vision span {
    transition: transform var(--dur-fast);
}
.btn-vision:hover span {
    transform: rotate(90deg);
}

/* Legacy: .submit-btn → white button */
.submit-btn {
    display: block;
    width: 100%;
    background: #fff;
    color: #111111;
    padding: 1rem 2.2rem;
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: background var(--dur-med), transform var(--dur-fast), box-shadow var(--dur-med);
}
.submit-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}
.submit-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Legacy: .cta-button → black button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-ink);
    color: var(--color-surface);
    padding: 1rem 2.75rem;
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--dur-med), transform var(--dur-fast), box-shadow var(--dur-med);
}
.cta-button:hover {
    background: var(--color-ink-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.cta-button:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Legacy: .view-all-link */
.view-all-link {
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-ink-muted);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-1);
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--dur-med) var(--ease-out);
}
.view-all-link::after {
    content: '\2192';
    font-size: var(--fs-base);
    transition: transform var(--dur-med) var(--ease-out);
}
.view-all-link:hover {
    color: var(--color-ink);
    border-color: var(--color-ink);
    gap: var(--sp-2);
}
.view-all-link:hover::after {
    transform: translateX(3px);
}
/**
 * header.css — Site Header & Navigation
 */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: var(--color-surface);
    z-index: 999;
    transition: box-shadow var(--dur-med) var(--ease-out);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo — High Empathy, handwritten feel */
.logo a {
    font-family: var(--font-highlight);
    font-size: var(--fs-lg);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    transition: opacity var(--dur-fast) var(--ease-out);
}
.logo a:hover { opacity: 0.5; }

/* Desktop Nav */
.nav {
    margin-left: auto;
}

.nav ul {
    display: flex;
    gap: var(--sp-5);
    align-items: center;
}

.nav a {
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-ink-muted);
    transition: color var(--dur-fast) var(--ease-out);
}
.nav a:hover,
.nav a.active {
    color: var(--color-ink);
}

/* Button in nav */
.nav .btn {
    margin-left: 0.5rem;
}

/* Hamburger — mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--sp-1);
    z-index: 1001;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--dur-fast) var(--ease-out);
}
.mobile-menu-toggle:hover {
    background: var(--color-accent-light);
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-ink);
    border-radius: 2px;
    transition: transform var(--dur-med) var(--ease-out),
                opacity var(--dur-fast) var(--ease-out);
    transform-origin: center;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/**
 * hero.css — Hero Section
 *
 * Full-viewport, type-driven hero with expressive headline
 * and fluid visual on the right. Two-column grid layout
 * collapses to single column on mobile.
 */

.hero {
    min-height: max(100vh, 560px);
    min-height: max(100dvh, 560px);

    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--header-h) + var(--sp-7));
    padding-bottom: var(--sp-7);
    position: relative;
    background: var(--color-surface);
}

/* ── Hero background image ── */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
    mix-blend-mode: multiply;
    user-select: none;
    pointer-events: none;
    will-change: transform;
    transform-origin: 65% 50%;
    animation: heroBgFloat 18s ease-in-out infinite;
}

@keyframes heroBgFloat {
    0%   { transform: scale(1)    translateX(0)    rotate(0deg);    }
    12%  { transform: scale(1.12) translateX(2%)   rotate(0.6deg);  }
    25%  { transform: scale(1.03) translateX(-1%)  rotate(1deg);    }
    37%  { transform: scale(1.18) translateX(3%)   rotate(-0.3deg); }
    50%  { transform: scale(1.06) translateX(-2%)  rotate(-0.5deg); }
    62%  { transform: scale(1.15) translateX(1%)   rotate(0.4deg);  }
    75%  { transform: scale(1.02) translateX(-1%)  rotate(0.8deg);  }
    87%  { transform: scale(1.14) translateX(2%)   rotate(-0.2deg); }
    100% { transform: scale(1)    translateX(0)    rotate(0deg);    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg img {
        animation: none;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* ── Eyebrow — small, muted, sets context ── */
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 400;
    letter-spacing: 0.14em;
    color: var(--color-ink-muted);
    margin-bottom: var(--sp-5);
}

/* ── Title — bold, confident, Inter ── */
.hero-title {
    font-family: var(--font-heading);
    font-size: var(--fs-display);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--color-ink);
    max-width: 850px;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

/* Highlight word — High Empathy script accent */
.hero-title .highlight {
    font-family: var(--font-highlight);
    font-weight: 400;
    font-style: italic;
    color: var(--color-ink);
    letter-spacing: 0.01em;
    display: inline;
    position: relative;
}

/* ── Subline — supporting text below title ── */
.hero-subline {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: var(--color-ink-light);
    max-width: 540px;
    margin-top: var(--sp-4);
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

/* ── Hero footer — CTA + status on one row ── */
.hero-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--sp-5);
    margin-top: var(--sp-7);
    margin-left: 0;
    margin-right: auto;
    flex-wrap: wrap;
    max-width: 100%;
}

/* Personal status strip */
.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--color-ink-muted);
    letter-spacing: 0.04em;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 1.1rem 2.8rem;
}
.hero-status .badge-dot {
    width: 7px;
    height: 7px;
}

/* ── Scroll indicator — subtle animated line ── */
.hero::after {
    content: '';
    position: absolute;
    bottom: var(--sp-5);
    left: var(--sp-5);
    transform: none;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--color-border), transparent);
    border-radius: 2px;
    animation: scrollPulse 2.8s var(--ease-soft) infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.15; transform: scaleY(0.35); }
    50%      { opacity: 0.6;  transform: scaleY(1); }
}

/* ── Hero background — tablet ── */
@media (max-width: 1024px) {
    .hero-bg img {
        object-fit: cover;
        object-position: center center;
        transform-origin: center center;
        opacity: 0.6;
    }
}

/* ── Hero background — mobile ── */
@media (max-width: 768px) {
    .hero-bg img {
        object-fit: cover;
        object-position: center center;
        transform-origin: center center;
        animation-duration: 22s;
        opacity: 0.6;
    }
}

@media (max-width: 480px) {
    .hero-bg img {
        object-position: center 40%;
        transform-origin: center 40%;
    }
}
/**
 * marquee.css — "Now" Ticker & Client Trust
 *
 * Personal status ticker (replaces generic service marquee).
 * Inline client list (replaces scrolling logo bar).
 */

/* ── Now Ticker ──── */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: var(--sp-3) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: transparent;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    animation: marquee-scroll 35s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--color-ink-muted);
    flex-shrink: 0;
}

/* First "Currently" word is medium weight */
.marquee-item:first-child {
    font-weight: 400;
    letter-spacing: 0.04em;
    font-size: var(--fs-xs);
    color: var(--color-ink);
}

.marquee-sep {
    color: var(--color-accent);
    font-size: var(--fs-sm);
    flex-shrink: 0;
    opacity: 0.4;
}

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

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

/* ── Client Trust — stats strip ── */
.client-trust {
    padding: var(--sp-7) 0;
    background: var(--color-surface-alt);
    text-align: left;
}

.client-line {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--color-ink-muted);
    letter-spacing: 0.01em;
    line-height: 1.8;
}

.client-line span {
    font-weight: 400;
    color: var(--color-ink-light);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}
/**
 * about.css — About Section
 *
 * Asymmetric two-column layout (trend: Dynamic Layouts).
 * Portrait image with glassmorphism caption overlay on hover.
 */

.about {
    padding: var(--sp-9) 0;
    background: var(--color-surface-alt);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: var(--sp-7);
    align-items: center;
}

/* Portrait wrapper */
.about-image {
    position: relative;
    overflow: visible;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    filter: grayscale(10%);
    transition: filter var(--dur-slow) var(--ease-out),
                transform var(--dur-slow) var(--ease-out);
}
.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Caption overlay on portrait — reveals on hover */
.about-image::before {
    content: 'Creative Designer';
    position: absolute;
    bottom: var(--sp-3);
    left: var(--sp-3);
    right: var(--sp-3);
    z-index: 2;
    font-size: var(--fs-xs);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #fff;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
    pointer-events: none;
}
.about-image:hover::before {
    opacity: 1;
    transform: translateY(0);
}

/* Text column */
.about-text {
    padding-top: var(--sp-4);
}
.about-text p {
    font-size: var(--fs-base);
    line-height: 1.9;
    color: var(--color-ink-light);
    max-width: 680px;
}
.about-text p + p {
    margin-top: var(--sp-3);
}
/**
 * stats.css — Proof Strip
 *
 * Clean credibility band. Single-line statement.
 * Numbers animate via JS.
 */

.proof-strip {
    padding: var(--sp-7) 0;
    background: transparent;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.proof-line {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    letter-spacing: -0.035em;
    color: var(--color-ink);
    text-align: left;
    line-height: 1.1;
}

.proof-number {
    font-weight: 400;
    color: var(--color-ink);
    font-variant-numeric: tabular-nums;
}
/**
 * skills.css — Approach Section
 *
 * Minimal 2x2 grid without icons.
 * Clean, understated, readable.
 */

.approach {
    padding: var(--sp-9) 0;
    background: var(--color-surface);
    color: var(--color-ink);
    position: relative;
}

/* ── 2x2 Grid ── */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6) var(--sp-7);
}

/* ── Individual service item ── */
.approach-item {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

/* Service title */
.approach-item h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--color-ink);
}

/* Service tags/keywords — subtle */
.approach-tag {
    display: block;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-ink-muted);
    margin-bottom: var(--sp-1);
}

/* Description text */
.approach-item p {
    font-size: var(--fs-base);
    line-height: 1.75;
    color: var(--color-ink-light);
    margin: 0;
}
/**
 * vision.css — Vision / Philosophy Section (Kanso-inspired)
 *
 * Large bold statement typography, clean white background,
 * minimal CTA button. Confidence through scale.
 */

.vision {
    padding: var(--sp-9) 0 var(--sp-8) 0;
    background: var(--color-surface);
    position: relative;
    overflow: hidden;
}

/* ── Card wrapper (clean, no glass) ── */
.vision-glass {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: var(--sp-7) 0;
    box-shadow: none;
    max-width: none;
}

/* ── Large Statement Headline (Kanso-inspired) ── */
.vision-statement {
    font-family: var(--font-heading);
    font-size: var(--fs-display);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--color-ink);
    max-width: 1000px;
    margin-bottom: var(--sp-4);
}

.vision-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.7;
    font-weight: 400;
    color: var(--color-ink-muted);
    max-width: 580px;
    margin-bottom: var(--sp-5);
}

/* Minimal CTA (Kanso "Let's talk +" style) */
.btn-vision {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--color-ink);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.6rem;
    transition: background var(--dur-med), transform var(--dur-fast),
                box-shadow var(--dur-med), border-color var(--dur-med);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0;
    text-transform: none;
}
.btn-vision:hover {
    background: rgba(255,255,255,0.75);
    border-color: rgba(0,0,0,0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06),
                inset 0 1px 0 0 rgba(255,255,255,0.5);
}
.btn-vision span {
    font-weight: 400;
    transition: transform var(--dur-fast);
}
.btn-vision:hover span {
    transform: rotate(90deg);
}
/**
 * work.css — Featured Work Grid & Work Page
 *
 * Large immersive image cards with glassmorphism overlays.
 * Borderless, generous radius, editorial layout.
 */

/* ── Featured Work Section ── */
.featured-work {
    padding: var(--sp-9) 0;
    background: var(--color-dark-bg);
    color: var(--color-surface);
}

.featured-work .section-title {
    color: var(--color-surface);
}
.featured-work .work-title {
    color: var(--color-surface);
}
.featured-work .work-item:hover .work-title {
    color: var(--color-surface);
}
.featured-work .work-category {
    color: rgba(255, 255, 255, 0.5);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--sp-6);
}
.section-header .section-title {
    margin-bottom: 0;
}

/* ── Work Grid ───────────────────────── */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: var(--sp-5);
}

/* Homepage — 3 columns, aligned with container */
.featured-work .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--sp-4);
}

/* Individual card */
.work-item {
    cursor: pointer;
    position: relative;
    transition: transform var(--dur-med) var(--ease-out);
}
.work-item:hover {
    transform: translateY(-4px);
}

/* ── Image container — borderless, immersive ── */
.work-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: box-shadow var(--dur-med) var(--ease-out),
                transform var(--dur-med) var(--ease-out);
}

/* Make the whole image area clickable while keeping badges/CTAs above it */
.work-image .work-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    background: transparent;
    text-decoration: none;
}

/* Multiple scope capsules (group) */
.work-badges {
    position: absolute;
    bottom: var(--sp-3);
    left: var(--sp-3);
    right: auto;
    z-index: 3;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
    pointer-events: auto;
}
.work-badges .work-badge {
    position: static;
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    font-size: var(--fs-xs);
}
.work-item:hover .work-image {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

/* Image fills the card */
.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--dur-slow) var(--ease-out);
}
.work-item:hover .work-image img {
    transform: scale(1.04);
}

/* Bottom gradient overlay for depth */
.work-image::after {
    content: '';
    position: absolute;
    inset: 50% 0 0 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    pointer-events: none;
    z-index: 1;
    transition: opacity var(--dur-med) var(--ease-out);
}

/* ── Category pill — badge on image ── */
.work-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--fs-xs);
    font-weight: 400;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 0.45rem 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: background var(--dur-fast) var(--ease-out),
                border-color var(--dur-fast) var(--ease-out);
}
.work-item:hover .work-badge {
    background: rgba(0, 0, 0, 0.75);
    border-color: rgba(255, 255, 255, 0.32);
}

/* ── Text below image ── */
.work-info {
    padding: var(--sp-2) var(--sp-1) var(--sp-2) var(--sp-1);
}

.work-title {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--color-ink);
    line-height: 1.35;
    transition: color var(--dur-fast);
}
.work-item:hover .work-title {
    color: var(--color-accent);
}

.work-category {
    font-size: var(--fs-xs);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-ink-muted);
    margin-top: 0.3rem;
}


/* Homepage — aspect ratio override */
.featured-work .work-image {
    aspect-ratio: 3 / 4;
}

/* ── Work Page — Hero ──────────────────── */
.work-hero {
    min-height: max(55vh, 380px);
    min-height: max(55dvh, 380px);
  
    padding: calc(var(--header-h) + var(--sp-7)) 0 var(--sp-6) 0;
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
}

/* Animated background — mirrors main hero */
.work-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.work-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% center;
    mix-blend-mode: multiply;
    user-select: none;
    pointer-events: none;
    will-change: transform;
    transform-origin: 50% 50%;
    animation: heroBgFloat 18s ease-in-out infinite;
    opacity: 0.45;
    border-radius: var(--radius-lg);
}
@media (prefers-reduced-motion: reduce) {
    .work-hero-bg img { animation: none; }
}

.work-hero .container {
    position: relative;
    z-index: 1;
}

.work-hero .hero-eyebrow {
    margin-bottom: var(--sp-3);
}

.page-title {
    font-family: var(--font-heading);
    font-size: var(--fs-display);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: var(--sp-3);
}
.page-title strong {
    font-weight: 400;
}
.page-title .highlight {
    font-family: var(--font-highlight);
    font-weight: 400;
    font-style: italic;
    color: var(--color-ink);
    letter-spacing: 0.01em;
}
.page-subtitle {
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: #aaa;
    max-width: 1400px;
    margin-bottom: 0;
}

/* Work hero footer — status badge */
.work-hero-footer {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    margin-top: var(--sp-5);
}

/* ── Category Filter Pills ─────────────── */
.work-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--sp-6);
    flex-wrap: wrap;
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid var(--color-border);
}
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: var(--color-ink-muted);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 0.55rem 1.4rem;
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease-out),
                color var(--dur-fast) var(--ease-out),
                border-color var(--dur-fast) var(--ease-out),
                transform var(--dur-med) var(--ease-out);
}
.filter-pill:hover {
    color: var(--color-ink);
    border-color: var(--color-ink-muted);
    transform: translateY(-1px);
}
.filter-pill.active {
    color: var(--color-surface);
    background: var(--color-ink);
    border-color: var(--color-ink);
}

/* Filtered item animation */
.work-item[data-category] {
    transition: opacity var(--dur-med) var(--ease-out),
                transform var(--dur-med) var(--ease-out);
}
.work-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* Work gallery grid — aligned with container */
.work-gallery {
    padding: var(--sp-6) 0 var(--sp-8) 0;
    background: var(--color-dark-bg);
    color: var(--color-surface);
}
.work-gallery .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--sp-5);
}

/* Gallery on dark bg — text overrides */
.work-gallery .work-title {
    color: var(--color-surface);
}
.work-gallery .work-item:hover .work-title {
    color: var(--color-surface);
}
.work-gallery .work-category {
    color: rgba(255, 255, 255, 0.6);
}
.work-gallery .filter-pill {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}
.work-gallery .filter-pill:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.35);
}
.work-gallery .filter-pill.active {
    color: var(--color-dark-bg);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}
.work-gallery .work-filter {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* CTA section on work page */
.cta-section {
    padding: var(--sp-9) 0;
    background: var(--color-dark-bg);
    color: var(--color-surface);
}
.cta-eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--sp-4);
}
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: var(--sp-3);
}
.cta-section h2 strong {
    font-weight: 400;
}
.cta-section h2 .highlight {
    font-family: var(--font-highlight);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.01em;
}
.cta-description {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.45);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: var(--sp-5);
}
.cta-actions {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-wrap: wrap;
}
.cta-section .btn-primary {
    background: #fff;
    color: var(--color-dark-bg);
}
.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}
.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
}
/**
 * casestudy.css - Case Study Page
 * Clean minimalistic design on black background
 * Inter font only, no all caps
 */

/* ---- PAGE ---- */
.cs-page {
    background: #000;
    color: #fff;
}

/* ---- HERO ---- */
.cs-hero {
    padding-top: calc(var(--header-h) + var(--sp-8));
    padding-bottom: var(--sp-8);
}

.cs-back {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
    text-decoration: none;
    margin-bottom: var(--sp-6);
    transition: color 0.2s ease;
}
.cs-back:hover {
    color: #fff;
}

.cs-title {
    font-family: var(--font-heading);
    font-size: var(--fs-display);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: var(--sp-3);
}

.cs-intro {
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: #aaa;
    max-width: 1400px;
    margin-bottom: var(--sp-7);
}

.cs-meta {
    display: flex;
    gap: var(--sp-7);
    flex-wrap: wrap;
    padding-top: var(--sp-6);
    border-top: 1px solid #222;
}

.cs-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cs-meta-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
}

.cs-meta-value {
    font-size: 0.95rem;
    font-weight: 400;
    color: #fff;
}

/* ---- IMAGES ---- */
.cs-image {
    padding: var(--sp-6) 0;
    border-radius: var(--radius-lg);
}

.cs-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.cs-image-full {
    padding: var(--sp-8) 0;
}

.cs-image-full img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
    border-radius: var(--radius-lg);
}

.cs-grid img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- VIDEOS ---- */
.cs-video {
    padding: var(--sp-6) 0;
}

.cs-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    background: #000;
    object-fit: cover;
}

.cs-video-full {
    padding: var(--sp-8) 0;
}

.cs-video-full video {
    width: 100%;
    border-radius: var(--radius-lg);
    background: #000;
}

.cs-credit {
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
    margin-top: var(--sp-2);
    text-align: right;
}

/* ---- SECTIONS ---- */
.cs-section {
    padding: var(--sp-8) 0;
}

.cs-content {
    max-width: 800px;
}

.cs-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.3vw, 1.5rem);
    font-weight: 400;
    color: #666;
    margin-bottom: var(--sp-4);
    letter-spacing: -0.01em;
}

.cs-text {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    font-weight: 400;
    line-height: 1.75;
    color: #ccc;
    margin-bottom: var(--sp-3);
    max-width: 700px;
}

.cs-text:last-child {
    margin-bottom: 0;
}

.cs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--sp-3) 0;
    max-width: 700px;
}

.cs-list li {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    font-weight: 400;
    line-height: 1.75;
    color: #ccc;
    padding-left: 1.2em;
    position: relative;
    margin-bottom: 0.5em;
}

.cs-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #666;
}

/* ---- METRICS ---- */
.cs-metrics {
    padding: var(--sp-8) 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.cs-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.cs-metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cs-metric-num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
}

.cs-metric-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}

/* ---- SEE ALSO ---- */
.cs-see-also {
    padding: var(--sp-8) 0;
    border-top: 1px solid #222;
}

.cs-see-also .cs-heading {
    margin-bottom: var(--sp-5);
}

.cs-see-also-card {
    display: flex;
    align-items: center;
    gap: var(--sp-5);
    text-decoration: none;
    color: inherit;
    padding: var(--sp-4);
    border-radius: var(--radius-lg);
    border: 1px solid #222;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cs-see-also-card:hover {
    border-color: #444;
    background: rgba(255, 255, 255, 0.03);
}

.cs-see-also-image {
    flex-shrink: 0;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cs-see-also-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.cs-see-also-info {
    flex: 1;
    min-width: 0;
}

.cs-see-also-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.cs-see-also-meta {
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
}

.cs-see-also-arrow {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #666;
    transition: color 0.2s ease, transform 0.2s ease;
}

.cs-see-also-card:hover .cs-see-also-arrow {
    color: #fff;
    transform: translate(2px, -2px);
}

/* ---- FOOTER ---- */
.cs-footer {
    padding: var(--sp-8) 0 var(--sp-9) 0;
}

.cs-footer-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cs-footer-link:hover {
    color: #fff;
}
/**
 * contact.css — Contact Section & Form
 *
 * Minimal editorial form on dark background.
 * No glass card — direct, confident, accessible.
 */

.contact {
    padding: var(--sp-9) 0;
    background: var(--color-dark-bg);
    color: var(--color-surface);
    position: relative;
}

.contact .section-title {
    text-align: left;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin-bottom: var(--sp-3);
    letter-spacing: -0.03em;
}
.contact .section-title strong {
    font-weight: 400;
}

/* Helper text with email fallback */
.contact-helper {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.4);
    margin-bottom: var(--sp-6);
    max-width: 800px;
    line-height: 1.6;
}
.contact-helper a {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(255,255,255,0.2);
    transition: color var(--dur-fast) var(--ease-out),
                text-decoration-color var(--dur-fast) var(--ease-out);
}
.contact-helper a:hover {
    color: #fff;
    text-decoration-color: rgba(255,255,255,0.5);
}

/* Form — no card, breathes on background */
.contact-form {
    max-width: 800px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.form-group {
    margin-bottom: var(--sp-4);
}

.form-group label {
    display: block;
    margin-bottom: var(--sp-2);
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(255,255,255,0.5);
}

/* Input & textarea base */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.06);
    transition: border-color var(--dur-fast) var(--ease-out),
                box-shadow var(--dur-med) var(--ease-out),
                background var(--dur-fast) var(--ease-out);
}

/* Focus state — accent ring */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
    opacity: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    border-radius: var(--radius-lg);
}

/* ── Form Success Message ──────────────── */
.form-success {
    background: #fff;
    color: var(--color-dark-bg);
    padding: var(--sp-2) var(--sp-3);
    margin-top: var(--sp-3);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: var(--fs-sm);
    display: none;
}
.form-success.show {
    display: block;
    animation: slideUp var(--dur-med) var(--ease-out);
}

/* ── Form Error Message ────────────────── */
.form-error {
    background: #e74c3c;
    color: #fff;
    padding: var(--sp-2) var(--sp-3);
    margin-top: var(--sp-3);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: var(--fs-sm);
    display: none;
}
.form-error.show {
    display: block;
    animation: slideUp var(--dur-med) var(--ease-out);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
/**
 * footer.css — Site Footer
 *
 * Framer-inspired footer with glassmorphism CTA panel,
 * 3-column layout (brand / nav / social), copyright bar.
 */

.footer {
    background: var(--color-dark-surface);
    color: var(--color-surface);
    padding: 0 0 var(--sp-5) 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── CTA Panel ── */
.footer-cta {
    text-align: left;
    padding: var(--sp-9) var(--sp-5) var(--sp-7) var(--sp-5);
    margin: 0 var(--sp-4);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}
.footer-cta-title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 0 var(--sp-5) 0;
}
.footer-cta-title strong { font-weight: 400; }

.footer-cta .btn-primary {
    background: #fff;
    color: var(--color-dark-bg);
}
.footer-cta .btn-primary:hover {
    background: rgba(255,255,255,0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.1);
}

/* ── 3-Column Content Row ──────────────── */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-5) 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.footer-logo {
    font-family: var(--font-highlight);
    font-size: var(--fs-lg);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(255,255,255,0.9);
}
.footer-tagline {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
}

/* Nav links */
.footer-nav ul {
    display: flex;
    gap: var(--sp-4);
}
.footer-nav a {
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.4);
    transition: color var(--dur-fast) var(--ease-out);
}
.footer-nav a:hover { color: rgba(255,255,255,0.95); }

/* Social icon circles */
.footer-social {
    display: flex;
    gap: var(--sp-2);
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.08);
    transition: color var(--dur-fast) var(--ease-out),
                background var(--dur-fast) var(--ease-out),
                border-color var(--dur-fast) var(--ease-out),
                transform var(--dur-med) var(--ease-out);
}
.footer-social a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Copyright */
.footer-copyright {
    text-align: left;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.2);
    padding-top: var(--sp-4);
    letter-spacing: 0.04em;
}

/* Colophon — craft detail */
.colophon {
    margin-top: 0.35rem;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.12);
    font-style: italic;
    letter-spacing: 0.02em;
}
/**
 * background_fx.css — Hero Animated Background
 *
 * Bold gradient animation with high-contrast monochrome blobs.
 * Five oversized radial gradients with different movement patterns
 * (vertical, circular, horizontal) create a dynamic, living backdrop.
 * Inspired by Aceternity UI + Portfolite Framer.
 *
 * Performance: GPU-composited, respects prefers-reduced-motion.
 */

/* ── Container ── */
.bg-fx {
    --bg-size: 90%;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: min(120vh, 1060px);
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        #dcdede 0%,
        #e3e4e4 40%,
        #e9eaea 100%
    );
}

/* Fade-out into page surface */
.bg-fx::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 38vh;
    background: linear-gradient(to bottom, transparent, var(--color-surface) 90%);
    z-index: 3;
}

/* ── SVG noise filter (hidden) ── */
.bg-noise-filter {
    display: none;
}

/* ── Noise overlay ── */
.bg-noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.14;
    filter: url(#noiseFilter);
    mix-blend-mode: soft-light;
    width: 100%;
    height: 100%;
}

/* ── Gradient circles — shared base (disabled) ── */
.bg-gradient,
.bg-interactive {
    display: none;
}



body {
    position: relative;
}

header,
main,
footer {
    position: relative;
    z-index: 1;
}

.hero {
    background: transparent;
}

/* ── Animations ──────────────────────────
   Faster cycles + scale pulsing for visible movement
─────────────────────────────────────────── */

@keyframes moveVertical {
    0%   { transform: translateY(-50%) scale(1);    }
    25%  { transform: translateY(-10%) scale(1.1);  }
    50%  { transform: translateY(50%) scale(1);     }
    75%  { transform: translateY(10%) scale(0.95);  }
    100% { transform: translateY(-50%) scale(1);    }
}

@keyframes moveInCircle {
    0%   { transform: rotate(0deg) scale(1);    }
    25%  { transform: rotate(90deg) scale(1.08); }
    50%  { transform: rotate(180deg) scale(1);   }
    75%  { transform: rotate(270deg) scale(0.95);}
    100% { transform: rotate(360deg) scale(1);   }
}

@keyframes moveHorizontal {
    0%   { transform: translateX(-50%) translateY(-10%) scale(1);    }
    25%  { transform: translateX(0%) translateY(5%) scale(1.1);      }
    50%  { transform: translateX(50%) translateY(10%) scale(1);      }
    75%  { transform: translateX(0%) translateY(-5%) scale(0.95);    }
    100% { transform: translateX(-50%) translateY(-10%) scale(1);    }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .bg-gradient,
    .bg-interactive {
        animation: none;
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .bg-fx {
        --bg-size: 120%;
        height: min(105vh, 820px);
    }
    .bg-fx::after {
        height: 32vh;
    }
    .bg-gradient {
        filter: blur(40px);
    }
    .bg-interactive {
        display: none;
    }
}
/**
 * animations.css — Scroll Reveal Animations + View Transitions
 *
 * IntersectionObserver-driven reveal transitions.
 * Staggered children for approach items and work items.
 * Classes are applied by js/modules/animations.js.
 *
 * View Transitions API: smooth crossfade between page navigations.
 * Progressive enhancement — silently ignored in unsupported browsers.
 */

/* ── View Transitions — smooth page crossfade ── */
@view-transition {
    navigation: auto;
}
::view-transition-old(root) { animation: 120ms ease-out page-fade-out; }
::view-transition-new(root) { animation: 180ms ease-in  page-fade-in;  }
@keyframes page-fade-out { from { opacity: 1; } to { opacity: 0; } }
@keyframes page-fade-in  { from { opacity: 0; } to { opacity: 1; } }

/* ── Fade-in from below ────────────────── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--dur-slower) var(--ease-out),
                transform var(--dur-slower) var(--ease-out);
}
.animate-on-scroll.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ── Staggered children — approach items and work items ── */
.animate-children .approach-item,
.animate-children .work-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--dur-slow) var(--ease-out),
                transform var(--dur-slow) var(--ease-out);
}
.animate-children.fade-in .approach-item,
.animate-children.fade-in .work-item {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays (up to 6 children) */
.animate-children.fade-in .approach-item:nth-child(1),
.animate-children.fade-in .work-item:nth-child(1) { transition-delay: 0.08s; }
.animate-children.fade-in .approach-item:nth-child(2),
.animate-children.fade-in .work-item:nth-child(2) { transition-delay: 0.16s; }
.animate-children.fade-in .approach-item:nth-child(3),
.animate-children.fade-in .work-item:nth-child(3) { transition-delay: 0.24s; }
.animate-children.fade-in .approach-item:nth-child(4),
.animate-children.fade-in .work-item:nth-child(4) { transition-delay: 0.32s; }
.animate-children.fade-in .approach-item:nth-child(5),
.animate-children.fade-in .work-item:nth-child(5) { transition-delay: 0.40s; }
.animate-children.fade-in .approach-item:nth-child(6),
.animate-children.fade-in .work-item:nth-child(6) { transition-delay: 0.48s; }

/* ── Reduced motion — disable animations ── */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .animate-children .approach-item,
    .animate-children .work-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/**
 * responsive.css — Responsive Breakpoints
 *
 * Progressive enhancement: desktop-first with graceful
 * degradation to tablet (1024px), mobile (768px), and
 * small phone (480px) viewports.
 */

/* ── Tablet Landscape (≤ 1024px) ───────── */
@media (max-width: 1024px) {
    .container { padding: 0 var(--sp-4); }

    /* ─ Hero — tighter spacing for tablet ─ */
    .hero {
        min-height: max(100vh, 500px);
        padding-top: calc(var(--header-h) + var(--sp-5));
        padding-bottom: var(--sp-5);
    }
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        max-width: 700px;
    }
    .hero-subline {
        font-size: clamp(1rem, 2vw, 1.2rem);
        max-width: 480px;
    }
    .hero-footer {
        gap: var(--sp-4);
        margin-top: var(--sp-5);
    }
    .hero-status {
        padding: 0.9rem 2.2rem;
    }

    /* Work hero — tighter on tablet */
    .work-hero {
        min-height: max(50vh, 360px);
        padding-top: calc(var(--header-h) + var(--sp-5));
    }
    .work-hero-bg img { opacity: 0.35; }

    /* Work — 2-col on tablet */
    .featured-work .work-grid { grid-template-columns: repeat(2, 1fr); }
    .work-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
    .work-gallery .work-grid { grid-template-columns: repeat(2, 1fr); }

    /* CTA — tighter on tablet */
    .cta-section { padding: var(--sp-8) 0; }
    .cta-actions { gap: var(--sp-2); }

    /* Case study — tablet */
    .cs-hero { padding-top: calc(var(--header-h) + var(--sp-7)); }
    .cs-section { padding: var(--sp-7) 0; }
    .cs-metrics { padding: var(--sp-7) 0; }
    .cs-image { padding: var(--sp-5) 0; }
    .cs-image-full { padding: var(--sp-7) 0; }
    .cs-video { padding: var(--sp-5) 0; }
    .cs-video-full { padding: var(--sp-7) 0; }

    /* About — tighter gap */
    .about-content { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }

    /* Sections — reduce vertical padding */
    .about, .approach, .vision { padding: var(--sp-8) 0; }
    .featured-work, .contact { padding: var(--sp-8) 0; }

    /* Footer CTA — tighter */
    .footer-cta { padding: var(--sp-7) var(--sp-4) var(--sp-6) var(--sp-4); }
}

/* ── Tablet Portrait & Mobile (≤ 768px) ── */
@media (max-width: 768px) {
    :root { --header-h: 70px; }

    .container { padding: 0 var(--sp-3); }

    /* ─ Mobile nav ─ */
    .mobile-menu-toggle { display: flex; }
    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--color-surface);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--dur-med) var(--ease-out);
        border-bottom: 1px solid var(--color-border);
    }
    /* allow nav to expand to viewport height minus header when active */
    .nav.active { max-height: calc(100vh - var(--header-h)); overflow: auto; }
    /* lock body scroll when nav is open */
    body.nav-open { overflow: hidden; }
    .nav ul {
        flex-direction: column;
        padding: var(--sp-3);
        gap: 0;
    }
    .nav li { width: 100%; }
    .nav a {
        display: block;
        padding: var(--sp-2) var(--sp-2);
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }
    .nav a::after { display: none; }
    .nav .btn {
        text-align: center;
        margin-top: var(--sp-2);
        width: 100%;
    }
    /* ─ Hero ─ */
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-h) + var(--sp-5));
        padding-bottom: var(--sp-5);
    }
    .hero-title { max-width: 100%; line-height: 1.12; }
    .hero-subline {
        max-width: 100%;
        font-size: clamp(0.95rem, 3.5vw, 1.15rem);
    }
    .hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-3);
        margin-top: var(--sp-5);
    }
    .hero-footer .btn { width: 100%; justify-content: center; }
    .hero-status {
        padding: 0.85rem 1.8rem;
        font-size: var(--fs-xs);
        width: 100%;
        justify-content: center;
    }
    .hero::after { display: none; }

    /* ─ Proof strip ─ */
    .proof-line {
        font-size: clamp(1.1rem, 4vw, 1.75rem);
        line-height: 1.35;
    }

    /* ─ About — single column ─ */
    .about { padding: var(--sp-7) 0; }
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--sp-4);
    }
    .about-image { max-width: 360px; }

    /* ─ Approach — single column ─ */
    .approach { padding: var(--sp-7) 0; }
    .approach-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-5);
    }

    /* ─ Work hero — mobile ─ */
    .work-hero {
        min-height: auto;
        padding-top: calc(var(--header-h) + var(--sp-5));
        padding-bottom: var(--sp-4);
    }
    .work-hero-bg img { opacity: 0.3; }
    .page-title { font-size: clamp(2rem, 8vw, 3rem); }
    .page-subtitle { max-width: 100%; }
    .work-hero-footer { margin-top: var(--sp-3); }

    /* ─ Filter pills — scrollable ─ */
    .work-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 0.4rem;
        margin-bottom: var(--sp-4);
        padding-bottom: var(--sp-1);
        -webkit-overflow-scrolling: touch;
    }
    .filter-pill {
        flex-shrink: 0;
        font-size: var(--fs-xs);
        padding: 0.45rem 1rem;
    }

    /* ─ Work — single column ─ */
    .featured-work { padding: var(--sp-7) 0; }
    .featured-work .work-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .work-gallery .work-grid { grid-template-columns: 1fr; }

    /* Badges pinned to bottom-left on mobile, stacked vertically */
    .work-image .work-badges,
    .work-gallery .work-image .work-badges {
        position: absolute;
        top: auto;
        bottom: var(--sp-3);
        left: var(--sp-3);
        right: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        z-index: 4;
    }


    /* ─ CTA — mobile ─ */
    .cta-section { padding: var(--sp-7) 0; }
    .cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-actions .btn { width: 100%; justify-content: center; }

    /* ─ Vision — tighter ─ */
    .vision { padding: var(--sp-7) 0 var(--sp-6) 0; }
    .vision-glass {
        padding: var(--sp-4) 0;
    }
    .vision-statement { font-size: clamp(2rem, 7vw, 3.5rem); }

    /* ─ Contact — tighter ─ */
    .contact { padding: var(--sp-7) 0; }
    .contact-form { max-width: 100%; }

    /* ─ Section header ─ */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-2);
    }
    .section-header .btn { width: auto; }

    /* ─ Case study — mobile ─ */
    .cs-hero { padding-top: calc(var(--header-h) + var(--sp-6)); padding-bottom: var(--sp-6); }
    .cs-title { font-size: clamp(2rem, 8vw, 3rem); }
    .cs-intro { font-size: 1.05rem; }
    .cs-meta { gap: var(--sp-5); flex-direction: column; }

    .cs-section { padding: var(--sp-6) 0; }
    .cs-heading { font-size: 1.1rem; }
    .cs-text { font-size: 1rem; }

    .cs-image { padding: var(--sp-4) 0; }
    .cs-image-full { padding: var(--sp-6) 0; }
    .cs-video { padding: var(--sp-4) 0; }
    .cs-video-full { padding: var(--sp-6) 0; }
    .cs-grid { grid-template-columns: 1fr; gap: var(--sp-2); }

    .cs-metrics { padding: var(--sp-6) 0; }
    .cs-metrics-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-5);
    }

    .cs-footer { padding: var(--sp-6) 0 var(--sp-7) 0; }

    .cs-see-also { padding: var(--sp-6) 0; }
    .cs-see-also-card {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-3);
    }
    .cs-see-also-image { width: 100%; }
    .cs-see-also-arrow { display: none; }

    /* ─ Footer ─ */
    .footer-cta {
        padding: var(--sp-6) var(--sp-3);
        margin: 0;
    }
    .footer-content {
        flex-direction: column;
        gap: var(--sp-4);
        text-align: center;
    }
    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--sp-3);
    }
    .footer-social {
        justify-content: center;
    }
    .footer-social a {
        width: 44px;
        height: 44px;
    }
    .footer-copyright { text-align: center; }
}

/* ── Small Phones (≤ 480px) ────────────── */
@media (max-width: 480px) {
    .container { padding: 0 var(--sp-2); }

    /* Tighter section spacing */
    .about, .approach, .featured-work, .contact, .cta-section {
        padding: var(--sp-6) 0;
    }
    .vision { padding: var(--sp-6) 0 var(--sp-5) 0; }

    /* Approach items */
    .approach-grid { gap: var(--sp-4); }
    .approach-item h3 { font-size: var(--fs-base); }

    /* Proof strip */
    .proof-line {
        font-size: clamp(1rem, 3.8vw, 1.4rem);
        line-height: 1.4;
    }

    /* Footer */
    .footer-cta {
        padding: var(--sp-5) var(--sp-2);
    }
    .footer-cta-title { font-size: clamp(1.5rem, 5vw, 2rem); }
    .vision-glass { padding: var(--sp-3) 0; }
    .client-line { font-size: var(--fs-sm); }

    /* Hero subline */
    .hero-subline { margin-top: var(--sp-3); }

    /* Case study — small phone */
    .cs-hero { padding-top: calc(var(--header-h) + var(--sp-5)); padding-bottom: var(--sp-5); }
    .cs-title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
    .cs-meta { gap: var(--sp-4); }
    .cs-section { padding: var(--sp-5) 0; }
    .cs-metrics { padding: var(--sp-5) 0; }
    .cs-metrics-grid { gap: var(--sp-4); }
    .cs-footer { padding: var(--sp-5) 0 var(--sp-6) 0; }
}
/**
 * dark_mode.css — Dark Mode Component Overrides
 *
 * Targeted overrides for components that need more than
 * token swaps to look correct in dark mode.
 * Tokens themselves are in tokens.css (via [data-theme="dark"]).
 */

/* Header — dark */
[data-theme="dark"] .header {
    background: var(--color-dark-bg);
    border-bottom-color: rgba(255,255,255,0.04);
}

/* Mobile nav — dark background */
[data-theme="dark"] .nav {
    background: var(--color-dark-bg);
}
[data-theme="dark"] .nav a {
    border-bottom-color: rgba(255,255,255,0.04);
}

/* CTA button — nav uses standard buttons now */
[data-theme="dark"] .nav .btn-primary {
    background: var(--color-surface);
    color: var(--color-dark-bg);
}
[data-theme="dark"] .nav .btn-primary:hover {
    background: rgba(236, 236, 236, 0.85);
}

/* Hero — subtle glow */
[data-theme="dark"] .hero {
    background: var(--color-surface);
}
[data-theme="dark"] .hero::after {
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
}
[data-theme="dark"] .hero-eyebrow {
    color: var(--color-ink-muted);
}
[data-theme="dark"] .hero-bg img {
    mix-blend-mode: screen;
    filter: invert(1);
    opacity: 0.8;
}

/* Background FX — dark mode */
[data-theme="dark"] .bg-fx {
    background: linear-gradient(
        145deg,
        #000 0%,
        #000 40%,
        #000 100%
    );
}
[data-theme="dark"] .bg-gradient {
    mix-blend-mode: screen;
}
[data-theme="dark"] .bg-gradient-1 {
    background: radial-gradient(circle at center, rgba(80,80,80,1) 0%, rgba(80,80,80,0) 50%);
}
[data-theme="dark"] .bg-gradient-2 {
    background: radial-gradient(circle at center, rgba(100,100,100,1) 0%, rgba(100,100,100,0) 50%);
}
[data-theme="dark"] .bg-gradient-3 {
    background: radial-gradient(circle at center, rgba(65,65,65,1) 0%, rgba(65,65,65,0) 50%);
}
[data-theme="dark"] .bg-gradient-4 {
    background: radial-gradient(circle at center, rgba(90,90,90,1) 0%, rgba(90,90,90,0) 50%);
}
[data-theme="dark"] .bg-gradient-5 {
    background: radial-gradient(circle at center, rgba(55,55,55,1) 0%, rgba(55,55,55,0) 50%);
}
[data-theme="dark"] .bg-interactive {
    background: radial-gradient(circle at center, rgba(75,75,75,0.9) 0%, rgba(75,75,75,0) 50%);
    mix-blend-mode: screen;
}
[data-theme="dark"] .bg-fx::after {
    background: linear-gradient(to bottom, transparent, var(--color-surface) 90%);
}
[data-theme="dark"] .bg-noise {
    opacity: 0.15;
    mix-blend-mode: screen;
}

/* Buttons — black button inverts to white in dark mode */
[data-theme="dark"] .btn-primary {
    background: var(--color-surface);
    color: var(--color-dark-bg);
}
[data-theme="dark"] .btn-primary:hover {
    background: rgba(236, 236, 236, 0.85);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

/* White button stays white in dark mode */
[data-theme="dark"] .btn-inverse {
    background: #fff;
    color: #111111;
}
[data-theme="dark"] .btn-inverse:hover {
    background: rgba(255, 255, 255, 0.85);
}

/* Legacy button overrides */
[data-theme="dark"] .btn-secondary,
[data-theme="dark"] .btn-tertiary,
[data-theme="dark"] .btn-glass,
[data-theme="dark"] .btn-outline {
    background: var(--color-surface);
    color: var(--color-dark-bg);
}
[data-theme="dark"] .btn-secondary:hover,
[data-theme="dark"] .btn-tertiary:hover,
[data-theme="dark"] .btn-glass:hover,
[data-theme="dark"] .btn-outline:hover {
    background: rgba(236, 236, 236, 0.85);
}

/* Proof strip — dark glass */
[data-theme="dark"] .proof-strip {
    background: rgba(30,30,30,0.55);
    border-top-color: rgba(255,255,255,0.06);
    border-bottom-color: rgba(255,255,255,0.06);
    box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.06);
}

/* Approach — dark variant */
[data-theme="dark"] .approach {
    background: var(--color-surface);
}

/* Marquee — dark glass */
[data-theme="dark"] .marquee {
    background: rgba(30,30,30,0.55);
    border-top-color: rgba(255,255,255,0.06);
    border-bottom-color: rgba(255,255,255,0.06);
}

/* Hero status — dark glass pill */
[data-theme="dark"] .hero-status {
    background: rgba(30,30,30,0.55);
    border-color: rgba(255,255,255,0.08);
    border-top-color: rgba(255,255,255,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3),
                inset 0 1px 0 0 rgba(255,255,255,0.06);
}

/* Vision — dark mode adjustments */
[data-theme="dark"] .vision {
    background: var(--color-surface);
}
[data-theme="dark"] .vision-glass {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

/* Featured work — dark mode */
[data-theme="dark"] .featured-work {
    background: var(--color-dark-bg);\n}
[data-theme="dark"] .work-image {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .work-item:hover .work-image {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
[data-theme="dark"] .work-badge {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}
/* Client trust — dark variant */
[data-theme="dark"] .client-trust {
    background: var(--color-surface-alt);
}

/* Contact — always dark, no theme overrides needed */
[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
    color: var(--color-ink-muted);
    opacity: 0.5;
}

/* View all link — border adjust */
[data-theme="dark"] .view-all-link {
    border-color: rgba(255,255,255,0.12);
}
[data-theme="dark"] .view-all-link:hover {
    border-color: rgba(255,255,255,0.5);
}

/* Footer */
[data-theme="dark"] .footer {
    background: var(--color-dark-surface);
    border-top-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .footer-content {
    border-bottom-color: rgba(255,255,255,0.04);
}

/* Form states */
[data-theme="dark"] .form-success {
    background: var(--color-accent);
    color: var(--color-dark-bg);
}
[data-theme="dark"] .form-error {
    background: #c0392b;
    color: #fff;
}

/* Selection */
[data-theme="dark"] ::selection {
    background-color: var(--color-accent);
    color: var(--color-dark-bg);
}

/* Work hero */
[data-theme="dark"] .work-hero {
    background: #000;
}
[data-theme="dark"] .work-hero-bg img {
    mix-blend-mode: screen;
    filter: invert(1);
    opacity: 0.5;
}

/* Work filter pills */
[data-theme="dark"] .filter-pill {
    border-color: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.5);
}
[data-theme="dark"] .filter-pill:hover {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.3);
}
[data-theme="dark"] .filter-pill.active {
    background: rgba(255,255,255,0.9);
    color: var(--color-dark-bg);
    border-color: rgba(255,255,255,0.9);
}/**
 * print.css — Print Styles
 *
 * Strips interactive/decorative elements and disables
 * backdrop-filter for print rendering compatibility.
 */

@media print {
    .header, .footer, .mobile-menu-toggle,
    .hero::after, .form-success, .form-error, .marquee { display: none; }

    body { background: #fff; color: #111; }
    .section-title, .hero-title, .vision-statement { color: #111; }

    /* Remove glassmorphism for print */
    .contact-form, .hero-badge, .footer-cta {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    /* Featured work — print on white */
    .featured-work { background: #fff; color: #111; }
    .featured-work .section-title, .work-title { color: #111; }
    .work-category { color: #666; }
    .work-glass-cta { display: none; }

    /* Approach section */
    .approach-item { border-top-color: #ccc; }

    .btn-primary { background: #111; color: #fff; }
    .btn-vision { background: #eee; color: #111; }
}
