/* ========================================
   DAVID WILSON PORTFOLIO
   Design System
======================================== */
/* ========================================
   DESIGN TOKENS
======================================== */
:root {
    --paper: #f3f1ec;
    --ink: #181818;
    --soft-grey: #e6e3dd;
    --mid-grey: #767676;
    --accent: #f04a1f;
    --font-display: "Bebas Neue", sans-serif;
    --font-body: "Poppins", Arial, sans-serif;
    --page-width: 1440px;
    --page-gutter: 48px;
    --project-min-height: 980px;
    --project-space: clamp(76px, 7vw, 110px);
    --line: rgba(24, 24, 24, 0.18);
}

/* ========================================
   BASE
======================================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

/* ========================================
   GLOBAL CONTAINERS
======================================== */
.site-container {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-width));
    margin-inline: auto;
}

/* ========================================
   SITE HEADER / NAVIGATION
======================================== */
.site-header {
    position: relative;
    z-index: 20;
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 16px;
    border-top: 1px solid var(--ink);
}

.site-name {
    color: var(--ink);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    position: relative;
    color: var(--ink);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 300ms ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==========================================================
   GRAPHIC HERO
   David Wilson Portfolio
   Layered Editorial Hero
========================================================== */
/* ==========================================================
   HERO FOUNDATION
========================================================== */
.graphic-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 70px);
    height: 820px;
    overflow: hidden;
    background: var(--paper);
    color: var(--ink);
}

/* ==========================================================
   THREE-LAYER SYSTEM
========================================================== */
.hero-layer {
    position: absolute;
    inset: 0;
}

.hero-layer--background {
    z-index: 1;
    pointer-events: none;
}

.hero-layer--secondary {
    z-index: 5;
    pointer-events: none;
}

.hero-layer--foreground {
    z-index: 10;
}

/* ==========================================================
   BACKGROUND GRIDS
========================================================== */
.graphic-hero .hero-grid {
    position: absolute;
    background-image: linear-gradient(
            rgba(24, 24, 24, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(24, 24, 24, 0.08) 1px,
            transparent 1px
        );
    background-size: 38px 38px;
    opacity: 0;
}

.hero-grid--left {
    left: 7%;
    top: 8%;
    width: 39%;
    height: 68%;
    background-image: linear-gradient(
            rgba(24, 24, 24, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(24, 24, 24, 0.12) 1px,
            transparent 1px
        );
    -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            black 15%,
            black 72%,
            transparent 100%
        );
    mask-image: linear-gradient(
            to right,
            transparent 0%,
            black 15%,
            black 72%,
            transparent 100%
        );
}

.hero-grid--right {
    right: 5%;
    top: 5%;
    width: 41%;
    height: 64%;
    -webkit-mask-image: linear-gradient(
            to bottom,
            black 0%,
            black 65%,
            transparent 100%
        );
    mask-image: linear-gradient(
            to bottom,
            black 0%,
            black 65%,
            transparent 100%
        );
}

/* ==========================================================
   GHOST TYPOGRAPHY
========================================================== */
.ghost-type {
    position: absolute;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    line-height: 0.72;
    color: rgba(24, 24, 24, 0.035);
    pointer-events: none;
    user-select: none;
    opacity: 0;
}

.ghost-aa {
    left: 47%;
    top: 24%;
    font-size: clamp(230px, 25vw, 450px);
    letter-spacing: -0.05em;
}

.ghost-30 {
    right: 8%;
    bottom: 3%;
    font-size: clamp(230px, 27vw, 480px);
    letter-spacing: -0.06em;
    color: rgba(24, 24, 24, 0.055);
}

/* ==========================================================
   CONSTRUCTION CIRCLE
========================================================== */
.construction-circle {
    position: absolute;
    left: 14%;
    bottom: 11%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(24, 24, 24, 0.13);
    border-radius: 50%;
    opacity: 0;
}

.construction-circle::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 50%;
    width: 220px;
    height: 1px;
    background: rgba(24, 24, 24, 0.07);
}

.construction-circle::after {
    content: "";
    position: absolute;
    top: -35px;
    left: 50%;
    width: 1px;
    height: 220px;
    background: rgba(24, 24, 24, 0.11);
}

/* ==========================================================
   DOT SCREEN
========================================================== */
.dot-screen {
    position: absolute;
    left: 29%;
    bottom: 10%;
    width: 135px;
    height: 115px;
    background-image: radial-gradient(
            rgba(24, 24, 24, 0.14) 1px,
            transparent 1.5px
        );
    background-size: 7px 7px;
    opacity: 0;
}

/* ==========================================================
   PRODUCTION NOTES
========================================================== */
.production-note {
    position: absolute;
    font-family: "Poppins", sans-serif;
    font-size: 7px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.16em;
    color: rgba(24, 24, 24, 0.16);
    text-transform: uppercase;
    opacity: 0;
}

.production-note--left {
    left: 18%;
    bottom: 6%;
}

.production-note--vertical {
    left: 4.5%;
    top: 29%;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* ==========================================================
   MAIN NAME
========================================================== */
.hero-name-wrap {
    position: absolute;
    left: 8%;
    top: 10%;
    width: 50%;
    z-index: 20;
}

.hero-name {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(130px, 17vw, 320px);
    font-weight: 800;
    line-height: 0.75;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--ink);
}

.hero-name span {
    display: block;
    opacity: 0;
    transform: translateY(35px);
}

.hero-name span:nth-child(2) {
    margin-left: 6%;
}

/* ==========================================================
   ORANGE STROKE
========================================================== */
.hero-orange-stroke {
    position: absolute;
    left: 77%;
    bottom: -1%;
    z-index: 30;
    width: 29%;
    height: 9px;
    background: var(--accent);
    transform: rotate(-6deg)
        scaleX(0);
    transform-origin: left center;
}

.hero-orange-stroke::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 1px;
    width: 10px;
    height: 7px;
    background: var(--accent);
    transform: skewX(-24deg);
}

/* ==========================================================
   EXPERIENCE
========================================================== */
.experience-small {
    position: absolute;
    left: 4.5%;
    top: 34%;
    z-index: 18;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
}

.experience-small strong {
    color: var(--accent);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.experience-rule {
    display: block;
    width: 38px;
    height: 2px;
    margin: 9px 0 10px;
    background: var(--accent);
}

.experience-small b {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.experience-small > span:last-child {
    margin-top: 3px;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* ==========================================================
   DESIGNER LABEL
========================================================== */
.designer-label {
    position: absolute;
    left: 10.5%;
    bottom: 15%;
    z-index: 18;
    opacity: 0;
}

.graphic-hero .designer-label small {
    display: block;
    margin-bottom: 9px;
    color: var(--accent);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.graphic-hero .designer-label strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 76px;
    font-weight: 700;
    line-height: 0.86;
    text-transform: uppercase;
}

/* ==========================================================
   CMYK
========================================================== */
.cmyk {
    position: absolute;
    left: 4.5%;
    top: 52%;
    z-index: 8;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
}

.cmyk span {
    display: block;
    width: 27px;
    height: 27px;
}

.cmyk-c {
    background: #00aeef;
}

.cmyk-m {
    background: #ec008c;
}

.cmyk-y {
    background: #fff200;
}

.cmyk-k {
    background: #181818;
}

.cmyk small {
    margin-top: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

/* ==========================================================
   144 SCALE
========================================================== */
.scale-block {
    position: absolute;
    left: 50%;
    top: 11%;
    z-index: 8;
    width: 220px;
    opacity: 0;
}

.scale-block strong {
    display: block;
    margin-bottom: 6px;
    color: var(--accent);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.scale-line {
    position: relative;
    display: block;
    width: 100%;
    height: 14px;
    border-top: 1px solid rgba(24, 24, 24, 0.6);
}

.scale-line i {
    position: absolute;
    top: -5px;
    width: 1px;
    height: 10px;
    background: rgba(24, 24, 24, 0.6);
}

.scale-line i:nth-child(1) {
    left: 0;
}

.scale-line i:nth-child(2) {
    left: 25%;
}

.scale-line i:nth-child(3) {
    left: 50%;
}

.scale-line i:nth-child(4) {
    left: 75%;
}

.scale-line i:nth-child(5) {
    right: 0;
}

.scale-block small {
    display: block;
    margin-top: -2px;
    font-family: "Poppins", sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ==========================================================
   TOP RIGHT 01 + GRID
========================================================== */
.grid-marker {
    position: absolute;
    right: 7%;
    top: 12%;
    z-index: 8;
    width: 165px;
    height: 210px;
    opacity: 0;
}

.grid-marker strong {
    position: absolute;
    left: -15px;
    top: -8px;
    z-index: 3;
    color: var(--accent);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 82px;
    font-weight: 700;
    line-height: 1;
}

.mini-grid {
    position: absolute;
    left: 31px;
    top: 48px;
    width: 130px;
    height: 160px;
    background-image: linear-gradient(
            rgba(24, 24, 24, 0.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(24, 24, 24, 0.5) 1px,
            transparent 1px
        );
    background-size: 43px 40px;
}

/* ==========================================================
   BLACK DESIGN CARD
========================================================== */
.design-card {
    position: absolute;
    left: 55%;
    top: 42%;
    z-index: 12;
    width: 185px;
    height: 125px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    background: var(--ink);
    color: var(--paper);
    opacity: 0;
}

.design-card small {
    display: block;
    color: var(--accent);
    font-family: "Poppins", sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.design-card strong {
    margin-top: auto;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
}

.design-card span {
    display: block;
    margin-top: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.09em;
}

/* ==========================================================
   STATEMENT
========================================================== */
.hero-statement {
    position: absolute;
    right: 10%;
    top: 57%;
    z-index: 18;
    width: 235px;
    opacity: 0;
}

.hero-statement p {
    margin: 0;
    color: var(--mid-grey);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.hero-statement::after {
    content: "";
    position: absolute;
    left: -230px;
    bottom: -17px;
    width: 455px;
    height: 1px;
    background: rgba(24, 24, 24, 0.5);
}

/* ==========================================================
   HERO VERTICAL TEXT
========================================================== */
.graphic-hero .vertical-label {
    position: absolute;
    right: 3%;
    top: 35%;
    bottom: auto;
    z-index: 8;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--accent);
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
    opacity: 0;
}

.graphic-hero .vertical-label::after {
    content: "";
    display: block;
    width: 2px;
    height: 65px;
    margin-top: 18px;
    background: var(--accent);
}

/* ==========================================================
   REGISTRATION MARK
========================================================== */
.registration-mark {
    position: absolute;
    left: 45%;
    bottom: 10%;
    z-index: 8;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(24, 24, 24, 0.48);
    border-radius: 50%;
    opacity: 0;
}

.registration-mark::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -12px;
    width: 1px;
    height: 76px;
    background: rgba(24, 24, 24, 0.48);
}

.registration-mark::after {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    width: 76px;
    height: 1px;
    background: rgba(24, 24, 24, 0.48);
}

.registration-mark span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(24, 24, 24, 0.48);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* ==========================================================
   CROP MARKS
========================================================== */
.crop {
    position: absolute;
    z-index: 7;
    width: 38px;
    height: 38px;
    opacity: 0;
}

.crop--bottom-left {
    left: 3%;
    bottom: 3%;
    border-left: 2px solid rgba(24, 24, 24, 0.75);
    border-bottom: 1px solid rgba(24, 24, 24, 0.75);
}

.crop--top-right {
    right: 3%;
    top: 7%;
    border-top: 1px solid rgba(24, 24, 24, 0.75);
    border-right: 3px solid rgba(24, 24, 24, 0.75);
}

/* ==========================================================
   QUARTER CIRCLE CROP MARK
========================================================== */
.crop-quarter {
    position: absolute;
    left: 3%;
    top: 5%;
    z-index: 7;
    width: 42px;
    height: 42px;
    border-left: 1px solid rgba(24, 24, 24, 0.68);
    border-top: 3px solid rgba(24, 24, 24, 0.75);
    opacity: 0;
}

.crop-quarter::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 18px;
    width: 70px;
    height: 1px;
    background: rgba(24, 24, 24, 0.48);
}

.crop-quarter::after {
    content: "";
    position: absolute;
    left: 18px;
    top: -15px;
    width: 1px;
    height: 70px;
    background: rgba(24, 24, 24, 0.48);
}

.crop-quarter span {
    position: absolute;
    left: 18px;
    top: 18px;
    width: 19px;
    height: 19px;
    background: var(--ink);
    border-radius: 19px 0 0 0;
}

.crop-quarter--bottom {
    left: auto;
    top: auto;
    right: 3%;
    bottom: 3%;
    transform: rotate(180deg);
}

/* ==========================================================
   BOTTOM DISCIPLINES
========================================================== */
.hero-disciplines {
    position: absolute;
    left: 32%;
    bottom: 3%;
    z-index: 18;
    display: flex;
    align-items: center;
    gap: 22px;
    opacity: 0;
}

.hero-disciplines span {
    font-family: "Poppins", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.hero-disciplines i {
    color: var(--accent);
    font-style: normal;
    font-weight: 700;
}

/* ==========================================================
   HERO TECHNICAL FOOTER
========================================================== */
.hero-tech {
    position: absolute;
    right: 7%;
    bottom: 3%;
    z-index: 18;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
}

.hero-tech span {
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-tech i {
    display: block;
    width: 1px;
    height: 14px;
    background: rgba(24, 24, 24, 0.45);
}

/* ==========================================================
   HERO ANIMATION
========================================================== */
body.loaded .hero-grid--left {
    animation: hero-fade-grid
        900ms ease
        100ms forwards;
}

body.loaded .hero-grid--right {
    animation: hero-fade-grid
        900ms ease
        180ms forwards;
}

body.loaded .construction-circle {
    animation: hero-fade-soft
        800ms ease
        280ms forwards;
}

body.loaded .dot-screen {
    animation: hero-fade-soft
        800ms ease
        340ms forwards;
}

body.loaded .production-note {
    animation: hero-fade-soft
        800ms ease
        400ms forwards;
}

body.loaded .ghost-aa {
    animation: hero-ghost-in
        850ms ease
        460ms forwards;
}

body.loaded .ghost-30 {
    animation: hero-ghost-in
        850ms ease
        540ms forwards;
}

body.loaded .crop,
body.loaded .crop-quarter {
    animation: hero-secondary-in
        600ms ease
        650ms forwards;
}

body.loaded .scale-block {
    animation: hero-secondary-in
        600ms ease
        720ms forwards;
}

body.loaded .grid-marker {
    animation: hero-secondary-in
        600ms ease
        780ms forwards;
}

body.loaded .cmyk {
    animation: hero-secondary-in
        600ms ease
        840ms forwards;
}

body.loaded .registration-mark {
    animation: hero-secondary-in
        600ms ease
        900ms forwards;
}

body.loaded .graphic-hero .vertical-label {
    animation: hero-secondary-in
        600ms ease
        960ms forwards;
}

body.loaded .design-card {
    animation: hero-card-in
        650ms
        cubic-bezier(.2, .8, .2, 1)
        1050ms forwards;
}

body.loaded .hero-name span:first-child {
    animation: hero-name-in
        750ms
        cubic-bezier(.2, .8, .2, 1)
        850ms forwards;
}

body.loaded .hero-name span:nth-child(2) {
    animation: hero-name-in
        750ms
        cubic-bezier(.2, .8, .2, 1)
        980ms forwards;
}

body.loaded .experience-small {
    animation: hero-foreground-in
        600ms ease
        1200ms forwards;
}

body.loaded .designer-label {
    animation: hero-foreground-in
        600ms ease
        1280ms forwards;
}

body.loaded .hero-statement {
    animation: hero-foreground-in
        600ms ease
        1360ms forwards;
}

body.loaded .hero-disciplines {
    animation: hero-foreground-in
        600ms ease
        1450ms forwards;
}

body.loaded .hero-tech {
    animation: hero-foreground-in
        600ms ease
        1520ms forwards;
}

body.loaded .hero-orange-stroke {
    animation: final-orange-stroke
        700ms
        cubic-bezier(.65, 0, .35, 1)
        2.4s forwards;
}

/* ==========================================================
   HERO KEYFRAMES
========================================================== */
@keyframes hero-fade-soft {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.35;
    }
}

@keyframes hero-fade-grid {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.58;
    }
}

@keyframes hero-ghost-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-secondary-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-card-in {
    from {
        opacity: 0;
        transform: translateY(16px)
            scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0)
            scale(1);
    }
}

@keyframes hero-name-in {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-foreground-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes final-orange-stroke {
    from {
        transform: rotate(-6deg)
            scaleX(0);
    }

    to {
        transform: rotate(-6deg)
            scaleX(1);
    }
}

/* ==========================================================
   GRAPHIC HERO — TABLET
========================================================== */
@media (max-width: 1100px) {
    .graphic-hero {
        height: 760px;
    }

    .hero-name-wrap {
        left: 7%;
        width: 57%;
    }

    .hero-name {
        font-size: clamp(110px, 17vw, 210px);
    }

    .scale-block {
        left: 55%;
    }

    .design-card {
        left: 58%;
    }

    .ghost-aa {
        left: 53%;
    }

    .hero-statement {
        right: 7%;
    }
}

/* ==========================================================
   GRAPHIC HERO — MOBILE
========================================================== */
@media (max-width: 760px) {
    .graphic-hero {
        min-height: 780px;
        height: 100vh;
    }

    .hero-name-wrap {
        left: 6%;
        top: 13%;
        width: 88%;
    }

    .hero-name {
        font-size: clamp(90px, 27vw, 155px);
        line-height: 0.77;
    }

    .hero-name span:nth-child(2) {
        margin-left: 3%;
    }

    .hero-grid--left {
        left: 4%;
        width: 90%;
        height: 60%;
    }

    .hero-grid--right {
        display: none;
    }

    .ghost-aa {
        left: 42%;
        top: 37%;
        font-size: 190px;
    }

    .ghost-30 {
        right: -3%;
        bottom: 10%;
        font-size: 190px;
    }

    .scale-block,
    .grid-marker,
    .design-card,
    .graphic-hero .vertical-label,
    .production-note,
    .dot-screen,
    .construction-circle,
    .hero-tech {
        display: none;
    }

    .experience-small {
        left: 6%;
        top: 49%;
    }

    .cmyk {
        left: auto;
        right: 7%;
        top: 54%;
    }

    .cmyk span {
        width: 22px;
        height: 22px;
    }

    .designer-label {
        left: 6%;
        bottom: 18%;
    }

    .hero-statement {
        left: 50%;
        right: auto;
        top: 62%;
        width: 43%;
    }

    .hero-statement::after {
        display: none;
    }

    .hero-disciplines {
        left: 6%;
        bottom: 4%;
        gap: 12px;
    }

    .hero-orange-stroke {
        left: 68%;
        bottom: -2%;
        width: 34%;
        height: 7px;
    }
}

/* ==========================================================
   GRAPHIC HERO — FINAL DESKTOP POSITIONING
========================================================== */
@media (min-width: 901px) {
    .graphic-hero {
        position: relative;
        height: calc(100vh - 58px);
        min-height: 720px;
        max-height: 900px;
        overflow: hidden;
    }

    .hero-layer {
        position: absolute;
        inset: 0;
    }

    .hero-layer--background,
    .hero-layer--secondary,
    .hero-layer--foreground {
        transform: translateY(-40px);
    }

    .design-card {
        left: 60%;
        top: 45%;
        z-index: 12;
    }

    .hero-orange-stroke {
        left: 77%;
        right: auto;
        bottom: 3%;
        width: 29%;
        height: 9px;
        transform: rotate(-6deg)
            scaleX(0);
        transform-origin: left center;
    }

    .hero-statement {
        right: 10%;
        top: 54%;
        width: 235px;
    }

    .hero-statement::after {
        left: -220px;
        bottom: -18px;
    }
}

/* ==========================================================
   LOWER LEFT CONSTRUCTION GRAPHICS — FINAL CONTRAST
========================================================== */
body.loaded .construction-circle {
    opacity: 0.58;
    animation: none;
}

body.loaded .dot-screen {
    opacity: 0.62;
    animation: none;
}

body.loaded .production-note--left {
    opacity: 0.48;
    animation: none;
}

/* ==========================================================
   REDUCED MOTION
========================================================== */
@media (prefers-reduced-motion: reduce) {
    .graphic-hero *,
    .graphic-hero *::before,
    .graphic-hero *::after {
        animation: none !important;
    }

    .graphic-hero .hero-grid,
    .ghost-type,
    .construction-circle,
    .dot-screen,
    .production-note,
    .crop,
    .crop-quarter,
    .cmyk,
    .scale-block,
    .grid-marker,
    .registration-mark,
    .design-card,
    .graphic-hero .vertical-label,
    .experience-small,
    .designer-label,
    .hero-statement,
    .hero-disciplines,
    .hero-tech,
    .hero-name span {
        opacity: 1;
    }

    .hero-name span {
        transform: none;
    }

    .hero-orange-stroke {
        transform: rotate(-6deg)
            scaleX(1);
    }
}

/* ==========================================================
   SELECTED WORK — CATALOGUE PROJECT
========================================================== */
.selected-work {
    position: relative;
    padding: 0 0 46px;
    background: var(--paper);
    border-top: 1px solid rgba(24, 24, 24, 0.18);
    overflow: hidden;
}

.work-intro-band {
    padding: 58px 0 70px;
    background: #e9e6df;
}

/* ==========================================================
   OPTIONAL SELECTED WORK INTRO
   Kept in case the heading remains above the project
========================================================== */
.work-header {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 16px;
    margin-bottom: 0;
}

.work-section-number {
    grid-column: 1 / span 1;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 52px;
    line-height: 1;
}

.work-heading {
    grid-column: 2 / span 8;
}

.work-heading > span {
    display: block;
    margin-bottom: 24px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.work-heading h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(80px, 10vw, 150px);
    font-weight: 400;
    line-height: 0.82;
    text-transform: uppercase;
}

.work-intro {
    grid-column: 10 / span 3;
    align-self: end;
}

@media (min-width: 901px) {
    .work-heading h2 {
        font-size: clamp(76px, 7.4vw, 116px);
    }

    .work-heading h2 br {
        display: block;
    }

    .work-heading h2 {
        white-space: nowrap;
    }
}

.work-intro p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

/* ==========================================================
   CATALOGUE PROJECT
========================================================== */
.catalogue-project {
    position: relative;
    width: 100%;
}

/* FAINT PROJECT NUMBER */
.catalogue-project::before {
    content: "01";
    position: absolute;
    left: -24px;
    top: -105px;
    z-index: 0;
    font-family: var(--font-display);
    font-size: clamp(240px, 24vw, 390px);
    font-weight: 400;
    line-height: 0.8;
    color: rgba(24, 24, 24, 0.035);
    pointer-events: none;
}

/* ==========================================================
   CATALOGUE TOP
========================================================== */
.catalogue-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 4fr 8fr;
    column-gap: 72px;
    align-items: end;
}

/* ==========================================================
   CATALOGUE COPY
========================================================== */
.catalogue-copy {
    position: relative;
    z-index: 2;
}

.catalogue-type {
    display: block;
    margin-bottom: 26px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.catalogue-copy h2 {
    margin: 0 0 28px;
    font-size: clamp(50px, 4.8vw, 74px);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.035em;
}

.catalogue-copy p {
    max-width: 355px;
    margin: 0 0 34px;
    color: var(--mid-grey);
    font-size: 14px;
    line-height: 1.55;
}

/* ==========================================================
   CASE STUDY LINK
========================================================== */
.catalogue-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 7px;
    border-bottom: 2px solid var(--accent);
    color: var(--ink);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.catalogue-link span {
    display: inline-block;
    transition: transform 250ms ease;
}

.catalogue-link:hover span {
    transform: translateX(6px);
}

/* ==========================================================
   CATALOGUE STATISTICS
========================================================== */
.catalogue-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-self: end;
    border-top: 1px solid rgba(24, 24, 24, 0.3);
    border-bottom: 1px solid rgba(24,24,24,.35);
}

.catalogue-stat {
    min-height: 165px;
    padding: 15px 22px 0;
}

.catalogue-stat:first-child {
    padding-left: 0;
}

.catalogue-stat + .catalogue-stat {
    border-left: 1px solid rgba(24, 24, 24, 0.18);
}

.catalogue-stat strong {
    display: block;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(66px, 6vw, 94px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.025em;
}

.catalogue-stat:nth-child(2) strong {
    color: var(--accent);
}

.catalogue-stat span {
    display: block;
    margin-top: 15px;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ==========================================================
   CATALOGUE EVOLUTION
========================================================== */
.catalogue-evolution {
    position: relative;
    width: 100%;
    height: 365px;
    margin-top: 54px;
    overflow: hidden;
    background: #e9e7e1;
}

/* GRID */
.catalogue-evolution-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(
            rgba(24, 24, 24, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(24, 24, 24, 0.055) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    pointer-events: none;
}

/* LABEL */
.evolution-label {
    position: absolute;
    left: 18px;
    bottom: 17px;
    z-index: 30;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ==========================================================
   TIMELINE
========================================================== */
.catalogue-timeline {
    position: absolute;
    left: 15%;
    right: 7%;
    top: 22px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 14px;
}

.catalogue-timeline span {
    flex: 0 0 auto;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.catalogue-timeline strong {
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.catalogue-timeline i {
    display: block;
    flex: 1;
    height: 1px;
    background: rgba(24, 24, 24, 0.28);
}

.catalogue-timeline::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

/* ==========================================================
   CATALOGUE COVERS — BASE
========================================================== */
.catalogue-cover {
    position: absolute;
    z-index: 3;
    margin: 0;
    transform-origin: center bottom;
    transition: transform 300ms cubic-bezier(.2, .8, .2, 1),
        filter 300ms ease,
        opacity 300ms ease;
}

.catalogue-cover img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 12px 24px rgba(24, 24, 24, 0.11),
        0 2px 5px rgba(24, 24, 24, 0.08);
}

/* YEAR LABEL */
.cover-year {
    position: absolute;
    left: 0;
    top: -25px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--ink);
}

/* ==========================================================
   INDIVIDUAL COVER POSITIONS
========================================================== */
.catalogue-cover--2004 {
    left: 8%;
    bottom: 48px;
    width: 118px;
    z-index: 2;
    transform: rotate(-5deg);
}

.catalogue-cover--2006 {
    left: 21%;
    bottom: 42px;
    width: 132px;
    z-index: 3;
    transform: rotate(3deg);
}

.catalogue-cover--2008 {
    left: 35%;
    bottom: 34px;
    width: 148px;
    z-index: 4;
    transform: rotate(-2deg);
}

.catalogue-cover--2013 {
    left: 49%;
    bottom: 27px;
    width: 165px;
    z-index: 5;
    transform: rotate(2deg);
}

.catalogue-cover--2020 {
    left: 64%;
    bottom: 20px;
    width: 184px;
    z-index: 6;
    transform: rotate(-1.5deg);
}

.catalogue-cover--2024 {
    right: 6%;
    bottom: 14px;
    width: 205px;
    z-index: 7;
    transform: rotate(2deg);
}

.catalogue-cover--2024 .cover-year {
    color: var(--accent);
    font-size: 24px;
}

/* ==========================================================
   COVER HOVER
========================================================== */
@media (hover: hover) {
    .catalogue-cover:hover {
        z-index: 50;
    }

    .catalogue-cover--2004:hover {
        transform: rotate(-2deg)
            translateY(-10px)
            scale(1.03);
    }

    .catalogue-cover--2006:hover {
        transform: rotate(1deg)
            translateY(-10px)
            scale(1.03);
    }

    .catalogue-cover--2008:hover {
        transform: rotate(-1deg)
            translateY(-10px)
            scale(1.03);
    }

    .catalogue-cover--2013:hover {
        transform: rotate(1deg)
            translateY(-10px)
            scale(1.03);
    }

    .catalogue-cover--2020:hover {
        transform: rotate(-1deg)
            translateY(-10px)
            scale(1.03);
    }

    .catalogue-cover--2024:hover {
        transform: rotate(1deg)
            translateY(-10px)
            scale(1.03);
    }
}

/* ==========================================================
   PROJECT META
========================================================== */
.project-meta {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 42px;
    padding-top: 17px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(24, 24, 24, 0.25);
}

.project-meta span {
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.project-meta i {
    display: block;
    width: 26px;
    height: 1px;
    flex: 0 0 auto;
    background: var(--accent);
}

/* ==========================================================
   SELECTED WORK — TABLET
========================================================== */
@media (max-width: 1100px) {
    .catalogue-top {
        grid-template-columns: 4.5fr 7.5fr;
        column-gap: 44px;
    }

    .catalogue-copy h2 {
        font-size: clamp(48px, 6vw, 68px);
    }

    .catalogue-stat {
        min-height: 145px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .catalogue-stat:first-child {
        padding-left: 0;
    }

    .catalogue-stat strong {
        font-size: clamp(56px, 7vw, 80px);
    }

    .catalogue-cover--2004 {
        left: 5%;
    }

    .catalogue-cover--2006 {
        left: 18%;
    }

    .catalogue-cover--2008 {
        left: 31%;
    }

    .catalogue-cover--2013 {
        left: 45%;
    }

    .catalogue-cover--2020 {
        left: 60%;
    }

    .catalogue-cover--2024 {
        right: 3%;
    }
}

/* ==========================================================
   SELECTED WORK — MOBILE
========================================================== */
@media (max-width: 900px) {
    .selected-work {
        padding: 70px 0 40px;
    }

    .work-header {
        display: block;
        margin-bottom: 90px;
    }

    .work-section-number {
        margin-bottom: 30px;
    }

    .work-heading {
        margin-bottom: 40px;
    }

    .work-heading h2 {
        font-size: clamp(70px, 19vw, 120px);
    }

    .work-intro {
        max-width: 360px;
    }

    .catalogue-project::before {
        left: -10px;
        top: -40px;
        font-size: 230px;
    }

    .catalogue-top {
        display: block;
    }

    .catalogue-copy {
        max-width: 520px;
    }

    .catalogue-copy h2 {
        font-size: clamp(54px, 12vw, 82px);
    }

    .catalogue-copy p {
        max-width: 420px;
    }

    .catalogue-stats {
        margin-top: 58px;
    }

    .catalogue-stat {
        min-height: 135px;
    }

    .catalogue-evolution {
        height: 340px;
        margin-top: 44px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .catalogue-evolution-grid {
        width: 1100px;
    }

    .catalogue-timeline {
        left: 60px;
        right: auto;
        width: 850px;
    }

    .catalogue-cover--2004 {
        left: 70px;
        bottom: 48px;
        width: 105px;
    }

    .catalogue-cover--2006 {
        left: 220px;
        bottom: 43px;
        width: 120px;
    }

    .catalogue-cover--2008 {
        left: 375px;
        bottom: 38px;
        width: 135px;
    }

    .catalogue-cover--2013 {
        left: 540px;
        bottom: 32px;
        width: 150px;
    }

    .catalogue-cover--2020 {
        left: 715px;
        bottom: 26px;
        width: 165px;
    }

    .catalogue-cover--2024 {
        left: 905px;
        right: auto;
        bottom: 20px;
        width: 180px;
    }

    .project-meta {
        margin-top: 34px;
        flex-wrap: wrap;
        row-gap: 12px;
    }
}

/* ==========================================================
   SELECTED WORK — SMALL MOBILE
========================================================== */
@media (max-width: 600px) {
    .selected-work {
        padding: 58px 0 32px;
    }

    .catalogue-project::before {
        font-size: 185px;
    }

    .catalogue-type {
        margin-bottom: 20px;
    }

    .catalogue-copy h2 {
        margin-bottom: 24px;
        font-size: clamp(48px, 15vw, 68px);
    }

    .catalogue-stats {
        grid-template-columns: 1fr;
        margin-top: 46px;
    }

    .catalogue-stat {
        min-height: auto;
        padding: 18px 0;
    }

    .catalogue-stat + .catalogue-stat {
        border-left: 0;
        border-top: 1px solid rgba(24, 24, 24, 0.16);
    }

    .catalogue-stat strong {
        font-size: 64px;
    }

    .catalogue-stat span {
        margin-top: 8px;
    }

    .catalogue-evolution {
        height: 315px;
        margin-top: 36px;
    }

    .project-meta {
        gap: 12px;
        margin-top: 30px;
        padding-top: 16px;
    }

    .project-meta span {
        font-size: 7px;
    }

    .project-meta i {
        width: 18px;
    }
}

/* 2024 — optical spacing adjustment */
.catalogue-cover--2024 {
    transform: translateY(10px);
}

/* =========================================================
   PROJECT 02 — INTEGRATED PRODUCT CAMPAIGNS
   ========================================================= */
.p02-project {
    --p02-paper: #f3f1ec;
    --p02-ink: #181818;
    --p02-grey: #737373;
    --p02-line: rgba(24, 24, 24, 0.22);
    --p02-grid: rgba(24, 24, 24, 0.065);
    --p02-accent: #f04a1f;
    position: relative;
    overflow: hidden;
    padding: 76px 0 34px;
    color: var(--p02-ink);
    background: var(--p02-paper);
    font-family: "Poppins", Arial, sans-serif;
}

.p02-project,
.p02-project * {
    box-sizing: border-box;
}

/* =========================================================
   MASTER GRID
   Matches Project 01 exactly
   ========================================================= */
.p02-inner {
    position: relative;
    z-index: 1;
    width: min(
        calc(100% - (var(--page-gutter) * 2)),
        var(--page-width)
    );
    margin-inline: auto;
}

/* =========================================================
   TOP RULE
   ========================================================= */
.p02-project::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: max(
        var(--page-gutter),
        calc((100% - var(--page-width)) / 2)
    );
    right: max(
        var(--page-gutter),
        calc((100% - var(--page-width)) / 2)
    );
    height: 1px;
    background: rgba(24, 24, 24, 0.22);
}

/* =========================================================
   LARGE BACKGROUND 02
   ========================================================= */
.p02-number {
    position: absolute;
    z-index: 0;
    top: -34px;
    left: max(
        var(--page-gutter),
        calc((100% - var(--page-width)) / 2)
    );
    transform: translateX(-24px);
    color: rgba(24, 24, 24, 0.035);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(180px, 20vw, 340px);
    font-weight: 600;
    line-height: 0.8;
    letter-spacing: -0.09em;
    pointer-events: none;
}

/* =========================================================
   PROJECT INTRO
   ========================================================= */
.p02-intro {
    display: grid;
    grid-template-columns: 4fr 8fr;
    column-gap: 72px;
    align-items: end;
}

.p02-copy {
    position: relative;
}

.p02-category {
    margin: 0 0 25px;
    color: var(--p02-accent);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.p02-title {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(52px, 5.2vw, 78px);
    font-weight: 500;
    line-height: 0.91;
    letter-spacing: -0.055em;
}

.p02-summary {
    max-width: 37ch;
    margin: 30px 0 0;
    color: var(--p02-grey);
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   CASE STUDY LINK
   ========================================================= */
.p02-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding: 0 0 8px;
    border-bottom: 2px solid var(--p02-accent);
    color: var(--p02-ink);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease,
        gap 180ms ease;
}

.p02-link:hover,
.p02-link:focus-visible {
    gap: 28px;
    color: var(--p02-accent);
}

/* =========================================================
   CHANNELS
   ========================================================= */
.p02-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-self: center;
    border-top: 1px solid var(--p02-line);
    border-bottom: 1px solid var(--p02-line);
}

.p02-channel {
    min-height: 165px;
    padding: 20px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p02-channel + .p02-channel {
    border-left: 1px solid var(--p02-line);
}

.p02-channel strong {
    display: block;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: clamp(58px, 5vw, 82px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.p02-channel--accent strong {
    color: var(--p02-accent);
}

.p02-channel span {
    margin-top: 18px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* =========================================================
   CAMPAIGN STAGE
   ========================================================= */
.p02-stage {
    position: relative;
    height: 540px;
    margin-top: 48px;
    overflow: hidden;
    border: 1px solid rgba(24, 24, 24, 0.09);
    background-color: rgba(230, 227, 221, 0.56);
    background-image: linear-gradient(
            var(--p02-grid) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            var(--p02-grid) 1px,
            transparent 1px
        );
    background-size: 44px 44px;
    isolation: isolate;
}

/* =========================================================
   STAGE TECHNICAL LINE + LABELS
   ========================================================= */
.p02-stage-line {
    position: absolute;
    z-index: 1;
    top: 52px;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--p02-accent);
}

.p02-stage-label {
    position: absolute;
    z-index: 20;
    top: 28px;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.p02-stage-label::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 21px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--p02-accent);
    transform: translateX(-50%);
}

.p02-stage-label--banners {
    left: 7%;
}

.p02-stage-label--landing {
    left: 45%;
}

.p02-stage-label--email {
    left: 77%;
}

/* =========================================================
   WEB BANNERS
   ========================================================= */
.p02-banner-family {
    position: absolute;
    z-index: 3;
    top: 96px;
    left: 28px;
    width: 39%;
}

.p02-real-banner {
    position: relative;
    margin: 0;
}

.p02-real-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.p02-real-banner figcaption,
.p02-landing figcaption,
.p02-real-email figcaption {
    font-size: 6px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* Wide desktop banner */
.p02-real-banner--wide {
    width: 100%;
    height: auto;
    overflow: visible;
    border: 1px solid rgba(24, 24, 24, 0.25);
    background: #fff;
    box-shadow: 0 12px 22px rgba(24, 24, 24, 0.15);
    transform: rotate(-0.7deg);
}

.p02-real-banner--wide img {
    display: block;
    width: 100%;
    height: auto;
    transform: none;
}

/* Responsive banner adaptations */
.p02-real-banner--responsive {
    width: 78%;
    height: auto;
    margin-top: 30px;
    margin-left: 58px;
    overflow: visible;
    border: 1px solid rgba(24, 24, 24, 0.22);
    background: #fff;
    box-shadow: 0 13px 23px rgba(24, 24, 24, 0.14);
    transform: rotate(1.3deg);
}

.p02-real-banner--responsive img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
}

.p02-real-banner--responsive figcaption {
    position: absolute;
    left: 7px;
    bottom: 6px;
    padding: 3px 5px;
    color: white;
    background: rgba(24, 24, 24, 0.78);
}

/* =========================================================
   LANDING PAGE
   ========================================================= */
.p02-landing {
    position: absolute;
    z-index: 6;
    top: 72px;
    left: 42%;
    width: 29%;
    height: 420px;
    margin: 0;
    border: 1px solid rgba(24, 24, 24, 0.45);
    border-radius: 4px 4px 0 0;
    background: white;
    box-shadow: 0 18px 30px rgba(24, 24, 24, 0.18);
    transform: rotate(-0.4deg);
}

.p02-browser-bar {
    height: 27px;
    padding: 0 9px;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    background: #292929;
}

.p02-browser-dots {
    display: flex;
    gap: 4px;
}

.p02-browser-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff5f57;
}

.p02-browser-dots i:nth-child(2) {
    background: #febc2e;
}

.p02-browser-dots i:nth-child(3) {
    background: #28c840;
}

.p02-browser-address {
    justify-self: center;
    max-width: 165px;
    overflow: hidden;
    padding: 3px 9px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    font-size: 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.p02-landing-window {
    position: relative;
    height: calc(100% - 27px);
    overflow: hidden;
    background: white;
}

.p02-landing-window img {
    display: block;
    width: 100%;
    height: auto;
}

.p02-landing::after {
    content: "";
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    height: 55px;
    pointer-events: none;
    background: linear-gradient(
            transparent,
            rgba(255, 255, 255, 0.96)
        );
}

.p02-landing figcaption {
    position: absolute;
    z-index: 5;
    left: 12px;
    bottom: 10px;
}

/* =========================================================
   EMAIL
   ========================================================= */
.p02-real-email {
    position: absolute;
    z-index: 9;
    top: 105px;
    right: 38px;
    width: 23%;
    height: 365px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(24, 24, 24, 0.18);
    background: white;
    box-shadow: 0 18px 30px rgba(24, 24, 24, 0.19);
    transform: rotate(1deg);
}

.p02-real-email img {
    display: block;
    width: 100%;
    height: auto;
}

.p02-real-email::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 55px;
    background: linear-gradient(
            transparent,
            rgba(255, 255, 255, 0.97)
        );
}

.p02-real-email figcaption {
    position: absolute;
    z-index: 3;
    right: 10px;
    bottom: 10px;
}

/* =========================================================
   CAMPAIGN MESSAGE
   ========================================================= */
.p02-campaign-message {
    position: absolute;
    z-index: 14;
    left: 30px;
    bottom: 50px;
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 6px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.p02-campaign-message i {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--p02-accent);
}

.p02-campaign-message strong {
    color: var(--p02-accent);
    font-weight: 600;
}

/* =========================================================
   STAGE CAPTION
   ========================================================= */
.p02-stage-caption {
    position: absolute;
    z-index: 14;
    right: 18px;
    bottom: 14px;
    margin: 0;
    color: rgba(24, 24, 24, 0.55);
    font-size: 6px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* =========================================================
   DISCIPLINES
   ========================================================= */
.p02-disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 38px;
    margin: 26px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--p02-line);
    list-style: none;
}

.p02-disciplines li {
    position: relative;
    padding-right: 44px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.p02-disciplines li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 1px;
    background: var(--p02-accent);
}

/* =========================================================
   PROJECT 02 — TABLET
   ========================================================= */
@media (max-width: 1100px) {
    .p02-intro {
        grid-template-columns: 4.5fr 7.5fr;
        column-gap: 44px;
    }

    .p02-stage {
        height: 500px;
    }

    .p02-banner-family {
        left: 20px;
        width: 38%;
    }

    .p02-landing {
        left: 41%;
        width: 30%;
        height: 390px;
    }

    .p02-real-email {
        right: 24px;
        width: 23%;
        height: 340px;
    }
}

/* =========================================================
   PROJECT 02 — MOBILE
   ========================================================= */
@media (max-width: 780px) {
    .p02-project {
        padding: 62px 0 38px;
    }

    .p02-intro {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .p02-title {
        font-size: clamp(48px, 12vw, 72px);
    }

    .p02-summary {
        max-width: 45ch;
    }

    .p02-channel {
        min-height: 140px;
        padding: 18px;
    }

    .p02-channel strong {
        font-size: clamp(46px, 12vw, 68px);
    }

    .p02-number {
        top: -18px;
    }

    .p02-stage {
        height: auto;
        padding: 82px 20px 70px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .p02-stage-line,
    .p02-stage-label {
        display: none;
    }

    .p02-banner-family,
    .p02-landing,
    .p02-real-email {
        position: relative;
        inset: auto;
        width: auto;
        transform: none;
    }

    .p02-banner-family {
        grid-column: 1 / -1;
    }

    .p02-real-banner--wide {
        height: 105px;
    }

    .p02-real-banner--responsive {
        width: 62%;
        height: 130px;
        margin-left: 10%;
    }

    .p02-landing {
        height: 390px;
    }

    .p02-real-email {
        height: 390px;
    }

    .p02-campaign-message {
        position: relative;
        left: auto;
        bottom: auto;
        grid-column: 1 / -1;
        margin-top: 6px;
    }

    .p02-stage-caption {
        bottom: 18px;
    }
}

/* =========================================================
   PROJECT 02 — SMALL MOBILE
   ========================================================= */
@media (max-width: 520px) {
    .p02-number {
        top: -10px;
    }

    .p02-category {
        margin-bottom: 18px;
    }

    .p02-channels {
        grid-template-columns: 1fr;
    }

    .p02-channel {
        min-height: 112px;
    }

    .p02-channel + .p02-channel {
        border-top: 1px solid var(--p02-line);
        border-left: 0;
    }

    .p02-stage {
        grid-template-columns: 1fr;
    }

    .p02-landing,
    .p02-real-email {
        height: 430px;
    }

    .p02-real-banner--responsive {
        width: 78%;
        margin-left: 8%;
    }

    .p02-campaign-message {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .p02-campaign-message i {
        width: 34px;
    }

    .p02-disciplines {
        display: grid;
        gap: 12px;
    }

    .p02-disciplines li {
        padding-right: 0;
    }

    .p02-disciplines li::after {
        display: none;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    .p02-link {
        transition: none;
    }
}

/* ========================================
   PROJECT 03 — LANGSTANE DESIGN SYSTEM
   ======================================== */
.brand-system-project {
    position: relative;
    padding: 105px 0 110px;
    border-top: 1px solid rgba(24, 24, 24, .18);
    background: var(--paper);
    overflow: hidden;
}

/* ----------------------------------------
   INTRO
   ---------------------------------------- */
.brand-system-top {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    align-items: end;
    margin-bottom: 70px;
}

.brand-system-top::before {
    content: "03";
    position: absolute;
    left: -30px;
    top: -125px;
    z-index: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(260px, 29vw, 460px);
    font-weight: 700;
    line-height: .75;
    color: rgba(24, 24, 24, .035);
    pointer-events: none;
}

/* COPY */
.brand-system-copy {
    position: relative;
    z-index: 2;
    grid-column: 1 / span 6;
}

.brand-system-kicker {
    display: block;
    margin-bottom: 26px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.brand-system-title {
    margin: 0 0 32px;
    font-family: var(--font-body);
    font-size: clamp(72px, 7.8vw, 124px);
    font-weight: 500;
    line-height: .82;
    letter-spacing: -.055em;
}

.brand-system-summary {
    max-width: 510px;
    margin: 0 0 36px;
    color: var(--mid-grey);
    font-size: 14px;
    line-height: 1.65;
}

.brand-system-link {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    color: var(--ink);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .13em;
    text-decoration: none;
    text-transform: uppercase;
}

.brand-system-link span {
    transition: transform 250ms ease;
}

.brand-system-link:hover span {
    transform: translateX(5px);
}

/* ----------------------------------------
   PRINCIPLES
   ---------------------------------------- */
.brand-system-principles {
    grid-column: 7 / span 6;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(24, 24, 24, .22);
    border-bottom: 1px solid rgba(24, 24, 24, .22);
}

.brand-principle {
    min-height: 180px;
    padding: 28px 22px;
    border-right: 1px solid rgba(24, 24, 24, .16);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-principle:last-child {
    border-right: 0;
}

.brand-principle strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 700;
    line-height: .85;
}

.brand-principle-accent strong {
    color: var(--accent);
}

.brand-principle span {
    max-width: 110px;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .11em;
    text-transform: uppercase;
}

/* ========================================
   SYSTEM BOARD
   ======================================== */
.brand-system-board {
    position: relative;
    border: 1px solid rgba(24, 24, 24, .14);
    background: linear-gradient(
            rgba(24, 24, 24, .04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(24, 24, 24, .04) 1px,
            transparent 1px
        ),
        #e8e5df;
    background-size: 52px 52px;
}

/* BOARD HEADER */
.brand-board-header {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.15fr .85fr 1fr;
    min-height: 58px;
    border-bottom: 1px solid var(--accent);
}

.brand-board-header span {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 30px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.brand-board-header span::after {
    content: "";
    position: absolute;
    left: 30px;
    bottom: -4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

/* ========================================
   BOARD STAGE
   ======================================== */
.brand-board-stage {
    position: relative;
    height: 720px;
    overflow: hidden;
}

/* BACKGROUND NUMBER */
.brand-board-number {
    position: absolute;
    right: -10px;
    bottom: -85px;
    z-index: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 420px;
    font-weight: 700;
    line-height: .75;
    color: rgba(24, 24, 24, .035);
    pointer-events: none;
}

/* ----------------------------------------
   SHEETS
   ---------------------------------------- */
.brand-sheet {
    position: absolute;
    z-index: 3;
    margin: 0;
}

.brand-sheet img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: white;
    box-shadow: 0 14px 26px rgba(24, 24, 24, .12),
        0 3px 6px rgba(24, 24, 24, .08);
}

.brand-sheet figcaption {
    margin-top: 10px;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* TYPOGRAPHY — LARGE */
.brand-sheet-type {
    left: 6%;
    top: 62px;
    width: 27%;
    height: 525px;
    transform: rotate(-1.4deg);
    z-index: 4;
}

/* COMPONENTS */
.brand-sheet-components {
    left: 35%;
    top: 145px;
    width: 22%;
    height: 425px;
    transform: rotate(1.2deg);
    z-index: 5;
}

/* WORKWEAR */
.brand-sheet-workwear {
    right: 19%;
    top: 68px;
    width: 20%;
    height: 385px;
    transform: rotate(-.8deg);
    z-index: 4;
}

/* INTERIORS */
.brand-sheet-interiors {
    right: 4%;
    bottom: 62px;
    width: 20%;
    height: 385px;
    transform: rotate(1.5deg);
    z-index: 6;
}

/* ========================================
   PRODUCTION DETAILS
   ======================================== */
.brand-board-register {
    position: absolute;
    left: 60%;
    bottom: 58px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(24, 24, 24, .35);
    border-radius: 50%;
    z-index: 2;
}

.brand-board-register::before,
.brand-board-register::after {
    content: "";
    position: absolute;
    background: rgba(24, 24, 24, .35);
}

.brand-board-register::before {
    width: 68px;
    height: 1px;
    left: -11px;
    top: 22px;
}

.brand-board-register::after {
    width: 1px;
    height: 68px;
    left: 22px;
    top: -11px;
}

.brand-board-note {
    position: absolute;
    right: 30px;
    top: 24px;
    z-index: 2;
    color: rgba(24, 24, 24, .38);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

/* ========================================
   BOARD FOOTER
   ======================================== */
.brand-board-footer {
    position: relative;
    z-index: 10;
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    border-top: 1px solid rgba(24, 24, 24, .15);
    background: rgba(243, 241, 236, .88);
}

.brand-board-footer span {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.brand-board-footer i {
    display: block;
    width: 28px;
    height: 1px;
    margin: 0 24px;
    background: var(--accent);
}

/* ========================================
   TABLET
   ======================================== */
@media (max-width: 1100px) {
    .brand-system-copy {
        grid-column: 1 / span 6;
    }

    .brand-system-principles {
        grid-column: 7 / span 6;
    }

    .brand-board-stage {
        height: 620px;
    }

    .brand-sheet-type {
        height: 450px;
    }

    .brand-sheet-components {
        height: 365px;
    }

    .brand-sheet-workwear,
    .brand-sheet-interiors {
        height: 330px;
    }
}

/* ========================================
   MOBILE
   ======================================== */
@media (max-width: 900px) {
    .brand-system-project {
        padding: 80px 0;
    }

    .brand-system-top {
        display: block;
        margin-bottom: 50px;
    }

    .brand-system-top::before {
        top: -80px;
        font-size: 240px;
    }

    .brand-system-copy {
        margin-bottom: 55px;
    }

    .brand-system-title {
        font-size: clamp(62px, 16vw, 105px);
    }

    .brand-system-principles {
        width: 100%;
    }

    .brand-board-stage {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 35px;
    }

    .brand-sheet {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        transform: none;
    }

    .brand-sheet img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1.35;
        object-fit: cover;
    }

    .brand-board-number,
    .brand-board-register,
    .brand-board-note {
        display: none;
    }
}

/* ========================================
   SMALL MOBILE
   ======================================== */
@media (max-width: 600px) {
    .brand-system-principles {
        grid-template-columns: 1fr;
    }

    .brand-principle {
        min-height: 110px;
        border-right: 0;
        border-bottom: 1px solid rgba(24, 24, 24, .16);
    }

    .brand-principle:last-child {
        border-bottom: 0;
    }

    .brand-board-header {
        display: none;
    }

    .brand-board-stage {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .brand-board-footer {
        flex-wrap: wrap;
        gap: 12px;
        padding: 22px;
    }

    .brand-board-footer i {
        width: 18px;
        margin: 0 5px;
    }
}

/* ==========================================================
   SHARED PROJECT FRAMEWORK
   Add future work as: .project-section > .site-container.project-shell
========================================================== */
.project-section {
    position: relative;
    min-height: var(--project-min-height);
    padding-block: var(--project-space);
    border-top: 1px solid var(--line);
    background: var(--paper);
    overflow: hidden;
}

.project-shell {
    position: relative;
    z-index: 1;
}

/* Project 03 uses complete square exports: never crop the design-system pages. */
.brand-sheet-type,
.brand-sheet-components,
.brand-sheet-workwear,
.brand-sheet-interiors {
    height: auto;
}

.brand-sheet img {
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}

/* Restrained, one-time editorial reveals. Content stays visible without JS. */
.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease,
        transform 800ms cubic-bezier(.2, .8, .2, 1);
    will-change: opacity, transform;
}

.js .reveal-artwork {
    transform: translateY(38px);
    transition-duration: 900ms;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.reveal-delay-1 {
    transition-delay: 100ms;
}

.reveal-delay-2 {
    transition-delay: 200ms;
}

.reveal-delay-3 {
    transition-delay: 320ms;
}

@media (max-width: 900px) {
    :root {
        --page-gutter: 24px;
    }

    .project-section {
        min-height: 0;
        padding-block: 80px;
    }

    .brand-sheet img {
        aspect-ratio: 1;
    }
}

@media (max-width: 600px) {
    :root {
        --page-gutter: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .js .reveal,
    .js .reveal-artwork {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* These project-specific adjustments intentionally follow the shared rules. */
@media (min-width: 901px) {
    .catalogue-project::before {
        left: max(
            var(--page-gutter),
            calc((100% - var(--page-width)) / 2)
        );
        top: -42px;
        transform: translateX(-8%);
    }

    .brand-system-project {
        min-height: 0;
        padding-block: 64px;
    }

    .brand-system-top {
        margin-bottom: 48px;
    }

    .brand-principle {
        min-height: 155px;
        padding-block: 24px;
    }

    .brand-board-header {
        min-height: 50px;
    }

    .brand-board-stage {
        height: 520px;
    }

    .brand-board-footer {
        min-height: 60px;
    }

    .brand-sheet-type {
        top: 42px;
    }

    .brand-sheet-components {
        top: 104px;
    }

    .brand-sheet-workwear {
        top: 46px;
    }

    .brand-sheet-interiors {
        bottom: 48px;
    }
}

/* ==========================================================
   SHARED PROJECT TITLE SCALE
========================================================== */
.catalogue-copy h2,
.p02-title,
.brand-system-title {
    font-family: var(--font-body);
    font-size: clamp(52px, 5.2vw, 78px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.045em;
}

/* One number system for every project. */
.catalogue-project::before,
.brand-system-top::before {
    content: none;
}

.project-ghost-number {
    position: absolute;
    z-index: 0;
    top: -34px;
    left: max(
        var(--page-gutter),
        calc((100% - var(--page-width)) / 2)
    );
    transform: translateX(-24px);
    color: rgba(24, 24, 24, .035);
    font-family: var(--font-body);
    font-size: clamp(180px, 20vw, 340px);
    font-weight: 600;
    line-height: .8;
    letter-spacing: -.09em;
    pointer-events: none;
    user-select: none;
}

/* Consistent, visible keyboard focus across navigation and project links. */
.site-name:focus-visible,
.main-nav a:focus-visible,
.catalogue-link:focus-visible,
.p02-link:focus-visible,
.brand-system-link:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 5px;
}

/* ==========================================================
   PROJECT 02 + 03 IMAGE HOVERS
========================================================== */
.p02-stage figure,
.brand-system-board figure {
    transition: z-index 0s;
}

.p02-stage figure img,
.brand-system-board figure img {
    transition: transform 420ms cubic-bezier(.2, .8, .2, 1),
        box-shadow 420ms ease;
    transform: scale(1);
    transform-origin: center;
}

.p02-banner-family img,
.brand-sheet-type img {
    transform-origin: left center;
}

.p02-real-email img,
.brand-sheet-interiors img {
    transform-origin: right center;
}

@media (hover: hover) and (pointer: fine) {
    .p02-stage figure:hover,
    .brand-system-board figure:hover {
        z-index: 20;
    }

    .p02-stage figure:hover img,
    .brand-system-board figure:hover img {
        transform: scale(1.045);
        box-shadow: 0 20px 38px rgba(24, 24, 24, .2);
    }
}

@media (prefers-reduced-motion: reduce) {
    .p02-stage figure img,
    .brand-system-board figure img {
        transition: none;
    }

    .p02-stage figure:hover img,
    .brand-system-board figure:hover img {
        transform: none;
    }
}

@media (max-width: 900px) {
    .project-ghost-number {
        top: -10px;
        transform: translateX(-12px);
        font-size: clamp(140px, 38vw, 230px);
    }
}

/* ==========================================================
   MOBILE COMPOSITION REFINEMENTS
========================================================== */
@media (max-width: 760px) {
    /* Preserve the compact navigation while providing comfortable tap areas. */
    .site-name,
    .main-nav a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }

    .main-nav a::after {
        bottom: 6px;
    }

    /* Keep the editorial hero compact on tall phone screens. */
    .graphic-hero {
        height: clamp(680px, 85svh, 760px);
        min-height: 680px;
    }

    .hero-name-wrap {
        top: 10%;
    }

    .experience-small {
        top: 46%;
    }

    .cmyk {
        top: 50%;
    }

    .hero-statement {
        top: 58%;
    }

    .designer-label {
        bottom: 15%;
    }

    .ghost-aa {
        top: 34%;
    }

    .ghost-30 {
        bottom: 7%;
    }
}

@media (max-width: 900px) {
    .selected-work {
        padding: 0 0 40px;
    }

    .work-intro-band {
        padding: 58px 0 64px;
    }

    /* Replace the clipped horizontal strip with a wrapping cover grid. */
    .catalogue-evolution {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 48px 24px;
        height: auto;
        padding: 76px 24px 56px;
        overflow: visible;
    }

    .catalogue-evolution-grid {
        width: auto;
    }

    .catalogue-cover,
    .catalogue-cover--2004,
    .catalogue-cover--2006,
    .catalogue-cover--2008,
    .catalogue-cover--2013,
    .catalogue-cover--2020,
    .catalogue-cover--2024 {
        position: relative;
        inset: auto;
        width: 100%;
        transform: none;
    }

    .catalogue-cover img {
        width: 100%;
        height: auto;
    }

    .catalogue-timeline {
        left: 24px;
        right: 24px;
        top: 24px;
        width: auto;
    }
}

@media (max-width: 600px) {
    .work-heading h2 {
        font-size: clamp(58px, 16vw, 72px);
        line-height: .86;
    }

    .catalogue-evolution {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 46px 20px;
        padding: 72px 18px 54px;
    }

    .catalogue-timeline {
        left: 18px;
        right: 18px;
    }

    .catalogue-timeline strong {
        display: none;
    }
}

/* ==========================================================
   SECTION COLOUR RHYTHM
========================================================== */
.work-intro-band {
    background: var(--ink);
    color: var(--paper);
}

.work-intro-band .work-section-number,
.work-intro-band .work-heading > span {
    color: var(--accent);
}

.work-intro-band .work-intro {
    color: rgba(243, 241, 236, .68);
}

.p02-project,
.digital-experience-project {
    background: #e9e6df;
}

/* ==========================================================
   PROJECT 04 — OFFICE INTERIORS DIGITAL EXPERIENCE
========================================================== */
.digital-experience-project {
    color: var(--ink);
}

.digital-experience-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 4fr 8fr;
    column-gap: 72px;
    align-items: end;
    margin-bottom: 48px;
}

.digital-experience-copy {
    position: relative;
    z-index: 2;
}

.project-kicker {
    margin: 0 0 25px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.digital-experience-copy .project-title {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(52px, 5.2vw, 78px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.045em;
}

.project-summary {
    max-width: 40ch;
    margin: 30px 0 0;
    color: var(--mid-grey);
    font-size: 14px;
    line-height: 1.65;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    margin-top: 30px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    color: var(--ink);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .13em;
    text-decoration: none;
    text-transform: uppercase;
}

.project-link span {
    transition: transform 250ms ease;
}

.project-link:hover span {
    transform: translateX(5px);
}

.project-link:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 5px;
}

.digital-experience-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(24, 24, 24, .22);
    border-bottom: 1px solid rgba(24, 24, 24, .22);
}

.digital-pillar {
    min-height: 155px;
    padding: 24px 22px;
    border-right: 1px solid rgba(24, 24, 24, .16);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.digital-pillar:last-child {
    border-right: 0;
}

.digital-pillar strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 700;
    line-height: .85;
}

.digital-pillar--accent strong {
    color: var(--accent);
}

.digital-pillar span {
    max-width: 110px;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.digital-experience-stage {
    position: relative;
    height: 620px;
    overflow: hidden;
    border: 1px solid rgba(24, 24, 24, .12);
    background: #dedbd4;
    isolation: isolate;
}

.digital-stage-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(24, 24, 24, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 24, 24, .05) 1px, transparent 1px);
    background-size: 48px 48px;
}

.digital-stage-header {
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    min-height: 50px;
    border-bottom: 1px solid var(--accent);
}

.digital-stage-header span {
    display: flex;
    align-items: center;
    padding: 0 26px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.digital-screen {
    position: absolute;
    z-index: 3;
    margin: 0;
    transform: scale(1);
    transform-origin: center;
    transition: transform 420ms cubic-bezier(.2, .8, .2, 1),
        filter 420ms ease,
        z-index 0s;
}

.digital-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 14px 28px rgba(24, 24, 24, .16);
    transition: transform 420ms cubic-bezier(.2, .8, .2, 1),
        box-shadow 420ms ease;
}

.digital-screen figcaption {
    margin-top: 9px;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.digital-screen--desktop {
    left: 3%;
    top: 78px;
    width: 68%;
    transform-origin: left center;
}

.digital-browser-bar {
    height: 28px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--ink);
    color: var(--paper);
}

.digital-browser-bar i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.digital-browser-bar span {
    margin-left: 8px;
    font-size: 6px;
    letter-spacing: .08em;
}

.digital-screen--desktop img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    object-position: top left;
    transform-origin: left center;
}

.digital-screen--mobile {
    right: 5%;
    top: 76px;
    z-index: 7;
    width: 17%;
}

.digital-screen--mobile img {
    height: 430px;
    object-position: top;
    border: 8px solid var(--ink);
    border-radius: 14px;
}

.digital-screen--detail {
    right: 19%;
    bottom: 36px;
    z-index: 9;
    width: 30%;
    transform-origin: right center;
}

.digital-screen--detail img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    transform-origin: right center;
}

.digital-stage-note {
    position: absolute;
    right: 24px;
    top: auto;
    bottom: 18px;
    color: rgba(24, 24, 24, .42);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .14em;
}

.digital-experience-meta {
    margin: 26px 0 0;
    padding: 17px 0 0;
    list-style: none;
}

.digital-experience-meta li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.digital-experience-meta li:not(:last-child)::after {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--accent);
}

@media (hover: hover) and (pointer: fine) {
    .digital-screen:hover {
        z-index: 20;
    }

    .digital-screen:hover {
        transform: scale(1.045);
        filter: drop-shadow(0 20px 22px rgba(24, 24, 24, .18));
    }

    .digital-screen:hover img {
        transform: none;
    }
}

@media (max-width: 900px) {
    .digital-experience-top {
        display: block;
    }

    .digital-experience-copy {
        margin-bottom: 54px;
    }

    .digital-experience-pillars {
        width: 100%;
    }

    .digital-experience-stage {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 24px;
        height: auto;
        padding: 36px 28px 46px;
        overflow: visible;
    }

    .digital-stage-header,
    .digital-stage-note {
        display: none;
    }

    .digital-screen,
    .digital-screen--desktop,
    .digital-screen--mobile,
    .digital-screen--detail {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .digital-screen--desktop {
        grid-column: 1 / -1;
    }

    .digital-screen img,
    .digital-screen--desktop img,
    .digital-screen--mobile img,
    .digital-screen--detail img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 600px) {
    .digital-experience-pillars {
        grid-template-columns: 1fr;
    }

    .digital-pillar {
        min-height: 105px;
        border-right: 0;
        border-bottom: 1px solid rgba(24, 24, 24, .16);
    }

    .digital-pillar:last-child {
        border-bottom: 0;
    }

    .digital-experience-stage {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .digital-screen--desktop {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .digital-screen,
    .digital-screen img,
    .project-link span {
        transition: none;
    }

    .digital-screen:hover,
    .digital-screen:hover img {
        transform: none;
    }
}

/* Scale complete browser mockups, including their chrome and captions. */
.p02-landing {
    transform-origin: center;
    transition: transform 420ms cubic-bezier(.2, .8, .2, 1),
        box-shadow 420ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .p02-stage .p02-landing:hover {
        z-index: 20;
        transform: rotate(-.4deg) scale(1.045);
        box-shadow: 0 22px 40px rgba(24, 24, 24, .24);
    }

    .p02-stage .p02-landing:hover img {
        transform: none;
        box-shadow: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .p02-landing {
        transition: none;
    }

    .p02-stage .p02-landing:hover {
        transform: rotate(-.4deg);
    }
}

/* ==========================================================
   ABOUT / EXPERIENCE
========================================================== */
.about-section {
    position: relative;
    padding: clamp(90px, 9vw, 140px) 0;
    border-top: 1px solid var(--line);
    background: var(--paper);
    overflow: hidden;
}

.about-section::before {
    content: "ABOUT";
    position: absolute;
    right: -1vw;
    top: 70px;
    color: rgba(24, 24, 24, .028);
    font-family: var(--font-display);
    font-size: clamp(180px, 25vw, 390px);
    line-height: .8;
    pointer-events: none;
}

.about-heading-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 6fr 4fr;
    gap: 32px;
    align-items: end;
}

.about-index,
.contact-index {
    align-self: start;
    margin: 4px 0 0;
    color: var(--accent);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.about-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(88px, 10vw, 150px);
    font-weight: 400;
    line-height: .82;
    text-transform: uppercase;
}

.about-lead {
    max-width: 42ch;
    margin: 0;
    color: var(--mid-grey);
    font-size: 16px;
    line-height: 1.7;
}

.about-details {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 72px;
    margin-top: 96px;
}

.about-statement p {
    max-width: 48ch;
    margin: 0;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -.025em;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    border-top: 1px solid rgba(24, 24, 24, .22);
    border-bottom: 1px solid rgba(24, 24, 24, .22);
}

.about-facts div {
    min-height: 180px;
    padding: 28px 22px;
    border-right: 1px solid rgba(24, 24, 24, .16);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-facts div:last-child {
    border-right: 0;
}

.about-facts dt {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(42px, 4vw, 68px);
    font-weight: 700;
    line-height: .9;
    text-transform: uppercase;
}

.about-facts div:nth-child(2) dt {
    color: var(--accent);
}

.about-facts dd {
    max-width: 130px;
    margin: 0;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.capability-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 96px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.capability-block {
    min-height: 390px;
    padding: 30px 32px 36px;
    border-right: 1px solid rgba(24, 24, 24, .2);
}

.capability-block:last-child {
    border-right: 0;
}

.capability-number {
    margin: 0 0 64px;
    color: var(--accent);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.capability-block h3 {
    margin: 0 0 28px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 700;
    line-height: .9;
    text-transform: uppercase;
}

.capability-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.capability-block li {
    padding: 9px 0;
    border-top: 1px solid rgba(24, 24, 24, .13);
    color: var(--mid-grey);
    font-size: 11px;
}

/* ==========================================================
   CONTACT / FOOTER
========================================================== */
.contact-section {
    padding: clamp(90px, 10vw, 150px) 0 56px;
    background: var(--ink);
    color: var(--paper);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 7fr 4fr;
    gap: 32px;
    align-items: end;
}

.contact-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(88px, 10vw, 156px);
    font-weight: 400;
    line-height: .82;
    text-transform: uppercase;
}

.contact-details {
    padding-bottom: 10px;
}

.contact-details p {
    max-width: 38ch;
    margin: 0 0 34px;
    color: rgba(243, 241, 236, .64);
    font-size: 14px;
    line-height: 1.7;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 42px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    color: var(--paper);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .13em;
    text-decoration: none;
}

.contact-email span {
    transition: transform 250ms ease;
}

.contact-email:hover span {
    transform: translateX(5px);
}

.contact-email:focus-visible,
.site-footer a:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 5px;
}

.contact-footer-line {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 110px;
    padding-top: 18px;
    border-top: 1px solid rgba(243, 241, 236, .25);
    color: rgba(243, 241, 236, .55);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer {
    padding: 20px 0;
    border-top: 1px solid rgba(243, 241, 236, .12);
    background: var(--ink);
    color: rgba(243, 241, 236, .45);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.site-footer .site-container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--paper);
}

@media (max-width: 900px) {
    .about-heading-row,
    .about-details,
    .contact-inner {
        display: block;
    }

    .about-index,
    .contact-index {
        margin-bottom: 30px;
    }

    .about-title,
    .contact-title {
        font-size: clamp(70px, 17vw, 112px);
    }

    .about-lead,
    .contact-details {
        margin-top: 42px;
    }

    .about-details {
        margin-top: 70px;
    }

    .about-facts {
        margin-top: 54px;
    }

    .capability-grid {
        margin-top: 70px;
    }

    .capability-block {
        padding-inline: 22px;
    }

    .contact-footer-line {
        margin-top: 80px;
    }
}

@media (max-width: 600px) {
    .about-section::before {
        top: 100px;
        font-size: 150px;
    }

    .about-facts,
    .capability-grid {
        grid-template-columns: 1fr;
    }

    .about-facts div {
        min-height: 120px;
        border-right: 0;
        border-bottom: 1px solid rgba(24, 24, 24, .16);
    }

    .about-facts div:last-child {
        border-bottom: 0;
    }

    .capability-block {
        min-height: 0;
        padding: 28px 0 40px;
        border-right: 0;
        border-bottom: 1px solid rgba(24, 24, 24, .2);
    }

    .capability-block:last-child {
        border-bottom: 0;
    }

    .capability-number {
        margin-bottom: 36px;
    }

    .contact-footer-line {
        display: grid;
        gap: 12px;
    }

    .site-footer .site-container {
        align-items: flex-end;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-email span {
        transition: none;
    }
}
