/* ========================================
   FONTS
   ======================================== */
@font-face {
    font-family: 'Instrument Serif';
    src: url('../fonts/InstrumentSerif-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Serif';
    src: url('../fonts/InstrumentSerif-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* ========================================
   VARIABLES
   ======================================== */
:root {
    --primary: #E11D48;
    --dark: #000000;
    --light: #f5f5f5;
    --black: #000000;
    --white: #ffffff;
    --gray: #666666;
    --accent: #3B82F6;

    --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--white);
    background: #000000;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

/* ========================================
   BOLD FULL SCREEN NAVIGATION
   ======================================== */
.bold-nav-full {
    z-index: 1000;
    pointer-events: none;
    position: fixed;
    inset: 0;
}

.bold-nav-full__bar {
    z-index: 1;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2.5em;
    display: flex;
    position: absolute;
}

.bold-nav-full__logo {
    pointer-events: auto;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.bold-nav-full__logo:hover {
    opacity: 0.7;
}

/* Nav color states */
.bold-nav-full.is--light-section .bold-nav-full__logo {
    color: var(--black);
}

.bold-nav-full.is--dark-section .bold-nav-full__logo {
    color: var(--white);
}

/* Hamburger */
.bold-nav-full__hamburger {
    pointer-events: auto;
    color: var(--white);
    cursor: pointer;
    background-color: transparent;
    border: none;
    justify-content: center;
    align-items: center;
    width: 3em;
    height: 3em;
    display: flex;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* Hamburger color states */
.bold-nav-full.is--light-section .bold-nav-full__hamburger {
    color: var(--black);
}

.bold-nav-full.is--dark-section .bold-nav-full__hamburger {
    color: var(--white);
}

.bold-nav-full__hamburger .bold-nav-full__hamburger-bar {
    background-color: currentColor;
    width: 2em;
    height: 2px;
    position: absolute;
    transform: translate(0, 0) rotate(0.001deg);
    transition: transform 0.5s cubic-bezier(.7, 0, .3, 1);
}

.bold-nav-full__hamburger .bold-nav-full__hamburger-bar:nth-child(1) {
    transform: translate(0, -0.45em) scale(1, 1) rotate(0.001deg);
}

.bold-nav-full__hamburger .bold-nav-full__hamburger-bar:nth-child(3) {
    transform: translate(0, 0.45em) scale(1, 1) rotate(0.001deg);
}

/* Hamburger - Hover */
.bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(1) {
    transform: translate(0, -0.45em) scale(0.5, 1) rotate(0.001deg);
}

.bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(3) {
    transform: translate(0, 0.45em) scale(0.5, 1) rotate(0.001deg);
}

/* Hamburger (Navigation Open) */
[data-navigation-status="active"] .bold-nav-full__hamburger-bar:nth-child(1) {
    transform: translate(0, 0) rotate(45deg) scale(1, 1);
}

[data-navigation-status="active"] .bold-nav-full__hamburger-bar:nth-child(2) {
    transform: translate(-150%, 0) rotate(0.001deg) scale(1, 1);
}

[data-navigation-status="active"] .bold-nav-full__hamburger-bar:nth-child(3) {
    transform: translate(0, 0) rotate(-45deg) scale(1, 1);
}

/* Hamburger - Hover (Navigation Open) */
[data-navigation-status="active"] .bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(1) {
    transform: translate(0, 0) rotate(45deg) scale(0.7, 1);
}

[data-navigation-status="active"] .bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(3) {
    transform: translate(0, 0) rotate(-45deg) scale(0.7, 1);
}

/* Tile (Menu Background) */
.bold-nav-full__tile {
    pointer-events: auto;
    background-color: #000000;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    transition: clip-path 1s cubic-bezier(.9, 0, .1, 1);
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

/* Tile (Navigation Open) */
[data-navigation-status="active"] .bold-nav-full__tile {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.bold-nav-full__ul {
    flex-flow: column;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.bold-nav-full__li {
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;
}

.bold-nav-full__link {
    color: #ffffff;
    letter-spacing: -0.04em;
    padding-left: 0.075em;
    padding-right: 0.075em;
    font-family: var(--font-display);
    font-size: clamp(40px, calc(4vw + 4vh), 120px);
    font-weight: 300;
    line-height: 1.1;
    text-decoration: none;
    transform: translateY(100%) rotate(5deg);
    transition: transform 0.75s cubic-bezier(.7, 0, .3, 1);
}

.bold-nav-full__link.is--current {
    color: var(--accent);
}

.bold-nav-full__li:nth-child(1) .bold-nav-full__link { transition-delay: 0.2s; }
.bold-nav-full__li:nth-child(2) .bold-nav-full__link { transition-delay: 0.15s; }
.bold-nav-full__li:nth-child(3) .bold-nav-full__link { transition-delay: 0.1s; }
.bold-nav-full__li:nth-child(4) .bold-nav-full__link { transition-delay: 0.05s; }
.bold-nav-full__li:nth-child(5) .bold-nav-full__link { transition-delay: 0s; }

/* Tile - Links (Navigation Open) */
[data-navigation-status="active"] .bold-nav-full__link {
    transform: translateY(0%) rotate(0.001deg);
    transition-delay: 0.3s;
}

[data-navigation-status="active"] .bold-nav-full__li:nth-child(1) .bold-nav-full__link { transition-delay: 0.3s; }
[data-navigation-status="active"] .bold-nav-full__li:nth-child(2) .bold-nav-full__link { transition-delay: 0.35s; }
[data-navigation-status="active"] .bold-nav-full__li:nth-child(3) .bold-nav-full__link { transition-delay: 0.4s; }
[data-navigation-status="active"] .bold-nav-full__li:nth-child(4) .bold-nav-full__link { transition-delay: 0.45s; }
[data-navigation-status="active"] .bold-nav-full__li:nth-child(5) .bold-nav-full__link { transition-delay: 0.5s; }

.bold-nav-full__link-text {
    text-shadow: 0 1.1em 0;
    display: block;
    position: relative;
}

/* Tile - Links (Hover) */
.bold-nav-full__li {
    transition: opacity 0.5s cubic-bezier(.7, 0, .3, 1);
}

.bold-nav-full__ul:has(.bold-nav-full__li:hover) .bold-nav-full__li {
    opacity: 0.15;
}

.bold-nav-full__ul:has(.bold-nav-full__li:hover) .bold-nav-full__li:hover {
    opacity: 1;
}

.bold-nav-full__link .bold-nav-full__link-text {
    transition: transform 0.5s cubic-bezier(.7, 0, .3, 1);
    transform: translateY(0%) rotate(0.001deg);
}

.bold-nav-full__link:hover .bold-nav-full__link-text {
    transform: translateY(-100%) rotate(0.001deg);
}

/* Bottom */
.bold-nav__bottom {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2.25em 2.5em;
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
}

.bold-nav__word {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    color: #ffffff;
    font-size: 1em;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.bold-nav__word:hover {
    opacity: 1;
}

.bold-nav__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ========================================
   STACKING CARDS
   ======================================== */
.stacking-cards__collection {
    width: 100%;
}

.stacking-cards__list {
    flex-flow: column;
    display: flex;
}

.stacking-cards__item {
    color: var(--white);
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 80px 40px;
    display: flex;
    position: relative;
}

/* Card Color Variants */
.stacking-cards__item.is--dark {
    background-color: #000000;
    color: #ffffff;
}

.stacking-cards__item.is--light {
    background-color: #f5f5f5;
    color: #000000;
}

.stacking-cards__item.is--accent {
    background-color: var(--accent);
    color: #ffffff;
}

.stacking-cards__item.is--video {
    background-color: #000;
    color: #ffffff;
    overflow: hidden;
}

/* Contact Video Background */
.contact-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Video Pause Button */
.video-pause-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 20;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-pause-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.video-pause-btn__icon {
    width: 18px;
    height: 18px;
    color: #fff;
}

.video-pause-btn__icon--play {
    display: none;
}

.video-pause-btn.is-paused .video-pause-btn__icon--pause {
    display: none;
}

.video-pause-btn.is-paused .video-pause-btn__icon--play {
    display: block;
}

/* Contact Content - Centered */
.contact-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px;
}

.contact-content .sequence-content__title {
    opacity: 1;
    margin-bottom: 32px;
}

.contact-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    background: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #f0f0f0;
    color: var(--accent);
}

/* Contact Footer - Bottom Left */
.contact-footer {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-footer__copyright {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.contact-footer__social {
    display: flex;
    gap: 16px;
}

.contact-footer__social a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-footer__social a:hover {
    color: #fff;
}

.contact-footer__social .social-icon {
    width: 14px;
    height: 14px;
}

/* ========================================
   LOGO TICKER
   ======================================== */
.logo-ticker-section {
    display: none;
    background: #000;
    padding: 24px 0;
    overflow: hidden;
}

.logo-ticker {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-ticker__track {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
}

.logo-ticker__logos {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
    flex-shrink: 0;
}

.logo-ticker__logo {
    height: 32px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-ticker__logo--small {
    height: 18px;
}

.logo-ticker__logo--large {
    height: 36px;
}

.logo-ticker__logo:hover {
    opacity: 0.9;
}

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

.stacking-cards__item.is--cream {
    background-color: #f5f1eb;
    color: #000000;
}

/* Approach section (How I Work) */
.stacking-cards__item.is--light#approach {
    display: none;
    background-color: #ffffff;
}


/* Hero - FRANCO style with background image */
.stacking-cards__item.is--hero {
    background-color: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
}

/* Hero Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg__unicorn {
    width: 100%;
    height: 100%;
}

/* Dark overlay on background */
.stacking-cards__item.is--hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Top Labels */
.hero-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    z-index: 10;
}

.hero-top__label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
}

/* Main Hero Name - FRANCO style */
.hero-name-franco {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-60%);
    font-family: var(--font-display);
    font-size: clamp(80px, 18vw, 280px);
    font-weight: 400;
    font-style: italic;
    line-height: 0.85;
    letter-spacing: -0.03em;
    color: #ffffff;
    z-index: 5;
    text-shadow: 0 4px 60px rgba(0,0,0,0.3);
}

/* Bottom Content */
.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.hero-bottom__left {
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-body);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 4px;
}

.hero-headshot {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 16px;
    border-radius: 50%;
}

.hero-role {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 32px;
}

.hero-subtext {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    line-height: 1.5;
}

.hero-subtext .hero-link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.hero-subtext .hero-link:hover {
    opacity: 0.8;
}

/* Hero Client Logos Ticker */
.hero-logos-ticker {
    width: 420px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.hero-logos-track {
    display: flex;
    width: max-content;
    animation: heroLogoScroll 20s linear infinite;
}

.hero-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
}

.hero-logo {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    flex-shrink: 0;
}

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

.hero-tagline-franco {
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.25;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 900px;
}

.hero-tagline-franco em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
}

/* Hero Buttons - FRANCO style */
.hero-cta-franco {
    display: flex;
    gap: 12px;
}

.hero-btn-franco {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-btn-franco--primary {
    background: #ffffff;
    color: #000000;
}

.hero-btn-franco--primary:hover {
    background: rgba(255,255,255,0.9);
}

.hero-btn-franco--secondary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.hero-btn-franco--secondary:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

/* ========================================
   IMAGE SEQUENCE ON SCROLL
   ======================================== */
.image-sequence__wrap {
    width: 100%;
    height: 400vh;
    position: relative;
}

.image-sequence__sticky {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    display: flex;
    position: sticky;
    top: 0;
}

.image-sequence__element {
    z-index: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.image-sequence__canvas {
    width: 100%;
    height: 100%;
    padding: 0;
    position: relative;
    object-fit: cover;
}

.image-sequence__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.image-sequence__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    padding: 0 40px;
    color: #ffffff;
}

.image-sequence__content .stacking-cards__item-top {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
}

.image-sequence__content .section-label {
    color: var(--accent);
}

.image-sequence__content .card-content {
    position: relative;
    min-height: 200px;
}

/* Sequenced items - positioned for swap animation */
.currently-item--sequenced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(2em);
}

.currently-item--sequenced[data-sequence-item="1"] {
    opacity: 1;
    transform: translateY(0);
}

/* Card Top Bar */
.stacking-cards__item-top {
    justify-content: space-between;
    align-items: center;
    display: flex;
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
}

/* Section Label */
.section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
}

.is--dark .section-label {
    color: var(--accent);
}

.is--light .section-label {
    color: var(--accent);
}

.section-label--white {
    color: var(--white);
}

.section-label--centered {
    display: inline-block;
    background: var(--accent);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 100px;
}

.approach-header {
    text-align: center;
    margin-bottom: 48px;
}

/* Card Content */
.card-content {
    max-width: 1000px;
    width: 100%;
    padding: 0 40px;
}

.card-content--hero {
    max-width: 1200px;
}

.card-content--cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ========================================
   HERO CONTENT - FRANCO STYLE
   ======================================== */
.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.hero-name-centered {
    font-family: var(--font-display);
    font-size: clamp(56px, 11vw, 140px);
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 28px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-tagline em {
    font-family: var(--font-display);
    font-style: italic;
    color: rgba(255,255,255,0.85);
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-btn--primary {
    background: #ffffff;
    color: #000000;
}

.hero-btn--primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

.hero-btn--secondary {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-btn--secondary:hover {
    color: #ffffff;
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* ========================================
   SECTION TEXT
   ======================================== */
.section-text {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-text strong {
    font-style: italic;
}

/* Now Items (in What I Do section) */
.card-content--about {
    max-width: 900px;
}

.now-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.now-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.now-item__image {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
}

.now-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.now-item__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.now-item__accent {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
}

.now-item__desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
}

.now-item__link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    margin-top: 4px;
    transition: opacity 0.2s ease;
}

.now-item__link:hover {
    opacity: 0.7;
}

/* ========================================
   WORK STRIP SECTION
   ======================================== */
.work-strip {
    width: 100%;
    padding: 0;
}

.work-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    background: #000;
}

.work-strip-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.work-strip-img,
.work-strip-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-strip-item:hover .work-strip-img,
.work-strip-item:hover .work-strip-video {
    transform: scale(1.05);
}

.work-strip-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-strip-item:hover .work-strip-content {
    opacity: 1;
}

.work-strip-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.work-strip-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* Work strip section - content height */
.stacking-cards__item#about {
    min-height: auto;
    padding: 0;
}

.work-strip--top {
    margin: 0;
    width: 100%;
}

.work-strip--top .work-strip-grid {
    border-radius: 0;
    overflow: hidden;
}

/* Consistent padding for first and last items */
.work-strip--top .work-strip-item:first-child .work-strip-content {
    padding-left: 80px;
}

.work-strip--top .work-strip-item:last-child .work-strip-content {
    padding-right: 80px;
}

/* ========================================
   MORE WORK SECTION - Preview List with Hover Images
   ======================================== */
.more-work-section {
    background: #1a1a1a;
    padding: 80px 40px;
    position: relative;
}

.more-work-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.more-work-header {
    margin-bottom: 32px;
}

.more-work-header .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
}

/* Preview Collection */
.preview-collection {
    position: relative;
}

.preview-list {
    display: flex;
    flex-direction: column;
}

.preview-item {
    width: 100%;
    transition: opacity 0.2s;
}

.preview-item__inner {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    padding-top: 2em;
    padding-bottom: 2em;
    text-decoration: none;
    display: block;
}

.preview-item:last-of-type .preview-item__inner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.preview-item__row {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.preview-item__col {
    flex: 1;
}

.preview-item__col.is--large {
    max-width: 60%;
}

.preview-item__heading {
    font-family: var(--font-display);
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

/* Hidden by default - shown only in follower */
.preview-item__visual {
    aspect-ratio: 1 / 1.25;
    width: 20em;
    display: none;
    position: absolute;
}

.preview-follower [data-follower-visual] {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
}

.preview-item__visual-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Cursor Follower */
.preview-follower {
    z-index: 100;
    aspect-ratio: 1 / 1.25;
    pointer-events: none;
    width: 18em;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
}

.preview-follower__inner {
    z-index: 2;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.preview-follower__label {
    z-index: 2;
    position: absolute;
    bottom: 1em;
    left: 50%;
    transform: translate(-50%, 100%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.preview-follower__label-span {
    background-color: #fff;
    border-radius: 0.25em;
    padding: 0.5em 1em;
    font-size: 0.875em;
    font-weight: 500;
    color: #000;
}

/* Hover States - Desktop Only */
@media (min-width: 992px) {
    body:has([data-follower-collection]:hover) .preview-follower__inner {
        opacity: 1;
        transform: scale(1);
    }

    body:has([data-follower-collection]:hover) .preview-follower__label {
        opacity: 1;
        transform: translate(-50%, 0%);
    }

    body:has(.preview-item:hover) .preview-item:not(:hover) {
        opacity: 0.4;
    }

    body:has(.preview-item:hover) .preview-item:not(:hover) .preview-item__heading {
        opacity: 0.4;
    }
}

/* ========================================
   IMAGE SEQUENCE SECTION
   ======================================== */
.image-sequence__wrap {
    width: 100%;
    height: 400vh;
    position: relative;
}

.image-sequence__sticky {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    display: flex;
    position: sticky;
    top: 0;
}

.image-sequence__element {
    z-index: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.image-sequence__canvas {
    width: 100%;
    height: 100%;
    padding: 0;
    position: relative;
}

/* Sequence Text Content */
.sequence-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.sequence-content__item {
    position: absolute;
    max-width: 800px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
}

.sequence-content__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
}

.sequence-content__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

/* ========================================
   CURRENTLY / NOW SECTION
   ======================================== */
.currently-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.currently-item {
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.currently-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.currently-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.currently-title .accent {
    font-style: italic;
    color: var(--accent);
}

.currently-description {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    opacity: 0.7;
    max-width: 700px;
}

/* ========================================
   PRINCIPLES / HOW I WORK
   ======================================== */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.principle {
    padding: 40px;
    background: rgba(0,0,0,0.03);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
}

.principle-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.principle-description {
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.6;
    opacity: 0.7;
}

/* ========================================
   WORK / SELECTED WORK
   ======================================== */
.work-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.work-item {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.work-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.work-name {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.02em;
    color: var(--accent);
    margin-bottom: 16px;
}

.work-description {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    opacity: 0.7;
    max-width: 700px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-text {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin-bottom: 48px;
}

.cta-btn {
    display: inline-block;
    padding: 20px 48px;
    background: var(--white);
    color: var(--accent);
    font-size: 18px;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   APPROACH SECTION - HOW I WORK
   ======================================== */
.approach-intro {
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 0 40px;
    margin-bottom: 48px;
}

.approach-text {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.7;
    color: #333;
}

.approach-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    padding: 0 40px;
    margin-bottom: 60px;
}

.approach-feature {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 24px;
    min-height: 200px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.approach-feature__icon {
    width: 40px;
    height: 40px;
    margin-bottom: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-feature__icon svg {
    width: 28px;
    height: 28px;
    color: #888;
}

.approach-feature__title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

.approach-feature__desc {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #888;
}

/* Image Gallery */
.approach-gallery {
    display: flex;
    gap: 16px;
    width: 100%;
    padding: 0 40px;
    align-self: stretch;
}

.approach-gallery__item {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.approach-gallery__item--tall {
    aspect-ratio: 3/5;
}

.approach-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-gallery__label {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 6px 12px;
    border-radius: 100px;
}

/* ========================================
   WORK SECTION - SELECTED WORK
   ======================================== */
.work-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    padding: 0 40px;
    align-items: start;
}

.work-section__left {
    position: sticky;
    top: 120px;
}

.work-section__label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 24px;
}

.work-section__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 48px;
}

.work-section__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.work-section__nav-title {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
}

.work-section__nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.work-section__nav-link:hover,
.work-section__nav-link--active {
    color: #fff;
}

/* Work Cards */
.work-section__right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.work-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.work-card__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.work-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-card__tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(0,0,0,0.6);
    padding: 6px 12px;
    border-radius: 100px;
}

.work-card__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.work-card__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.work-card__desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

/* ========================================
   FOOTER (inside last card)
   ======================================== */
.footer-bottom {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.5;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social a {
    font-size: 14px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 991px) {
    .stacking-cards__item {
        padding: 80px 24px;
    }

    .stacking-cards__item.is--hero {
        padding: 0;
    }

    .stacking-cards__item-top {
        top: 24px;
        left: 24px;
        right: 24px;
    }

    .card-content {
        padding: 0 24px;
    }

    .nav {
        top: 24px;
        right: 24px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        bottom: 24px;
        left: 24px;
        right: 24px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .menu-link {
        font-size: 48px;
    }

    /* Hero FRANCO responsive */
    .hero-top {
        padding: 24px;
    }

    .hero-name-franco {
        left: 24px;
        font-size: clamp(60px, 15vw, 180px);
    }

    .hero-bottom {
        padding: 24px;
    }

    /* Approach Section Tablet */
    .approach-features {
        gap: 40px;
    }

    .approach-gallery {
        flex-wrap: wrap;
    }

    .approach-gallery__item {
        flex: 1 1 45%;
    }

    /* Work Strip Tablet */
    .work-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .work-strip-content {
        padding: 32px;
    }

    .work-strip-title {
        font-size: 18px;
    }

    .work-strip--top .work-strip-item:first-child .work-strip-content {
        padding-left: 60px;
    }

    .work-strip--top .work-strip-item:last-child .work-strip-content {
        padding-right: 60px;
    }

    /* More Work Section Tablet */
    .more-work-section {
        padding: 60px 24px;
    }

    .preview-item__col.is--large {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .preview-item__heading {
        font-size: 2.5em;
    }

    .preview-follower {
        display: none;
    }

    /* Work Section Tablet */
    .work-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .work-section__left {
        position: static;
    }

    .work-section__nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 16px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 767px) {
    .stacking-cards__item {
        padding: 100px 20px 80px;
    }

    .stacking-cards__item-top {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .card-content {
        padding: 0;
    }

    .nav {
        top: 20px;
        right: 20px;
    }

    .nav-toggle {
        width: 48px;
        height: 48px;
    }

    .hero-name {
        font-size: 48px;
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 18px;
    }

    .menu-link {
        font-size: 36px;
    }

    .principle {
        padding: 24px;
    }

    .footer-bottom {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .cta-btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    /* Hero FRANCO mobile */
    .stacking-cards__item.is--hero {
        padding: 0;
    }

    .hero-top {
        padding: 20px;
    }

    .hero-top__label {
        font-size: 8px;
    }

    .hero-name-franco {
        left: 20px;
        font-size: clamp(48px, 14vw, 120px);
        transform: translateY(-55%);
    }

    .hero-bottom {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .hero-bottom__left {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(24px, 6vw, 28px);
        margin-bottom: 4px;
    }

    .hero-headshot {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }

    .hero-role {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .hero-subtext {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-logos-ticker {
        width: 100%;
        margin-top: 24px;
    }

    .hero-logos {
        gap: 20px;
        padding-right: 20px;
    }

    .hero-logo {
        height: 14px;
    }

    .hero-tagline-franco {
        font-size: clamp(18px, 5vw, 24px);
    }

    .hero-cta-franco {
        flex-wrap: wrap;
    }

    .hero-btn-franco {
        font-size: 11px;
        padding: 10px 20px;
    }

    /* Approach Section Mobile */
    .approach-features {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .approach-feature {
        min-height: 160px;
    }

    .approach-gallery {
        flex-direction: column;
    }

    .approach-gallery__item {
        flex: none;
        aspect-ratio: 16/9;
    }

    .approach-gallery__item--tall {
        aspect-ratio: 16/9;
    }

    /* Now Items Mobile */
    .now-items {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
        padding-top: 32px;
    }

    /* Work Strip Mobile */
    .work-strip-grid {
        grid-template-columns: 1fr;
    }

    .work-strip-item {
        aspect-ratio: 16/10;
    }

    .work-strip-content {
        padding: 24px 20px;
        opacity: 1;
    }

    .work-strip-title {
        font-size: 16px;
    }

    .work-strip-subtitle {
        font-size: 13px;
    }

    .work-strip--top .work-strip-item:first-child .work-strip-content,
    .work-strip--top .work-strip-item:last-child .work-strip-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* More Work Section Mobile */
    .more-work-section {
        padding: 48px 20px;
    }

    .more-work-header {
        margin-bottom: 24px;
    }

    .preview-item__heading {
        font-size: 2em;
    }

    .preview-item__inner {
        padding-top: 1.5em;
        padding-bottom: 1.5em;
    }

    /* Video Pause Button Mobile */
    .video-pause-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .video-pause-btn__icon {
        width: 14px;
        height: 14px;
    }

    /* Contact Section Mobile */
    .contact-content {
        padding: 24px;
        max-width: 100%;
    }

    .contact-btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .contact-footer {
        bottom: 20px;
        left: 20px;
        right: 80px;
    }

    .contact-footer__copyright,
    .contact-footer__social a {
        font-size: 11px;
    }

    /* Logo Ticker Mobile */
    .logo-ticker-section {
        padding: 16px 0;
    }

    .logo-ticker__logos {
        gap: 48px;
        padding: 0 24px;
    }

    .logo-ticker__logo {
        height: 20px;
    }

    .logo-ticker__logo--small {
        height: 8px;
    }

    .logo-ticker__logo--large {
        height: 36px;
    }

    .logo-ticker__text-logo {
        font-size: 18px;
    }

    .logo-ticker__text-sub {
        font-size: 6px;
    }

    /* Image Sequence Mobile */
    .sequence-content {
        padding: 24px;
    }

    .sequence-content__item {
        max-width: 85%;
        padding: 0 10px;
    }

    .sequence-content__label {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .sequence-content__title {
        font-size: clamp(22px, 6vw, 32px);
    }

    /* Work Section Mobile */
    .work-section {
        padding: 0 20px;
    }

    .work-section__title {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 32px;
    }

    .work-section__nav {
        display: none;
    }

    .work-card__image {
        aspect-ratio: 16/9;
    }
}

/* ========================================
   PROJECT DETAIL PAGES
   ======================================== */
body.project-page {
    background: #fff;
    color: #000;
    min-height: 100vh;
    overflow: hidden;
}

.project-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.project-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.project-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.project-icon:has(img) {
    background: transparent;
}

.project-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.project-header-title {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.project-header-subtitle {
    font-size: 12px;
    color: #000;
    opacity: 0.4;
}

.project-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.project-close:hover {
    opacity: 1;
}

.project-layout {
    display: grid !important;
    grid-template-columns: 420px 1fr !important;
    height: calc(100vh - 80px);
    margin-top: 80px;
    overflow: hidden;
}

body.project-page .project-info {
    grid-column: 1 !important;
    grid-row: 1 !important;
    position: relative !important;
    padding: 40px;
    background: #f8f8f8 !important;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

body.project-page .project-info,
body.project-page .project-info * {
    color: #111;
}

body.project-page .project-info-inner {
    width: 100%;
    padding-top: 40px;
    display: block !important;
}

body.project-page .project-info .project-title,
body.project-page .project-info h1.project-title,
body.project-page .project-info-inner .project-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111 !important;
}

body.project-page .project-info .project-description,
body.project-page .project-info p.project-description,
body.project-page .project-info-inner .project-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: #444 !important;
    margin-bottom: 16px;
}

body.project-page .project-info .project-description:last-of-type {
    margin-bottom: 0;
}

body.project-page .project-section {
    margin-bottom: 24px;
}

body.project-page .project-section-title {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 8px;
}

body.project-page .project-section .project-description {
    margin-bottom: 0;
}

body.project-page .project-info .project-tags,
body.project-page .project-info-inner .project-tags {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

body.project-page .project-info .project-tags span,
body.project-page .project-info-inner .project-tags span {
    font-size: 12px;
    font-weight: 500;
    color: #111 !important;
    background: rgba(0, 0, 0, 0.06);
    padding: 6px 14px;
    border-radius: 100px;
}

.project-gallery {
    grid-column: 2 !important;
    grid-row: 1 !important;
    padding: 8px;
    padding-right: 8px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-image {
    width: 100%;
    flex-shrink: 0;
}

.project-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 2;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-image-row {
    display: flex;
    gap: 8px;
    width: 100%;
    flex-shrink: 0;
}

.project-image-row .project-image {
    flex: 1;
    min-width: 0;
}

.project-image-row .project-image-placeholder {
    aspect-ratio: 1 / 1;
}

body.project-page .project-next {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 420px;
    padding: 24px 40px 40px 40px;
    background: #f8f8f8;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.project-page .project-next-label {
    font-size: 12px;
    font-weight: 400;
    color: #888 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: block;
}

body.project-page .project-next-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
}

body.project-page .project-next-link:hover {
    background: #eee;
}

body.project-page .project-next-icon {
    width: 40px;
    height: 40px;
    background: #111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

body.project-page .project-next-icon:has(img) {
    background: transparent;
}

body.project-page .project-next-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.project-page .project-next-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

body.project-page .project-next-title {
    font-size: 15px;
    font-weight: 500;
    color: #111 !important;
}

body.project-page .project-next-subtitle {
    font-size: 13px;
    color: #888 !important;
}

/* Project Page Tablet */
@media (max-width: 992px) {
    body.project-page {
        overflow: auto;
    }

    .project-header {
        padding: 0 24px;
    }

    .project-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        height: auto;
        overflow: visible;
    }

    body.project-page .project-info {
        order: 1;
        grid-column: auto !important;
        grid-row: auto !important;
        padding: 40px 24px;
        overflow: visible;
    }

    body.project-page .project-gallery {
        order: 2;
        grid-column: auto !important;
        grid-row: auto !important;
        overflow: visible;
        padding: 8px;
    }

    body.project-page .project-next {
        position: static;
        order: 3;
        width: 100%;
        padding: 24px;
    }

    .project-info-inner {
        max-width: 600px;
        padding-top: 0;
    }
}

/* Project Page Mobile */
@media (max-width: 600px) {
    .project-header {
        height: 64px;
        padding: 0 16px;
    }

    .project-header-left {
        gap: 12px;
    }

    .project-icon {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }

    .project-header-title {
        font-size: 13px;
    }

    .project-header-subtitle {
        font-size: 11px;
    }

    .project-close {
        width: 32px;
        height: 32px;
    }

    .project-layout {
        margin-top: 64px;
    }

    body.project-page .project-info {
        padding: 32px 16px;
    }

    h1.project-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    p.project-description {
        font-size: 14px;
    }

    .project-gallery {
        padding: 4px;
        gap: 4px;
    }

    body.project-page .project-next {
        padding: 24px 16px 32px 16px;
    }

    .project-next-link {
        padding: 16px 20px;
        gap: 16px;
    }
}
