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

/* CSS Variables */
:root {
    --cream: #f5f1ea;
    --cream-dark: #ede8df;
    --ink: #111008;
    --ink-mid: #444039;
    --ink-light: #888070;
    --ink-faint: #c8c0b0;
    --border: rgba(0, 0, 0, 0.09);
    --border-strong: rgba(0, 0, 0, 0.16);
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Base Body */
body {
    background: var(--cream);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 1690px;
    margin-inline: auto;
}

nav {
    position: fixed;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 48px;
    background: rgba(245, 241, 234, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    text-decoration: none;
    font-family: "Fraunces", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink-mid);
    font-size: 13px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-cta {
    font-size: 12px;
    background: var(--ink);
    color: var(--cream);
    border: none;
    border-radius: 100px;
    padding: 9px 20px;
}

.nav-cta:hover {
    opacity: 0.8s;
    cursor: pointer;
    transform: translateY(-1px);
    transition:
        opacity 0.2s,
        transform 0.2s;
}

.btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    transition:
        opacity 0.2s,
        transform 0.2s;
}

.btn-ghost:hover {
    color: var(--ink);
}

.btn-black:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.btn-outline:hover {
    border-color: var(--ink);
    color: var(--ink);
}

/* --- HERO SECTION --- */

/* HERO-LEFT */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-left {
    padding: 80px 48px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.hero-right {
    padding: 80px 48px;
}

.hero-tag {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 80px;
    margin-bottom: 32px;
    letter-spacing: 3px;
}

.hero h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(52px, 6vw, 80px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 28px;
}

.hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--ink-light);
}

.hero-desc {
    font-size: 16px;
    color: var(--ink-mid);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    background: var(--ink);
    color: var(--cream);
    border: none;
    border-radius: 100px;
    padding: 13px 26px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.btn-ghost {
    background: none;
    border: none;
    color: var(--ink-mid);
    font-size: 13px;
    cursor: pointer;
}

/* HERO RIGHT */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.hero-stat:first-child {
    border-top: 1px solid var(--border);
}

.hero-stat {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.hero-stat-num {
    font-family: "Fraunces", serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--ink-light);
}

/* --- WORK SECTION --- */
.work .section-label {
    font-family: "DM Mono", serif;
    color: var(--ink-light);
    font-size: 10px;
    margin-bottom: 24px;
    letter-spacing: 3px;
}
.work {
    padding: 100px 48px;
    border-top: 1px solid var(--border);
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
}

.work-item {
    background: var(--cream);
    overflow: hidden;
}

.work-item.featured {
    grid-column: span 2;
}

.work-thumb {
    aspect-ratio: 16/6;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-thumb-two {
    aspect-ratio: 16/6;
    background: url(07gn/gn-auto-3.jpg);
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-item:hover .work-thumb {
    transform: scale(1.02);
}

.work-hover-pill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    background: var(--ink);
    color: var(--cream);
    font-size: 12px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.3s;
    white-space: nowrap;
}

.work-item:hover .work-hover-pill {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.work-meta {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.work-thumb-text {
    font-family: "Fraunces", serif;
    font-size: 48px;
    font-style: italic;
    font-weight: 600;
    color: var(--cream);
}

.work-name {
    font-family: "Fraunces", serif;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 4px;
}

.work-type {
    font-size: 12px;
    color: var(--ink-light);
}

.work-result {
    font-family: "DM Mono", serif;
    font-size: 11px;
    color: var(--ink-light);
    text-align: right;
    line-height: 1.5;
}

/* --- SERVICE SECTION --- */

.services {
    padding: 100px 48px;
    background: #131209;
    color: var(--cream);
}

.services .section-label {
    font-family: "DM Mono", serif;
    color: var(--ink-light);
    font-size: 10px;
    margin-bottom: 24px;
    letter-spacing: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #26251d;
}

.service-card {
    background: var(--ink);
    padding: 40px 36px;
}

.service-num {
    font-family: "DM Mono", serif;
    font-size: 10px;
    color: rgba(245, 241, 234, 0.3);
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.service-name {
    font-family: "Fraunces", serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 13px;
    color: rgba(245, 241, 234, 0.55);
    line-height: 1.7;
    margin-bottom: 28px;
}

.service-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(245, 241, 234, 0.15);
    border-radius: 100px;
    padding: 7px 16px;
}

.service-price-label {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    color: rgba(245, 241, 234, 0.4);
    letter-spacing: 1px;
}
.service-price-num {
    font-size: 13px;
    font-weight: 500;
    color: var(--cream);
}

/* PROCESS SECTION */
.process .section-label {
    font-family: "DM Mono", serif;
    color: var(--ink-light);
    font-size: 10px;
    margin-bottom: 24px;
    letter-spacing: 3px;
}

.process {
    padding: 100px 48px;
    border-top: 1px solid var(--border);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
}

.process-step {
    padding: 36px 28px;
    border-right: 1px solid var(--border);
}

.process-step:last-child {
    border-right: none;
}

.process-num {
    font-family: "DM Mono", serif;
    font-size: 10px;
    color: var(--ink-light);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.process-title {
    font-family: "Fraunces", serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-desc {
    font-size: 13px;
    color: var(--ink-light);
    line-height: 1.65;
}

/* --- ABOUT SECTION --- */
.about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: var(--cream-dark);
    padding: 60px 42px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
}

.about-h {
    font-family: "Fraunces", serif;
    font-size: 36px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    margin-bottom: 32px;
}

.about-h em {
    font-style: italic;
    font-weight: 300;
    color: var(--ink-light);
}

.about-body {
    margin-bottom: 10px;
    font-size: 14px;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    display: flex;
    flex-direction: row;
}

.about-skill {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 13px;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact .section-label {
    font-family: "DM Mono", serif;
    color: var(--ink-light);
    font-size: 10px;
    margin-bottom: 24px;
    margin-top: 54px;
    letter-spacing: 3px;
}

.contact-h {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Fraunces", serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
}

.contact-h em {
    font-style: italic;
    font-weight: 300;
    color: var(--ink-light);
    font-size: 72px;
}

.contact-desc {
    font-size: 15px;
    color: var(--ink-mid);
    padding: 28px;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-black {
    background-color: var(--ink);
    color: var(--cream);
    border: none;
    border-radius: 100px;
    padding: 16px 32px;
    font-size: 14px;
}

.btn-outline {
    background: none;
    border: 1px solid var(--ink-faint);
    color: var(--ink);
    border-radius: 100px;
    padding: 16px 32px;
    font-size: 14px;
}

.avail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
}

.contact-avail-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2.5s infinite;
    margin-bottom: 72px;
}

.contact-details {
    font-family: "DM Mono", serif;
    font-size: 12px;
    color: var(--ink-light);
    padding: 28px 0;
    letter-spacing: 1px;
    margin-bottom: 72px;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 48px;
    border-top: 1px solid var(--border);
    background: var(--cream-dark);
}

h3 {
    font-family: "Fraunces", serif;
    font-size: 15px;
    font-weight: 700;
}
.socials {
    list-style: none;
    display: flex;
    gap: 28px;
    font-size: 12px;
    color: var(--ink-light);
}

footer p {
    font-family: "DM Mono", serif;
    font-size: 10px;
    color: var(--ink-faint);
    letter-spacing: 1px;
}

/* --- SMOOTH SCROLLING --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- CURSOR --- */

body {
    cursor: none;
}

.cursor {
    width: 10px;
    height: 10px;
    background-color: var(--ink);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

/* ------ CASE STUDY SECTION ------- */
.nav-back {
    text-decoration: none;
    color: var(--ink-mid);
    font-size: 13px;
}

.cs-hero {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: end;
    padding: 250px 48px 80px;
}

.cs-hero-tag {
    font-family: "DM Mono", serif;
    font-size: 11px;
    color: var(--ink-light);
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.cs-hero h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
}

.cs-hero p em {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 20px;
    color: var(--ink-light);
    margin-bottom: 24px;
}

.tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    display: flex;
    flex-direction: row;
    padding: 32px 0;
}

.pill {
    background: var(--cream);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 11px;
}

/* STATS SECTION */

.cs-hero-right {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.stats {
    display: flex;
    justify-content: space-between;
    padding: 22px 18px;
    border-bottom: 1px solid var(--border);
}

.stats:last-child {
    border: none;
}

.stat-name {
    font-family: "DM Mono", serif;
    font-size: 10px;
    letter-spacing: 1px;
}

.stat-desc {
    font-size: 13px;
    font-weight: 600;
}

.stat-desc-green {
    font-family: "Fraunces", serif;
    color: #1eb154;
}

.outcome-banner {
    background: var(--ink);
    color: var(--cream);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 38px 16px;
    gap: 390px;
}

.outcome-details {
    line-height: 1.2;
    border-left: 1px solid var(--ink-mid);
    padding: 0 0 0 38px;
}

.outcome-details:first-child {
    border-left: none;
}
.outcome-number {
    font-family: "Fraunces", serif;
    font-size: 48px;
    letter-spacing: -2px;
}

.outcome-desc {
    font-size: 13px;
    color: var(--ink-light);
    line-height: 1.3;
}

/* --- CONTENT SECTION --- */

.cs-full-img {
    width: 100%;
}

.cs-full-img-placeholder {
    aspect-ratio: 16/7;
    background: url(wandspirit/wanspirit-brand-overview.jpeg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: 64px;
    color: var(--ink-faint);
}

.cs-section {
    display: flex;
    justify-content: center;
    padding: 0 280px 92px;
    margin-bottom: 52px;
    gap: 50px;
    border-bottom: 1px solid var(--border);
}
.cs-section:first-child {
    padding-top: 92px;
}

.cs-main-text {
    padding-bottom: 21px;
}

.cs-label {
    display: flex;
    flex-direction: column;
    width: 240px;
    flex-shrink: 0;
    padding: 16px;
    margin-right: 40px;
    font-style: italic;
    font-weight: 300;
    color: var(--ink-faint);
    position: sticky;
    top: 90px;
}

.cs-label-num {
    font-family: "DM Mono", serif;
    font-size: 10px;
    color: var(--ink-light);
}

.cs-label-text {
    font-family: "Fraunces", serif;
    font-size: 22px;
}

.cs-body {
    line-height: 1.9;
}

.cs-body h2 {
    font-family: "Fraunces", serif;
    font-size: 32px;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.cs-body-img {
    display: flex;
    gap: 3px;
}

.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-dark);
    width: 100%;
    height: 300px;
}

/* --- PROCESS SECTION --- */

.cs-section {
    display: flex;
}
.cs-label {
    display: flex;
}

.cs-process-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 24px;
}
.cs-process-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    border-bottom: 1px solid var(--border);
    cursor: none;
    transition: background 0.2s;
}
.cs-process-item:last-child {
    border-bottom: none;
}

.cs-process-item:hover {
    background: var(--cream-dark);
}

.cs-process-num-col {
    padding: 24px 20px;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.cs-process-num {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    color: var(--ink-light);
    letter-spacing: 1px;
}
.cs-process-body {
    padding: 24px 28px;
}
.cs-process-title {
    font-family: "Fraunces", serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.cs-process-desc {
    font-size: 13px;
    color: var(--ink-light);
    line-height: 1.65;
}
.cs-process-duration {
    display: inline-block;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--ink-light);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    padding: 3px 10px;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

/* --- THE WORK --- */

.cs-palette {
    display: flex;
    gap: 0;
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin: 24px 0;
    height: 72px;
}
.cs-swatch {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    padding: 8px 12px;
    position: relative;
}
.cs-swatch-label {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.5px;
    opacity: 0.6;
}

.cs-sub-title {
    font-family: "DM Mono", serif;
    font-size: 10px;
    color: var(--ink-light);
    letter-spacing: 2px;
    margin-bottom: 12px;
    margin-top: 8px;
}

/* FONTS */

.font-group {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}

.font-group:last-child {
    border-bottom: none;
}

.fonts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 22px;
    border-bottom: 1px solid var(--border);
}

.fonts:last-child:last-child {
    border-bottom: none;
}

.Bebas {
    font-family: "Bebas Neue", serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--ink);
}

.Cormorant {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--ink);
}

.dm-sans {
    font-family: "DM Sans", serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0px;
    color: var(--ink);
}

.mono {
    font-family: "DM Mono", serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--ink-light);
}

.font-det .det {
    padding: 10px;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--ink-light);
    letter-spacing: 1px;
    text-align: right;
}

/* Cell styles */

.cs-visuals-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin: 12px 0;
}

.img-cell {
    position: relative;
    min-width: 0;
}

.img-cell img {
    display: block;
    height: clamp(200px, 40vh, 400px);
    width: auto;
    border-radius: 8px;
}

.cs-full-img-exp {
    background: url(wandspirit/full-exp-page.jpeg);
}

.cs-img-pill {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--ink-mid);
    background: rgba(245, 241, 234, 0.9);
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity 0.2s,
        transform 0.2s;
}

.img-cell-1:hover .cs-img-pill,
.img-cell-2:hover .cs-img-pill,
.img-cell-3:hover .cs-img-pill,
.img-cell-5:hover .cs-img-pill,
.img-cell-cal-desktop:hover .cs-img-pill,
.img-cell-cal-mobile:hover .cs-img-pill,
.cs-full-img:hover .cs-img-pill,
.cs-full-img-exp:hover .cs-img-pill {
    opacity: 1;
    transform: translateY(0);
}

.visual-tag {
    font-family: "Fraunces", serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: var(--ink-faint);
    text-align: center;
    padding: 20px;
    line-height: 1.4;
}

/* RESULTS */

.result-grid {
    display: flex;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 38px;
}

.result-details {
    line-height: 1.2;
    border-left: 1px solid var(--border);
    padding: 24px 0 10px 24px;
}

.result-details:first-child {
    border-left: none;
}
.result-number {
    font-family: "Fraunces", serif;
    font-weight: 900;
    font-size: 38px;
    letter-spacing: -1px;
}

.result-desc {
    font-size: 13px;
    color: var(--ink-light);
    line-height: 1.3;
}

/* NEXT PROJECT */

.cs-next {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--ink);
    color: var(--cream);
    padding: 64px 48px;
    text-decoration: none;
    border-top: 1px solid var(--border);
}

.cs-next:hover {
    background: #1e1e18;
}

.cs-next-label {
    font-family: "DM Mono", serif;
    font-size: 10px;
    color: var(--ink-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cs-next-title {
    font-family: "Fraunces", serif;
    font-size: 36px;
    font-weight: 900;
}

.cs-next-arrow {
    font-size: 32px;
}

.cs-next:hover .cs-next-arrow {
    transform: translateX(8px);
}

/* LINKING HTML TO CASE STUDY CSS */

a.work-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* -------- MOBILE VERSION -------- */

@media (max-width: 768px) {
    /* NAV */
    nav {
        padding: 16px 24px;
    }
    .nav-links {
        display: none;
    }

    /* HERO */

    .hero {
        grid-template-columns: 1fr;
    }
    .hero-left {
        padding: 60px 24px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .hero-right {
        padding: 40px 24px;
        border-bottom: none;
    }

    .hero-tag {
        margin-top: 20px;
    }

    .hero-stat-num {
        font-size: 36px;
        font-weight: 700;
    }

    /* WORK */
    .work {
        padding: 60px 24px;
    }
    .work-grid {
        grid-template-columns: 1fr;
    }
    .work-item.featured {
        grid-column: span 1;
    }
    .work-name {
        font-size: 18px;
    }
    .work-meta {
        padding: 20px 0;
    }
    .work-result {
        font-size: 10px;
    }

    /* SERVICES */
    .services {
        padding: 60px 24px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 26px 6px;
    }
    .service-num {
        margin-bottom: 5px;
    }
    .service-name {
        font-size: 20px;
    }

    /* PROCESS */
    .process {
        padding: 60px 24px;
    }
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    .process-step {
        border-bottom: 1px solid var(--border);
        padding: 26px;
    }
    .process-step:nth-child(2) {
        border-right: none;
    }

    /* ABOUT */
    .about-strip {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 24px;
    }

    /* CONTACT */
    .contact {
        padding: 60px 24px;
    }
    .contact-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-black,
    .btn-outline {
        width: 70%;
        text-align: center;
    }
    .contact-h {
        font-size: 42px;
    }
    .contact em {
        font-size: 42px;
    }
    .contact-desc {
        padding: 28px 32px;
        text-align: center;
    }
    .contact-details {
        font-size: 10px;
        margin-bottom: 0;
        padding: 28px 32px;
    }
    .avail {
        flex-direction: row;
        align-items: flex-start;
        text-align: center;
    }
    .contact-avail-dot {
        display: none;
    }

    /* FOOTER */
    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 28px 24px;
    }

    /* --- CASE STUDY SECTIONS --- */

    /* HERO */
    .cs-hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 48px;
        gap: 32px;
    }

    .cs-hero h1 {
        font-size: 42px;
    }

    .cs-hero p em {
        font-size: 16px;
    }

    .tag-pills {
        padding: 20px 0;
        gap: 6px;
    }

    .cs-hero-right {
        border-radius: 12px;
    }

    /* OUTCOME BANNER */
    .outcome-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0 24px;
    }

    .outcome-details {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding: 24px 0;
        width: 100%;
    }

    .outcome-details:first-child {
        border-top: none;
        padding-top: 28px;
    }

    .outcome-details:last-child {
        padding-bottom: 28px;
    }

    .outcome-number {
        font-size: 36px;
    }

    /* BRAND OVERVIEW IMAGE */
    .cs-full-img-placeholder {
        aspect-ratio: 4/3;
        font-size: 32px;
    }

    /* CASE STUDY CONTENT */
    .cs-section {
        flex-direction: column;
        padding: 40px 24px;
        gap: 20px;
        margin-bottom: 0;
    }

    .cs-section:first-child {
        padding-top: 40px;
    }

    .cs-label {
        position: static;
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 0;
        margin-right: 0;
    }

    .cs-label-text {
        font-size: 16px;
    }

    .cs-body h2 {
        font-size: 26px;
    }

    /* COLOUR PALETTE */
    .cs-palette {
        height: 56px;
    }

    .cs-swatch-label {
        font-size: 8px;
    }

    /* TYPOGRAPHY */
    .fonts {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 16px;
    }

    .font-det .det {
        text-align: left;
        padding: 0;
    }

    .Bebas {
        font-size: 22px;
    }

    .Cormorant {
        font-size: 20px;
    }

    /* PROCESS */
    .cs-process-num-col {
        padding: 16px 12px;
    }

    .cs-process-body {
        padding: 16px 18px;
    }

    .cs-process-title {
        font-size: 15px;
    }

    .cs-process-desc {
        font-size: 12px;
    }

    /* VISUALS */
    .cs-visuals-row {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    .img-cell-1,
    .img-cell-2,
    .img-cell-3,
    .img-cell-5,
    .img-cell-cal-desktop,
    .img-cell-cal-mobile {
        width: 100%;
        aspect-ratio: unset;
        flex-grow: 0;
    }

    .img-cell-1,
    .img-cell-3,
    .img-cell-cal-desktop {
        height: 180px;
    }

    .img-cell-2,
    .img-cell-5,
    .img-cell-cal-mobile {
        display: none;
    }

    .cs-full-img,
    .cs-full-img-exp {
        height: 280px;
        margin: 8px 0;
    }

    /* always show pills on mobile (no hover) */
    .img-cell-1 .cs-img-pill,
    .img-cell-2 .cs-img-pill,
    .img-cell-3 .cs-img-pill,
    .img-cell-5 .cs-img-pill,
    .img-cell-cal-desktop .cs-img-pill,
    .img-cell-cal-mobile .cs-img-pill,
    .cs-full-img .cs-img-pill,
    .cs-full-img-exp .cs-img-pill {
        opacity: 1;
        transform: translateY(0);
    }

    /* RESULTS */
    .result-grid {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .result-grid > * {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .result-grid > *:first-child {
        border-top: none;
        padding-top: 0;
    }

    .cs-body-img {
        flex-direction: column;
    }
}
