@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=Syne:wght@400;700;800&family=Space+Grotesk:wght@300;400;500;700&display=swap');

:root {
    --black: #05080A;
    --ink: #07141A;
    --graphite: #101518;
    --dark: #171C20;
    --slate: #252C31;
    --text: #F2F7F9;
    --sub: #AEBAC0;
    --muted: #718087;

    /* Official IOVODN Logo Tri-Color Palette */
    --logo-teal: #1EBEA5;
    /* Dot over 'i' */
    --logo-amber: #F4B23E;
    /* Dot inside 1st 'o' */
    --logo-pink: #E8398A;
    /* Dot inside 2nd 'o' */
    --logo-silver: #CCCCCC;

    --blue: #1EBEA5;
    /* Primary brand accent */
    --bright: #20E3C7;
    /* Bright teal glow */
    --deep: #128373;
    /* Deep tone */

    /* Multi-color Logo Gradients */
    --logo-grad: linear-gradient(135deg, #1EBEA5 0%, #F4B23E 50%, #E8398A 100%);
    --logo-grad-horiz: linear-gradient(90deg, #1EBEA5 0%, #F4B23E 50%, #E8398A 100%);
    --logo-grad-glow: linear-gradient(90deg, rgba(30, 190, 165, 0.4), rgba(244, 178, 62, 0.4), rgba(232, 57, 138, 0.4));

    --heading: 'Syne', sans-serif;
    --body: 'Inter', sans-serif;
    --mono: 'Space Grotesk', monospace;
    --serif: 'Cormorant Garamond', serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background: var(--black);
    color: var(--text);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

::selection {
    background: var(--logo-pink);
    color: #FFFFFF;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

/* GRAIN */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.page-num {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    color: var(--muted);
    text-transform: uppercase;
}

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    padding: 2.2rem 4rem 1.2rem;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    pointer-events: none;
    transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    padding: 1.2rem 4rem 0.8rem;
}

/* Enable pointer events on interactive menu elements */
.nav-logo,
.nav-links,
.nav-cta,
.nav-hamburger {
    pointer-events: auto;
}

/* 1. SEPARATED FLOATING LOGO PILL */
.nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;

    /* SLANTED DESIGN */
    transform: rotate(-3.5deg);
    transform-origin: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    /* LOAD ENTER ANIMATION */
    animation: logoEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav-logo img {
    height: 120px;
    /* Massive logo wordmark, matching drawing */
    width: auto;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55));
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    /* SMOOTH BOBBING ANIMATION */
    animation: logoWiggleBob 4.8s ease-in-out infinite;
}

.nav-logo:hover {
    transform: rotate(-1.5deg) scale(1.05);
    /* Straightens slightly and pops up */
}

.nav-logo:hover img {
    filter: drop-shadow(0 8px 25px rgba(30, 190, 165, 0.45));
}

.nav.scrolled .nav-logo {
    transform: rotate(-2deg);
}

.nav.scrolled .nav-logo img {
    height: 70px;
    /* Scaled down on scroll, but still prominent */
}

.nav.scrolled .nav-logo:hover {
    transform: rotate(-0.5deg) scale(1.05);
}

/* Animations for Logo */
@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translate(-30px, -20px) rotate(-10deg) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) rotate(-3.5deg) scale(1);
    }
}

@keyframes logoWiggleBob {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-2px) rotate(1.2deg);
    }

    66% {
        transform: translateY(1.5px) rotate(-1deg);
    }
}

/* 2. SEPARATED FLOATING LINKS PILL */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    background: rgba(16, 21, 24, 0.35);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.9rem 3rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: auto;
    margin-right: 2rem;
}

.nav-links:hover {
    background: rgba(16, 21, 24, 0.45);
    border-color: rgba(255, 255, 255, 0.08);
}

.nav.scrolled .nav-links {
    padding: 0.65rem 2.4rem;
    background: rgba(16, 21, 24, 0.7);
}

.nav-links a {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sub);
    text-decoration: none;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--logo-teal);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* 3. SEPARATED FLOATING CTA PILL */
.nav-cta {
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #05080A;
    background: var(--logo-teal);
    text-decoration: none;
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(30, 190, 165, 0.25);
    white-space: nowrap;
}

.nav-cta:hover {
    background: #23d9bd;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(30, 190, 165, 0.38);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text);
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 2.6rem;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn-primary {
    color: #05080A;
    background: var(--logo-teal);
    border: none;
    font-weight: 800;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #23d9bd;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 190, 165, 0.38);
}

.btn-outline {
    color: var(--text);
    background: transparent;
    border: 1px solid rgba(30, 190, 165, 0.4);
}

.btn-outline:hover {
    background: rgba(30, 190, 165, 0.1);
    border-color: var(--logo-teal);
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   HERO SLIDESHOW
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) contrast(1.12);
    transform: scale(1.0);
    transition: transform 10s cubic-bezier(0.1, 0.2, 0.3, 1), filter 1.6s ease-in-out;
}

.hero-slide.active img {
    transform: scale(1.08);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(5, 8, 10, 0.65) 0%, rgba(5, 8, 10, 0.15) 30%, rgba(5, 8, 10, 0.15) 70%, var(--black) 100%),
        radial-gradient(circle at 30% 50%, rgba(30, 190, 165, 0.12), rgba(244, 178, 62, 0.08) 40%, rgba(232, 57, 138, 0.06) 70%, transparent 100%),
        linear-gradient(to right, rgba(5, 8, 10, 0.75) 0%, rgba(5, 8, 10, 0.1) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 4rem 7rem;
    max-width: 960px;
}

.hero-metadata {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--logo-teal);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-meta-edition {
    color: var(--muted);
    border: 1px solid rgba(113, 128, 135, 0.28);
    padding: 0.25rem 0.7rem;
    font-size: 0.64rem;
    border-radius: 20px;
    letter-spacing: 0.12em;
}

.hero-title {
    font-family: var(--heading);
    font-weight: 800;
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-line span.serif-italic,
.hero-title-line {
    animation: editorialSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-line.line-1 {
    animation-delay: 0.15s;
}

.hero-title-line.line-2 {
    animation-delay: 0.35s;
}

.hero-title-line.line-3 {
    animation-delay: 0.55s;
}

.hero-title .serif-italic {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    text-transform: lowercase;
    display: inline-block;
    letter-spacing: 0.02em;
    padding-right: 0.05em;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title .serif-italic:hover {
    transform: translateX(6px);
}

/* Tri-Color Brand Highlights on Hero Verbs: CREATE (Teal), BUILD (Amber), EMPOWER (Pink) */
.hero-title-line.line-1 .serif-italic {
    color: var(--logo-teal);
}

.hero-title-line.line-2 .serif-italic {
    color: var(--logo-amber);
}

.hero-title-line.line-3 .serif-italic {
    color: var(--logo-pink);
}

@keyframes editorialSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--sub);
    line-height: 1.8;
    font-weight: 300;
    max-width: 580px;
    margin-bottom: 3.5rem;
    letter-spacing: -0.005em;
    opacity: 0;
    animation: heroFadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    opacity: 0;
    animation: heroFadeUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-actions .btn-arrow {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-actions .btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-indicators {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    z-index: 10;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    opacity: 0;
    animation: heroFadeIn 2.2s ease 0.4s forwards;
}

.hero-dot {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    transition: background 0.3s;
}

.hero-dot::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: var(--logo-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 5s linear;
}

.hero-dot:nth-child(3n+1)::after {
    background: var(--logo-teal);
}

.hero-dot:nth-child(3n+2)::after {
    background: var(--logo-amber);
}

.hero-dot:nth-child(3n+3)::after {
    background: var(--logo-pink);
}

.hero-dot.active::after {
    transform: scaleX(1);
}

.hero-dot:not(.active)::after {
    transform: scaleX(0);
    transition: none;
}

.hero-scroll-guide {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: heroFadeIn 2.2s ease 0.4s forwards;
}

.scroll-text {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-track {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-bar {
    width: 100%;
    height: 20px;
    background: var(--logo-grad-horiz);
    position: absolute;
    top: -20px;
    left: 0;
    animation: scrollAnimation 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes scrollAnimation {
    0% {
        top: -20px;
    }

    50%,
    100% {
        top: 48px;
    }
}

/* ═══════════════════════════════════════
   EDITORIAL FEATURE BAND — Minimal Premium
   ═══════════════════════════════════════ */
.artwork-band {
    position: relative;
    height: 75vh;
    min-height: 480px;
    overflow: hidden;
    background: #000;
}

.artwork-band>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25) contrast(1.15);
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), filter 1.4s ease;
    z-index: 1;
}

.artwork-band:hover>img {
    transform: scale(1.04);
    filter: brightness(0.32) contrast(1.15);
}

/* Inner split layout */
.artwork-band-inner {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1px 360px;
    align-items: center;
    padding: 0 6rem;
    gap: 4rem;
    background: linear-gradient(90deg,
            rgba(5, 8, 10, 0.55) 0%,
            transparent 40%,
            transparent 60%,
            rgba(5, 8, 10, 0.7) 100%);
}

/* Vertical divider line */
.ab-divider {
    width: 1px;
    height: 140px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* LEFT panel */
.ab-left {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.ab-label {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--logo-teal);
    font-weight: 600;
}

.ab-headline {
    font-family: var(--heading);
    font-size: clamp(3.2rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.ab-em {
    font-style: italic;
    color: var(--logo-amber);
}

/* RIGHT panel */
.ab-right {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    align-items: flex-start;
}

.ab-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
}

.ab-actions {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.ab-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    transition: gap 0.3s ease, opacity 0.3s ease;
    opacity: 0.75;
}

.ab-link:hover {
    gap: 0.9rem;
    opacity: 1;
}

.ab-link--teal {
    color: var(--logo-teal);
}

.ab-link--amber {
    color: var(--logo-amber);
}

.ab-link--pink {
    color: var(--logo-pink);
}

.ab-meta {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.4rem;
}

@media (max-width: 1024px) {
    .artwork-band-inner {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 0;
        justify-items: center;
        text-align: center;
        background: rgba(5, 8, 10, 0.65);
    }

    .ab-divider {
        display: none;
    }

    .ab-right {
        align-items: center;
    }

    .ab-label {
        text-align: center;
    }
}



/* Premium Vignette Overlay */
.artwork-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at center, transparent 20%, rgba(5, 8, 10, 0.72) 90%),
        linear-gradient(180deg, rgba(5, 8, 10, 0.55) 0%, transparent 30%, transparent 70%, rgba(5, 8, 10, 0.65) 100%),
        linear-gradient(90deg, rgba(5, 8, 10, 0.6) 0%, transparent 20%, transparent 80%, rgba(5, 8, 10, 0.6) 100%);
    pointer-events: none;
}

/* Tricolor Accent Bars (top + bottom) */
.artwork-accent-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 6;
    background: linear-gradient(90deg, var(--logo-teal) 0%, var(--logo-amber) 50%, var(--logo-pink) 100%);
}

.artwork-accent-bar--top {
    top: 0;
}

.artwork-accent-bar--bottom {
    bottom: 0;
}

/* Corner bracket rule */
.corner-rule {
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, var(--logo-teal), transparent);
    opacity: 0.7;
    margin-top: 0.15rem;
}

.artwork-corner--tr .corner-rule,
.artwork-corner--br .corner-rule {
    background: linear-gradient(270deg, var(--logo-amber), transparent);
    align-self: flex-end;
}

/* Pulsing tag dot */
.tag-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--logo-teal);
    margin-right: 0.5rem;
    vertical-align: middle;
    box-shadow: 0 0 0 0 rgba(30, 190, 165, 0.5);
    animation: tagPulse 2.4s ease infinite;
}

@keyframes tagPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(30, 190, 165, 0.5);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(30, 190, 165, 0);
    }
}

/* Mr-rule (right side separator) */
.mr-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(270deg, rgba(244, 178, 62, 0.5), transparent);
    margin-bottom: 0.8rem;
}

/* Headline glow */
.ast-line--1 {
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.15), 0 2px 30px rgba(0, 0, 0, 0.8);
}

.ast-line--2 {
    text-shadow: 0 0 80px rgba(244, 178, 62, 0.35), 0 2px 30px rgba(0, 0, 0, 0.8);
}

.ast-line--3 {
    text-shadow: 0 0 60px rgba(232, 57, 138, 0.35), 0 2px 30px rgba(0, 0, 0, 0.8);
}

/* Shared corner base */
.artwork-corner {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* TOP-LEFT */
.artwork-corner--tl {
    top: 2.5rem;
    left: 3rem;
}

/* TOP-CENTER */
.artwork-corner--tc {
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
}

/* TOP-RIGHT */
.artwork-corner--tr {
    top: 2.5rem;
    right: 3rem;
    align-items: flex-end;
    text-align: right;
}

/* MIDDLE-LEFT: Vertical text */
.artwork-corner--ml {
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
}

/* MIDDLE-RIGHT: Description + CTAs */
.artwork-corner--mr {
    top: 50%;
    right: 3.5rem;
    transform: translateY(-50%);
    max-width: 280px;
    align-items: flex-end;
    text-align: right;
}

/* FAR-RIGHT: Vertical discipline text */
.artwork-corner--mr2 {
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
}

/* BOTTOM-LEFT */
.artwork-corner--bl {
    bottom: 2.5rem;
    left: 3rem;
}

/* BOTTOM-RIGHT */
.artwork-corner--br {
    bottom: 2.5rem;
    right: 3rem;
    align-items: flex-end;
    text-align: right;
}

/* CENTER STAGE: Main Title Anchored Dead Center */
.artwork-center-stage {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.artwork-split-title {
    font-family: var(--heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    text-align: center;
    line-height: 0.95;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ast-line {
    display: block;
    transition: letter-spacing 0.6s ease;
}

.ast-line--1 {
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    color: #FFFFFF;
}

.ast-line--2 {
    font-size: clamp(4rem, 9.5vw, 9.5rem);
}

.ast-line--3 {
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    color: var(--logo-pink);
}

.artwork-band:hover .ast-line--1 {
    letter-spacing: 0.05em;
}

.artwork-band:hover .ast-line--3 {
    letter-spacing: 0.05em;
}

/* Typography helpers */
.artwork-tag {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--logo-teal);
    font-weight: 700;
}

.artwork-edition {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.artwork-coords {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
}

.artwork-vertical-text {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--logo-teal);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    opacity: 0.7;
}

.artwork-side-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.artwork-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-end;
}

.artwork-cta-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cta-color, var(--logo-teal));
    transition: gap 0.3s ease, opacity 0.3s ease;
}

.artwork-cta-link:hover {
    gap: 1rem;
    opacity: 1;
}

.cta-line {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--cta-color, var(--logo-teal));
    transition: width 0.3s ease;
}

.artwork-cta-link:hover .cta-line {
    width: 40px;
}

@media (max-width: 768px) {

    .artwork-corner--ml,
    .artwork-corner--mr2,
    .artwork-corner--mr {
        display: none;
    }

    .artwork-split-title {
        padding: 0 1rem;
    }

    .ast-line--1,
    .ast-line--3 {
        font-size: clamp(2.2rem, 8vw, 4rem);
    }

    .ast-line--2 {
        font-size: clamp(2.8rem, 10vw, 5rem);
    }
}



/* ═══════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════ */
.marquee-section {
    padding: 3rem 0;
    border-top: 1px solid var(--slate);
    border-bottom: 1px solid var(--slate);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 24s linear infinite;
}

.marquee-track span {
    font-family: var(--heading);
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--slate);
    padding: 0 1.5rem;
    letter-spacing: -0.03em;
    user-select: none;
}

.marquee-track span:nth-child(3n+1) em {
    font-style: normal;
    -webkit-text-stroke-color: var(--logo-teal);
}

.marquee-track span:nth-child(3n+2) em {
    font-style: normal;
    -webkit-text-stroke-color: var(--logo-amber);
}

.marquee-track span:nth-child(3n+3) em {
    font-style: normal;
    -webkit-text-stroke-color: var(--logo-pink);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════
   IMAGE STORY SECTION — staggered images + text
   ═══════════════════════════════════════ */
.image-story {
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 95%;
    max-width: 1850px;
    margin: 0 auto;
    align-items: start;
}

.story-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.story-col:nth-child(2) {
    margin-top: 2.5rem;
}

.story-img {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.story-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.05);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.story-img:hover img {
    transform: scale(1.04);
}

.story-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(5, 8, 10, 0.85), transparent);
    z-index: 3;
}

.story-img-cat {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--logo-teal);
}

.story-col:nth-child(2) .story-img:nth-child(1) .story-img-cat {
    color: var(--logo-amber);
}

.story-col:nth-child(2) .story-img:nth-child(2) .story-img-cat {
    color: var(--logo-pink);
}

.story-img-title {
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.story-text {
    padding: 3rem 2rem;
}

.story-text .section-label {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--logo-teal);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 700;
}

.story-text h2 {
    font-family: var(--heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.story-text p {
    color: var(--sub);
    font-size: 1.05rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

/* ═══════════════════════════════════════
   FULL BLEED IMAGE BAND
   ═══════════════════════════════════════ */
.image-band {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.image-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 10, 0.4) 0%, rgba(5, 8, 10, 0.65) 100%);
    z-index: 2;
}

.image-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.42) contrast(1.1);
}

.image-band-text {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.image-band-text h2 {
    font-family: var(--heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.image-band-text h2 span {
    background: var(--logo-grad-horiz);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.image-band-text p {
    font-size: 1.05rem;
    color: var(--sub);
    max-width: 500px;
    font-weight: 300;
}

/* ═══════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════ */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--slate);
    border-bottom: 1px solid var(--slate);
}

.stat {
    padding: 4rem 3rem;
    text-align: center;
    border-right: 1px solid var(--slate);
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--logo-teal);
    margin-bottom: 0.5rem;
}

.stat:nth-child(1) .stat-num {
    color: var(--logo-teal);
}

.stat:nth-child(2) .stat-num {
    color: var(--logo-amber);
}

.stat:nth-child(3) .stat-num {
    color: var(--logo-pink);
}

.stat:nth-child(4) .stat-num {
    background: var(--logo-grad-horiz);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ═══════════════════════════════════════
   4 CORE PILLARS — Editorial Monograph Grid (Expansive Widescreen)
   ═══════════════════════════════════════ */
.services-monograph-section {
    padding: 5rem 2rem;
    width: 95%;
    max-width: 1850px;
    margin: 0 auto;
}

.monograph-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
    width: 100%;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.monograph-header-left {
    flex: 1;
    max-width: 700px;
}

.monograph-header-right {
    flex: 1;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 1.2rem;
}

.monograph-title {
    font-family: var(--heading);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-top: 0.8rem;
}

.monograph-subtitle {
    font-size: 1.05rem;
    color: var(--sub);
    font-weight: 300;
    line-height: 1.7;
}

.monograph-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.badge-tag {
    color: var(--muted);
}

.badge-count {
    color: var(--logo-teal);
    padding: 0.3rem 0.8rem;
    background: rgba(30, 190, 165, 0.1);
    border: 1px solid rgba(30, 190, 165, 0.25);
    border-radius: 30px;
}

/* 2x2 Monograph Grid */
.monograph-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    width: 100%;
}

.monograph-card {
    background: var(--graphite);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s, box-shadow 0.5s;
}

.monograph-card-img {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.monograph-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s;
}

.monograph-card:hover .monograph-card-img img {
    transform: scale(1.05);
    filter: brightness(0.85) contrast(1.15);
}

.monograph-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--heading);
    font-size: 1.1rem;
    font-weight: 800;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    color: #05080A;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.badge-teal {
    background: var(--logo-teal);
}

.badge-amber {
    background: var(--logo-amber);
}

.badge-pink {
    background: var(--logo-pink);
}

.monograph-card-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.monograph-cat {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.8rem;
    display: block;
}

.monograph-card-title {
    font-family: var(--heading);
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
    color: #FFFFFF;
}

.monograph-card-text {
    font-size: 0.98rem;
    color: var(--sub);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.monograph-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    margin-top: auto;
}

.monograph-link svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.monograph-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.monograph-card:nth-child(1):hover {
    border-color: var(--logo-teal);
}

.monograph-card:nth-child(2):hover {
    border-color: var(--logo-amber);
}

.monograph-card:nth-child(3):hover {
    border-color: var(--logo-pink);
}

.monograph-card:nth-child(4):hover {
    border-color: var(--logo-teal);
}

.monograph-card:hover .monograph-link {
    color: var(--logo-teal);
}

.monograph-card:hover .monograph-link svg {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .monograph-grid {
        grid-template-columns: 1fr;
    }

    .services-monograph-section {
        padding: 5rem 2rem;
    }

    .monograph-card-body {
        padding: 2rem;
    }
}

/* ═══════════════════════════════════════
   SERVICES — image paired
   ═══════════════════════════════════════ */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 65vh;
}

.service-block:nth-child(even) .service-image {
    order: 2;
}

.service-block:nth-child(even) .service-content {
    order: 1;
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-block:hover .service-image img {
    transform: scale(1.04);
}

.service-content {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--graphite);
}

.service-num {
    font-family: var(--heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--slate);
    margin-bottom: 2rem;
    line-height: 1;
    transition: color 0.3s;
}

.service-block:nth-child(1):hover .service-num {
    color: var(--logo-teal);
}

.service-block:nth-child(2):hover .service-num {
    color: var(--logo-amber);
}

.service-block:nth-child(3):hover .service-num {
    color: var(--logo-pink);
}

.service-title {
    font-family: var(--heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.service-desc {
    color: var(--sub);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 420px;
}

/* ═══════════════════════════════════════
   PARTNERS & LOGO WALL (7x2 Grid)
   ═══════════════════════════════════════ */
.partners {
    padding: 7rem 3rem;
    border-top: 1px solid var(--slate);
    border-bottom: 1px solid var(--slate);
    background: radial-gradient(circle at 50% 50%, rgba(16, 21, 24, 0.85) 0%, var(--black) 100%);
}

.partners-label {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--logo-teal);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
    max-width: 1750px;
    margin: 0 auto;
}

.partner-card {
    background: rgba(16, 21, 24, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.5rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--logo-grad);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.partner-card img {
    max-height: 75px;
    max-width: 88%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.95) contrast(1.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 190, 165, 0.5);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(30, 190, 165, 0.2);
    background: rgba(23, 28, 32, 0.85);
}

.partner-card:hover img {
    filter: brightness(1.15) contrast(1.15) scale(1.08);
}

.partner-card:nth-child(3n+2):hover {
    border-color: rgba(244, 178, 62, 0.5);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(244, 178, 62, 0.2);
}

.partner-card:nth-child(3n+3):hover {
    border-color: rgba(232, 57, 138, 0.5);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(232, 57, 138, 0.2);
}

@media (max-width: 1400px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }

    .partner-card {
        height: 115px;
    }

    .partner-card img {
        max-height: 65px;
    }
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-card {
        height: 95px;
        padding: 1rem;
    }

    .partner-card img {
        max-height: 52px;
    }
}

/* ═══════════════════════════════════════
   CTA STRIP
   ═══════════════════════════════════════ */
.cta-strip {
    padding: 12rem 4rem 10rem;
}

.cta-strip h2 {
    font-family: var(--heading);
    font-size: clamp(3rem, 7.5vw, 6.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.93;
    letter-spacing: -0.04em;
    margin-bottom: 2.5rem;
}

.cta-strip h2 span {
    background: var(--logo-grad-horiz);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-email {
    font-family: var(--mono);
    font-size: clamp(0.85rem, 1.5vw, 1.2rem);
    color: var(--sub);
    text-decoration: none;
    letter-spacing: 0.05em;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--slate);
    transition: color 0.3s, border-color 0.3s;
}

.cta-email:hover {
    color: var(--logo-teal);
    border-color: var(--logo-teal);
}

/* ═══════════════════════════════════════
   FOUNDER
   ═══════════════════════════════════════ */
.founder {
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: minmax(320px, 480px) 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.founder-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.98) contrast(1.08);
}

.founder-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(244, 178, 62, 0.2);
    pointer-events: none;
}

.founder-name {
    font-family: var(--heading);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.founder-role {
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--logo-amber);
    margin-bottom: 2rem;
}

.founder-content p {
    color: var(--sub);
    font-size: 1.08rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.5rem;
    max-width: none;
}

.founder-link {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--logo-teal);
    text-decoration: none;
    border-bottom: 1px solid rgba(30, 190, 165, 0.35);
    padding-bottom: 0.2rem;
    transition: color 0.3s, border-color 0.3s;
}

.founder-link:hover {
    color: var(--logo-pink);
    border-color: var(--logo-pink);
}

/* ═══════════════════════════════════════
   BOOKING FORM — Ultra-Creative Studio Inquiry Canvas
   ═══════════════════════════════════════ */
.booking-section {
    padding: 6rem 2rem 8rem;
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    gap: 4.5rem;
    width: 95%;
    max-width: 1850px;
    margin: 0 auto;
    align-items: start;
}

.booking-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(30, 190, 165, 0.08);
    border: 1px solid rgba(30, 190, 165, 0.25);
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--logo-teal);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.status-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--logo-teal);
    box-shadow: 0 0 10px var(--logo-teal);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(30, 190, 165, 0.7);
    }

    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 8px rgba(30, 190, 165, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(30, 190, 165, 0);
    }
}

.booking-title {
    font-family: var(--heading);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.booking-desc {
    color: var(--sub);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: none;
}

.booking-detail-card {
    background: rgba(18, 24, 32, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-detail {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.2rem;
}

.booking-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.booking-detail-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.booking-detail-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.booking-detail-value {
    font-size: 1.02rem;
    color: var(--text);
    font-weight: 400;
}

.booking-detail-value a {
    color: var(--logo-teal);
    text-decoration: none;
    border-bottom: 1px solid rgba(30, 190, 165, 0.35);
    padding-bottom: 0.15rem;
    transition: color 0.3s, border-color 0.3s;
}

.booking-detail-value a:hover {
    color: var(--logo-amber);
    border-color: var(--logo-amber);
}

/* Glass Wrapper with Multi-Gradient Accent Border */
.booking-form-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 45px rgba(30, 190, 165, 0.12);
}

.form-gradient-border {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--logo-teal) 0%, var(--logo-amber) 50%, var(--logo-pink) 100%);
}

.booking-form {
    background: rgba(10, 15, 20, 0.85);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(6, 10, 14, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 1.15rem 1.3rem;
    color: var(--text);
    font-family: var(--body);
    font-size: 0.98rem;
    font-weight: 400;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--logo-teal);
    background: rgba(4, 7, 10, 0.95);
    box-shadow: 0 0 25px rgba(30, 190, 165, 0.22);
}

.btn-booking-submit {
    width: 100%;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-booking-submit svg {
    transition: transform 0.3s;
}

.btn-booking-submit:hover svg {
    transform: translateX(4px);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231EBEA5' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: var(--graphite);
    color: var(--text);
}

.form-submit {
    margin-top: 1rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 300;
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════
   SUBPAGE HERO
   ═══════════════════════════════════════ */
.subpage-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 4rem 4rem;
}

.subpage-hero-bg {
    position: absolute;
    inset: 0;
}

.subpage-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) contrast(1.1);
}

.subpage-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--black) 0%, rgba(5, 8, 10, 0.2) 50%, rgba(5, 8, 10, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.subpage-hero-content {
    position: relative;
    z-index: 5;
}

.subpage-hero h1 {
    font-family: var(--heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: 0.5rem;
}

.subpage-hero h1 span {
    background: var(--logo-grad-horiz);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════
   WORK PAGE
   ═══════════════════════════════════════ */
.work-piece {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.work-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inset(12% 20% 12% 20%);
    filter: contrast(1.05) brightness(0.85);
}

.work-info {
    position: absolute;
    bottom: 4.5rem;
    left: 4rem;
    z-index: 5;
    max-width: 500px;
}

.work-title {
    font-family: var(--heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.work-cat {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 500;
}

.work-num {
    position: absolute;
    top: 3.5rem;
    right: 4rem;
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    color: var(--muted);
    z-index: 5;
}

.work-year {
    position: absolute;
    bottom: 4.5rem;
    right: 4rem;
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    z-index: 5;
}

.work-piece::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 8, 10, 0.88) 0%, transparent 40%, transparent 65%, rgba(5, 8, 10, 0.35) 100%);
    z-index: 2;
    pointer-events: none;
}

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */
.about-split {
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    min-height: 80vh;
}

.about-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    filter: grayscale(0.25) contrast(1.05);
}

.about-text {
    padding: 8rem 5rem 6rem;
}

.about-text h2 {
    font-family: var(--heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.about-text p {
    color: var(--sub);
    font-size: 1.05rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.about-credits {
    margin-top: 3rem;
    border-top: 1px solid var(--slate);
    padding-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.credit {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.credit-role {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.credit-name {
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue);
}

/* ═══════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════ */
.services-full {
    padding: 0;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-page {
    padding: 4rem 4rem 10rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--slate);
    padding: 4rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 30px;
    opacity: 0.5;
}

.footer-copy {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
}

/* ═══════════════════════════════════════
   SCROLL ANIMATION BASE
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1000px) {
    .nav {
        padding: 1.5rem 2rem !important;
        height: auto;
    }

    .nav-logo {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        transform: none !important;
    }

    .nav-logo img {
        height: 42px !important;
        animation: none !important;
    }

    .nav.scrolled .nav-logo img {
        height: 34px !important;
    }

    .nav-links {
        display: none;
        background: rgba(5, 8, 10, 0.98) !important;
        backdrop-filter: blur(28px);
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin: 0 !important;
        padding: 2rem 4rem !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 499;
    }

    /* Show menu when toggled open */
    .nav-links.nav-open {
        display: flex;
    }

    /* Hamburger active X animation */
    .nav-hamburger.is-active .ham-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.is-active .ham-bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-hamburger.is-active .ham-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-content {
        padding: 0 2rem 5rem;
    }

    .hero-indicators {
        right: 2rem;
    }

    .image-story {
        grid-template-columns: 1fr;
        padding: 5rem 2rem;
    }

    .story-col:nth-child(2) {
        margin-top: 0;
    }

    .service-block {
        grid-template-columns: 1fr;
    }

    .service-block:nth-child(even) .service-image {
        order: 0;
    }

    .service-block:nth-child(even) .service-content {
        order: 0;
    }

    .service-image {
        height: 40vh;
    }

    .service-content {
        padding: 4rem 2rem;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        border-bottom: 1px solid var(--slate);
    }

    .founder {
        grid-template-columns: 1fr;
        padding: 5rem 2rem;
        gap: 3rem;
    }

    .founder-image-wrap {
        max-width: 350px;
    }

    .booking-section {
        grid-template-columns: 1fr;
        padding: 5rem 2rem;
        gap: 4rem;
    }

    .about-split {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 50vh;
        min-height: auto;
    }

    .about-text {
        padding: 4rem 2rem;
    }

    .subpage-hero {
        padding: 3rem 2rem;
    }

    .cta-strip {
        padding: 8rem 2rem 6rem;
    }

    .partners {
        padding: 4rem 2rem;
    }

    .contact-page {
        padding: 3rem 2rem 6rem;
    }

    .footer {
        padding: 3rem 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .work-info {
        left: 2rem;
        bottom: 3rem;
    }

    .work-num {
        right: 2rem;
        top: 2rem;
    }

    .work-year {
        right: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .showreel {
        height: 50vh;
        min-height: 300px;
    }
}

@media (max-width: 550px) {
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .about-credits {
        grid-template-columns: 1fr;
    }

    .partner-item {
        font-size: 0.6rem;
        padding: 0.55rem 0.9rem;
    }

    .play-btn {
        width: 70px;
        height: 70px;
    }
}

/* ═══════════════════════════════════════
   COMPREHENSIVE RESPONSIVE SYSTEM
   Mobile First: 480px → 768px → 1024px → Desktop
   ═══════════════════════════════════════ */

/* ─── TABLET (769px – 1024px) ─── */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav {
        padding: 1.8rem 2.5rem;
    }

    .nav-logo img {
        height: 80px;
    }

    .nav.scrolled .nav-logo img {
        height: 56px;
    }

    .hero-title {
        font-size: clamp(3rem, 6vw, 5.5rem);
    }

    .monograph-grid {
        grid-template-columns: 1fr 1fr;
    }

    .founders-grid,
    .founder {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .booking-section {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .image-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .artwork-band-inner {
        grid-template-columns: 1fr 1px 280px;
        padding: 0 3rem;
        gap: 2.5rem;
    }

    .ab-headline {
        font-size: clamp(2.8rem, 5vw, 4.5rem);
    }

    .cta-strip-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .contact-bento {
        grid-template-columns: 1fr;
    }
}

/* ─── LUXURY EDITORIAL MOBILE DESIGN SYSTEM (max 768px) ─── */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
        word-wrap: break-word;
        word-break: break-word;
        background-color: #05080a;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        word-break: normal;
        overflow-wrap: break-word;
    }

    /* NAV BAR — GLASS EDITORIAL HEADER */
    .nav {
        padding: 0.85rem 1.25rem !important;
        background: rgba(5, 8, 10, 0.94) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    }

    .nav-logo img {
        height: 44px !important;
    }

    .nav.scrolled .nav-logo img {
        height: 38px !important;
    }

    .nav-cta {
        padding: 0.45rem 0.95rem !important;
        font-size: 0.58rem !important;
        letter-spacing: 0.1em !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, rgba(37, 150, 190, 0.25), rgba(37, 150, 190, 0.1)) !important;
        border: 1px solid rgba(37, 150, 190, 0.4) !important;
        color: var(--logo-teal) !important;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.2rem;
        padding: 2rem 2rem !important;
        width: 100%;
        align-items: flex-start;
        border-radius: 0 !important;
    }

    /* HERO */
    .hero-content {
        padding: 0 1.25rem 4rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.8rem);
        line-height: 1.05;
        letter-spacing: -0.02em;
    }

    .hero-sub {
        font-size: 0.92rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.7);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.4rem;
        border-radius: 30px;
    }

    /* MARQUEE MOBILE */
    .marquee-section {
        padding: 1.5rem 0 !important;
    }

    .marquee-track {
        animation-duration: 14s;
    }

    .marquee-track span {
        font-size: clamp(1.8rem, 7vw, 3.2rem) !important;
        padding: 0 0.8rem !important;
    }

    /* ARTWORK BAND — FLUID LUXURY EDITORIAL LAYOUT */
    .artwork-band {
        position: relative !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 2.5rem 1rem !important;
        background: #080c0f !important;
        overflow: visible !important;
    }

    .artwork-band>img {
        display: none !important;
    }

    .artwork-band-inner {
        position: relative !important;
        inset: auto !important;
        grid-template-columns: 1fr !important;
        padding: 2rem 1.25rem !important;
        gap: 1.5rem !important;
        background: rgba(14, 19, 23, 0.95) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 16px !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6) !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-left: 3px solid var(--logo-teal) !important;
        align-items: flex-start !important;
    }

    .ab-divider {
        display: none !important;
    }

    .ab-left {
        text-align: left !important;
        align-items: flex-start !important;
        width: 100% !important;
    }

    .ab-label {
        font-size: 0.62rem !important;
        letter-spacing: 0.15em !important;
        color: var(--logo-teal) !important;
        text-transform: uppercase !important;
        margin-bottom: 0.6rem !important;
        display: block !important;
        background: none !important;
        background-color: transparent !important;
    }

    .ab-headline {
        font-size: clamp(1.8rem, 7.5vw, 2.5rem) !important;
        line-height: 1.1 !important;
        letter-spacing: -0.02em !important;
        text-align: left !important;
        margin: 0 0 0.8rem 0 !important;
        color: #ffffff !important;
        background: none !important;
        background-color: transparent !important;
    }

    .ab-headline br {
        display: block !important;
    }

    .ab-sub {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
        color: rgba(255, 255, 255, 0.72) !important;
        text-align: left !important;
        margin-bottom: 1.2rem !important;
    }

    .ab-right {
        align-items: stretch !important;
        justify-content: flex-start !important;
        text-align: left !important;
        width: 100% !important;
        margin-top: 0 !important;
    }

    .ab-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    .ab-link {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.9rem 1.4rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.09) !important;
        border-radius: 30px !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.12em !important;
        text-transform: uppercase !important;
        width: 100% !important;
        box-sizing: border-box !important;
        transition: all 0.3s ease !important;
    }

    .ab-link--teal {
        color: var(--logo-teal) !important;
        border-color: rgba(37, 150, 190, 0.3) !important;
    }

    .ab-link--amber {
        color: var(--logo-gold) !important;
        border-color: rgba(230, 180, 80, 0.3) !important;
    }

    .ab-link--pink {
        color: #e85d9e !important;
        border-color: rgba(232, 93, 158, 0.3) !important;
    }

    .ab-meta {
        text-align: left !important;
        margin-top: 1.2rem !important;
        font-size: 0.75rem !important;
        letter-spacing: 0.1em !important;
        color: rgba(255, 255, 255, 0.4) !important;
    }

    /* MARQUEE */
    .marquee-track {
        animation-duration: 14s;
    }

    /* IMAGE STORY — EDITORIAL GRID */
    .image-story {
        grid-template-columns: 1fr;
        padding: 3.5rem 1.25rem;
        gap: 2.2rem;
    }

    .story-text {
        text-align: left !important;
        align-items: flex-start !important;
        margin-bottom: 2rem !important;
    }

    .section-label {
        font-size: 0.65rem !important;
        letter-spacing: 0.15em !important;
        color: var(--logo-teal) !important;
        margin-bottom: 0.8rem !important;
        display: block !important;
        text-align: left !important;
    }

    .story-text h2 {
        font-size: clamp(1.8rem, 7.5vw, 2.8rem) !important;
        line-height: 1.1 !important;
        text-align: left !important;
        margin-bottom: 1rem !important;
    }

    .story-text p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        text-align: left !important;
        max-width: 100% !important;
    }

    .story-card {
        border-radius: 16px !important;
        overflow: hidden !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* MONOGRAPH GRID — EDITORIAL CARDS */
    .monograph-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .monograph-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .monograph-header-left,
    .monograph-header-right {
        align-items: flex-start !important;
        text-align: left !important;
        width: 100% !important;
    }

    .monograph-title {
        font-size: clamp(1.9rem, 7vw, 3rem) !important;
        text-align: left !important;
    }

    .monograph-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.55 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        text-align: left !important;
    }

    .monograph-card {
        background: rgba(14, 19, 23, 0.75);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 16px;
        padding: 1.8rem 1.4rem;
    }

    /* SERVICES */
    .service-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-image {
        height: 32vh;
        border-radius: 14px;
        overflow: hidden;
    }

    .service-content {
        padding: 1.5rem 0.5rem;
        text-align: left !important;
    }

    .service-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
        text-align: left !important;
    }

    .service-desc {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        text-align: left !important;
    }

    /* FOUNDER SECTION */
    .founder {
        grid-template-columns: 1fr;
        padding: 3.5rem 1.25rem;
        gap: 2rem;
    }

    .founder-image-wrap {
        max-width: 280px;
        margin: 0 auto;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .founder-content {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .founder-content h2 {
        font-size: clamp(1.7rem, 6.5vw, 2.6rem) !important;
        text-align: left !important;
        line-height: 1.15 !important;
    }

    .founder-content p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.72) !important;
        text-align: left !important;
        border-left: 2px solid var(--logo-gold);
        padding-left: 1rem;
        margin-bottom: 1.5rem !important;
    }

    .founder-link {
        display: inline-flex !important;
        align-items: center !important;
        padding: 0.8rem 1.4rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 30px !important;
        color: var(--logo-teal) !important;
        font-size: 0.75rem !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
    }

    /* STATS */
    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    /* PARTNERS / LOGO GRID */
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .logo-card {
        height: 90px;
    }

    .logo-card img {
        max-height: 50px;
    }

    /* BOOKING SECTION */
    .booking-section {
        grid-template-columns: 1fr;
        padding: 4rem 1.5rem;
        gap: 3rem;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* CTA STRIP */
    .cta-strip {
        padding: 6rem 1.5rem 5rem;
    }

    .cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .cta-main-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }

    /* CONTACT PAGE */
    .contact-page {
        padding: 2rem 1.5rem 5rem;
    }

    .contact-bento {
        grid-template-columns: 1fr;
    }

    /* ABOUT */
    .about-split {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 45vh;
        min-height: auto;
    }

    .about-text {
        padding: 3rem 1.5rem;
    }

    /* SUBPAGE HERO */
    .subpage-hero {
        padding: 2.5rem 1.5rem;
    }

    /* WORK PAGE */
    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-info {
        left: 1.5rem;
        bottom: 2rem;
    }

    .work-num {
        right: 1.5rem;
        top: 1.5rem;
    }

    .work-year {
        right: 1.5rem;
    }

    /* FOOTER */
    .footer {
        padding: 2.5rem 1.25rem;
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start !important;
        text-align: left !important;
    }
}

/* ─── MOBILE ONLY (max 480px) ─── */
@media (max-width: 480px) {

    /* NAV */
    .nav {
        padding: 1rem 1.2rem;
    }

    .nav-logo img {
        height: 46px;
    }

    .nav.scrolled .nav-logo img {
        height: 36px;
    }

    /* HERO */
    .hero-title {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .hero-metadata {
        display: none;
    }

    .hero-scroll-guide {
        display: none;
    }

    /* ARTWORK BAND */
    .ab-headline {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .ab-label {
        font-size: 0.6rem;
    }

    .ab-desc {
        font-size: 0.88rem;
    }

    /* STATS */
    .stats {
        grid-template-columns: 1fr;
    }

    /* PARTNERS */
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-card {
        height: 80px;
    }

    .logo-card img {
        max-height: 40px;
    }

    /* FOUNDER */
    .founder-content h2 {
        font-size: clamp(1.6rem, 8vw, 2.5rem);
    }

    /* MONOGRAPH */
    .monograph-card-img {
        height: 200px;
    }

    /* BOOKING */
    .booking-form {
        padding: 1.5rem 1.2rem;
    }

    .booking-tagline {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    /* ABOUT */
    .about-credits {
        grid-template-columns: 1fr;
    }

    /* FOOTER */
    .footer {
        padding: 2rem 1.2rem;
        font-size: 0.8rem;
    }

    /* CONTACT */
    .contact-page {
        padding: 1.5rem 1.2rem 4rem;
    }

    /* FORM */
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 0.9rem;
        padding: 0.85rem 1rem;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    /* CTA */
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.7rem;
    }
}

/* ─── DESKTOP FINE-TUNING (min 1280px) ─── */
@media (min-width: 1280px) {
    .nav {
        padding: 2.5rem 5rem 1.4rem;
    }

    .nav.scrolled {
        padding: 1.4rem 5rem 1rem;
    }

    .hero-content {
        padding: 0 5rem 6rem;
    }

    .artwork-band-inner {
        padding: 0 8rem;
    }

    .monograph-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .image-story {
        gap: 5rem;
    }

    .founder {
        padding: 8rem 5rem;
    }

    .booking-section {
        padding: 8rem 5rem;
    }
}