/* ==========================================================================
   Junaid Ahmad — Award-style Creative Portfolio
   GSAP + Lenis powered. Custom cursor, marquees, horizontal scroll, parallax.
   ========================================================================== */

/* ===== 1. RESET + ROOT ===== */
:root {
    /* Light scale */
    --c-bg: #ffffff;
    --c-bg-alt: #f4f4f4;
    --c-bg-warm: #ededed;
    --c-cream: #fafafa;

    /* Greys */
    --c-grey-100: #f0f0f0;
    --c-grey-200: #d6d6d6;
    --c-grey-300: #a8a8a8;
    --c-grey-400: #6d6d6d;

    /* Ink */
    --c-ink: #0a0a0a;
    --c-ink-soft: #3a3a3a;
    --c-muted: #8a8a8a;
    --c-line: rgba(10, 10, 10, 0.1);

    /* Accent (now monochrome — black is the accent) */
    --c-accent: #0a0a0a;
    --c-accent-bright: #0a0a0a;
    --c-gold: #6d6d6d;
    --c-sage: #6d6d6d;

    /* Dark sections — charcoal, not pure black */
    --c-dark: #141414;
    --c-dark-soft: #1d1d1d;
    --c-dark-warm: #1a1a1a;
    --c-dark-line: rgba(255, 255, 255, 0.1);

    --f-display: 'Playfair Display', Georgia, serif;
    --f-sans: 'Inter', -apple-system, sans-serif;
    --f-mono: 'Space Mono', monospace;

    --container: 1440px;
    --pad-x: clamp(24px, 5vw, 80px);

    --easing: cubic-bezier(0.65, 0, 0.35, 1);
    --easing-out: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast: 0.3s var(--easing);
    --t: 0.6s var(--easing);
    --t-slow: 1.2s var(--easing);
}

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

html {
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--f-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-ink);
    background: var(--c-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
/* Custom cursor: only applied when toggle is on (via inline dynamic CSS) */
.cursor, .cursor-dot { display: none; } /* hidden unless toggle on */
body.ja-cursor-on .cursor,
body.ja-cursor-on .cursor-dot { display: block; }
body.ja-cursor-on,
body.ja-cursor-on a,
body.ja-cursor-on button { cursor: none; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--f-display);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}
em {
    font-style: italic;
    color: var(--c-grey-400);
    font-weight: 400;
}

::selection { background: var(--c-ink); color: var(--c-bg); }

/* ===== 2. CUSTOM CURSOR ===== */
.cursor {
    position: fixed;
    top: 0; left: 0;
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--c-ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--easing), height 0.3s var(--easing), background 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
    will-change: transform;
}
.cursor.hover {
    width: 80px;
    height: 80px;
    background: var(--c-cream);
    border-color: var(--c-cream);
}
.cursor.click { width: 22px; height: 22px; }

.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 5px;
    height: 5px;
    background: var(--c-ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    will-change: transform;
}
.cursor-dot.hover { opacity: 0; }

@media (max-width: 1024px) {
    body { cursor: auto; }
    button { cursor: pointer; }
    .cursor, .cursor-dot { display: none; }
}

/* ===== 3. FILM GRAIN ===== */
.grain {
    position: fixed;
    inset: -50%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.08;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
    animation: grain 8s steps(10) infinite;
}
@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 10%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(10%, 0); }
    70% { transform: translate(0, 10%); }
    80% { transform: translate(-10%, 0); }
    90% { transform: translate(10%, 5%); }
}

/* ===== 4. LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--c-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--c-cream);
    transition: clip-path 1.2s var(--easing-out);
    clip-path: inset(0 0 0 0);
    /* Failsafe: even if JS never runs, the loader auto-clears after 5s
       so the site can never be permanently blocked. */
    animation: jaLoaderFailsafe 0.6s ease 5s forwards;
}
.loader.done {
    clip-path: inset(0 0 100% 0);
}
@keyframes jaLoaderFailsafe {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.loader-inner {
    text-align: center;
}
.loader-name {
    font-family: var(--f-display);
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 1.1;
    margin-bottom: 40px;
}
.loader-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}
.loader-line > span {
    display: inline-block;
    transform: translateY(100%);
    animation: loaderTextUp 0.9s var(--easing-out) forwards;
}
.loader-line:nth-child(2) > span { animation-delay: 0.15s; color: var(--c-grey-300); font-style: italic; font-weight: 300; }
@keyframes loaderTextUp {
    to { transform: translateY(0); }
}
.italic { font-style: italic; }

.loader-counter {
    font-family: var(--f-mono);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: rgba(244, 241, 234, 0.5);
}
.loader-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}
.loader-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--c-bg);
    transition: width 0.1s linear;
}

/* ===== 5. LAYOUT UTILS ===== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-ink-soft);
}
.section-tag.light { color: rgba(244, 241, 234, 0.6); }
.section-tag .num { font-weight: 700; color: var(--c-ink); }
.section-tag.light .num { color: var(--c-bg); }
.section-tag .line { flex: 0 0 60px; height: 1px; background: currentColor; opacity: 0.3; }

/* ===== 6. NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 0;
    transition: background 0.5s var(--easing), padding 0.4s var(--easing), border-color 0.5s var(--easing);
    background: transparent;
    border-bottom: 1px solid transparent;
}
/* Solid state — appears when scrolled OR on inner pages */
.navbar.scrolled,
.navbar.solid {
    background: rgba(244, 241, 234, 0.85);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom-color: var(--c-line);
    padding: 14px 0;
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--c-cream);
    font-weight: 500;
    transition: color var(--t);
}
.navbar.scrolled .nav-logo,
.navbar.solid .nav-logo {
    color: var(--c-ink);
}

.logo-circle {
    width: 10px;
    height: 10px;
    background: var(--c-bg);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}
.navbar.scrolled .logo-circle,
.navbar.solid .logo-circle { background: var(--c-ink); }
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { transform: scale(1.15); opacity: 0.7; box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}
.navbar.scrolled @keyframes pulse,
.navbar.solid @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(10, 10, 10, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(10, 10, 10, 0); }
}

.logo-sign {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
}
.navbar:not(.scrolled):not(.solid) .logo-sign { filter: invert(1) brightness(2); }
.footer-sign {
    height: 54px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 20px;
}
.logo-text {
    font-family: var(--f-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.logo-text sup {
    font-size: 9px;
    color: var(--c-muted);
    margin-left: 2px;
    vertical-align: super;
}

.nav-menu {
    display: flex;
    gap: 2px;
    align-items: center;
}
.nav-link {
    color: var(--c-cream);
    padding: 10px 14px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    transition: color var(--t-fast);
}
.navbar.scrolled .nav-link,
.navbar.solid .nav-link {
    color: var(--c-ink);
}
.nav-link > span {
    position: relative;
    display: inline-block;
}
.nav-link > span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--easing);
}
.nav-link:hover { color: var(--c-grey-300); }
.navbar.scrolled .nav-link:hover,
.navbar.solid .nav-link:hover { color: var(--c-muted); }
.nav-link:hover > span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--c-ink);
    color: var(--c-cream);
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background var(--t), color var(--t);
    will-change: transform;
    border: 1px solid var(--c-ink);
}
.nav-cta:hover {
    background: var(--c-bg);
    border-color: var(--c-ink);
    color: var(--c-ink);
}
.navbar.scrolled .nav-cta:hover,
.navbar.solid .nav-cta:hover {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-ink);
}
.nav-cta i { font-size: 9px; transition: transform var(--t-fast); }
.nav-cta:hover i { transform: translate(3px, -3px) rotate(-45deg); }

.nav-toggle {
    display: none;
    width: 32px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--c-cream);
    transition: all var(--t-fast);
}
.nav-toggle span:nth-child(1) { width: 100%; }
.nav-toggle span:nth-child(2) { width: 70%; }
.navbar.scrolled .nav-toggle span,
.navbar.solid .nav-toggle span { background: var(--c-ink); }
.nav-toggle.active span { width: 100%; }
.nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { transform: translateY(-9px) rotate(-45deg); }

/* ===== 7. HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--c-dark);
    color: var(--c-cream);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #2a2a2a;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    transform: scale(1.1);
    will-change: transform;
    filter: brightness(0.55) contrast(1.05) grayscale(100%);
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.75) 100%);
    pointer-events: none;
}
.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 140px var(--pad-x) 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.7);
    flex-wrap: wrap;
    gap: 16px;
}
.hero-meta-top .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.reveal-text {
    display: block;
    overflow: hidden;
}
.reveal-text > span {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}
.reveal-text.in > span {
    transform: translateY(0);
    transition: transform 1s var(--easing-out);
}

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(3rem, 10vw, 11rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0;
}
.title-line {
    display: block;
    overflow: hidden;
    position: relative;
    line-height: 1.15;
    padding-bottom: 0.08em;
}
.title-line.italic { font-style: italic; font-weight: 300; color: var(--c-grey-200); }
.char-wrap {
    display: inline-flex;
}
.char {
    display: inline-block;
    transform: translateY(100%);
    will-change: transform;
}
.hero.ready .char {
    transform: translateY(0);
    transition: transform 1s var(--easing-out);
}
.hero.ready .title-line:nth-child(1) .char:nth-child(1) { transition-delay: 0.4s; }
.hero.ready .title-line:nth-child(1) .char:nth-child(2) { transition-delay: 0.45s; }
.hero.ready .title-line:nth-child(1) .char:nth-child(3) { transition-delay: 0.5s; }
.hero.ready .title-line:nth-child(1) .char:nth-child(4) { transition-delay: 0.55s; }
.hero.ready .title-line:nth-child(1) .char:nth-child(5) { transition-delay: 0.6s; }
.hero.ready .title-line:nth-child(1) .char:nth-child(6) { transition-delay: 0.65s; }
.hero.ready .title-line:nth-child(2) .char:nth-child(1) { transition-delay: 0.75s; }
.hero.ready .title-line:nth-child(2) .char:nth-child(2) { transition-delay: 0.8s; }
.hero.ready .title-line:nth-child(2) .char:nth-child(3) { transition-delay: 0.85s; }
.hero.ready .title-line:nth-child(2) .char:nth-child(4) { transition-delay: 0.9s; }
.hero.ready .title-line:nth-child(2) .char:nth-child(5) { transition-delay: 0.95s; }

.hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    flex-wrap: wrap;
}
.hero-tagline {
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hero-description {
    font-family: var(--f-display);
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    line-height: 1.4;
    color: rgba(244, 241, 234, 0.85);
    max-width: 520px;
    font-style: italic;
}
.hero-description .reveal-text { display: block; }
.hero-description .reveal-text:last-child { color: var(--c-grey-200); }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.6);
    z-index: 3;
}
.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(244, 241, 234, 0.2);
    position: relative;
    overflow: hidden;
}
.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--c-cream);
    animation: scrollDot 2.4s var(--easing) infinite;
}
@keyframes scrollDot {
    0% { top: -40%; }
    100% { top: 100%; }
}

/* ===== 8. MARQUEE BANDS ===== */
.marquee {
    overflow: hidden;
    background: var(--c-dark);
    color: var(--c-cream);
    padding: 24px 0;
    border-top: 1px solid var(--c-dark-line);
    border-bottom: 1px solid var(--c-dark-line);
}
.marquee.marquee-large { padding: 40px 0; }
.marquee-track {
    display: flex;
    gap: 60px;
    align-items: center;
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 7vw, 7rem);
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    animation: marqueeScroll 40s linear infinite;
    will-change: transform;
}
.marquee.reverse .marquee-track {
    animation: marqueeScrollReverse 40s linear infinite;
}
.marquee.marquee-medium .marquee-track {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    gap: 40px;
    animation-duration: 30s;
}
.marquee-track span { display: inline-block; }
.marquee-track .dash { color: var(--c-grey-300); font-style: italic; }
.marquee-track .dot-sep { color: var(--c-grey-300); font-size: 0.4em; vertical-align: middle; }

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

/* ===== 9. ABOUT (sticky scroll) ===== */
.about {
    padding: 160px 0;
    background: var(--c-bg);
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.about-sticky {
    position: sticky;
    top: 120px;
    align-self: start;
}
.about-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--c-bg-warm);
}
body.ja-about-bw .about-img-wrap {
    filter: grayscale(100%) contrast(1.05);
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 1.6s var(--easing-out);
}
.about-img-wrap.in img { transform: scale(1); }

/* About — Video (matches image size & wrap exactly) */
.about-img-wrap .about-video-file,
.about-img-wrap .about-video-frame {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}
.about-img-wrap .about-video-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.5);
    pointer-events: none;
}

.about-img-sub {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.about-img-sub .num { color: var(--c-accent); }

.about-content {
    padding-top: 20px;
}
.about-headline {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 60px;
    font-weight: 400;
    letter-spacing: -0.03em;
}
.about-headline em {
    font-style: italic;
    color: var(--c-accent);
}

.about-body p {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.7;
    color: var(--c-ink-soft);
    margin-bottom: 24px;
    max-width: 580px;
}

.muted { color: var(--c-muted); font-size: 0.85em; }

/* ---- Model Stats / Measurements card ---- */
.model-stats {
    margin-top: 60px;
    padding: 40px;
    background: var(--c-bg-alt);
    border: 1px solid var(--c-line);
    border-radius: 4px;
}
.model-stats-title {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.model-stats-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--c-ink);
    border-radius: 50%;
}
.model-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
}
.ms-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 13px 0;
    border-bottom: 1px solid var(--c-line);
    gap: 16px;
}
.ms-key {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.ms-val {
    font-family: var(--f-display);
    font-size: 1.1rem;
    color: var(--c-ink);
}

/* ---- About social row ---- */
.about-social {
    margin-top: 48px;
}
.about-social-label {
    display: block;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 18px;
}
.about-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.about-social-row a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid var(--c-line);
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-ink);
    transition: all var(--t);
}
.about-social-row a i { font-size: 1.1rem; }
.about-social-row a:hover {
    background: var(--c-ink);
    color: var(--c-bg);
    border-color: var(--c-ink);
    transform: translateY(-3px);
}

/* ---- Brands "Worked With" ---- */
.brands {
    padding: 120px 0 80px;
    background: var(--c-bg-alt);
    overflow: hidden;
}
.brand-marquee { padding: 40px 0 !important; }
.brands-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 500;
}
.brands-headline em { color: var(--c-grey-400); font-style: italic; font-weight: 300; }
.brands-note {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 60px;
}
.brand-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 30px 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 32px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
}
.brand-marquee::-webkit-scrollbar { display: none; }
.brand-marquee:active { cursor: grabbing; }
.brand-marquee-track {
    display: flex;
    gap: 48px;
    align-items: center;
    white-space: nowrap;
    animation: marqueeScroll 18s linear infinite;
    will-change: transform;
}
.brand-marquee:hover .brand-marquee-track,
.brand-marquee.is-dragging .brand-marquee-track {
    animation-play-state: paused;
}
.brand-item {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 500;
    color: var(--c-grey-300);
    font-style: italic;
    transition: color var(--t-fast);
}
.brand-marquee:hover .brand-item { color: var(--c-ink); }
.brand-dot { color: var(--c-grey-200); font-size: 0.5em; }
.brands-placeholder-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-muted);
    padding: 12px 20px;
    background: var(--c-bg);
    border: 1px dashed var(--c-line);
    border-radius: 100px;
}

/* ===== 10. STATS COUNTER ===== */
.stats {
    padding: 80px 0;
    background: var(--c-dark);
    color: var(--c-cream);
    border-top: 1px solid var(--c-dark-line);
    border-bottom: 1px solid var(--c-dark-line);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat {
    text-align: left;
    padding: 24px 0;
}
.stat-num {
    font-family: var(--f-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    font-weight: 500;
    display: inline-block;
}
.stat-plus {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--c-grey-300);
    font-weight: 400;
    margin-left: 4px;
}
.stat-label {
    display: block;
    margin-top: 16px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.6);
}

/* ===== 11. JOURNEY (horizontal scroll) ===== */
.journey {
    background: var(--c-dark);
    color: var(--c-cream);
    padding: 120px 0;
    overflow: hidden;
}
.journey-headline {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 500;
}
.journey-headline em { color: var(--c-grey-200); font-style: italic; font-weight: 300; }
.journey-sub {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.5);
    margin-bottom: 60px;
}

.journey-track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    padding: 20px 0 40px;
    scrollbar-width: none;
}
.journey-track-wrap::-webkit-scrollbar { display: none; }
.journey-track-wrap.dragging { cursor: grabbing; }

.journey-track {
    display: flex;
    gap: 32px;
    padding: 0 var(--pad-x);
}

.journey-card {
    flex: 0 0 480px;
    scroll-snap-align: start;
    position: relative;
    background: var(--c-dark-soft);
    border: 1px solid var(--c-dark-line);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color var(--t);
}
.journey-card:hover { border-color: var(--c-grey-300); }

.journey-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--f-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--c-grey-300);
    z-index: 2;
}
.journey-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #111;
}
.journey-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 1s var(--easing-out);
}
.journey-card:hover .journey-img img { transform: scale(1.05); }

.journey-text {
    padding: 32px;
}
.journey-tag {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-grey-300);
    margin-bottom: 12px;
}
.journey-text h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    font-weight: 500;
}
.journey-text p {
    color: rgba(244, 241, 234, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

.journey-progress {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
}
.journey-progress-bar {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}
.journey-progress-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--c-bg);
    transition: width 0.2s linear;
}
.journey-controls {
    display: flex;
    gap: 12px;
}
.journey-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--c-dark-line);
    color: var(--c-cream);
    display: grid;
    place-items: center;
    transition: all var(--t);
}
.journey-btn:hover {
    background: var(--c-cream);
    color: var(--c-ink);
    border-color: var(--c-cream);
}

/* ===== 12. SERVICES (Big list) ===== */
.services {
    padding: 160px 0;
    background: var(--c-bg);
}
.services-headline {
    font-size: clamp(2.5rem, 7vw, 6rem);
    line-height: 1;
    margin-bottom: 80px;
    font-weight: 500;
}
.services-headline em { color: var(--c-accent); font-style: italic; }

.services-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--c-line);
}
.service-row {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1.5fr 2fr 60px;
    gap: 24px;
    align-items: center;
    padding: 36px 0;
    border-bottom: 1px solid var(--c-line);
    transition: padding 0.5s var(--easing);
    overflow: hidden;
}
.service-row:hover {
    padding-left: 32px;
}
.service-row::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: var(--c-dark);
    transition: left 0.6s var(--easing);
    z-index: 0;
}
.service-row:hover::before {
    left: 0;
}
.service-row:hover .service-num,
.service-row:hover .service-name,
.service-row:hover .service-desc,
.service-row:hover .service-arrow {
    color: var(--c-cream);
    position: relative;
    z-index: 1;
}

.service-num {
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--c-accent);
    transition: color var(--t);
    position: relative;
    z-index: 1;
}
.service-name {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1;
    transition: color var(--t);
    position: relative;
    z-index: 1;
}
.service-desc {
    font-size: 1rem;
    color: var(--c-ink-soft);
    line-height: 1.5;
    transition: color var(--t);
    position: relative;
    z-index: 1;
}
.service-arrow {
    font-size: 1rem;
    text-align: right;
    transition: all var(--t);
    position: relative;
    z-index: 1;
}
.service-row:hover .service-arrow {
    transform: rotate(-45deg);
}

.service-hover-img {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 320px;
    height: 260px;
    overflow: hidden;
    border-radius: 6px;
    background: transparent;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--easing), transform 0.5s var(--easing);
    z-index: 2;
    border-radius: 4px;
}
.service-hover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.service-row:hover .service-hover-img {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (hover: none) {
    .service-row::before, .service-hover-img { display: none; }
}

/* ===== 13. GALLERY MARQUEE PREVIEW ===== */
.gallery-preview {
    padding: 160px 0 120px;
    background: var(--c-bg-alt);
    overflow: hidden;
}
.gallery-headline {
    font-size: clamp(2.5rem, 7vw, 6rem);
    line-height: 1;
    margin-bottom: 80px;
    font-weight: 500;
}
.gallery-headline em { color: var(--c-accent); font-style: italic; }

.marquee-gallery {
    margin: 0 -60px;
    padding: 0;
}
.marquee-row {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
}
.marquee-row::-webkit-scrollbar { display: none; }
.marquee-row:active { cursor: grabbing; }
.marquee-row-track {
    display: flex;
    gap: 20px;
    animation: marqueeImg 35s linear infinite;
    will-change: transform;
}
.marquee-row.reverse .marquee-row-track {
    animation: marqueeImgReverse 35s linear infinite;
}
.marquee-row:hover .marquee-row-track,
.marquee-row.is-dragging .marquee-row-track {
    animation-play-state: paused;
}
@keyframes marqueeImg {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeImgReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-row-track figure {
    flex: 0 0 auto;
    height: 450px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    transition: box-shadow .4s var(--easing-out), transform .4s var(--easing-out);
}
.marquee-row-track figure:hover {
    box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 12px 0px, rgba(27, 31, 35, 0.25) 0px 0px 0px 1px;
    transform: translateY(-2px);
}
.marquee-row-track img {
    width: auto;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s var(--easing-out);
}
.marquee-row-track figure:hover img { transform: scale(1.06); }
.marquee-row-track figcaption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    backdrop-filter: blur(8px);
    color: var(--c-ink);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    border-radius: 100px;
}

.gallery-cta-wrap {
    margin-top: 80px;
    text-align: center;
}

.big-link {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-style: italic;
    color: var(--c-ink);
    transition: gap var(--t);
    position: relative;
    will-change: transform;
}
.big-link:hover { gap: 36px; }
.big-link-text { position: relative; }
.big-link-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--easing);
}
.big-link:hover .big-link-text::after {
    transform: scaleX(1);
    transform-origin: left;
}
.big-link-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--c-ink);
    color: var(--c-cream);
    display: grid;
    place-items: center;
    font-size: 1rem;
    transition: all var(--t);
}
.big-link:hover .big-link-arrow {
    background: var(--c-accent);
    transform: rotate(-45deg);
}

/* ===== 14. SOCIAL ===== */
.social-section {
    padding: 160px 0;
    background: var(--c-bg);
}
.social-headline {
    font-size: clamp(2.5rem, 7vw, 6rem);
    line-height: 1;
    margin-bottom: 80px;
    font-weight: 500;
}
.social-headline em { color: var(--c-accent); font-style: italic; }

.social-grid {
    border-top: 1px solid var(--c-line);
}
.social-row {
    display: grid;
    grid-template-columns: 1fr 1fr 60px;
    gap: 24px;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--c-line);
    transition: all var(--t);
    position: relative;
}
.social-row::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--c-accent);
    transition: width 0.6s var(--easing);
}
.social-row:hover::after { width: 100%; }
.social-row:hover .social-name { color: var(--c-accent); }
.social-row:hover .social-arrow { transform: rotate(-45deg); color: var(--c-accent); }

.social-name {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    transition: color var(--t);
}
.social-handle {
    font-family: var(--f-mono);
    font-size: 13px;
    color: var(--c-muted);
    letter-spacing: 0.1em;
}
.social-arrow {
    text-align: right;
    transition: all var(--t);
}

/* ===== 15. MEGA CTA ===== */
.cta-mega {
    padding: 160px 0;
    background: var(--c-dark);
    color: var(--c-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-mega::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
    filter: blur(40px);
}
.cta-mega-inner { position: relative; z-index: 1; }
.cta-eyebrow {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.5);
    margin-bottom: 32px;
}
.cta-mega-title {
    font-size: clamp(3rem, 9vw, 8rem);
    line-height: 0.95;
    margin-bottom: 60px;
    font-weight: 500;
}
.cta-mega-title span { display: block; }
.cta-mega-title .italic { color: var(--c-grey-200); font-style: italic; font-weight: 300; }

.big-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 24px 48px;
    background: var(--c-cream);
    color: var(--c-ink);
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 40px;
    transition: all var(--t);
    will-change: transform;
}
.big-cta:hover {
    background: var(--c-ink);
    color: var(--c-bg);
    border: 1px solid var(--c-bg);
}
.big-cta i { transition: transform var(--t-fast); }
.big-cta:hover i { transform: translateX(6px); }

.cta-foot {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(244, 241, 234, 0.5);
}

/* ===== 16. FOOTER (Light Monochrome) ===== */
.footer {
    background: var(--c-cream);
    color: var(--c-ink-soft);
    overflow: hidden;
    position: relative;
    padding-top: 120px;
    border-top: 1px solid var(--c-line);
}

/* ---- Footer CTA (massive email) ---- */
.footer-cta {
    padding: 0 0 100px;
    text-align: center;
    position: relative;
}
.footer-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 40px;
}
.footer-cta-eyebrow::before,
.footer-cta-eyebrow::after {
    content: '';
    width: 48px;
    height: 1px;
    background: var(--c-grey-200);
}

.footer-cta-title {
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 7vw, 6rem);
    line-height: 0.95;
    color: var(--c-ink);
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.footer-cta-title em {
    font-style: italic;
    color: var(--c-grey-400);
    font-weight: 300;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--c-ink);
    transition: color var(--t);
    position: relative;
    padding-bottom: 10px;
}
.footer-email::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.6s var(--easing);
}
.footer-email:hover::after {
    transform: scaleX(1);
}
.footer-email .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid var(--c-ink);
    color: var(--c-ink);
    font-size: 1.1rem;
    transition: all var(--t);
    background: transparent;
}
.footer-email:hover .arrow {
    background: var(--c-ink);
    color: var(--c-bg);
    transform: rotate(-45deg);
}

/* ---- Marquee tape (light grey band) ---- */
.footer-tape {
    overflow: hidden;
    padding: 22px 0;
    background: var(--c-bg-warm);
    color: var(--c-ink-soft);
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.footer-tape-track {
    display: flex;
    gap: 32px;
    align-items: center;
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--c-ink-soft);
    white-space: nowrap;
    animation: marqueeScroll 60s linear infinite;
    will-change: transform;
}
.footer-tape-track span { display: inline-flex; align-items: center; gap: 32px; }
.footer-tape-track .star {
    display: inline-block;
    color: var(--c-muted);
    font-style: normal;
    transform: scale(1.4);
}

/* ---- Footer main grid ---- */
.footer-main {
    padding: 80px 0 60px;
    background: var(--c-cream);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.footer-brand-block .status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: 100px;
    margin-bottom: 32px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-ink-soft);
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-ink);
    box-shadow: 0 0 0 0 rgba(10, 10, 10, 0.4);
    animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(10, 10, 10, 0.35); }
    50% { box-shadow: 0 0 0 8px rgba(10, 10, 10, 0); }
}

.footer-name {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--c-ink);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
}
.footer-name sup {
    font-size: 0.4em;
    color: var(--c-muted);
    vertical-align: super;
    margin-left: 4px;
}
.footer-bio {
    max-width: 320px;
    line-height: 1.7;
    color: var(--c-ink-soft);
    font-size: 14px;
    margin-bottom: 24px;
}

.footer-col-title {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-col-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--c-ink);
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-list { display: grid; gap: 14px; }
.footer-list a,
.footer-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-ink-soft);
    font-size: 15px;
    transition: color var(--t-fast), transform var(--t-fast);
    width: fit-content;
}
.footer-list a:hover {
    color: var(--c-ink);
    transform: translateX(4px);
}
.footer-list .ext {
    font-size: 0.7em;
    opacity: 0.5;
    transition: transform var(--t-fast), opacity var(--t-fast);
}
.footer-list a:hover .ext {
    transform: translate(3px, -3px);
    opacity: 1;
}

.footer-info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    border-bottom: 1px dashed var(--c-line);
    color: var(--c-ink-soft);
    font-size: 13px;
    gap: 12px;
}
.footer-info-row:last-child { border-bottom: none; }
.footer-info-row .label {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.footer-info-row .val {
    font-family: var(--f-mono);
    color: var(--c-ink);
    font-size: 13px;
}
.footer-info-row .val.live {
    color: var(--c-ink);
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* ---- Mega name watermark (bold but soft) ---- */
.footer-mega-wrap {
    position: relative;
    overflow: hidden;
    padding: 30px 0 20px;
    border-top: 1px solid var(--c-line);
    background: var(--c-cream);
}
.footer-mega {
    font-family: var(--f-display);
    font-size: clamp(3.5rem, 13.5vw, 15rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: rgba(10, 10, 10, 0.11);
    -webkit-text-stroke: 1.5px rgba(10, 10, 10, 0.28);
    text-align: center;
    display: block;
    user-select: none;
    pointer-events: none;
    font-weight: 700;
    white-space: nowrap;
    transition: -webkit-text-stroke 0.6s var(--easing), color 0.6s var(--easing);
}
.footer-mega-wrap:hover .footer-mega {
    color: rgba(10, 10, 10, 0.16);
    -webkit-text-stroke-color: rgba(10, 10, 10, 0.5);
}
.footer-mega em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(10, 10, 10, 0.22);
    font-weight: 400;
    margin-left: 0.3em;
}

/* ---- Bottom strip ---- */
.footer-bottom {
    padding: 28px 0;
    border-top: 1px solid var(--c-line);
    background: var(--c-bg);
}
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.footer-bottom-row a:hover { color: var(--c-ink); }
.footer-bottom-row .designed em {
    color: var(--c-ink-soft);
    font-style: italic;
    text-transform: none;
    letter-spacing: normal;
}

.back-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--c-muted);
    transition: color var(--t-fast);
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    padding: 0;
}
.back-top-btn:hover { color: var(--c-ink); }
.back-top-btn .arrow-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--c-line);
    display: grid;
    place-items: center;
    transition: all var(--t);
    color: var(--c-ink-soft);
}
.back-top-btn:hover .arrow-circle {
    background: var(--c-ink);
    border-color: var(--c-ink);
    color: var(--c-bg);
    transform: translateY(-3px);
}

/* ===== 17. PAGE HEADER (gallery / contact) ===== */
.page-header {
    padding: 200px 0 100px;
    background: var(--c-dark);
    color: var(--c-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 60%);
}
.page-title {
    font-size: clamp(3rem, 9vw, 8rem);
    line-height: 1;
    margin: 24px 0;
    font-weight: 500;
}
.page-title em { color: var(--c-grey-200); font-style: italic; font-weight: 300; }
.page-sub {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(244, 241, 234, 0.6);
    font-size: 1.1rem;
}

/* ===== 18. GALLERY PAGE ===== */
.gallery-page {
    padding: 120px 0;
    background: var(--c-bg);
}
.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
}
.filter-btn {
    padding: 12px 24px;
    border: 1px solid var(--c-line);
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-ink-soft);
    transition: all var(--t-fast);
    background: transparent;
}
.filter-btn:hover { border-color: var(--c-ink); color: var(--c-ink); }
.filter-btn.active {
    background: var(--c-ink);
    color: var(--c-cream);
    border-color: var(--c-ink);
}

.gallery-year-block {
    margin-bottom: 100px;
}
.gallery-year-block.hidden { display: none; }
.year-head {
    text-align: center;
    margin-bottom: 48px;
}
.year-tag {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 12px;
}
.year-head h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 12px;
    font-weight: 500;
}
.year-head p {
    color: var(--c-ink-soft);
    max-width: 500px;
    margin: 0 auto;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    grid-auto-rows: 360px;
    grid-auto-flow: dense;
}
.masonry-item {
    position: relative;
    overflow: hidden;
    background: var(--c-bg-alt);
    border-radius: 4px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    transition: box-shadow .4s var(--easing-out), transform .4s var(--easing-out);
}
body.ja-cursor-on .masonry-item { cursor: none; }
.masonry-item:hover {
    box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 12px 0px, rgba(27, 31, 35, 0.25) 0px 0px 0px 1px;
    transform: translateY(-2px);
}
.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1s var(--easing-out);
}
.masonry-item:hover img { transform: scale(1.06); }
.img-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 14px;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #fff;
    opacity: 0;
    transform: translateY(-8px);
    transition: all var(--t);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}
.masonry-item:hover .img-tag { opacity: 1; transform: translateY(0); }

/* Mobile/touch: show year badge always (no hover available) */
@media (hover: none), (max-width: 768px) {
    .img-tag { opacity: 1; transform: translateY(0); }
}

/* ===== 19. CONTACT PAGE ===== */
.contact-page {
    padding: 120px 0;
    background: var(--c-bg);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}
.contact-h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.05;
    margin-bottom: 32px;
    font-weight: 500;
}
.contact-h2 em { color: var(--c-accent); font-style: italic; }
.contact-lead {
    font-size: 1.1rem;
    color: var(--c-ink-soft);
    margin-bottom: 48px;
    line-height: 1.7;
}

.contact-methods { display: grid; gap: 4px; margin-bottom: 48px; border-top: 1px solid var(--c-line); }
.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--c-line);
    transition: padding 0.4s var(--easing);
}
a.contact-method:hover { padding-left: 16px; }
.cm-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c-ink);
    color: var(--c-cream);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all var(--t);
}
a.contact-method:hover .cm-icon { background: var(--c-accent); }
.cm-label {
    display: block;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 4px;
}
.contact-method strong {
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-social h4 {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 16px;
}
.social-row-icons {
    display: flex;
    gap: 12px;
}
.social-row-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--c-line);
    display: grid;
    place-items: center;
    font-size: 1rem;
    transition: all var(--t);
}
.social-row-icons a:hover {
    background: var(--c-ink);
    color: var(--c-cream);
    border-color: var(--c-ink);
    transform: translateY(-3px);
}

.contact-form-wrap {
    background: var(--c-cream);
    color: var(--c-ink);
    padding: 56px;
    border-radius: 4px;
    border: 1px solid var(--c-line);
}
.contact-form { display: grid; gap: 24px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-muted);
    font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--c-line);
    background: transparent;
    font-family: var(--f-display);
    font-size: 1.05rem;
    color: var(--c-ink);
    transition: border-color var(--t-fast);
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--c-grey-300);
    font-style: italic;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--c-ink);
}
.form-group select { color: var(--c-ink); }
.form-group select option { background: var(--c-bg); color: var(--c-ink); }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
    margin-top: 16px;
    padding: 20px 32px;
    background: var(--c-ink);
    color: var(--c-bg);
    border: 1px solid var(--c-ink);
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all var(--t);
    width: 100%;
}
.btn-submit:hover {
    background: transparent;
    color: var(--c-ink);
}

.form-note {
    text-align: center;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--c-muted);
    margin-top: 12px;
}

/* ===== 20. FAQ ===== */
.faq-section {
    padding: 120px 0;
    background: var(--c-bg-alt);
}
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--c-line);
    transition: padding var(--t);
}
.faq-q {
    width: 100%;
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--f-display);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 500;
    transition: color var(--t-fast);
}
.faq-q i {
    transition: transform var(--t);
    color: var(--c-accent);
}
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-item:hover .faq-q { color: var(--c-accent); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t);
}
.faq-a p {
    padding: 0 0 32px;
    color: var(--c-ink-soft);
    line-height: 1.7;
    max-width: 700px;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ===== 21. LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px;
}
.lightbox.active { display: flex; }
.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(244, 241, 234, 0.1);
    color: var(--c-cream);
    display: grid;
    place-items: center;
    transition: all var(--t);
    border: 1px solid var(--c-dark-line);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
}
.lightbox-close { top: 32px; right: 32px; }
.lightbox-prev { left: 32px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 32px; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(244, 241, 234, 0.8);
}

/* ===== 22. SCROLL REVEAL HELPERS ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--easing-out), transform 1s var(--easing-out);
}
[data-reveal].in {
    opacity: 1;
    transform: translateY(0);
}

[data-split] .split-line {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    line-height: inherit;
    padding-bottom: 0.18em;
    margin-bottom: -0.18em;
}
[data-split] .split-line > span {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}
[data-split].in .split-line > span {
    transform: translateY(0);
    transition: transform 1s var(--easing-out);
}
/* Stagger each word by index using inline style set in JS */
[data-split] .split-line { transition-delay: 0s; }

/* ===== 23. RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-sticky { position: relative; top: 0; max-width: 500px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
    .service-row { grid-template-columns: 60px 1fr 60px; }
    .service-desc { display: none; }
    .hero-bottom { grid-template-columns: 1fr; gap: 32px; }
    .journey-card { flex: 0 0 380px; }
}

@media (max-width: 768px) {
    .navbar { padding: 16px 0; mix-blend-mode: normal; background: rgba(10,10,10,0.7); backdrop-filter: blur(12px); }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--c-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 8px;
        transition: right var(--t);
    }
    .nav-menu.open { right: 0; }
    .nav-menu li { width: 100%; }
    .nav-link { display: block; width: 100%; padding: 16px 0; font-size: 14px; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; z-index: 101; }

    .hero-content { padding: 100px var(--pad-x) 60px; }
    .hero-meta-top { flex-direction: column; align-items: flex-start; gap: 8px; }

    .info-row { grid-template-columns: 100px 1fr; gap: 16px; }
    .model-stats { padding: 28px 24px; }
    .model-stats-grid { grid-template-columns: 1fr; gap: 0; }
    .about-social-row a { padding: 11px 18px; font-size: 11px; }

    .service-row { grid-template-columns: 60px 1fr 40px; gap: 16px; padding: 24px 0; }
    .service-name { font-size: 1.5rem; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-num { font-size: 3rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-cta { padding: 0 0 60px; }
    .footer-main { padding: 60px 0 40px; }
    .footer-email { gap: 16px; }
    .footer-email .arrow { width: 48px; height: 48px; }

    .contact-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    .journey-card { flex: 0 0 85vw; }
    .marquee-row-track figure { height: 340px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 4rem; }
    .info-row { grid-template-columns: 1fr; gap: 4px; }
    .info-key { font-size: 10px; }
    .footer-bottom-row { flex-direction: column; text-align: center; gap: 16px; }
    .masonry-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .masonry-item { background: transparent; }
    .masonry-item img { height: auto; }
    .masonry-item:nth-child(5n+3) { grid-row: span 1; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== WordPress-native Gallery (Gallery page) ===== */
.wp-gallery-content { color: var(--c-ink); }
.wp-gallery-content h2,
.wp-gallery-content h3 {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-align: center;
    margin: 60px 0 32px;
    font-weight: 500;
}
.wp-gallery-content h2:first-child,
.wp-gallery-content h3:first-child { margin-top: 0; }
.wp-gallery-content p { color: var(--c-ink-soft); text-align: center; max-width: 640px; margin: 0 auto 28px; }
.wp-gallery-content .wp-block-gallery,
.wp-gallery-content .blocks-gallery-grid,
.wp-gallery-content .gallery {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin: 0 0 60px;
    list-style: none;
}
.wp-gallery-content .wp-block-image,
.wp-gallery-content .blocks-gallery-item,
.wp-gallery-content .gallery-item,
.wp-gallery-content figure {
    margin: 0;
    overflow: hidden;
    border-radius: 2px;
    background: var(--c-bg-warm);
}
.wp-gallery-content img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform 1s var(--easing-out);
}
.wp-gallery-content figure:hover img { transform: scale(1.05); }
.wp-gallery-content figcaption {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-muted);
    text-align: center;
    padding: 10px 0;
}

/* ===== Default / Elementor pages ===== */
.page-default .entry-content {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--c-ink-soft);
}
.page-default .entry-content h1,
.page-default .entry-content h2,
.page-default .entry-content h3,
.page-default .entry-content h4 {
    font-family: var(--f-display);
    color: var(--c-ink);
    line-height: 1.15;
    margin: 1.6em 0 0.6em;
}
.page-default .entry-content h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-default .entry-content h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
.page-default .entry-content p { margin: 0 0 1.2em; }
.page-default .entry-content a { color: var(--c-ink); text-decoration: underline; text-underline-offset: 3px; }
.page-default .entry-content a:hover { color: var(--c-accent); }
.page-default .entry-content ul,
.page-default .entry-content ol { margin: 0 0 1.2em 1.4em; }
.page-default .entry-content li { margin-bottom: 0.5em; }
.page-default .entry-content img { border-radius: 2px; }
.page-default .entry-content blockquote {
    border-left: 3px solid var(--c-ink);
    padding-left: 24px;
    margin: 1.6em 0;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--c-ink);
}

/* Elementor full-width: let Elementor control everything edge-to-edge */
.elementor-fullwidth { width: 100%; overflow: hidden; }
.elementor-fullwidth .elementor-section.elementor-section-boxed > .elementor-container { max-width: 1440px; }

/* Brand marquee — Clean White Card style */
.brand-item--img {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 130px !important;
    min-width: 220px !important;
    padding: 24px 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.10) 0px 0px 0px 1px;
    transition: box-shadow .35s var(--easing-out), transform .35s var(--easing-out);
}
.brand-item--img:hover {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 6px 16px 0px, rgba(27, 31, 35, 0.18) 0px 0px 0px 1px;
    transform: translateY(-4px);
}
.brand-item--img img {
    height: 80px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain;
    display: block;
    filter: none;
    opacity: 1;
    transition: transform .35s var(--easing-out);
}
.brand-item--img:hover img { transform: scale(1.04); }

/* Hide the · dots between brand logos for cleaner look */
.brand-marquee-track .brand-dot { display: none; }
.brand-marquee-track { gap: 28px !important; }

/* ===== Brand Work / Case Studies ===== */
.brand-work { padding: 120px 0; background: var(--c-bg); }
.brand-work-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 500;
}
.brand-work-headline em {
    color: var(--c-grey-400);
    font-style: italic;
    font-weight: 300;
}
.brand-work-sub {
    font-family: var(--f-display);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--c-ink-soft);
    max-width: 640px;
    margin-bottom: 64px;
    line-height: 1.5;
    font-style: italic;
}
.brand-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}
.work-card {
    background: var(--c-bg-alt);
    border: 1px solid var(--c-line);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--c-ink);
    transition: transform 0.5s var(--easing), border-color 0.5s var(--easing), box-shadow 0.5s var(--easing);
}
.work-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-ink);
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.18);
}
.work-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--c-bg-warm);
}
.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--easing);
    filter: grayscale(40%);
}
.work-card:hover .work-card-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
.work-year-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    color: var(--c-bg);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    border-radius: 100px;
}
.work-card-body { padding: 32px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.work-brand {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.work-title {
    font-family: var(--f-display);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.15;
    margin: 0;
    color: var(--c-ink);
}
.work-desc {
    color: var(--c-ink-soft);
    line-height: 1.65;
    margin: 0;
    font-size: 0.98rem;
}
.work-meta-label {
    display: block;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 8px;
}
.work-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.work-chip {
    padding: 5px 12px;
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--c-ink-soft);
}
.work-goal-row {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--c-line);
}
.work-goal {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--c-ink);
    line-height: 1.5;
    margin: 0;
}
.work-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-ink);
    padding-top: 4px;
    transition: gap 0.4s var(--easing);
}
a.work-card:hover .work-cta { gap: 16px; }
.work-cta i { font-size: 0.85em; transition: transform 0.4s var(--easing); }
a.work-card:hover .work-cta i { transform: rotate(-45deg); }

@media (max-width: 768px) {
    .brand-work { padding: 80px 0; }
    .brand-work-grid { grid-template-columns: 1fr; gap: 20px; }
    .work-card-body { padding: 24px; }
}

/* ===== Section padding override (80px standard, tighter on mobile) ===== */
.section,
.about,
.services,
.social-section,
.cta-mega,
.gallery-preview,
.brands,
.journey,
.brand-work,
.stats,
.brand-work,
.faq-section,
.contact-page,
.gallery-page,
.page-default {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media (max-width: 1024px) {
    .section,
    .about,
    .services,
    .social-section,
    .cta-mega,
    .gallery-preview,
    .brands,
    .journey,
    .brand-work,
    .stats,
    .faq-section,
    .contact-page,
    .gallery-page,
    .page-default {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}
@media (max-width: 768px) {
    .section,
    .about,
    .services,
    .social-section,
    .cta-mega,
    .gallery-preview,
    .brands,
    .journey,
    .brand-work,
    .stats,
    .faq-section,
    .contact-page,
    .gallery-page,
    .page-default {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

/* Inner spacing (section heads / margins) tightened too */
.section-head { margin-bottom: 48px; }
.section-tag { margin-bottom: 36px; }
@media (max-width: 768px) {
    .section-head { margin-bottom: 32px; }
    .section-tag { margin-bottom: 24px; }
}

/* ============================================================
   Mobile / Responsive overhaul (force readable on all viewports)
   ============================================================ */

/* MOBILE — Navbar always solid dark + items always cream */
@media (max-width: 768px) {
    .navbar,
    .navbar.scrolled,
    .navbar.solid {
        background: rgba(10, 10, 10, 0.95) !important;
        backdrop-filter: blur(16px) saturate(140%);
        -webkit-backdrop-filter: blur(16px) saturate(140%);
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .navbar .nav-logo,
    .navbar.scrolled .nav-logo,
    .navbar.solid .nav-logo { color: var(--c-bg); }
    .navbar .logo-text,
    .navbar.scrolled .logo-text,
    .navbar.solid .logo-text { color: var(--c-bg); }
    .navbar .logo-circle,
    .navbar.scrolled .logo-circle,
    .navbar.solid .logo-circle {
        background: var(--c-bg);
        animation: pulse-light 2s ease-in-out infinite;
    }
    .navbar .nav-toggle span,
    .navbar.scrolled .nav-toggle span,
    .navbar.solid .nav-toggle span { background: var(--c-bg); }

    /* Mobile slide-in menu items — always cream regardless of scroll state */
    .nav-menu,
    .nav-menu.open {
        background: rgba(10, 10, 10, 0.98);
        padding: 90px 28px 40px;
    }
    .nav-menu .nav-link,
    .navbar.scrolled .nav-menu .nav-link,
    .navbar.solid .nav-menu .nav-link {
        color: var(--c-bg) !important;
        font-size: 14px;
        padding: 14px 16px;
        display: block;
        width: 100%;
    }
    .nav-menu .nav-link:hover {
        color: var(--c-grey-300) !important;
    }
    /* Logo signature on dark navbar — invert so it's visible */
    .navbar .logo-sign,
    .navbar.scrolled .logo-sign,
    .navbar.solid .logo-sign { filter: invert(1) brightness(1.2); }

    /* Hide CTA pill on mobile (menu already has Contact via Sitemap; saves cramping) */
    .nav-cta { display: none; }
}
@keyframes pulse-light {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { transform: scale(1.15); opacity: 0.7; box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

/* MOBILE — Section/content tighteners */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .brand-work-grid { grid-template-columns: 1fr; gap: 18px; }
    .work-card-body { padding: 22px; gap: 12px; }
    .work-card-image { aspect-ratio: 5/3; }
    .footer-grid { gap: 36px; }
    .footer-cta { padding: 0 0 48px; }
    .footer-main { padding: 48px 0 32px; }
    .stats-grid { gap: 14px; }
    .services-headline,
    .brand-work-headline,
    .gallery-headline,
    .social-headline,
    .journey-headline,
    .about-headline { font-size: clamp(2rem, 9vw, 3rem); }
    .brand-work-sub { margin-bottom: 32px; }
}

/* SMALL MOBILE (≤ 480px) — extra polish */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: clamp(2.5rem, 13vw, 4rem); }
    .hero-content { padding: 90px var(--pad-x) 60px; }
    .work-card-body { padding: 18px; }
    .work-chip { padding: 4px 10px; font-size: 10px; }
    .ms-item { padding: 10px 0; }
    .ms-val { font-size: 0.95rem; }
    .footer-cta-title { font-size: clamp(2rem, 9vw, 3rem); }
    .footer-mega { font-size: clamp(3rem, 18vw, 8rem); }
    .footer-bottom-row { font-size: 10px; }
}

/* TABLET (769-1024) — keep horizontal nav, slight tighten */
@media (min-width: 769px) and (max-width: 1024px) {
    .container { padding: 0 32px; }
    .nav-menu .nav-link { padding: 9px 12px; font-size: 11px; }
    .brand-work-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Footer mobile fixes ===== */
@media (max-width: 768px) {
    /* Mega watermark — scale down so it doesn't dwarf the content */
    .footer-mega {
        font-size: clamp(3rem, 18vw, 6rem);
        -webkit-text-stroke-width: 1px;
    }
    .footer-mega-wrap { padding: 16px 0; }

    /* Bottom row — better stack + spacing */
    .footer-bottom { padding: 22px 0; }
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        align-items: center;
    }
    .footer-bottom-row > * { width: 100%; }
    .footer-bottom-row .designed { font-size: 10px; opacity: 0.7; }
    .back-top-btn { justify-content: center; }

    /* Tape spacing tighter */
    .footer-tape { padding: 16px 0; }
    .footer-tape-track { font-size: 11px; gap: 24px; }

    /* Footer main grid stacking — already 1 col but tighter gaps */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bio { max-width: 100%; font-size: 13px; }
    .footer-name { font-size: 1.6rem; }
    .footer-sign { height: 44px; }

    /* Status pill smaller */
    .footer-brand-block .status { font-size: 9px; padding: 6px 12px; }

    /* Live · Dubai rows — slight tighter */
    .footer-info-row { padding: 5px 0; }
    .footer-info-row .label { font-size: 9px; }
    .footer-info-row .val { font-size: 12px; }

    /* Footer CTA big email */
    .footer-cta-title { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 36px; }
    .footer-email { font-size: clamp(1.2rem, 5.5vw, 2rem); gap: 14px; }
    .footer-email .arrow { width: 42px; height: 42px; }
}

@media (max-width: 480px) {
    .footer-mega {
        font-size: clamp(2.4rem, 16vw, 4rem);
    }
    .footer-bottom-row { font-size: 10px; }
    .footer-cta-eyebrow { font-size: 10px; letter-spacing: 0.25em; }
}

/* ===== Social rows (Follow Along) — mobile stacking ===== */
@media (max-width: 768px) {
    .social-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 4px 14px;
        padding: 22px 0;
        align-items: center;
    }
    .social-row .social-name {
        grid-column: 1;
        grid-row: 1;
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }
    .social-row .social-handle {
        grid-column: 1;
        grid-row: 2;
        font-size: 11px;
        line-height: 1.4;
        word-break: break-all;
    }
    .social-row .social-arrow {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
        text-align: right;
        font-size: 0.95rem;
    }
}

/* ===== Contact Form 7 — match theme contact form style ===== */
.ja-cf7-wrap .wpcf7 .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 24px;
}
.ja-cf7-wrap .wpcf7 .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.ja-cf7-wrap .wpcf7 .form-group label {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-ink-soft);
    margin-bottom: 8px;
    font-weight: 500;
}
.ja-cf7-wrap .wpcf7 .form-row .form-group {
    margin-bottom: 0;
}
.ja-cf7-wrap .wpcf7 input[type="text"],
.ja-cf7-wrap .wpcf7 input[type="email"],
.ja-cf7-wrap .wpcf7 input[type="tel"],
.ja-cf7-wrap .wpcf7 input[type="url"],
.ja-cf7-wrap .wpcf7 select,
.ja-cf7-wrap .wpcf7 textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--c-line);
    padding: 12px 0;
    font-family: var(--f-display);
    font-size: 18px;
    font-style: italic;
    color: var(--c-ink);
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    transition: border-color .3s ease;
}
.ja-cf7-wrap .wpcf7 input:focus,
.ja-cf7-wrap .wpcf7 select:focus,
.ja-cf7-wrap .wpcf7 textarea:focus {
    outline: none;
    border-bottom-color: var(--c-ink);
}
.ja-cf7-wrap .wpcf7 ::placeholder {
    color: var(--c-grey-300);
    font-style: italic;
    opacity: 1;
}
.ja-cf7-wrap .wpcf7 textarea {
    resize: vertical;
    min-height: 120px;
    border: 1px solid var(--c-line);
    padding: 14px 16px;
}
.ja-cf7-wrap .wpcf7 textarea:focus {
    border-color: var(--c-ink);
}
.ja-cf7-wrap .wpcf7 select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='%23111' d='M6 8L0 0h12z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 10px;
    padding-right: 24px;
    cursor: pointer;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.ja-cf7-wrap .wpcf7 select option {
    padding: 8px;
}
.ja-cf7-wrap .wpcf7 .btn-submit,
.ja-cf7-wrap .wpcf7 input[type="submit"] {
    background: var(--c-dark);
    color: var(--c-cream);
    border: none;
    padding: 20px 60px;
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background .3s ease, transform .3s ease;
}
.ja-cf7-wrap .wpcf7 .btn-submit:hover,
.ja-cf7-wrap .wpcf7 input[type="submit"]:hover {
    background: var(--c-ink);
    transform: translateY(-2px);
}
.ja-cf7-wrap .wpcf7 .form-note {
    text-align: center;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--c-ink-soft);
    margin-top: 16px;
}

/* Response messages */
.ja-cf7-wrap .wpcf7-response-output {
    border-radius: 8px !important;
    padding: 16px 20px !important;
    margin: 20px 0 0 !important;
    font-family: var(--f-mono) !important;
    font-size: 13px !important;
    letter-spacing: 0.05em !important;
}
.ja-cf7-wrap .wpcf7-not-valid-tip {
    font-family: var(--f-mono);
    font-size: 11px;
    color: #dc2626;
    margin-top: 6px;
    letter-spacing: 0.05em;
}
.ja-cf7-wrap .wpcf7-spinner {
    margin: 0 0 0 12px;
}

@media (max-width: 768px) {
    .ja-cf7-wrap .wpcf7 .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .social-row {
        padding: 18px 0;
        gap: 2px 12px;
    }
    .social-row .social-name { font-size: 1.3rem; }
    .social-row .social-handle { font-size: 10px; }
}

/* ===== Footer copyright inline link styling ===== */
.footer-bottom-row a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: color var(--t-fast), border-bottom-color var(--t-fast);
}
.footer-bottom-row a:hover {
    color: var(--c-ink);
    border-bottom-color: var(--c-ink);
}

/* Mega watermark mobile sizing kept at clamp(2.4rem, 12vw, 4rem) — looks good */

/* ===== Footer Social: icon hidden on desktop, inline with text on mobile ===== */
.footer-social-list .footer-social-icon { display: none; }

@media (max-width: 768px) {
    /* Sitemap + Social side-by-side, Brand & Live full-width */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px 24px !important;
    }
    .footer-brand-block,
    .footer-col:last-child {
        grid-column: 1 / -1;
    }

    /* Social items: small icon + label text (vertical list like sitemap) */
    .footer-social-list li a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    .footer-social-list .footer-social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        font-size: 14px;
        line-height: 1;
        color: var(--c-ink);
    }
    .footer-social-list .ext { display: none; }
}

/* ===== Packages / Pricing Section ===== */
.packages {
    padding: 120px 0;
    background: var(--c-bg);
}
.packages-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 500;
}
.packages-headline em { color: var(--c-grey-300); font-style: italic; font-weight: 300; }
.packages-sub {
    color: var(--c-ink-soft);
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 60px;
}
.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}
.pkg-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 48px 40px 40px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.10) 0px 0px 0px 1px;
    transition: box-shadow .4s var(--easing-out), transform .4s var(--easing-out);
    display: flex;
    flex-direction: column;
}
.pkg-card:hover {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 8px 24px 0px, rgba(27, 31, 35, 0.18) 0px 0px 0px 1px;
    transform: translateY(-4px);
}
.pkg-card-1 {
    background: var(--c-dark);
    color: var(--c-cream);
}
.pkg-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    display: inline-block;
    padding: 6px 14px;
    background: var(--c-bg-warm);
    color: var(--c-ink);
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}
.pkg-card-1 .pkg-badge {
    background: var(--c-cream);
    color: var(--c-dark);
}
.pkg-price {
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    line-height: 1;
    margin: 0 0 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.pkg-title {
    font-family: var(--f-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.2;
    margin: 0 0 4px;
    font-weight: 500;
    max-width: 85%;
    color: var(--c-ink-soft);
    font-style: italic;
}
.pkg-card-1 .pkg-title { color: var(--c-grey-300); }
.pkg-delivery {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-ink-soft);
    margin: 0 0 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pkg-card-1 .pkg-delivery {
    color: var(--c-grey-300);
    border-bottom-color: rgba(244,241,234,0.12);
}
.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
}
.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}
.pkg-features li i {
    flex-shrink: 0;
    margin-top: 5px;
    font-size: 11px;
    color: var(--c-accent);
}
.pkg-card-1 .pkg-features li i {
    color: var(--c-cream);
}
.pkg-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: var(--c-dark);
    color: var(--c-cream);
    border-radius: 100px;
    text-decoration: none;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background .3s ease, transform .3s ease;
    align-self: stretch;
}
.pkg-card-1 .pkg-cta {
    background: var(--c-cream);
    color: var(--c-dark);
}
.pkg-cta:hover {
    transform: translateY(-2px);
    background: var(--c-accent);
    color: #fff;
}
.pkg-card-1 .pkg-cta:hover {
    background: var(--c-accent);
    color: #fff;
}
.pkg-cta i {
    font-size: 12px;
    transition: transform .3s ease;
}
.pkg-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .packages { padding: 80px 0; }
    .packages-grid { grid-template-columns: 1fr; gap: 24px; }
    .pkg-card { padding: 40px 28px 32px; }
    .pkg-title { max-width: 80%; }
}

/* Nav items marked mobile-only: visible ONLY on phone screens (≤480px), hidden on tablet & desktop */
.nav-menu .nav-mobile-only { display: none; }
@media (max-width: 480px) {
    .nav-menu .nav-mobile-only { display: list-item; }
}

