:root {
    --dark-green: #1b4718;
    --green: #619453;
    --light-green: #bfdb82;
    --cream: #fdeab6;
    --yellow: #ffe492;
    --white: #ffffff;
    --site-header-height: 130px;
}


/* ====================
   FONTS
==================== */

@font-face {
    font-family: 'Alfa Slab One';
    src: url('fonts/AlfaSlabOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gentium Book Plus';
    src: url('fonts/GentiumBookPlus-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gentium Book Plus';
    src: url('fonts/GentiumBookPlus-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


/* ====================
   BASIC SETUP
==================== */

* {
    box-sizing: border-box;
}

html {
    /* Menu links skip straight past the scroll-driven scene. */
    scroll-behavior: auto;
    scroll-padding-top: calc(var(--site-header-height) + 16px);
}

body {
    margin: 0;

    background-color: var(--cream);
    color: var(--dark-green);

    font-family: 'Gentium Book Plus', serif;
}


/* ====================
   HEADER
==================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 24px 40px;
}

/* A fitted SVG canvas centers the actual artwork in the header. */
.logo {
    position: relative;
    flex-shrink: 0;
    color: var(--cream);
}

.site-header a:focus-visible,
.menu-toggle:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 5px;
}

.logo img {
    width: 280px;
    height: auto;

    display: block;

    object-fit: contain;
    object-position: center;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--cream);

    font-size: 18px;

    text-decoration: none;
}

.main-nav a:hover {
    text-decoration: underline;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--cream);
    border-radius: 5px;
    background: transparent;
    color: var(--cream);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 22px;
    background: currentColor;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}


/* ====================
   EYEBROW
==================== */

.eyebrow {
    margin: 0;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ====================
   HERO
==================== */

.hero {
    min-height: calc(100dvh - var(--site-header-height));

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 80px 8%;

    gap: 40px;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    margin: 16px 0 0;

    font-family: 'Alfa Slab One', serif;
    font-size: clamp(52px, 6vw, 100px);
    font-weight: 400;

    line-height: 1;
}

.hero-description {
    max-width: 520px;

    margin: 30px 0 0;

    font-size: 21px;
    line-height: 1.5;
}


/* ====================
   HERO GRAPHIC
==================== */

.hero-graphic {
    position: relative;

    width: clamp(400px, 42vw, 560px);
    height: clamp(400px, 42vw, 560px);

    flex-shrink: 0;
}

.hero-game-pieces {
    position: absolute;

    inset: 0;
}

.hero-piece {
    position: absolute;

    display: block;

    height: auto;

    filter: drop-shadow(4px 6px 3px rgba(27, 71, 24, 0.14));

    will-change: transform;
}

.hero-piece-laptop {
    z-index: 3;

    width: clamp(175px, 21vw, 250px);

    top: 10%;
    left: 0;

    --rotation: -8deg;
    --drift-x: -2px;
    --drift-y: -7px;

    animation: heroPieceFloat 7.5s ease-in-out 0.2s infinite;
}

.hero-piece-cart {
    z-index: 6;

    width: clamp(300px, 34vw, 450px);

    right: 2%;
    bottom: 10%;

    --rotation: 5deg;
    --drift-x: 1px;
    --drift-y: -8px;

    animation: heroPieceFloat 9.5s ease-in-out 0.5s infinite;
}

@keyframes heroPieceFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(var(--rotation));
    }

    50% {
        transform: translate3d(var(--drift-x), var(--drift-y), 0) rotate(var(--rotation));
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-piece {
        animation: none;
    }
}


/* ====================
   JOURNEY SECTION
==================== */

.journey-section {
    position: relative;

    background-color: var(--cream);

    overflow: visible;
}


/* ====================
   JOURNEY SCROLL TRACK
==================== */

/*
   This creates the scrolling runway
   while the scene itself remains pinned.
*/

.journey-scroll-track {
    position: relative;

    height: 700vh;
}


/* ====================
   STICKY JOURNEY SCENE
==================== */

.journey-sticky {
    position: sticky;

    top: 0;

    width: 100%;

    height: 100vh;
    height: 100dvh;

    overflow: hidden;

    background-color: var(--cream);

    z-index: 10;
}


/* ====================
   JOURNEY AUTO-FIT
==================== */

/*
   The entire game composition scales
   together to fit shorter screens.
*/

.journey-fit {
    --journey-scale: 1;

    position: absolute;

    left: 50%;
    top: calc(48% + var(--site-header-height) / 2);

    width: 100%;

    transform:
        translate(-50%, -50%)
        scale(var(--journey-scale));

    transform-origin: center center;

    will-change: transform;
}


/* ====================
   CHALLENGE CARD AREA
==================== */

.challenge-cards {
    width: 82%;
    max-width: 760px;

    margin: 25px auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 52px;
}


/* ====================
   CARD SIZE
==================== */

/* ====================
   CHALLENGE CARD SLOT
==================== */

.challenge-slot {
    position: relative;
}


/* ====================
   EMPTY CARD PLACEHOLDER
==================== */

.challenge-placeholder {
    position: absolute;

    inset: 0;

    padding: 28px 24px;

    border: 3px dashed var(--dark-green);
    border-radius: 22px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: var(--dark-green);

    will-change: opacity;
}

.challenge-placeholder-label {
    margin: 0 0 26px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2.5px;

    color: var(--green);
}

.challenge-placeholder-copy {
    max-width: 255px;

    margin: 0;

    font-family: 'Alfa Slab One', serif;
    font-size: 23px;
    font-weight: 400;

    line-height: 1.08;
}

.challenge-placeholder-count {
    margin: 20px 0 0;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    color: var(--green);
}


/* ====================
   ACTIVE CHALLENGE CARD
==================== */

.active-challenge-card {
    position: relative;

    padding: 18px;

    background-color: var(--yellow);

    border: 3px solid var(--dark-green);
    border-radius: 22px;

    box-shadow: 8px 10px 0 rgba(27, 71, 24, 0.72);

    display: flex;
    flex-direction: column;

    backface-visibility: hidden;
}

.journey-card-settled {
    animation: challengeCardSettle 520ms ease-out;
}

@keyframes challengeCardSettle {

    0% {
        filter: brightness(1);
    }

    45% {
        filter: brightness(1.08) drop-shadow(0 0 12px rgba(255, 228, 146, 0.8));
    }

    100% {
        filter: brightness(1);
    }
}


/* ====================
   CHALLENGE LABEL
==================== */

.challenge-card-eyebrow {
    margin: 16px 0 10px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--green);
}


/* ====================
   CHALLENGE TITLE
==================== */

.active-challenge-card h3 {
    margin: 0;

    font-family: 'Alfa Slab One', serif;
    font-size: 25px;
    font-weight: 400;

    line-height: 1;

    color: var(--dark-green);
}


/* ====================
   CHALLENGE CARD STATES
==================== */

.challenge-card-hidden {
    position: absolute;

    inset: 0;

    opacity: 0;

    pointer-events: none;

    transform:
        perspective(900px)
        rotateY(-90deg);

    transform-origin: left center;

    will-change: transform, opacity;
}


/* ====================
   BOARD STAGE
==================== */

.board-stage {
    position: relative;

    width: 96%;
    max-width: 1500px;
    height: 300px;

    margin: -25px auto 0;
}


/* ====================
   PERSPECTIVE BOARD
==================== */

.board-perspective {
    position: absolute;

    left: 3%;
    right: 3%;

    top: 155px;

    transform:
        perspective(1300px)
        rotateX(58deg)
        rotateZ(-1.5deg);

    transform-origin: center bottom;

    z-index: 1;
}


/* ====================
   BOARD
==================== */

.horizontal-board {
    position: relative;

    width: 100%;
    height: 190px;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    background-color: var(--dark-green);

    border: 6px solid var(--dark-green);

    box-shadow: 0 18px 0 var(--dark-green);
}


/* ====================
   BOARD SPACES
==================== */

.horizontal-space {
    position: relative;

    min-width: 0;

    border-right: 6px solid var(--dark-green);
}

.horizontal-space:last-child {
    border-right: 0;
}


/* ====================
   BOARD COLOURS
==================== */

.space-yellow {
    background-color: var(--yellow);
}

.space-light-green {
    background-color: var(--light-green);
}

.space-green {
    background-color: var(--green);
}

/* ====================
   GAME PIECE
==================== */

.board-meeple {
    --meeple-x-offset: 0px;
    --meeple-y-offset: 0px;

    position: absolute;

    left: 0;
    top: 158px;

    width: 175px;

    z-index: 5;

    transform:
        translateX(-50%)
        translate(
            var(--meeple-x-offset),
            var(--meeple-y-offset)
        );

    transform-origin: bottom center;

    will-change: transform;
}

.board-meeple.meeple-settled {
    filter: drop-shadow(0 0 8px rgba(191, 219, 130, 0.8));
}


/* ====================
   MEEPLE IMAGE
==================== */

 .meeple-image {
    position: relative;

    display: block;

    width: 100%;
    height: auto;

    z-index: 0;

    /*
       Shadow sits behind the physical token,
       rather than underneath it like a hover shadow.
    */
    filter:
        drop-shadow(
            7px
            7px
            0 rgba(27, 71, 24, 0.18)
        );
}


/* ====================
   CARD CONTROLS
==================== */

.journey-controls {
    position: relative;

    z-index: 20;

    height: 104px;

    margin: -4px auto 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: var(--dark-green);
}

.journey-control-buttons {
    display: flex;
    align-items: center;
    gap: 22px;
}

.journey-control {
    /* These scale with the scene, so give them a generous base size. */
    width: 88px;
    height: 72px;

    padding: 0;

    border: 3px solid var(--dark-green);
    border-radius: 10px;
    box-shadow: 4px 4px 0 var(--dark-green);

    background: var(--yellow);
    color: var(--dark-green);

    font-family: 'Gentium Book Plus', serif;
    font-size: 48px;
    line-height: 1;

    cursor: pointer;
}

.journey-control:hover:not(:disabled),
.journey-control:focus-visible:not(:disabled) {
    background: var(--light-green);
}

.journey-control:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

.journey-control:disabled {
    opacity: 0.45;
    box-shadow: none;
    cursor: default;
}

.journey-control-note {
    margin-top: 10px;

    font-size: 18px;
    font-style: italic;
    line-height: 1;

    opacity: 1;
}


/* ====================
   SERVICES
==================== */

.services-section {
    padding: 120px 8% 110px;

    background-color: var(--cream);
}

.services-intro {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-intro h2 {
    max-width: 700px;

    margin: 16px auto 0;

    font-family: 'Alfa Slab One', serif;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 400;
    line-height: 1.05;
}

.services-intro-copy {
    max-width: 650px;

    margin: 26px auto 0;

    font-size: 20px;
    line-height: 1.5;
}

.service-list {
    max-width: 1180px;
    margin: 0 auto;
}

.service-row {
    min-height: 210px;

    display: grid;
    grid-template-columns: 120px minmax(220px, 0.8fr) minmax(300px, 1fr);
    align-items: center;
    column-gap: 34px;

    padding: 30px 0;

    border-top: 1px solid rgba(27, 71, 24, 0.28);
}

.service-row:last-child {
    border-bottom: 1px solid rgba(27, 71, 24, 0.28);
}

.pip-marker {
    width: 104px;
    height: 104px;

    display: block;

    filter: drop-shadow(4px 5px 2px rgba(27, 71, 24, 0.18));
}

.pip-marker img {
    display: block;
    width: 104px;
    height: 104px;
    object-fit: contain;
}

.service-row h3 {
    margin: 0;

    color: var(--dark-green);

    font-family: 'Alfa Slab One', serif;
    font-size: clamp(24px, 2.4vw, 38px);
    font-weight: 400;
    line-height: 1.1;
}

.service-row-content {
    max-width: 520px;
}

.service-row-content p {
    margin: 0;

    font-size: 18px;
    line-height: 1.45;
}

.service-row-content .service-capabilities {
    margin-top: 12px;

    color: var(--green);

    font-size: 15px;
    line-height: 1.4;
}

.services-closing-line {
    max-width: 680px;

    margin: 54px auto 0;

    color: var(--green);

    font-size: 19px;
    font-style: italic;
    line-height: 1.5;
    text-align: center;
}


/* ====================
   MOBILE
==================== */

@media (max-width: 800px) {

    /* HEADER */

    .site-header {
        padding: 10px 16px;
        flex-direction: row;
        gap: 8px;
    }

    .logo img {
        width: min(220px, 65vw);
        height: auto;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-shrink: 0;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 12px 16px 20px;
        background: var(--dark-green);
        border-top: 1px solid var(--cream);
        max-height: calc(100dvh - var(--site-header-height));
        overflow-y: auto;
        flex-direction: column;
        gap: 4px;
    }

    .site-header.menu-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 12px;
    }

    /* SERVICES */

    .services-section {
        padding: 78px 24px 72px;
    }

    .services-intro {
        margin-bottom: 46px;
        text-align: left;
    }

    .services-intro h2 {
        font-size: 42px;
    }

    .services-intro-copy {
        margin-top: 20px;

        font-size: 18px;
    }

    .service-row {
        min-height: 190px;

        display: grid;
        grid-template-columns: 104px minmax(0, 1fr);
        column-gap: 18px;
        row-gap: 16px;

        padding: 28px 0 32px;
    }

    .service-row h3 {
        align-self: center;
        min-width: 0;

        font-size: 24px;
        overflow-wrap: anywhere;
    }

    .service-row-content {
        grid-column: 1 / -1;
        max-width: none;

        padding-left: 122px;
    }

    .service-row-content p {
        font-size: 17px;
    }

    .service-row-content .service-capabilities {
        margin-top: 10px;

        font-size: 14px;
    }

    .services-closing-line {
        margin-top: 38px;

        font-size: 17px;
        text-align: left;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding: 70px 24px 100px;

        flex-direction: column;
        align-items: flex-start;
    }

    .hero-graphic {
        width: min(88vw, 340px);
        height: min(88vw, 340px);

        align-self: center;
    }

    .hero-piece-laptop {
        width: 44%;

        top: 8%;
        left: 0;
    }

    .hero-piece-cart {
        width: 80%;

        right: 0;
        bottom: 10%;
    }


    /* JOURNEY */

    .journey-intro {
        max-width: 90%;

        margin-bottom: 12px;
    }

    .journey-intro h2 {
        font-size: 34px;

        margin-bottom: 10px;
    }

    .journey-intro p:last-child {
        font-size: 15px;
    }


    /* CARDS */

    .challenge-cards {
        width: 100%;

        margin: 18px auto 0;

        flex-direction: column;
        gap: 20px;

        transform: none;
    }

    .journey-card-settled {
        animation-name: mobileChallengeCardSettle;
    }

    @keyframes mobileChallengeCardSettle {

        0% {
            filter: brightness(1) drop-shadow(8px 10px 0 var(--dark-green));
        }

        45% {
            filter: brightness(1.08) drop-shadow(0 0 12px rgba(255, 228, 146, 0.8)) drop-shadow(8px 10px 0 var(--dark-green));
        }

        100% {
            filter: brightness(1) drop-shadow(8px 10px 0 var(--dark-green));
        }
    }

    /* BOARD */

    .board-stage {
        width: 140%;
        height: 190px;

        margin: 0 0 0 -20%;
    }

    .board-perspective {
        left: 4%;
        right: 4%;

        top: 12px;

        transform:
            perspective(900px)
            rotateX(58deg)
            rotateZ(-1.5deg);
    }

    .horizontal-board {
        height: 100px;

        border-width: 5px;
    }

    .horizontal-space {
        border-right-width: 5px;
    }

.board-meeple {
    top: 18px;

    width: 105px;

    transform:
        translateX(-50%)
        translate(
            var(--meeple-x-offset),
            var(--meeple-y-offset)
        );
}


    /* SCROLL PROMPT */

    .journey-scroll-prompt {
        bottom: 8px;
    }

}


/* ====================
   CENTRAL CARD PILE
==================== */

.journey-title {
    max-width: 900px;
    margin: 0 auto 12px;
    padding: 0 24px;
    font-family: 'Alfa Slab One', serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
}

.challenge-card-stage {
    position: relative;

    width: 100%;
    min-height: 540px;

    overflow: visible;

    display: flex;
    align-items: center;
    justify-content: center;
}

.challenge-card-stage .challenge-placeholder {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    padding: 28px;

    transform: translate(-50%, -50%);

    border: 2px dashed rgba(20, 78, 33, 0.35);
    border-radius: 18px;

    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--dark-green);

    z-index: 0;
}
.challenge-card-stage .challenge-placeholder {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    padding: 28px;

    transform: translate(-50%, -50%);

    border: 2px dashed rgba(20, 78, 33, 0.35);
    border-radius: 18px;

    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--dark-green);

    z-index: 0;
}

.challenge-card-stage .challenge-placeholder-copy {
    max-width: 250px;

    margin: 0;

    font-family: 'Gentium Book Plus', serif;
    font-size: clamp(20px, 1.7vw, 26px);
    font-style: italic;
    font-weight: 400;

    line-height: 1.25;
    text-align: center;

    opacity: 0.68;
}
.challenge-card-stage .challenge-placeholder-copy {
    max-width: 300px;

    margin: 0;

    font-family: 'Alfa Slab One', serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    line-height: 1.08;
    text-align: center;
}

.challenge-card-stage .challenge-slot {
    position: relative;

    /* Match the PNG ratio so transparent padding scales predictably. */
    width: min(680px, 79.5vw);
    aspect-ratio: 3 / 4;

    flex-shrink: 0;
    overflow: visible;
    z-index: 1;
}

.challenge-card-stage .active-challenge-card {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    padding: 0;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    /* Keep the card's 3D turn free of flattening filters. */
    filter: none;
    animation: none;

    display: block;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.challenge-card-stage .active-challenge-card img {
    display: block;

    width: 100%;
    height: 100%;
    object-fit: contain;

    backface-visibility: hidden;
}

.challenge-card-stage .challenge-card-hidden {
    transform-origin: center center;
}

@media (max-width: 800px) {

    .challenge-card-stage {
        min-height: 385px;
    }

    .challenge-card-stage .challenge-placeholder {
        padding: 22px;
    }

    .challenge-card-stage .challenge-placeholder-copy {
        max-width: 220px;
        font-size: clamp(18px, 5vw, 25px);
    }

    .challenge-card-stage .challenge-slot {
        width: min(405px, 94vw);
    }

    .challenge-card-stage .active-challenge-card {
        filter: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .challenge-card-stage .active-challenge-card {
        transition: opacity 0s;
    }
}


/* ====================
   WAYS TO WORK TOGETHER
==================== */

.engagements-section {
    padding: 110px 8% 175px;

    background-color: var(--cream);
    color: var(--dark-green);
}


/* INTRO */

.engagements-intro {
    max-width: 760px;

    margin: 0 auto 38px;

    text-align: center;
}

.engagements-intro h2 {
    max-width: 700px;

    margin: 16px auto 0;

    font-family: 'Alfa Slab One', serif;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 400;

    line-height: 1.05;
}

.engagements-intro-copy {
    max-width: 620px;

    margin: 26px auto 0;

    font-size: 20px;
    line-height: 1.5;
}


/* THREE COLUMN LAYOUT */

.engagements-grid {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.engagement-option {
    min-width: 0;

    padding: 0 36px;

    text-align: left;
}

.engagement-option + .engagement-option {
    border-left: 1px solid rgba(97, 148, 83, 0.28);
}


/* ====================
   TILE DISPLAY AREA
==================== */

.engagement-artwork {
    height: 220px;

    margin-bottom: 18px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: visible;
}

.engagement-tile {
    display: block;

    width: auto;
    height: auto;

    object-fit: contain;

    filter: drop-shadow(
        5px
        7px
        4px
        rgba(27, 71, 24, 0.16)
    );
}

.engagement-tile-group {
    width: min(100%, 290px);
    height: auto;
    max-height: 215px;
    filter: none;
}


/* Small → Medium → Large */

.engagement-tile-small {
    max-width: 210px;
    max-height: 190px;
}

.engagement-tile-medium {
    max-width: 245px;
    max-height: 215px;
}

.engagement-tile-large {
    max-width: 280px;
    max-height: 235px;
}


/* ====================
   ENGAGEMENT COPY
==================== */

.engagement-option h3 {
    max-width: 320px;

    margin: 0;

    font-family: 'Alfa Slab One', serif;
    font-size: clamp(25px, 2.2vw, 32px);
    font-weight: 400;

    line-height: 1.15;
}

.engagement-option > p {
    max-width: 315px;

    margin: 18px 0 0;

    font-size: 18px;
    line-height: 1.5;
}


/* ====================
   TABLET
==================== */

@media (max-width: 1000px) {

    .engagement-option {
        padding: 0 22px;
    }

    .engagement-artwork {
        height: 260px;
    }

    .engagement-tile-group {
        width: min(100%, 260px);
        max-height: 205px;
    }

    .engagement-tile-small {
        max-width: 205px;
        max-height: 195px;
    }

    .engagement-tile-medium {
        max-width: 235px;
        max-height: 225px;
    }

    .engagement-tile-large {
        max-width: 270px;
        max-height: 250px;
    }

    .engagement-option > p {
        font-size: 17px;
    }
}


/* ====================
   MOBILE
==================== */

@media (max-width: 800px) {

    .engagements-section {
        padding: 78px 24px 90px;
    }

    .engagements-intro {
        margin-bottom: 46px;

        text-align: left;
    }

    .engagements-intro h2 {
        font-size: 42px;
    }

    .engagements-intro-copy {
        margin-top: 20px;

        font-size: 18px;
    }

    .engagements-grid {
        grid-template-columns: 1fr;

        max-width: 520px;
    }

    .engagement-option {
        padding: 0 0 46px;

        text-align: left;
    }

    .engagement-option + .engagement-option {
        padding-top: 46px;

        border-left: 0;
        border-top: 1px solid rgba(97, 148, 83, 0.28);
    }

    .engagement-option:last-child {
        padding-bottom: 0;
    }

    .engagement-artwork {
        width: 100%;
        height: 275px;

        margin: 0 auto 30px;
    }

    .engagement-tile-group {
        width: min(100%, 280px);
        max-height: 220px;
    }

    .engagement-tile-small {
        max-width: 225px;
        max-height: 210px;
    }

    .engagement-tile-medium {
        max-width: 265px;
        max-height: 245px;
    }

    .engagement-tile-large {
        max-width: 300px;
        max-height: 270px;
    }

    .engagement-option h3 {
        max-width: none;

        font-size: 30px;
    }

    .engagement-option > p {
        max-width: none;

        font-size: 18px;
    }
}
/* ====================
   JOURNEY SPLIT LAYOUT
==================== */

.journey-top {
    width: 84%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.82fr);

    align-items: center;

    gap: clamp(50px, 7vw, 110px);
}


/* LEFT COPY */

.journey-copy {
    max-width: 560px;
}

.journey-copy .eyebrow {
    margin-bottom: 16px;
}

.journey-title {
    max-width: 560px;

    margin: 0;
    padding: 0;

    font-family: 'Alfa Slab One', serif;
    font-size: clamp(44px, 4.7vw, 70px);
    font-weight: 400;

    line-height: 1.02;
    text-align: left;
}

.journey-intro-copy {
    max-width: 430px;

    margin: 26px 0 0;

    font-size: 21px;
    line-height: 1.45;
}


/* RIGHT COLUMN */

.journey-card-column {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* CARD STAGE */

.challenge-card-stage {
    width: 100%;
    min-height: 490px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}

.challenge-card-stage .challenge-slot {
    position: relative;

    width: clamp(310px, 29vw, 390px);
    aspect-ratio: 3 / 4;

    flex-shrink: 0;

    overflow: visible;
}


/* EMPTY STARTING STATE */

.challenge-card-stage .challenge-placeholder {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    padding: 0;

    transform: translate(-50%, -50%);

    border: 0;
    border-radius: 0;

    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--dark-green);

    z-index: 0;
}

.challenge-card-stage .challenge-placeholder-copy {
    max-width: 260px;

    margin: 0;

    font-family: 'Gentium Book Plus', serif;
    font-size: clamp(20px, 1.7vw, 26px);
    font-style: italic;
    font-weight: 400;

    line-height: 1.2;
    text-align: center;

    opacity: 0.62;
}


/* SMALLER CONTROLS BELOW CARD */

.journey-card-column .journey-controls {
    height: 74px;

    margin: -6px auto 0;
}

.journey-card-column .journey-control-buttons {
    gap: 16px;
}

.journey-card-column .journey-control {
    width: 62px;
    height: 52px;

    border-width: 2px;
    border-radius: 8px;

    box-shadow: 3px 3px 0 var(--dark-green);

    font-size: 34px;
}

.journey-card-column .journey-control-note {
    margin-top: 7px;

    font-size: 15px;
}


/* PULL BOARD CLOSER */

.journey-top + .board-stage {
    margin-top: -28px;
}


/* TABLET */

@media (max-width: 1050px) and (min-width: 801px) {

    .journey-top {
        width: 90%;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 0.78fr);

        gap: 40px;
    }

    .journey-title {
        font-size: clamp(38px, 4.5vw, 54px);
    }

    .journey-intro-copy {
        font-size: 19px;
    }

    .challenge-card-stage .challenge-slot {
        width: clamp(290px, 31vw, 345px);
    }
}


/* MOBILE */

@media (max-width: 800px) {

    .journey-top {
        width: 100%;

        padding: 0 24px;

        display: block;
    }

    .journey-copy {
        max-width: 520px;

        margin: 0 auto 18px;

        text-align: center;
    }

    .journey-copy .eyebrow {
        text-align: center;
    }

    .journey-title {
        max-width: 500px;

        margin: 0 auto;

        font-size: 34px;
        line-height: 1.05;

        text-align: center;
    }

    .journey-intro-copy {
        max-width: 400px;

        margin: 18px auto 0;

        font-size: 17px;

        text-align: center;
    }

    .journey-card-column {
        width: 100%;
    }

    .challenge-card-stage {
        min-height: 395px;
    }

    .challenge-card-stage .challenge-slot {
        width: min(300px, 78vw);
    }

    .challenge-card-stage .challenge-placeholder-copy {
        max-width: 220px;

        font-size: 19px;
    }

    .journey-card-column .journey-controls {
        height: 66px;
    }

    .journey-top + .board-stage {
        margin-top: 0;
    }
}
/* FINAL JOURNEY PLACEHOLDER OVERRIDE */

.challenge-card-stage .challenge-slot .challenge-placeholder {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 72%;
    height: 78%;

    padding: 24px;

    transform: translate(-50%, -50%);

    border: 3px dashed rgba(27, 71, 24, 0.42) !important;
    border-radius: 22px !important;

    background: transparent !important;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--dark-green);

    z-index: 0;
}

.challenge-card-stage .challenge-slot .challenge-placeholder-copy {
    max-width: 230px;

    margin: 0;

    font-family: 'Gentium Book Plus', serif;
    font-size: clamp(20px, 1.7vw, 25px);
    font-style: italic;
    font-weight: 400;

    line-height: 1.25;
    text-align: center;

    opacity: 0.7;
}
/* ====================
   LARGE DESKTOP HERO
==================== */

@media (min-width: 1600px) {

    .hero {
        width: min(100%, 1680px);

        margin: 0 auto;

        padding: 70px 70px;

        justify-content: center;

        gap: clamp(120px, 9vw, 210px);
    }

    .hero-content {
        flex: 0 1 650px;
        max-width: 650px;
    }

    .hero h1 {
        font-size: clamp(90px, 5.2vw, 118px);
    }

    .hero-description {
        max-width: 560px;

        font-size: 23px;
        line-height: 1.48;
    }

    .hero-graphic {
        width: clamp(560px, 32vw, 650px);
        height: clamp(560px, 32vw, 650px);

        flex-shrink: 0;
    }

    .hero-piece-laptop {
        width: clamp(225px, 15vw, 290px);

        top: 8%;
        left: 0;
    }

    .hero-piece-cart {
        width: clamp(400px, 25vw, 525px);

        right: 0;
        bottom: 8%;
    }
}
/* ====================
   LARGE DESKTOP SECTION RHYTHM
==================== */

@media (min-width: 1600px) {

    .hero {
        min-height: calc(100dvh - var(--site-header-height));
    }

    .hero-content,
    .hero-graphic {
        transform: translateY(55px);
    }

    .journey-sticky {
        top: var(--site-header-height);
        height: calc(100dvh - var(--site-header-height));
    }

    .journey-fit {
        top: 38%;
    }
}
/* ====================
   ABOUT / WHY ME
==================== */

.about-section {
    padding: 130px 8% 140px;

    background-color: var(--dark-green);
    color: var(--cream);
}

.about-shell {
    width: 100%;
    max-width: 1260px;

    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(380px, 0.92fr);

    align-items: start;

    gap: clamp(70px, 8vw, 130px);
}


/* ====================
   ABOUT LEFT SIDE
==================== */

.about-copy {
    max-width: 650px;
}

.about-copy .eyebrow {
    color: var(--light-green);
}

.about-copy h2 {
    max-width: 640px;

    margin: 18px 0 0;

    font-family: 'Alfa Slab One', serif;
    font-size: clamp(46px, 4.6vw, 72px);
    font-weight: 400;

    line-height: 1.03;
}

.about-body {
    max-width: 610px;

    margin-top: 38px;
}

.about-body p {
    margin: 0;

    font-size: 19px;
    line-height: 1.55;
}

.about-body p + p {
    margin-top: 24px;
}

.about-closing {
    max-width: 560px;

    margin: 38px 0 0;
    padding-left: 22px;

    border-left: 3px solid var(--yellow);

    color: var(--yellow);

    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}


/* ====================
   ABOUT RIGHT SIDE
==================== */

.about-principles {
    border-top: 1px solid rgba(253, 234, 182, 0.28);
}

.about-principle {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);

    align-items: start;

    gap: 24px;

    padding: 34px 0 38px;

    border-bottom: 1px solid rgba(253, 234, 182, 0.28);
}

.about-die {
    display: block;

    width: 62px;
    height: 62px;

    object-fit: contain;

    margin-top: -4px;

    filter: drop-shadow(
        4px
        5px
        2px
        rgba(0, 0, 0, 0.2)
    );
}

.about-principle h3 {
    margin: 3px 0 0;

    font-family: 'Alfa Slab One', serif;
    font-size: clamp(22px, 2vw, 29px);
    font-weight: 400;

    line-height: 1.1;
}

.about-principle p {
    max-width: 470px;

    margin: 16px 0 0;

    color: rgba(253, 234, 182, 0.88);

    font-size: 18px;
    line-height: 1.5;
}


/* ====================
   ABOUT TABLET
==================== */

@media (max-width: 1050px) {

    .about-shell {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .about-copy {
        max-width: 760px;
    }

    .about-body {
        max-width: 700px;
    }

    .about-principles {
        max-width: 760px;
    }
}


/* ====================
   ABOUT MOBILE
==================== */

@media (max-width: 800px) {

    .about-section {
        padding: 80px 24px 84px;
    }

    .about-shell {
        gap: 56px;
    }

    .about-copy h2 {
        font-size: 42px;
    }

    .about-body {
        margin-top: 30px;
    }

    .about-body p {
        font-size: 18px;
    }

    .about-closing {
        margin-top: 32px;

        font-size: 20px;
    }

  .about-principle {
    grid-template-columns: 58px minmax(0, 1fr);

    gap: 16px;

    padding: 28px 0 32px;
}

.about-die {
    width: 50px;
    height: 50px;

    margin-top: -2px;
}

    .about-principle h3 {
        font-size: 25px;
    }

    .about-principle p {
        margin-top: 12px;

        font-size: 17px;
    }
}


/* ====================
   ABOUT LARGE DESKTOP
==================== */

@media (min-width: 1600px) {

    .about-section {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .about-shell {
        max-width: 1360px;
    }
}
/* ====================
   DARK SERVICES SECTION
==================== */

.services-section {
    background-color: var(--dark-green);
    color: var(--cream);
}

.services-intro .eyebrow {
    color: var(--light-green);
}

.services-intro h2 {
    color: var(--cream);
}

.services-intro-copy {
    color: rgba(253, 234, 182, 0.9);
}

.service-row {
    border-top-color: rgba(253, 234, 182, 0.24);
}

.service-row:last-child {
    border-bottom-color: rgba(253, 234, 182, 0.24);
}

.service-row h3 {
    color: var(--cream);
}

.service-row-content p {
    color: rgba(253, 234, 182, 0.9);
}

.service-row-content .service-capabilities {
    color: var(--light-green);
}

.services-closing-line {
    color: var(--yellow);
}

.services-section .pip-marker {
    filter: drop-shadow(
        5px
        6px
        3px
        rgba(0, 0, 0, 0.2)
    );
}
/* ====================
   GLOBAL BODY TEXT READABILITY
==================== */

.service-row-content > p,
.engagement-option > p,
.about-body p,
.about-principle p {
    font-size: 20px;
    line-height: 1.55;
}


/* Supporting intro copy */

.services-intro-copy,
.engagements-intro-copy {
    font-size: 21px;
    line-height: 1.5;
}


/* Mobile */

@media (max-width: 800px) {

    .service-row-content > p,
    .engagement-option > p,
    .about-body p,
    .about-principle p {
        font-size: 18px;
        line-height: 1.55;
    }

    .services-intro-copy,
    .engagements-intro-copy {
        font-size: 19px;
    }
}
/* ====================
   PRICING
==================== */

.pricing-section {
    padding: 125px 8% 130px;

    background-color: var(--cream);
    color: var(--dark-green);
}


/* INTRO */

.pricing-intro {
    max-width: 790px;

    margin: 0 auto 75px;

    text-align: center;
}

.pricing-intro h2 {
    margin: 16px 0 0;

    font-family: 'Alfa Slab One', serif;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 400;

    line-height: 1.03;
}

.pricing-intro-copy {
    max-width: 680px;

    margin: 26px auto 0;

    font-size: 21px;
    line-height: 1.5;
}

.pricing-currency {
    margin: 18px 0 0;

    font-size: 16px;
    font-style: italic;

    opacity: 0.68;
}


/* ====================
   PRICING ROWS
==================== */

.pricing-list {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    border-top: 1px solid rgba(27, 71, 24, 0.24);
}

.pricing-row {
    display: grid;

    grid-template-columns:
        minmax(330px, 0.85fr)
        minmax(0, 1.15fr);

    gap: clamp(55px, 7vw, 100px);

    padding: 62px 0;

    border-bottom: 1px solid rgba(27, 71, 24, 0.24);
}


/* ====================
   PRICE / LEFT SIDE
==================== */

.pricing-summary {
    display: flex;
    align-items: center;

    gap: 32px;
}

.pricing-tile {
    display: block;

    width: auto;
    height: auto;

    flex-shrink: 0;

    object-fit: contain;

    filter: drop-shadow(
        4px
        6px
        3px
        rgba(27, 71, 24, 0.15)
    );
}

.pricing-tile-small {
    max-width: 95px;
    max-height: 95px;
}

.pricing-tile-medium {
    max-width: 110px;
    max-height: 105px;
}

.pricing-tile-large {
    max-width: 125px;
    max-height: 115px;
}

.pricing-tile-group {
    width: 150px;
    height: auto;
    max-height: 120px;
    filter: none;
}

.pricing-heading-group {
    min-width: 0;
}

.pricing-category {
    margin: 0 0 14px;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.pricing-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;

    column-gap: 10px;
    row-gap: 2px;
}

.pricing-from {
    flex-basis: 100%;

    margin-bottom: 3px;

    font-size: 16px;
    font-style: italic;

    opacity: 0.72;
}

.pricing-amount {
    font-family: 'Alfa Slab One', serif;

    font-size: clamp(46px, 4.4vw, 66px);
    font-weight: 400;

    line-height: 1;
}

.pricing-period {
    font-size: 20px;
    font-weight: 700;
}


/* ====================
   DETAILS / RIGHT SIDE
==================== */

.pricing-details {
    max-width: 600px;
}

.pricing-description {
    margin: 0;

    font-size: 21px;
    line-height: 1.5;
}

.pricing-examples {
    margin: 24px 0 0;

    color: var(--green);

    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
}


/* PROJECT EXAMPLES */

.pricing-examples-list {
    margin-top: 28px;

    border-top: 1px solid rgba(27, 71, 24, 0.15);
}

.pricing-example {
    display: flex;
    justify-content: space-between;
    align-items: baseline;

    gap: 24px;

    padding: 13px 0;

    border-bottom: 1px solid rgba(27, 71, 24, 0.15);

    font-size: 18px;
    line-height: 1.35;
}

.pricing-example strong {
    flex-shrink: 0;

    font-weight: 700;
}


/* SMALL PRINT */

.pricing-note {
    margin: 24px 0 0;

    font-size: 16px;
    line-height: 1.5;

    opacity: 0.72;
}

.pricing-footer-note {
    max-width: 760px;

    margin: 48px auto 0;

    text-align: center;

    font-size: 19px;
    font-style: italic;
    line-height: 1.45;
}


/* ====================
   PRICING TABLET
==================== */

@media (max-width: 1000px) {

    .pricing-row {
        grid-template-columns:
            minmax(280px, 0.8fr)
            minmax(0, 1.2fr);

        gap: 45px;
    }

    .pricing-summary {
        gap: 22px;
    }

    .pricing-tile-group {
        width: 130px;
        max-height: 105px;
    }

    .pricing-tile-small {
        max-width: 80px;
        max-height: 80px;
    }

    .pricing-tile-medium {
        max-width: 92px;
        max-height: 88px;
    }

    .pricing-tile-large {
        max-width: 102px;
        max-height: 95px;
    }
}


/* ====================
   PRICING MOBILE
==================== */

@media (max-width: 800px) {

    .pricing-section {
        padding: 80px 24px 84px;
    }

    .pricing-intro {
        margin-bottom: 48px;

        text-align: left;
    }

    .pricing-intro h2 {
        font-size: 42px;
    }

    .pricing-intro-copy {
        margin-top: 20px;

        font-size: 19px;
    }

    .pricing-currency {
        font-size: 15px;
    }

    .pricing-row {
        grid-template-columns: 1fr;

        gap: 32px;

        padding: 46px 0;
    }

    .pricing-summary {
        align-items: center;

        gap: 22px;
    }

    .pricing-tile-group {
        width: 120px;
        max-height: 100px;
    }

    .pricing-category {
        font-size: 14px;
    }

    .pricing-amount {
        font-size: 48px;
    }

    .pricing-description {
        font-size: 19px;
    }

    .pricing-example {
        font-size: 17px;
    }

    .pricing-note {
        font-size: 15px;
    }

    .pricing-footer-note {
        margin-top: 38px;

        text-align: left;

        font-size: 18px;
    }
}
/* ====================
   FINAL CTA / CONTACT
==================== */

.final-cta-section {
    padding: 150px 8% 145px;

    background-color: var(--dark-green);
    color: var(--cream);
}

.final-cta-inner {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


/* EYEBROW */

.final-cta-section .eyebrow {
    color: var(--light-green);
}


/* MAIN HEADLINE */

.final-cta-section h2 {
    max-width: 820px;

    margin: 18px auto 0;

    font-family: 'Alfa Slab One', serif;
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 400;

    line-height: 1.02;
}


/* CORE PROMISE */

.final-cta-lead {
    max-width: 700px;

    margin: 30px auto 0;

    color: var(--yellow);

    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;

    line-height: 1.4;
}


/* OFFER COPY */

.final-cta-offer {
    max-width: 680px;

    margin: 58px auto 0;
}

.final-cta-offer h3 {
    margin: 0;

    font-family: 'Alfa Slab One', serif;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 400;

    line-height: 1.1;
}

.final-cta-offer p {
    margin: 22px auto 0;

    color: rgba(253, 234, 182, 0.9);

    font-size: 20px;
    line-height: 1.55;
}


/* CTA BUTTON */

.final-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 46px;
    padding: 18px 28px;

    border: 2px solid var(--yellow);
    border-radius: 8px;

    background-color: var(--yellow);
    color: var(--dark-green);

    font-size: 19px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        5px 6px 0 rgba(0, 0, 0, 0.18);

    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

.final-cta-button:hover {
    transform: translate(-2px, -2px);

    box-shadow:
        7px 8px 0 rgba(0, 0, 0, 0.18);
}

.final-cta-button:focus-visible {
    outline: 2px solid var(--cream);
    outline-offset: 5px;
}


/* SIMPLE OFFER PROMISES */

.final-cta-promises {
    margin: 34px auto 0;

    color: var(--light-green);

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.final-cta-promises span {
    margin: 0 10px;

    color: var(--yellow);
}


/* FINAL LOW-FRICTION NOTE */

.final-cta-note {
    max-width: 560px;

    margin: 18px auto 0;

    color: rgba(253, 234, 182, 0.7);

    font-size: 17px;
    font-style: italic;

    line-height: 1.45;
}


/* ====================
   FINAL CTA MOBILE
==================== */

@media (max-width: 800px) {

    .final-cta-section {
        padding: 92px 24px 96px;
    }

    .final-cta-inner {
        text-align: left;
    }

    .final-cta-section h2 {
        margin-left: 0;

        font-size: 46px;
    }

    .final-cta-lead {
        margin-left: 0;

        font-size: 22px;
    }

    .final-cta-offer {
        margin: 44px 0 0;
    }

    .final-cta-offer h3 {
        font-size: 32px;
    }

    .final-cta-offer p {
        font-size: 18px;
    }

    .final-cta-button {
        width: 100%;

        margin-top: 36px;

        padding: 17px 22px;
    }

    .final-cta-promises {
        display: flex;
        flex-wrap: wrap;

        gap: 8px 10px;

        font-size: 14px;
        line-height: 1.4;
    }

    .final-cta-promises span {
        margin: 0;
    }

    .final-cta-note {
        margin-left: 0;

        font-size: 16px;
    }
}
/* ====================
   NARRATIVE HEADLINE TUNING
==================== */


/* SERVICES */

.services-intro {
    max-width: 980px;
}

.services-intro h2 {
    max-width: 940px;

    font-size: clamp(40px, 4.4vw, 68px);
}


/* WAYS TO WORK TOGETHER */

.engagements-intro {
    max-width: 900px;
}

.engagements-intro h2 {
    max-width: 860px;

    font-size: clamp(42px, 4.6vw, 68px);
}


/* WHY ME */

.about-copy h2 {
    font-size: clamp(40px, 3.8vw, 60px);
    line-height: 1.05;
}


/* MOBILE */

@media (max-width: 800px) {

    .services-intro h2,
    .engagements-intro h2,
    .about-copy h2 {
        font-size: 40px;
    }

}
/* ====================
   PRICING → CTA SPACING
==================== */

.pricing-section {
    padding-bottom: 175px;
}
/* ==================================================
   FINAL MOBILE POLISH
   Keep this at the very bottom of style.css
================================================== */

@media (max-width: 800px) {

    /* ====================
       GLOBAL MOBILE RHYTHM
    ==================== */

    body {
        overflow-x: hidden;
    }

    main,
    section {
        max-width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .eyebrow {
        font-size: 12px;
        letter-spacing: 1.6px;
    }


    /* ====================
       SECTION SPACING
    ==================== */

    .hero,
    .services-section,
    .engagements-section,
    .about-section,
    .pricing-section,
    .final-cta-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .services-section,
    .engagements-section,
    .about-section,
    .pricing-section,
    .final-cta-section {
        padding-top: 88px;
        padding-bottom: 88px;
    }


    /* ====================
       HEADLINE SCALE
    ==================== */

    .hero h1 {
        font-size: clamp(52px, 14vw, 68px);
        line-height: 0.98;
    }

    .services-intro h2,
    .engagements-intro h2,
    .about-copy h2,
    .pricing-intro h2,
    .final-cta-section h2 {
        font-size: clamp(38px, 10.5vw, 48px);
        line-height: 1.04;
    }

    .engagement-option h3,
    .about-principle h3,
    .final-cta-offer h3 {
        font-size: 28px;
        line-height: 1.1;
    }


    /* ====================
       BODY COPY
    ==================== */

    .hero-description,
    .services-intro-copy,
    .engagements-intro-copy,
    .service-row-content > p,
    .engagement-option > p,
    .about-body p,
    .about-principle p,
    .pricing-description,
    .final-cta-offer p {
        font-size: 18px;
        line-height: 1.5;
    }


    /* ====================
       HERO
    ==================== */

    .hero {
        min-height: auto;

        padding-top: 64px;
        padding-bottom: 82px;

        gap: 50px;

        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
        max-width: none;
    }

    .hero-description {
        max-width: 100%;
        margin-top: 24px;
    }

    .hero-graphic {
        width: min(88vw, 340px);
        height: min(88vw, 340px);

        margin: 0 auto;

        align-self: center;
    }


    /* ====================
       SERVICES
    ==================== */

    .services-intro {
        width: 100%;
        max-width: none;

        margin-bottom: 50px;

        text-align: left;
    }

    .service-row {
        min-height: 0;

        grid-template-columns: 70px minmax(0, 1fr);

        column-gap: 18px;
        row-gap: 18px;

        padding: 28px 0;
    }

    .pip-marker,
    .pip-marker img {
        width: 62px;
        height: 62px;
    }

    .service-row h3 {
        font-size: 25px;
    }

    .service-row-content {
        grid-column: 1 / -1;

        max-width: none;

        padding-left: 88px;
    }

    .service-capabilities {
        font-size: 15px !important;
    }


    /* ====================
       WAYS TO WORK TOGETHER
    ==================== */

    .engagements-intro {
        width: 100%;
        max-width: none;

        margin-bottom: 54px;

        text-align: left;
    }

    .engagements-grid {
        grid-template-columns: 1fr;

        width: 100%;
        max-width: none;
    }

    .engagement-option {
        padding: 0 0 48px;
    }

    .engagement-option + .engagement-option {
        padding-top: 48px;

        border-left: 0;
        border-top: 1px solid rgba(97, 148, 83, 0.28);
    }

    .engagement-artwork {
        height: 190px;

        margin-bottom: 24px;
    }

    .engagement-tile-group,
    .engagement-tile-medium,
    .engagement-tile-large {
        max-width: 240px;
        max-height: 180px;
    }


    /* ====================
       ABOUT
    ==================== */

    .about-shell {
        display: block;
    }

    .about-copy,
    .about-body,
    .about-principles {
        width: 100%;
        max-width: none;
    }

    .about-body {
        margin-top: 30px;
    }

    .about-principles {
        margin-top: 56px;
    }

    .about-principle {
        grid-template-columns: 56px minmax(0, 1fr);

        gap: 16px;

        padding: 28px 0;
    }

    .about-die {
        width: 48px;
        height: 48px;
    }

    .about-closing {
        font-size: 20px;
    }


    /* ====================
       PRICING
    ==================== */

    .pricing-intro {
        width: 100%;
        max-width: none;

        margin-bottom: 52px;

        text-align: left;
    }

    .pricing-row {
        grid-template-columns: 1fr;

        gap: 28px;

        padding: 46px 0;
    }

    .pricing-summary {
        gap: 20px;
    }

    .pricing-tile-group {
        width: 110px;
    }

    .pricing-tile-medium {
        max-width: 90px;
    }

    .pricing-tile-large {
        max-width: 100px;
    }

    .pricing-amount {
        font-size: 46px;
    }

    .pricing-example {
        gap: 16px;

        font-size: 16px;
    }


    /* ====================
       FINAL CTA
    ==================== */

    .final-cta-inner {
        width: 100%;
        max-width: none;

        text-align: left;
    }

    .final-cta-lead {
        margin-top: 24px;

        font-size: 21px;
    }

    .final-cta-offer {
        margin-top: 44px;
    }

    .final-cta-button {
        width: 100%;

        margin-top: 36px;
    }

    .final-cta-promises {
        line-height: 1.5;
    }

}
/* ==================================================
   MOBILE FIXES — JOURNEY / SERVICES / MENU
================================================== */

@media (max-width: 800px) {

    /* ====================
       HAMBURGER
    ==================== */

    .menu-toggle {
        border: 0;
        border-radius: 0;
        background: transparent;
    }


    /* ====================
       SERVICES
    ==================== */

    .service-row {
        min-height: 0;

        grid-template-columns: 72px minmax(0, 1fr);

        column-gap: 18px;
        row-gap: 20px;

        padding: 30px 0;
    }

    .pip-marker,
    .pip-marker img {
        width: 62px;
        height: 62px;
    }

    .service-row h3 {
        align-self: center;

        font-size: 23px;
        line-height: 1.08;

        /* Never split words like MANAGEME / NT */
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .service-row-content {
        grid-column: 1 / -1;

        width: 100%;
        max-width: none;

        /* Let body copy use the full mobile width */
        padding-left: 0;
    }

    .service-row-content > p {
        font-size: 18px;
        line-height: 1.5;
    }

    .service-row-content .service-capabilities {
        font-size: 15px;
        line-height: 1.45;
    }


    /* ====================
       JOURNEY — COMPACT MOBILE
    ==================== */

    .journey-copy {
        margin-bottom: 8px;
    }

    .journey-title {
        font-size: 30px;
        line-height: 1.04;
    }

    .journey-intro-copy {
        margin-top: 12px;

        font-size: 16px;
        line-height: 1.4;
    }

    .challenge-card-stage {
        min-height: 380px;
    }

    .challenge-card-stage .challenge-slot {
        width: min(285px, 76vw);
    }

    .journey-card-column .journey-controls {
        height: 52px;

        margin-top: -8px;
    }

    .journey-card-column .journey-control {
        width: 54px;
        height: 46px;

        font-size: 30px;
    }


    /* Compact the board rather than letting it
       consume another huge chunk of the scene */

    .journey-top + .board-stage {
        margin-top: -10px;
    }

    .board-stage {
        width: 125%;
        height: 110px;

        margin-left: -12.5%;
    }

    .board-perspective {
        top: 30px;
    }

    .horizontal-board {
        height: 76px;

        border-width: 4px;

        box-shadow: 0 10px 0 var(--dark-green);
    }

    .horizontal-space {
        border-right-width: 4px;
    }

    .board-meeple {
        top: 22px;

        width: 78px;
    }

}
/* ====================
   MOBILE JOURNEY TYPE BOOST
==================== */

@media (max-width: 800px) {

    .journey-copy .eyebrow {
        font-size: 13px;
        letter-spacing: 1.7px;
    }

    .journey-title {
        font-size: 40px;
        line-height: 1.02;
    }

    .journey-intro-copy {
        max-width: 330px;

        margin-top: 16px;

        font-size: 20px;
        line-height: 1.4;
    }

    .challenge-placeholder-copy {
        font-size: 22px !important;
        line-height: 1.25;
    }

    .journey-control-note {
        font-size: 16px;
    }

}
/* ====================
   MOBILE JOURNEY BOARD FIT
==================== */

@media (max-width: 800px) {

    .board-stage {
        width: 100%;
        max-width: 100%;

        height: 145px;

        margin-left: 0;
        margin-right: 0;

        overflow: visible;
    }

    .board-perspective {
        left: 7%;
        right: 7%;

        top: 28px;
    }

    .horizontal-board {
        width: 100%;
        height: 72px;

        border-width: 4px;

        box-shadow: 0 10px 0 var(--dark-green);
    }

    .horizontal-space {
        border-right-width: 4px;
    }

    .board-meeple {
        top: 20px;

        width: 74px;
    }

}
/* ====================
   MOBILE BOARD LOWER
==================== */

@media (max-width: 800px) {

    .journey-top + .board-stage {
        margin-top: 34px;
    }

}
/* ==================================================
   FINAL MOBILE / HEADER POLISH
================================================== */


/* ====================
   HEADER — ALL SIZES
==================== */

.site-header {
    padding: 26px 44px;
}

.logo img {
    width: 245px;
}


/* ====================
   MOBILE
==================== */

@media (max-width: 800px) {

    /* --------------------
       HEADER
    -------------------- */

    .site-header {
        padding: 14px 20px;
    }

    .logo img {
        width: min(180px, 54vw);
    }


    /* --------------------
       JOURNEY POSITION
       
       Treat the area BELOW the header as
       the Journey's actual viewport.
    -------------------- */

    .journey-sticky {
        top: var(--site-header-height);
        height: calc(100dvh - var(--site-header-height));
    }

    .journey-fit {
        top: 50%;
    }


    /* --------------------
       FASTER MOBILE JOURNEY
       
       Desktop stays at its existing length.
    -------------------- */

    .journey-scroll-track {
        height: 540vh;
    }


    /* --------------------
       WHY ME — MOBILE ONLY
       
       Give these a completely different
       visual rhythm from the Services rows.
    -------------------- */

    .about-principles {
        width: 100%;
        max-width: none;

        border-top: 1px solid rgba(253, 234, 182, 0.28);
    }

    .about-principle {
        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 0;

        padding: 42px 12px;

        text-align: center;
    }

    .about-die {
        width: 58px;
        height: 58px;

        margin: 0 0 18px;
    }

    .about-principle h3 {
        margin: 0;

        font-size: 26px;
        line-height: 1.1;
    }

    .about-principle p {
        width: 100%;
        max-width: 330px;

        margin: 14px auto 0;

        font-size: 18px;
        line-height: 1.5;
    }


    /* --------------------
       FINAL CTA PROMISES
       
       Keep all three on one line.
    -------------------- */

    .final-cta-promises {
        width: 100%;

        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;

        font-size: clamp(10px, 2.8vw, 12px);
        letter-spacing: 0.04em;

        white-space: nowrap;
    }

    .final-cta-promises span {
        flex: 0 0 auto;

        margin: 0 6px;
    }

}
/* ==================================================
   FINAL CTA — GAME BOX LAYOUT
================================================== */

.final-cta-section {
    overflow: hidden;
}

.final-cta-layout {
    width: 100%;
    max-width: 1320px;

    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(340px, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: clamp(65px, 8vw, 135px);
}


/* ====================
   LEFT: GAME BOX
==================== */

.final-cta-art {
    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-game-box {
    display: block;

    width: min(100%, 510px);
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            12px
            16px
            9px
            rgba(0, 0, 0, 0.18)
        );

    animation:
        finalGameBoxFloat
        9s
        ease-in-out
        infinite;
}

@keyframes finalGameBoxFloat {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(-1.5deg);
    }

    50% {
        transform:
            translate3d(0, -8px, 0)
            rotate(-1.5deg);
    }

}


/* ====================
   RIGHT: COPY
==================== */

.final-cta-inner {
    width: 100%;
    max-width: 700px;

    margin: 0;

    text-align: left;
}

.final-cta-section h2,
.final-cta-lead,
.final-cta-offer {
    margin-left: 0;
    margin-right: 0;
}


/* ====================
   CENTERED ACTION AREA
==================== */

.final-cta-action {
    width: 100%;

    margin-top: 42px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.final-cta-action .final-cta-button {
    margin-top: 0;
}

.final-cta-action .final-cta-promises {
    margin-left: auto;
    margin-right: auto;
}

.final-cta-action .final-cta-note {
    margin-left: auto;
    margin-right: auto;
}


/* ====================
   TABLET
==================== */

@media (max-width: 1050px) {

    .final-cta-layout {
        grid-template-columns:
            minmax(280px, 0.85fr)
            minmax(0, 1.15fr);

        gap: 48px;
    }

    .final-cta-art {
        min-height: 450px;
    }

    .final-cta-game-box {
        width: min(100%, 400px);
    }

}


/* ====================
   MOBILE
==================== */

@media (max-width: 800px) {

    .final-cta-layout {
        display: flex;
        flex-direction: column;

        gap: 55px;
    }

    .final-cta-art {
        order: 1;

        width: 100%;
        min-height: 0;
    }

    .final-cta-game-box {
        width: min(82vw, 340px);
    }

    .final-cta-inner {
        order: 2;

        width: 100%;
        max-width: none;

        text-align: left;
    }

    .final-cta-action {
        margin-top: 36px;

        text-align: center;
    }

    .final-cta-action .final-cta-button {
        width: 100%;
        max-width: 340px;
    }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .final-cta-game-box {
        animation: none;
    }

}
/* ====================
   FINAL CTA — CENTER COPY
==================== */

.final-cta-inner {
    text-align: center;
}

.final-cta-section h2,
.final-cta-lead,
.final-cta-offer {
    margin-left: auto;
    margin-right: auto;
}

.final-cta-offer {
    max-width: 680px;
}

.final-cta-action {
    align-items: center;
    text-align: center;
}

.final-cta-note {
    margin-left: auto;
    margin-right: auto;
}
/* ====================
   FINAL CTA — BIGGER GAME BOX
==================== */

.final-cta-layout {
    max-width: 1400px;

    grid-template-columns:
        minmax(500px, 1.05fr)
        minmax(0, 0.95fr);

    gap: clamp(35px, 5vw, 80px);
}

.final-cta-art {
    min-height: 650px;
}

.final-cta-game-box {
    width: min(100%, 650px);
    max-width: none;
}


/* TABLET */

@media (max-width: 1050px) {

    .final-cta-layout {
        grid-template-columns:
            minmax(360px, 0.95fr)
            minmax(0, 1.05fr);

        gap: 40px;
    }

    .final-cta-art {
        min-height: 500px;
    }

    .final-cta-game-box {
        width: min(100%, 470px);
    }

}


/* MOBILE */

@media (max-width: 800px) {

    .final-cta-art {
        min-height: 0;
    }

    .final-cta-game-box {
        width: min(88vw, 390px);
    }

}
/* ==================================================
   GLOBAL TYPE READABILITY PASS
================================================== */

/* Main paragraph copy */

.hero-description,
.journey-intro-copy,
.services-section p:not(.eyebrow),
.engagements-section p:not(.eyebrow),
.about-section p:not(.eyebrow),
.pricing-section p:not(.eyebrow),
.final-cta-section p:not(.eyebrow) {
    font-size: clamp(19px, 1.25vw, 21px);
    line-height: 1.55;
}


/* Service capability / supporting lines */

.service-row-content .service-capabilities {
    font-size: 17px;
    line-height: 1.5;
}


/* About principle descriptions */

.about-principle p {
    font-size: 19px;
    line-height: 1.5;
}


/* Final CTA supporting text */

.final-cta-lead {
    font-size: clamp(23px, 1.8vw, 27px) !important;
    line-height: 1.45;
}

.final-cta-offer p {
    font-size: 19px;
    line-height: 1.55;
}

.final-cta-note {
    font-size: 17px !important;
    line-height: 1.5;
}


/* Keep these intentionally smaller */

.eyebrow {
    font-size: 13px;
}

.final-cta-promises {
    font-size: 14px !important;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 800px) {

    .hero-description,
    .journey-intro-copy,
    .services-section p:not(.eyebrow),
    .engagements-section p:not(.eyebrow),
    .about-section p:not(.eyebrow),
    .pricing-section p:not(.eyebrow),
    .final-cta-section p:not(.eyebrow) {
        font-size: 18px;
        line-height: 1.55;
    }

    .service-row-content .service-capabilities {
        font-size: 16px;
    }

    .about-principle p {
        font-size: 18px;
    }

    .final-cta-lead {
        font-size: 22px !important;
    }

    .final-cta-offer p {
        font-size: 18px;
    }

    .final-cta-note {
        font-size: 16px !important;
    }
    .final-cta-offer h3 {
    font-size: clamp(30px, 2.4vw, 38px);
    line-height: 1.12;
}

}
/* ==================================================
   CONTACT FORM
================================================== */

.contact-form {
    width: 100%;
    max-width: 620px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 22px;

    text-align: left;
}


/* Hide Netlify spam trap */

.contact-honeypot {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: -1px !important;

    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;

    white-space: nowrap !important;
    border: 0 !important;
}


/* ====================
   FIELDS
==================== */

.contact-field {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.contact-field label {
    color: var(--light-green);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
    width: 100%;

    padding: 17px 18px;

    border: 2px solid rgba(253, 234, 182, 0.35);
    border-radius: 8px;

    background: rgba(253, 234, 182, 0.06);

    color: var(--cream);

    font-family: 'Gentium Book Plus', serif;
    font-size: 18px;
    line-height: 1.45;

    outline: none;

    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        box-shadow 160ms ease;
}

.contact-field textarea {
    min-height: 160px;

    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(253, 234, 182, 0.48);
}


/* FOCUS */

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--yellow);

    background: rgba(253, 234, 182, 0.09);

    box-shadow:
        0 0 0 3px rgba(255, 228, 146, 0.12);
}


/* ====================
   BUTTON
==================== */

.contact-submit {
    align-self: center;

    border: 0;

    cursor: pointer;

    font-family: 'Gentium Book Plus', serif;
}


/* ====================
   DIRECT EMAIL
==================== */

.contact-email-option {
    margin: 24px auto 0 !important;

    text-align: center;

    font-size: 17px !important;
}

.contact-email-option a {
    color: var(--yellow);

    font-weight: 700;
    text-decoration: none;

    border-bottom:
        1px solid
        rgba(255, 228, 146, 0.55);
}

.contact-email-option a:hover {
    border-bottom-color: var(--yellow);
}


/* ====================
   MOBILE
==================== */

@media (max-width: 800px) {

    .contact-form {
        max-width: none;

        gap: 18px;
    }

    .contact-field input,
    .contact-field textarea {
        padding: 16px;

        font-size: 18px;
    }

    .contact-submit {
        width: 100%;
        max-width: none;
    }

}