/* =========================
   PICKETT
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
html {
    scroll-behavior: smooth;
}
:root {
    --teal: #389D9A;
    --yellow: #FDDB70;
    --black: #1D1D1D;
    --off-white: #F8F8F8;
    --white: #FFFFFF;
}

/* =========================
   NAVIGATION
   ========================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 3.5vw 24px;
}

.navbar {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 26px 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    display: block;
    height: auto;
    width: 115px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;

    color: rgba(248, 248, 248, 0.6);
    text-decoration: none;
}

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

.nav-contact {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;

    color: var(--off-white);
    text-decoration: none;

    padding: 9px 15px;
    border: 1px solid rgba(248, 248, 248, 0.25);
    border-radius: 100px;
}

.nav-contact:hover {
    border-color: var(--teal);
}

.nav-contact span {
    margin-left: 5px;
    color: var(--yellow);
}


/* =========================
   RESET
   ========================= */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--off-white);
}


/* =========================
   HERO
   ========================= */

.hero {
    min-height: 100svh;

    display: flex;
    flex-direction: column;
    align-items: center;

    overflow: hidden;

    padding: 120px 4vw 2vh;
}


/* =========================
   HERO TEXT
   ========================= */

.hero-text {
    position: relative;
    width: 100%;
    max-width: 1250px;

    text-align: center;

    margin-top: 25px;
}

.hero h1 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.2rem, 5.8vw, 7rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.025em;

    color: var(--off-white);
}

.teal {
    color: var(--teal);
}

.yellow {
    color: var(--yellow);
}


/* little hand-drawn underline below YOU */

.yellow-accent {
    position: absolute;

    width: 170px;
    height: 10px;

    right: 4%;
    bottom: -24px;

    border-top: 5px solid var(--yellow);
    border-radius: 50%;

    transform: rotate(-2deg);
}


/* =========================
   PICKETT COMPOSITION
   ========================= */

.hero-visual {
    width: min(1500px, 100vw);

    display: flex;
    justify-content: center;
    align-items: flex-end;

    margin-top: auto;
}

.hero-visual img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
    object-position: center bottom;
}
.you {
    position: relative;
    display: inline-block;
}

.you::after {
    content: "";
    position: absolute;

    left: 8%;
    bottom: -12px;

    width: 88%;
    height: 8px;

    border-top: 4px solid var(--yellow);
    border-radius: 50%;

    transform: rotate(-2deg);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

    .hero {
        justify-content: flex-start;
        padding: 15vh 20px 0;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 11vw, 4.5rem);
        line-height: 1.05;
    }

    .hero-visual {
        width: 145vw;
        margin-top: 55px;
    }

    .yellow-accent {
        display: none;
    }
}

/* =========================
   PATTERNS / PROBLEM SECTION
   ========================= */

.patterns-section {
    min-height: 100svh;

    display: flex;
    align-items: center;

    /* warmer beige from the visual direction */
    background: #FBF6ED;
    color: var(--black);

    padding: 80px 8vw;
}

.patterns-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* OPENING */

.patterns-intro {
    margin: 0 0 8px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 1.8vw, 2rem);
    font-weight: 600;
    line-height: 1.1;
}


/* FINDING PATTERNS — ONE LINE */

.patterns-title {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4.5rem, 7vw, 7.5rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;

    white-space: nowrap;
}

.patterns-title .teal {
    color: var(--teal);
}


/* SMALL TEAL MARK */

.patterns-squiggle {
    width: 65px;
    height: 8px;

    margin: 22px 0 25px 10px;

    border-top: 4px solid var(--teal);
    border-radius: 50%;

    transform: rotate(-3deg);
}


/* EXPLANATION */

.patterns-explanation {
    margin: 0 0 25px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.45rem, 1.8vw, 1.9rem);
    font-weight: 500;
    line-height: 1.25;
}


/* BLACK CALLOUT */

.flaw-label {
    display: inline-block;

    margin-bottom: 40px;
    padding: 6px 16px 8px;

    background: var(--black);
    color: var(--white);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.3rem, 1.6vw, 1.7rem);
    font-weight: 500;
    line-height: 1;

    transform: rotate(-1deg);
}


/* IT GENERALISES */

.generalises {
    position: relative;
    display: table;

    margin: 0 0 18px;
    padding: 2px 20px 7px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.5rem, 5.5vw, 6rem);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.035em;

    z-index: 1;
}

.generalises::before {
    content: "";

    position: absolute;
    z-index: -1;

    left: 0;
    right: 0;
    top: 15%;
    bottom: 0;

    background: var(--yellow);

    border-radius: 45% 8% 35% 5%;
    transform: rotate(-0.5deg);
}


/* FINAL LINE */

.patterns-conclusion {
    margin: 0 0 0 10px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.45rem, 1.8vw, 1.9rem);
    font-weight: 500;
    line-height: 1.25;
}

.teal-underline {
    position: relative;
    display: inline-block;
}

.teal-underline::after {
    content: "";

    position: absolute;
    left: 2%;
    bottom: -3px;

    width: 96%;

    border-top: 3px solid var(--teal);
    border-radius: 50%;

    transform: rotate(-1deg);
}


/* MOBILE */

@media (max-width: 700px) {

    .patterns-section {
        min-height: auto;
        padding: 90px 25px;
    }

    .patterns-title {
        font-size: clamp(3.6rem, 17vw, 5rem);
        white-space: normal;
    }

    .generalises {
        font-size: clamp(3rem, 14vw, 4.5rem);
        padding-left: 10px;
        padding-right: 10px;
    }

    .patterns-explanation br,
    .patterns-conclusion br {
        display: none;
    }
}

/* =========================================
   INTERACTIVE EXAMPLES
   ========================================= */

.examples-section {
    background: var(--black);
    padding: 45px 0 0;
}


/* -----------------------------------------
   SECTION HEADER + TABS
   ----------------------------------------- */

.examples-heading {
    width: 100%;
    padding: 0 5vw 22px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.section-kicker {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.14em;

    color: rgba(248, 248, 248, 0.45);
}

.example-tabs {
    display: flex;
    align-items: center;
    gap: 4px;

    padding: 5px;

    border: 1px solid rgba(248, 248, 248, 0.14);
    border-radius: 100px;
}

.example-tab {
    appearance: none;

    padding: 10px 22px;

    border: 0;
    border-radius: 100px;

    background: transparent;
    color: rgba(248, 248, 248, 0.5);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.example-tab:hover {
    color: var(--off-white);
}

.example-tab.active {
    background: var(--off-white);
    color: var(--black);
}
/* -----------------------------------------
   THREE-PANEL CONTAINER
   ----------------------------------------- */

.example {
    display: none;

    width: 100%;
    height: 650px;

    overflow: hidden;
}

.example.active {
    display: flex;
}


/* -----------------------------------------
   PANEL
   ----------------------------------------- */

.story-panel {
    position: relative;

    width: 33.333%;
    min-width: 0;

    overflow: hidden;

    transition: width 0.55s cubic-bezier(.22, .8, .25, 1);
}


/* FACT EXPANDS */

.example:has(.fact-panel:hover) .fact-panel {
    width: 56%;
}

.example:has(.fact-panel:hover) .llm-panel,
.example:has(.fact-panel:hover) .context-panel {
    width: 22%;
}


/* LLM EXPANDS */

.example:has(.llm-panel:hover) .llm-panel {
    width: 56%;
}

.example:has(.llm-panel:hover) .fact-panel,
.example:has(.llm-panel:hover) .context-panel {
    width: 22%;
}


/* CONTEXT EXPANDS */

.example:has(.context-panel:hover) .context-panel {
    width: 56%;
}

.example:has(.context-panel:hover) .fact-panel,
.example:has(.context-panel:hover) .llm-panel {
    width: 22%;
}


/*
The panel under the cursor becomes dominant.
*/

.example .story-panel:hover {
    flex-grow: 2.2;
}


/* dividing lines */

.story-panel+.story-panel {
    border-left: 1px solid rgba(29, 29, 29, 0.2);
}


/* -----------------------------------------
   PANEL BACKGROUNDS
   ----------------------------------------- */

.fact-panel {
    background: #FBF6ED;
    color: var(--black);
}

.llm-panel {
    background: var(--yellow);
    color: var(--black);
}

.context-panel {
    background: #063F42;
    color: var(--off-white);
}


/* -----------------------------------------
   INNER LAYOUT
   ----------------------------------------- */

.panel-inner {
    width: 100%;
    height: 100%;

    padding: 40px 5vw;

    display: flex;
    flex-direction: column;
}


/* -----------------------------------------
   HEADINGS
   ----------------------------------------- */

.panel-heading {
    flex-shrink: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 700;
    font-style: italic;

    letter-spacing: -0.04em;
    line-height: 0.95;

    color: var(--teal);
}

.panel-heading>span {
    display: block;
}

.panel-heading::after {
    content: "";

    display: block;

    width: 105px;

    margin-top: 12px;

    border-top: 4px solid currentColor;

    transform: rotate(-2deg);
}


/* LLM heading */

.llm-heading {
    color: var(--black);
}

.llm-small {
    font-size: 0.8em;
}


/* Context heading */

.context-heading {
    color: var(--teal);
}

.context-heading small {
    display: block;

    margin-top: 7px;

    font-size: 0.42em;
    letter-spacing: 0.02em;
}


/* -----------------------------------------
   BODY
   ----------------------------------------- */

.panel-body {
    flex: 1;

    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
}


/* -----------------------------------------
   FACT
   ----------------------------------------- */

.fact-copy {
    margin: 45px 0 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 2.6vw, 3.1rem);
    font-weight: 600;
    line-height: 1.05;
}

.teal-text {
    color: var(--teal);
}

.fact-art {
    width: min(380px, 90%);
    max-height: 310px;

    margin-top: auto;
    margin-left: 0;

    object-fit: contain;
    object-position: left bottom;
}

.fact-panel:hover .fact-art {
    width: min(460px, 90%);
}

.fact-art {
    transition: width 0.55s cubic-bezier(.22, .8, .25, 1);
}


/* -----------------------------------------
   LLM
   ----------------------------------------- */

.llm-lead {
    margin: 40px 0 20px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.7rem, 2.2vw, 2.5rem);
    font-weight: 600;
}

.assumptions {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.assumption {
    display: flex;
    align-items: center;

    gap: 22px;

    min-width: 0;
}

.assumption img {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    object-fit: contain;
}

.assumption span {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 600;

    line-height: 0.95;
}


/* -----------------------------------------
   CONTEXT
   ----------------------------------------- */

.context-copy {
    max-width: 520px;

    margin: 35px 0 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.65rem, 2.1vw, 2.4rem);
    font-weight: 600;

    line-height: 1.1;
}

.context-copy span {
    color: #49BDB8;
}

.context-art {
    width: 100%;
    max-height: 320px;

    margin-top: auto;

    object-fit: contain;
    object-position: left bottom;
}


/* -----------------------------------------
   PLACEHOLDERS
   ----------------------------------------- */

.placeholder-copy {
    margin-top: 70px;

    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    font-weight: 600;
}


/* =========================================
   COMPRESSED PANEL BEHAVIOUR
   ========================================= */

/*
Don't let text get absurdly squeezed when another
panel has expanded.
*/

.example:hover .story-panel:not(:hover) .panel-inner {
    padding-left: 30px;
    padding-right: 30px;
}

.example:hover .story-panel:not(:hover) .fact-copy,
.example:hover .story-panel:not(:hover) .llm-lead,
.example:hover .story-panel:not(:hover) .llm-statement,
.example:hover .story-panel:not(:hover) .assumptions,
.example:hover .story-panel:not(:hover) .context-copy,
.example:hover .story-panel:not(:hover) .panel-art,
.example:hover .story-panel:not(:hover) .llm-art {
    opacity: 0.18;
    transition: opacity 0.25s ease;
}

.story-panel:hover .fact-copy,
.story-panel:hover .llm-lead,
.story-panel:hover .llm-statement,
.story-panel:hover .assumptions,
.story-panel:hover .context-copy,
.story-panel:hover .panel-art,
.story-panel:hover .llm-art {
    opacity: 1;
    transition: opacity 0.3s ease 0.12s;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 800px) {

    .examples-section {
        padding-top: 60px;
    }

    .examples-heading {
        padding: 0 22px 30px;

        flex-direction: column;
        align-items: flex-start;

        gap: 25px;
    }

    .example-tabs {
        width: 100%;

        overflow-x: auto;
    }

    .example {
        height: auto;
    }

    .example.active {
        display: block;
    }

    .story-panel {
        min-height: 600px;

        border-left: none !important;
        border-top: 1px solid rgba(29, 29, 29, 0.15);

        overflow: visible;
    }

    .panel-inner {
        padding: 50px 25px;
    }

    /*
    No expanding hover interaction on phones.
    */

    .example:hover .story-panel,
    .example .story-panel:hover {
        flex: none;
    }

        .example:hover .story-panel:not(:hover) .fact-copy,
        .example:hover .story-panel:not(:hover) .llm-lead,
        .example:hover .story-panel:not(:hover) .llm-statement,
        .example:hover .story-panel:not(:hover) .assumptions,
        .example:hover .story-panel:not(:hover) .context-copy,
        .example:hover .story-panel:not(:hover) .panel-art,
        .example:hover .story-panel:not(:hover) .llm-art {
            opacity: 0.18;
            transition: opacity 0.25s ease;
        }
}

/* =========================================
   EXAMPLES 2 + 3
   ========================================= */

.llm-statement {
    max-width: 500px;

    margin: 55px 0 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 2.6vw, 3rem);
    font-weight: 600;

    line-height: 1.08;
}

.llm-emphasis {
    position: relative;
    display: inline;
}

.llm-emphasis::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -3px;

    border-top: 3px solid var(--black);
    border-radius: 50%;

    transform: rotate(-1deg);
}


.llm-art {
    width: min(360px, 85%);
    max-height: 270px;

    margin-top: auto;

    object-fit: contain;
    object-position: left bottom;

    transition:
        width 0.55s cubic-bezier(.22, .8, .25, 1),
        opacity 0.25s ease;
}


/* More room when the LLM panel opens */

.llm-panel:hover .llm-art {
    width: min(430px, 90%);
}


/* Career fact contains considerably more copy */

.career-fact-copy {
    margin-top: 35px;

    font-size: clamp(1.55rem, 2vw, 2.25rem);
    line-height: 1.12;
}

.career-fact-art {
    max-height: 190px;
}


/* Slightly tighter context copy for career example */

.career-context-copy {
    font-size: clamp(1.6rem, 2vw, 2.3rem);
}

/* =========================================
   LLM STRIP — BLACK / CENTRED / COMPACT
   ========================================= */

.llm-strip {
    width: 100%;

    background: #1D1D1D;
    color: #F8F8F8;

    padding: 55px 5vw 60px;
}

.llm-strip-content {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================
   FIRST LINE
   ========================================= */

.llm-strip-line-one {
    width: 100%;

    display: flex;
    align-items: baseline;
    justify-content: center;

    /* slightly more natural spacing between every phrase */
        gap: 0.24em;

    white-space: nowrap;

    line-height: 1;
}


/* An / is / to */

.strip-serif-small {
    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.45rem, 2vw, 2.2rem);
    font-weight: 500;

    letter-spacing: -0.025em;

    color: #F8F8F8;
}


/* LLM + QUICK */

.strip-display {
    position: relative;

    display: inline-block;

    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;

    font-weight: 700;
    font-style: italic;

    letter-spacing: -0.07em;

    color: #389D9A;
}

.strip-llm {
    font-size: clamp(2.7rem, 4.2vw, 4.7rem);
    /* breathing room before "is" */
        margin-right: 0.12em;
}

.strip-quick {
    font-size: clamp(3rem, 4.7vw, 5.2rem);
    /* breathing room before "to" */
        margin-right: 0.16em;
}


/* teal rough underline */

.strip-display::after {
    content: "";

    position: absolute;

    left: 4%;
    bottom: -5px;

    width: 92%;

    border-top: 3px solid #389D9A;
    border-radius: 50%;

    transform: rotate(-1.5deg);
}


/* QUICK emphasis marks */

.quick-rays {
    position: absolute;

    width: 5px;
    height: 18px;

    right: -10px;
    top: -8px;

    border-radius: 5px;

    background: #389D9A;

    transform: rotate(40deg);
}

.quick-rays::before,
.quick-rays::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 16px;

    border-radius: 5px;

    background: #389D9A;
}

.quick-rays::before {
    left: 15px;
    top: 9px;

    transform: rotate(35deg);
}

.quick-rays::after {
    left: -14px;
    top: 9px;

    transform: rotate(-35deg);
}


/* MAKE SENSE */

.strip-make-sense {
    position: relative;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(2.8rem, 4.4vw, 4.9rem);
    font-weight: 500;

    letter-spacing: -0.045em;

    color: #F8F8F8;
}


/* subtle speed lines */

.strip-make-sense::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: 56%;

    height: 1px;

    background: rgba(248, 248, 248, 0.09);

    box-shadow:
        0 -7px 0 rgba(248, 248, 248, 0.035),
        0 7px 0 rgba(248, 248, 248, 0.05),
        0 14px 0 rgba(248, 248, 248, 0.025);
}


/* =========================================
   SECOND LINE
   ========================================= */

.llm-strip-line-two {
    margin-top: 25px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.5rem, 2.2vw, 2.45rem);
    font-weight: 500;

    line-height: 1.15;
    letter-spacing: -0.02em;

    color: #F8F8F8;
}

.llm-strip-line-two span {
    color: #389D9A;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

    .llm-strip {
        padding: 50px 24px;
    }

    .llm-strip-line-one {
        display: block;

        white-space: normal;

        line-height: 1.15;
    }

    .strip-serif-small,
    .strip-display,
    .strip-make-sense {
        margin-right: 0.08em;
    }

    .llm-strip-line-two {
        margin-top: 28px;

        font-size: 1.5rem;
    }
}

/* =========================================
   WHY CONTEXT MATTERS — BEIGE / COMPACT
   ========================================= */

.context-section {
    width: 100%;

    /* much lighter warm beige */
    background: #F7F1E7;
    color: #1D1D1D;

    /* less empty space above/below */
    padding: 58px 6vw 48px;
}

.context-section-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================
   TOP
   ========================================= */

.context-top {
    display: grid;
    grid-template-columns: 1fr 1.15fr;

    gap: clamp(55px, 7vw, 110px);

    align-items: center;
}


/* MAIN STATEMENT */

.context-intro h2 {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    /* significantly smaller */
    font-size: clamp(2.5rem, 3.5vw, 4rem);
    font-weight: 600;

    line-height: 1.03;
    letter-spacing: -0.035em;

    color: #1D1D1D;
}

.context-main-emphasis {
    position: relative;
    display: inline-block;

    margin-top: 8px;

    color: #389D9A;
}

.context-main-emphasis::after {
    content: "";

    position: absolute;

    left: 42%;
    bottom: -7px;

    width: 58%;

    border-top: 2px solid #389D9A;
    border-radius: 50%;

    transform: rotate(-2deg);
}


/* =========================================
   EXPLANATION
   ========================================= */

.context-explanation {
    display: grid;
    grid-template-columns: 1fr 1fr;

    border-left: 1px solid rgba(29, 29, 29, 0.16);
}

.context-thought {
    padding: 4px 35px;
}

.context-thought+.context-thought {
    border-left: 1px solid rgba(29, 29, 29, 0.16);
}

.context-thought p {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    /* smaller than current screenshot */
    font-size: clamp(1.25rem, 1.55vw, 1.7rem);
    font-weight: 500;

    line-height: 1.4;

    color: #1D1D1D;
}


/* coloured emphasis */

.teal-emphasis {
    color: #389D9A;
}

.yellow-emphasis {
    position: relative;
    display: inline-block;

    /* slightly darker yellow so it survives beige */
    color: #D6A900;
}

.yellow-emphasis::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -2px;

    border-top: 2px solid #D6A900;

    transform: rotate(-2deg);
}

.underline-teal {
    position: relative;
    display: inline-block;
}

.underline-teal::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -3px;

    border-top: 2px solid #389D9A;

    transform: rotate(-2deg);
}


/* =========================================
   FOUR HUMAN CONTEXT ITEMS
   ========================================= */

.human-context {
    /* was 58px */
        margin-top: 46px;
    
    /* was 32px */
        padding-top: 26px;

    border-top: 1px solid rgba(29, 29, 29, 0.14);
}

.human-context-items {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    /* slightly tighter horizontally */
        gap: 24px;
    /* constrain the row so the four feel connected */
        max-width: 1120px;
        margin: 0 auto;
}

.human-context-item {
    text-align: center;
}

.human-context-item p {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.35rem, 1.6vw, 1.75rem);
    font-weight: 600;

    line-height: 1.02;

    color: #389D9A;
}

.yellow-item p {
    color: #D6A900;
}


/* illustrations */

.human-context-item img {
    display: block;

    width: 115px;
    height: 115px;

    object-fit: contain;
    /* bring image closer to its label */
        margin: 12px auto 0;
}


/* =========================================
   CLOSING STATEMENT
   ========================================= */

.context-closing {
    max-width: 850px;

    /* pull sentence toward the illustrations */
    margin: 24px auto 0;

    text-align: center;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.65rem, 2.1vw, 2.25rem);
    font-weight: 600;

    line-height: 1.15;
    letter-spacing: -0.015em;

    color: #1D1D1D;
}

.context-closing span {
    position: relative;
    display: inline-block;

    color: #389D9A;
}

.context-closing span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -4px;

    border-top: 2px solid #389D9A;

    transform: rotate(-2deg);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

    .context-section {
        padding: 55px 25px;
    }

    .context-top {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .context-explanation {
        grid-template-columns: 1fr;
        border-left: 0;
    }

    .context-thought {
        padding: 25px 0;
    }

    .context-thought+.context-thought {
        border-left: 0;
        border-top: 1px solid rgba(29, 29, 29, 0.14);
    }

    .human-context-items {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
    }
}

/* =========================================
   PICKETT INTRO
   ========================================= */

.pickett-intro {
    width: 100%;

    background: #1D1D1D;
    color: #F8F8F8;

    padding: 72px 6vw 58px;
}

.pickett-intro-inner {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================
   TITLE
   ========================================= */

.pickett-intro-title {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(2.5rem, 3.7vw, 4.2rem);
    font-weight: 600;

    line-height: 1.02;
    letter-spacing: -0.035em;
}

.pickett-intro-title span {
    position: relative;

    display: inline-block;

    color: #389D9A;
}

.pickett-intro-title span::after {
    content: "";

    position: absolute;

    left: 8%;
    bottom: -7px;

    width: 88%;

    border-top: 2px solid #389D9A;

    transform: rotate(-2deg);
}


/* =========================================
   THREE-COLUMN STAGE
   ========================================= */

.pickett-intro-stage {
    display: grid;

    grid-template-columns:
        minmax(250px, 1fr) minmax(260px, 0.75fr) minmax(250px, 1fr);

    gap: clamp(35px, 5vw, 80px);

    align-items: center;

    max-width: 1200px;

    margin: 55px auto 0;
}


/* =========================================
   LEFT
   ========================================= */

.pickett-intro-left {
    display: flex;
    flex-direction: column;

    gap: 55px;
}

.pickett-copy {
    margin: 0;

    max-width: 360px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.3rem, 1.65vw, 1.75rem);
    font-weight: 500;

    line-height: 1.35;
}

.pickett-copy-for-you span {
    color: #FDDB70;
}

.pickett-copy-for-you strong {
    display: block;

    margin-top: 7px;

    color: #F8F8F8;

    font-weight: 600;
}


/* =========================================
   PICKETT
   ========================================= */

.pickett-intro-character {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 330px;
}

.pickett-intro-character img {
    display: block;

    width: min(100%, 300px);
    height: auto;

    object-fit: contain;
}


/* =========================================
   RIGHT
   ========================================= */

.pickett-intro-right {
    display: flex;
    flex-direction: column;

    gap: 55px;
}

.pickett-traits {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.4rem, 1.8vw, 1.95rem);
    font-weight: 500;

    line-height: 1.3;
}

.pickett-traits span {
    color: #FDDB70;
}


.pickett-patterns {
    margin: 0;

    max-width: 390px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.65rem, 2.2vw, 2.4rem);
    font-weight: 600;

    line-height: 1.12;
    letter-spacing: -0.02em;
}

.pickett-patterns span {
    position: relative;

    display: inline-block;

    color: #389D9A;
}

.pickett-patterns span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -3px;

    border-top: 2px solid #389D9A;

    transform: rotate(-2deg);
}


/* =========================================
   CLOSING STATEMENT
   ========================================= */

.pickett-intro-closing {
    max-width: 900px;

    margin: 45px auto 0;

    padding-top: 30px;

    border-top: 1px solid rgba(248, 248, 248, 0.15);

    text-align: center;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.55rem, 2vw, 2.15rem);
    font-weight: 500;

    line-height: 1.2;
}

.pickett-intro-closing span {
    color: #389D9A;

    font-weight: 600;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

    .pickett-intro {
        padding: 60px 25px 50px;
    }

    .pickett-intro-stage {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-top: 45px;
    }

    .pickett-intro-character {
        grid-row: 1;

        min-height: auto;
    }

    .pickett-intro-character img {
        width: min(65vw, 260px);
    }

    .pickett-intro-left,
    .pickett-intro-right {
        gap: 30px;
    }

    .pickett-copy,
    .pickett-patterns {
        max-width: none;
    }

}

/* =========================================
   CONTACT — TEAL
   ========================================= */

.contact-section {
    width: 100%;

    background: #389D9A;
    color: #F8F8F8;

    padding: 80px 6vw 0;
}

.contact-main h2 {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(2.8rem, 4vw, 4.6rem);
    font-weight: 500;

    line-height: 1;
    letter-spacing: -0.035em;

    color: #F8F8F8;
}

.contact-kicker {
    margin: 0 0 18px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.18em;

    /* yellow accent instead of teal-on-teal */
    color: #FDDB70;
}

.contact-subtext {
    margin: 22px 0 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.95rem;

    color: rgba(248, 248, 248, 0.72);
}


/* LINKS */

.contact-links {
    border-top: 1px solid rgba(248, 248, 248, 0.3);
}

.contact-link {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    width: 100%;

    padding: 22px 0;

    border-bottom: 1px solid rgba(248, 248, 248, 0.3);

    color: #F8F8F8;
    text-decoration: none;

    transition: opacity 180ms ease;
}

.contact-link-label {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 0.16em;

    color: rgba(248, 248, 248, 0.65);
}

.contact-link-value {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 1rem;
}

.contact-arrow {
    display: inline-block;

    margin-left: 8px;

    color: #FDDB70;

    transition: transform 180ms ease;
}

.contact-link:hover {
    /* don't turn the text teal anymore */
    color: #FFFFFF;
    opacity: 0.75;
}

.contact-link:hover .contact-arrow {
    transform: translate(3px, -3px);
}


/* FOOTER */

.site-footer {
    border-top: 1px solid rgba(248, 248, 248, 0.25);
}

.footer-inner p {
    color: rgba(248, 248, 248, 0.6);
}

.contact-inner {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    gap: clamp(70px, 10vw, 160px);

    align-items: end;

    padding-bottom: 60px;
}

.footer-inner {
    min-height: 72px;
}

/* =========================================================
   FOOD PAGE
   ========================================================= */

.food-page {
    background: #F7F1E7;
    color: #1D1D1D;
}


/* =========================================================
   NAVIGATION — LIGHT BACKGROUND
   ========================================================= */

.food-header {
    background: transparent;
}

.food-page .nav-links a {
    color: rgba(29, 29, 29, 0.58);
}

.food-page .nav-links a:hover,
.food-page .nav-links a.active {
    color: #1D1D1D;
}

.food-page .nav-contact {
    color: #1D1D1D;
    border-color: rgba(29, 29, 29, 0.28);
}

.food-page .nav-contact:hover {
    border-color: #1D1D1D;
}

.food-page .nav-contact span {
    color: #FDDB70;
}


/* =========================================================
   FOOD OPENING
   ========================================================= */

.food-opening {
    width: 100%;

    background: #F7F1E7;
    color: #1D1D1D;
    padding: 175px 6vw 55px;
}

.food-opening-inner {
    width: 100%;
    max-width: 1340px;

    margin: 0 auto;
}


/* =========================================================
   HEADLINE
   ========================================================= */

.food-opening-heading {
    max-width: 1000px;
}

.food-eyebrow {
    margin: 0 0 3px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.8rem, 2.2vw, 2.5rem);
    font-weight: 600;

    line-height: 1;
    letter-spacing: -0.025em;
}

.food-opening-heading h1 {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(4rem, 6vw, 6.5rem);
    font-weight: 500;

    line-height: 0.92;
    letter-spacing: -0.055em;
}

.food-word {
    position: relative;

    display: inline-block;

    color: #389D9A;
}


/* =========================================================
   LITTLE HAND-DRAWN RAYS
   ========================================================= */

.food-rays {
    position: absolute;

    right: -35px;
    top: -13px;

    width: 7px;
    height: 25px;

    border-radius: 10px;

    background: #389D9A;

    transform: rotate(18deg);
}

.food-rays::before,
.food-rays::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 23px;

    border-radius: 10px;

    background: #389D9A;
}

.food-rays::before {
    left: 20px;
    top: 7px;

    transform: rotate(35deg);
}

.food-rays::after {
    left: 32px;
    top: 25px;

    transform: rotate(72deg);
}


/* =========================================================
   YELLOW HANDWRITTEN NOTE
   ========================================================= */

.food-start-note {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-top: 24px;
    margin-left: 15px;
}

.food-start-note p {
    position: relative;

    display: inline-block;

    margin: 0;

    padding: 12px 25px 14px;

    border-radius: 30px 24px 28px 26px;

    background: #FDDB70;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: clamp(1.2rem, 1.65vw, 1.6rem);

    line-height: 1.1;

    transform: rotate(-0.4deg);
}

.food-start-note p span {
    position: relative;

    color: #389D9A;
}

.food-start-note p span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -5px;

    border-top: 2px solid #389D9A;

    transform: rotate(-1deg);
}

.food-note-arrow {
    display: inline-block;

    font-family: Georgia, serif;

    font-size: 3rem;
    font-weight: 300;

    line-height: 1;

    transform: rotate(8deg);
}


/* =========================================================
   LOWER HALF
   ========================================================= */

.food-opening-bottom {
    display: grid;

    grid-template-columns: 1fr 0.65fr;

    gap: clamp(50px, 7vw, 100px);

    align-items: start;

    margin-top: 15px;
}


/* =========================================================
   LEFT COPY
   ========================================================= */

.food-opening-copy {
    max-width: 620px;
}

.food-intro-copy {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.35rem, 1.65vw, 1.75rem);
    font-weight: 500;

    line-height: 1.25;
}


/* =========================================================
   FOOD.
   ========================================================= */

.food-single-word {
    position: relative;

    display: inline-block;

    margin: 24px 0 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(3.3rem, 4.5vw, 4.8rem);
    font-weight: 600;

    line-height: 0.95;

    color: #389D9A;
}

.food-single-word::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -8px;

    border-top: 3px solid #389D9A;
    border-radius: 50%;

    transform: rotate(-1deg);
}


/* =========================================================
   WHY?
   ========================================================= */

.food-question {
    margin-top: 22px;
}

.food-question p {
    margin: 0 0 5px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.2rem, 1.45vw, 1.5rem);
    font-weight: 500;
}

.food-question strong {
    position: relative;

    display: inline-block;

    z-index: 1;

    padding: 0 12px 3px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(3.6rem, 5vw, 5.4rem);
    font-weight: 600;

    line-height: 0.95;
    letter-spacing: -0.045em;
}

.food-question strong::before {
    content: "";

    position: absolute;

    z-index: -1;

    left: -8px;
    right: -12px;

    top: 18%;
    bottom: 4%;

    background: #FDDB70;

    border-radius: 22px 30px 18px 25px;

    transform: rotate(-1.5deg);
}


/* =========================================================
   PICKETT
   ========================================================= */

.food-thinking {
    position: relative;

    display: flex;

    justify-content: center;
    align-items: flex-start;

    /* REMOVE min-height: 300px */
    min-height: 0;

    /* lets us position the big artwork without moving the text */
    margin-top: -150px;
}

.food-thinking img {
    display: block;

    width: min(100%, 380px);
    height: auto;

    object-fit: contain;
}

.food-question-mark {
    position: absolute;

    top: 0;
    left: 62%;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 4rem;
    font-weight: 600;

    line-height: 1;

    transform: rotate(6deg);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 850px) {

    .food-opening {
        min-height: auto;

        padding: 125px 25px 60px;
    }

    .food-eyebrow {
        font-size: 1.7rem;
    }

    .food-opening-heading h1 {
        font-size: clamp(3.4rem, 15vw, 5.3rem);
    }

    .food-start-note {
        margin-top: 25px;
        margin-left: 0;

        align-items: flex-start;
    }

    .food-note-arrow {
        display: none;
    }

    .food-start-note p {
        font-size: 1.1rem;

        padding: 10px 18px 12px;
    }

    .food-opening-bottom {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-top: 15px;
    }

    .food-opening-copy {
        max-width: none;
    }

    .food-single-word {
        font-size: 3.7rem;
    }

    .food-question strong {
        font-size: 4rem;
    }

    .food-thinking {
        min-height: 330px;
    }

    .food-thinking img {
        width: min(65vw, 330px);
    }

    .food-question-mark {
        left: 65%;
        font-size: 3.5rem;
    }
}



/* =========================================================
   WHY FOOD — THREE REASONS
   CLEAN EDITORIAL VERSION
   ========================================================= */


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

.food-reasons {
    padding: 55px 30px 65px;

    background: #070D0F;

    color: #F8F3E9;
}


.food-reasons-header {
    max-width: 1480px;

    margin: 0 auto 30px;
}


.food-reasons-header h2 {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 600;

    line-height: 0.95;
    letter-spacing: -0.04em;

    color: #F8F3E9;
}


.food-reasons-header h2 span {
    position: relative;

    color: #FDDB70;
}


.food-reasons-header h2 span::after {
    content: "";

    position: absolute;

    left: -3%;
    right: -5%;
    bottom: -8px;

    border-top: 3px solid #FDDB70;

    transform: rotate(-2deg);
}



/* =========================================================
   PANELS
   ========================================================= */

.food-reasons-panels {
    display: flex;

    max-width: 1480px;
    height: 690px;

    margin: 0 auto;

    gap: 16px;

    overflow: hidden;
}


.food-reason-panel {
    position: relative;

    flex: 1 1 33.333%;

    min-width: 0;

    overflow: hidden;

    border-radius: 24px;

    transition:
        flex-basis 500ms cubic-bezier(.2, .8, .2, 1),
        flex-grow 500ms cubic-bezier(.2, .8, .2, 1);
}


/* panel colours */

.reason-trust,
.reason-homes {
    background:
        linear-gradient(145deg,
            #063235 0%,
            #041F22 100%);
}


.reason-repetition {
    background:
        linear-gradient(145deg,
            #24231E 0%,
            #171815 100%);
}


/* ---------------------------------------------------------
   55% HOVER
   --------------------------------------------------------- */

.food-reasons-panels:hover .food-reason-panel {
    flex: 1 1 22.5%;
}


.food-reasons-panels .food-reason-panel:hover {
    flex: 1 1 55%;
}



/* =========================================================
   INNER PANEL
   ========================================================= */

.reason-inner {
    height: 100%;

    display: flex;
    flex-direction: column;

    padding: 30px 32px 34px;

    transition: padding 400ms ease;
}


.reason-content {
    min-height: 0;

    flex: 1;

    display: flex;
    flex-direction: column;
}



/* =========================================================
   PANEL HEADINGS
   ========================================================= */

.reason-heading {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 28px;
}


.reason-number {
    flex: 0 0 auto;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #45B9B3;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 1.45rem;
    font-weight: 700;

    color: #071315;
}


.reason-repetition .reason-number {
    background: #FDDB70;
}


.reason-heading h3 {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.8rem, 2.3vw, 2.55rem);
    font-weight: 600;

    line-height: 1.02;

    color: #F8F3E9;

    transition: font-size 400ms ease;
}


.reason-heading h3 span {
    position: relative;

    display: block;

    width: fit-content;

    margin-top: 3px;

    color: #45B9B3;
}


.reason-repetition .reason-heading h3 span {
    color: #FDDB70;
}


.reason-heading h3 span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -6px;

    border-top: 2px solid currentColor;

    transform: rotate(-2deg);
}



/* =========================================================
   GENERAL COPY
   ========================================================= */

.reason-copy {
    max-width: 470px;
}


.reason-copy p,
.repetition-micro,
.homes-context-label,
.homes-ending p {
    margin: 0 0 14px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.96rem;

    line-height: 1.45;

    color: rgba(248, 243, 233, 0.93);
}


.reason-divider {
    width: 100%;

    margin: 20px 0;

    border-top: 1px solid rgba(248, 243, 233, 0.17);
}


.reason-divider.dashed {
    border-top-style: dashed;
}



/* =========================================================
   01 — TRUST
   ========================================================= */

.trust-question {
    margin-top: 0;
}

.trust-question p {
    max-width: 410px;

    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.98rem;
    line-height: 1.45;
}

.trust-question strong {
    position: relative;
    display: inline-block;

    /* controlled gap after paragraph */
    margin-top: 38px;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: clamp(2rem, 2.7vw, 2.8rem);
    font-weight: 400;
    line-height: 1.05;

    color: #45B9B3;

    transform: rotate(-2deg);
}

.trust-question strong::after {
    content: "";

    position: absolute;

    left: -2%;
    right: 0;
    bottom: -7px;

    border-top: 2px solid #45B9B3;

    transform: rotate(-2deg);
}


/* =========================================================
   02 — REPETITION
   ========================================================= */

.repetition-decisions-text {
    display: flex;

    flex-wrap: wrap;

    gap: 8px 10px;

    margin: 12px 0 5px;

    max-width: 500px;
}


.repetition-decisions-text span {
    position: relative;

    display: inline-block;

    padding-right: 14px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.76rem;
    font-weight: 700;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    color: rgba(248, 243, 233, 0.72);
}


.repetition-decisions-text span:not(:last-child)::after {
    content: "·";

    position: absolute;

    right: 0;

    color: #FDDB70;
}


.repetition-micro {
    max-width: 430px;

    margin-bottom: 0;
}


.repetition-ending {
    margin-top: 38px;
    padding-bottom: 0;
}


.repetition-ending strong {
    position: relative;

    display: inline-block;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: clamp(2rem, 2.7vw, 2.8rem);
    font-weight: 400;

    line-height: 1.02;

    color: #FDDB70;

    transform: rotate(-2deg);
}


.repetition-ending strong::after {
    content: "";

    position: absolute;

    left: 0;
    right: -3%;

    bottom: -7px;

    border-top: 2px solid #FDDB70;

    transform: rotate(-2deg);
}


.repetition-ending p {
    margin: 22px 0 0;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: 0.95rem;

    line-height: 1.25;

    color: #F8F3E9;
}



/* =========================================================
   03 — HOMES
   ========================================================= */

.homes-subheading {
    margin: -22px 0 24px 66px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 1.15rem;

    line-height: 1.2;

    color: #F8F3E9;
}


.homes-peek {
    position: relative;

    display: inline-block;

    /* natural continuation after intro */
    margin-bottom: 0;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: clamp(2rem, 2.7vw, 2.8rem);
    font-weight: 400;
    line-height: 1.05;

    color: #45B9B3;

    transform: rotate(-2deg);
}

.homes-peek::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -8px;

    border-top: 2px solid #45B9B3;

    transform: rotate(-2deg);
}

.homes-context-label {
    margin-top: 28px;
    margin-bottom: 0;
}



/* Context is typography, not icons */

.homes-context-words {
    display: flex;

    flex-wrap: wrap;

    gap: 7px 8px;

    max-width: 570px;
}


.homes-context-words span {
    display: inline-block;

    padding: 6px 10px;

    border: 1px solid rgba(69, 185, 179, 0.26);
    border-radius: 100px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.72rem;
    font-weight: 600;

    line-height: 1;

    color: rgba(248, 243, 233, 0.84);
}



.homes-ending strong {
    display: inline-block;

    margin-bottom: 10px;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: clamp(1.8rem, 2.4vw, 2.5rem);
    font-weight: 400;

    color: #45B9B3;

    transform: rotate(-2deg);
}


.homes-ending p {
    max-width: 570px;

    margin: 0;

    font-size: 0.82rem;
}



/* =========================================================
   COLLAPSED PANELS
   ========================================================= */

/*
   When one panel expands, don't try to cram every word
   into the two narrow panels.
*/

.food-reasons-panels:hover .food-reason-panel:not(:hover) .reason-inner {
    padding-left: 22px;
    padding-right: 22px;
}


.food-reasons-panels:hover .food-reason-panel:not(:hover) .reason-heading {
    gap: 12px;
}


.food-reasons-panels:hover .food-reason-panel:not(:hover) .reason-heading h3 {
    font-size: 1.55rem;
}


/*
   Keep the premise visible.
   Fade the deeper argument while collapsed.
*/

.food-reasons-panels:hover .food-reason-panel:not(:hover) .reason-content,

.food-reasons-panels:hover .reason-homes:not(:hover) .homes-subheading {
    opacity: 0.16;

    transition: opacity 180ms ease;
}


.food-reason-panel:hover .reason-content,
.food-reason-panel:hover .homes-subheading {
    opacity: 1;

    transition: opacity 350ms ease 100ms;
}



/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 950px) {

    .food-reasons {
        padding: 50px 22px;
    }


    .food-reasons-header {
        margin-bottom: 28px;
    }


    .food-reasons-panels {
        height: auto;

        flex-direction: column;

        gap: 16px;

        overflow: visible;
    }


    .food-reason-panel,
    .food-reasons-panels:hover .food-reason-panel,
    .food-reasons-panels .food-reason-panel:hover {
        flex: none;

        width: 100%;
    }


    .food-reason-panel {
        min-height: 560px;
    }


    .reason-inner {
        padding: 28px 26px 32px;
    }


    .food-reasons-panels:hover .food-reason-panel:not(:hover) .reason-content,

    .food-reasons-panels:hover .reason-homes:not(:hover) .homes-subheading {
        opacity: 1;
    }


    .trust-question strong {
        margin-top: 45px;
    }


    .repetition-ending {
        margin-top: 55px;
    }


    .homes-ending {
        margin-top: 45px;
    }

}

/* =========================================================
   WHERE PICKETT FITS
   ========================================================= */

.food-ecosystem {
    background: #F8F3E9;
    color: #1D1D1D;

    padding: 85px 0 75px;

    overflow: hidden;
}


.food-ecosystem-inner {
    width: min(1420px, calc(100% - 100px));

    margin: 0 auto;
}



/* =========================================================
   TOP ARGUMENT
   ========================================================= */

.ecosystem-intro {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: clamp(70px, 8vw, 140px);

    align-items: start;

    margin-bottom: 65px;
}



/* -------------------------
   LEFT
   ------------------------- */

.ecosystem-intro-left h2 {
    margin: 0 0 28px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(3.2rem, 4.6vw, 5rem);
    font-weight: 600;

    line-height: 0.95;
    letter-spacing: -0.04em;
}


.teal-word {
    color: #389D9A;
}



.ecosystem-market {
    display: flex;

    align-items: baseline;

    gap: 14px;

    margin-bottom: 27px;
}


.ecosystem-market strong {
    position: relative;

    display: inline-block;

    color: #258F8C;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(2.2rem, 3vw, 3.25rem);

    line-height: 1;
}


.ecosystem-market strong::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -9px;

    height: 2px;

    background: #389D9A;

    transform: rotate(-2deg);

    border-radius: 100%;
}


.ecosystem-market span {
    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.35rem, 1.7vw, 1.75rem);
}


.ecosystem-description {
    max-width: 580px;

    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.3rem, 1.55vw, 1.65rem);

    line-height: 1.45;
}



/* -------------------------
   RIGHT
   ------------------------- */

.ecosystem-statement {
    margin-bottom: 24px;
}


.ecosystem-statement p {
    margin: 0 0 6px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.55rem, 2vw, 2.05rem);

    font-weight: 700;

    line-height: 1.15;
}


.ecosystem-statement em {
    color: #258F8C;

    font-style: normal;
}



/* hand-drawn yellow highlight */

.yellow-marker {
    position: relative;

    z-index: 1;
}


.yellow-marker::before {
    content: "";

    position: absolute;

    z-index: -1;

    left: -8px;
    right: -8px;

    top: 45%;
    bottom: -2px;

    background: rgba(253, 219, 112, 0.82);

    border-radius: 15px 8px 14px 7px;

    transform: rotate(-0.5deg);
}



.ecosystem-explanation {
    max-width: 650px;

    margin: 0 0 17px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.15rem, 1.4vw, 1.45rem);

    line-height: 1.42;
}


.ecosystem-bridge {
    margin: 0 0 20px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.1rem, 1.3vw, 1.35rem);

    line-height: 1.4;
}



.ecosystem-constant {
    display: flex;

    flex-wrap: wrap;

    gap: 12px 30px;
}


.ecosystem-constant strong {
    position: relative;

    display: inline-block;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.5rem, 1.9vw, 2rem);

    line-height: 1.1;
}


.ecosystem-constant strong::after {
    content: "";

    position: absolute;

    left: 0;

    width: 55%;

    bottom: -9px;

    height: 2px;

    background: #389D9A;

    transform: rotate(-2deg);
}



/* =========================================================
   ECOSYSTEM MAP
   ========================================================= */

.ecosystem-map {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 28px;

    align-items: end;
}



.ecosystem-item {
    display: flex;

    flex-direction: column;

    align-items: center;
}



.ecosystem-card {
    width: 100%;
    height: 245px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: space-between;

    padding: 24px 20px 18px;

    background: rgba(255, 255, 255, 0.5);

    border: 1px solid rgba(29, 29, 29, 0.035);

    border-radius: 28px;

    box-shadow:
        0 14px 35px rgba(29, 29, 29, 0.035);

    transition:
        transform 250ms ease,
        background 250ms ease,
        box-shadow 250ms ease;
}



.ecosystem-card p {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.88rem;
    font-weight: 700;

    letter-spacing: 0.015em;

    text-align: center;
}



.ecosystem-card img {
    display: block;

    width: 82%;
    height: 165px;

    object-fit: contain;

    transition: transform 250ms ease;
}



/* hover */

.ecosystem-item:hover .ecosystem-card {
    transform: translateY(-9px);

    background: rgba(255, 255, 255, 0.78);

    box-shadow:
        0 20px 45px rgba(29, 29, 29, 0.07);
}


.ecosystem-item:hover .ecosystem-card img {
    transform: scale(1.055);
}



/* connector */

.ecosystem-connector {
    position: relative;

    width: 1px;
    height: 50px;

    margin-top: 0;

    border-left: 2px dashed rgba(56, 157, 154, 0.7);
}


.ecosystem-connector::before {
    content: "";

    position: absolute;

    top: -6px;
    left: -6px;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #389D9A;
}



/* =========================================================
   PICKETT LAYER
   ========================================================= */

.pickett-layer {
    position: relative;

    min-height: 110px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px 260px;

    background:
        linear-gradient(90deg,
            #218E8B 0%,
            #389D9A 50%,
            #218E8B 100%);

    border-radius: 60px;

    box-shadow:
        0 15px 28px rgba(29, 29, 29, 0.12);

    color: #FFFFFF;
}



/* Pickett */

.ecosystem-pickett {
    position: absolute;

    left: 31%;

    bottom: -2px;

    width: 125px;
    height: 150px;

    object-fit: contain;

    transform: translateX(-50%);

    z-index: 3;
}



/* Layer copy */

.pickett-layer-copy {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    margin-left: 120px;

    position: relative;

    z-index: 2;
}


.pickett-layer-copy strong {
    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(1.3rem, 1.8vw, 1.85rem);

    font-weight: 700;

    letter-spacing: 0.02em;
}


.pickett-layer-copy span {
    margin-top: 5px;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: clamp(1rem, 1.25vw, 1.25rem);

    font-style: italic;
}


.pickett-layer-copy em {
    position: relative;

    font-style: inherit;
}


.pickett-layer-copy em::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -5px;

    border-top: 2px solid #FDDB70;

    transform: rotate(-3deg);
}



/* =========================================================
   CIRCUIT DECORATION
   ========================================================= */

.circuit {
    position: absolute;

    top: 50%;

    width: 240px;
    height: 60px;

    transform: translateY(-50%);

    opacity: 0.25;
}


.circuit-left {
    left: 45px;
}


.circuit-right {
    right: 45px;

    transform:
        translateY(-50%) scaleX(-1);
}


.circuit span {
    position: absolute;

    left: 0;

    height: 1px;

    background: #FFFFFF;
}


.circuit span:nth-child(1) {
    top: 10px;

    width: 85%;
}


.circuit span:nth-child(2) {
    top: 29px;

    width: 65%;
}


.circuit span:nth-child(3) {
    top: 48px;

    width: 95%;
}


.circuit span::before,
.circuit span::after {
    content: "";

    position: absolute;

    top: -3px;

    width: 7px;
    height: 7px;

    border: 1px solid #FFFFFF;

    border-radius: 50%;
}


.circuit span::before {
    left: 0;
}


.circuit span::after {
    right: 0;
}



/* =========================================================
   YOU
   ========================================================= */

.ecosystem-user {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}



.user-line {
    height: 48px;

    border-left: 2px dashed rgba(56, 157, 154, 0.65);
}



.user-icon {
    position: relative;

    width: 64px;
    height: 64px;

    border: 2px solid rgba(29, 29, 29, 0.1);

    border-radius: 50%;

    background: #F8F3E9;
}



/* CSS person */

.user-head {
    position: absolute;

    width: 19px;
    height: 19px;

    left: 50%;
    top: 12px;

    transform: translateX(-50%);

    border: 2px solid #389D9A;

    border-radius: 50%;
}


.user-body {
    position: absolute;

    width: 34px;
    height: 20px;

    left: 50%;
    bottom: 9px;

    transform: translateX(-50%);

    border:
        2px solid #389D9A;

    border-bottom: 0;

    border-radius: 20px 20px 0 0;
}



.ecosystem-user strong {
    margin-top: 7px;

    color: #258F8C;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 1.15rem;
}


.ecosystem-user p {
    position: relative;

    margin: 5px 0 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 1.05rem;
}



/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .food-ecosystem-inner {
        width: min(100% - 50px, 900px);
    }


    .ecosystem-intro {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .ecosystem-map {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .ecosystem-item:last-child {
        grid-column: 1 / -1;

        width: 50%;

        justify-self: center;
    }


    .pickett-layer {
        margin-top: 30px;

        padding: 35px 40px;
    }


    .ecosystem-pickett {
        display: none;
    }


    .pickett-layer-copy {
        margin-left: 0;

        align-items: center;

        text-align: center;
    }


    .circuit {
        display: none;
    }

}



@media (max-width: 600px) {

    .food-ecosystem {
        padding: 65px 0;
    }


    .food-ecosystem-inner {
        width: calc(100% - 36px);
    }


    .ecosystem-market {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }


    .ecosystem-map {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .ecosystem-item:last-child {
        grid-column: auto;

        width: 100%;
    }


    .ecosystem-card {
        height: 220px;
    }


    .ecosystem-connector {
        height: 25px;
    }


    .pickett-layer {
        border-radius: 35px;
    }

}

/* =========================================================
   PRODUCT DIFFERENCE — TABS
   ========================================================= */

.product-difference {
    background: #050B0E;
    color: #F7F1E7;

    padding: 72px 0 85px;
}

.product-difference-inner {
    width: min(1420px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.product-difference-eyebrow {
    margin: 0 0 30px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #45B9B3;
}


/* =========================================================
   TAB NAVIGATION
   ========================================================= */

.product-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);

    margin-bottom: 38px;
}


.product-tab {
    position: relative;

    display: grid;
    grid-template-columns: auto 1fr;

    gap: 16px;

    align-items: center;

    min-height: 88px;

    padding: 15px 22px;

    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.16);

    background: transparent;

    color: rgba(247, 241, 231, 0.36);

    text-align: left;
    cursor: pointer;

    transition:
        color 220ms ease,
        background 220ms ease;
}


.product-tab:last-child {
    border-right: 0;
}


.product-tab>span {
    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 2.8rem;
    line-height: 1;

    font-weight: 500;
}


.product-tab strong {
    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 1.2rem;
    line-height: 1.05;

    font-weight: 600;
}


.product-tab::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: -1px;

    height: 4px;

    background: #45B9B3;

    transition: right 260ms ease;
}


.product-tab:hover {
    color: rgba(247, 241, 231, 0.72);
}


.product-tab.active {
    color: #45B9B3;
}


.product-tab.active::after {
    right: 0;
}


/* =========================================================
   PANEL BASE
   ========================================================= */

.product-panel {
    display: none;

    grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.35fr);

    gap: clamp(55px, 7vw, 110px);

    align-items: center;

    min-height: 540px;

    padding: 55px 60px;

    border-radius: 26px;

    background:
        radial-gradient(circle at 75% 45%,
            rgba(56, 157, 154, 0.10),
            transparent 36%),
        #071014;
}


.product-panel.active {
    display: grid;

    animation: productPanelIn 320ms ease;
}


@keyframes productPanelIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

}


/* =========================================================
   MAIN COPY
   ========================================================= */

.product-panel-copy {
    max-width: 500px;
}


.product-panel-copy h2 {
    margin: 0 0 30px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(3rem, 4.7vw, 5.4rem);
    font-weight: 600;

    line-height: 0.92;
    letter-spacing: -0.045em;
}


.product-panel-copy h2 span {
    color: #45B9B3;
}


.product-panel-copy p {
    margin: 0 0 18px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 1rem;
    line-height: 1.55;
}


.dark-copy {
    color: #1D1D1D;
}


/* =========================================================
   TAB 1 — BRAIN
   ========================================================= */

.brain-visual {
    position: relative;

    min-height: 440px;
}


.brain-pickett {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 235px;

    transform: translate(-50%, -48%);

    z-index: 2;
}


.brain-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 420px;
    height: 420px;

    border: 1px dashed rgba(69, 185, 179, 0.65);
    border-radius: 50%;

    transform: translate(-50%, -50%);
}


.brain-word {
    position: absolute;

    display: flex;
    flex-direction: column;

    z-index: 3;
}


.brain-word strong {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.86rem;

    letter-spacing: 0.04em;

    color: #45B9B3;
}


.brain-word span {
    margin-top: 5px;

    max-width: 145px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.8rem;
    line-height: 1.3;

    color: #F7F1E7;
}


.brain-observing {
    top: 0;
    left: 50%;

    transform: translateX(-50%);
    text-align: center;
}


.brain-remembering {
    right: 0;
    top: 25%;
}


.brain-questioning {
    right: 0;
    bottom: 21%;
}


.brain-reasoning {
    bottom: -5px;
    left: 50%;

    transform: translateX(-50%);
    text-align: center;
}


.brain-predicting {
    left: 0;
    bottom: 21%;
}


.brain-learning {
    left: 0;
    top: 25%;
}


/* =========================================================
   TAB 2 — HARD CODED
   ========================================================= */

.product-panel-yellow {
    background: #FDDB70;
    color: #1D1D1D;
}


.product-panel-copy h2 em {
    font-weight: 500;
}


.change-lines {
    display: flex;
    flex-direction: column;

    margin: 28px 0 20px;
}


.change-lines strong {
    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: 1.55rem;
    font-weight: 400;

    line-height: 1.15;

    color: #147F7C;
}


.intelligence-remains {
    font-weight: 600;
}


.intelligence-visual {
    width: 100%;
}


.intelligence-top,
.intelligence-factors {
    display: grid;

    text-align: center;

    font-family: Arial, Helvetica, sans-serif;

    font-weight: 700;
}


.intelligence-top {
    grid-template-columns: repeat(3, 1fr);

    margin-bottom: 35px;

    font-size: 0.85rem;
}


.intelligence-bar {
    padding: 19px 30px;

    border-radius: 40px;

    background: #147F7C;

    color: white;

    text-align: center;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 1.35rem;
    font-weight: 700;

    letter-spacing: 0.03em;
}


.intelligence-factors {
    grid-template-columns: repeat(6, 1fr);

    gap: 10px;

    margin-top: 40px;

    font-size: 0.67rem;
    line-height: 1.2;
}


/* connecting lines */

.intelligence-lines {
    display: flex;
    justify-content: space-around;
}


.intelligence-lines i {
    display: block;

    width: 1px;
    height: 28px;

    border-left: 1px dashed #147F7C;
}


.top-lines {
    margin-bottom: -1px;
}


.bottom-lines {
    margin-top: -1px;
}


/* =========================================================
   TAB 3 — INDIVIDUAL
   ========================================================= */

.product-panel-teal {
    background:
        linear-gradient(135deg,
            #073436,
            #0A5555);
}


.yellow-word {
    color: #FDDB70 !important;
}


.change-list strong {
    color: #FDDB70;
}


.journey-visual {
    position: relative;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

    padding-top: 40px;
}


.journey-line {
    position: absolute;

    left: 10%;
    right: 10%;

    top: 102px;

    border-top: 1px dashed #45B9B3;
}


.journey-point {
    position: relative;

    z-index: 2;

    text-align: center;
}


.journey-time {
    display: block;

    margin-bottom: 20px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.8rem;
    font-weight: 700;
}


.journey-point i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    margin: 0 auto 14px;

    border: 2px solid #FDDB70;
    border-radius: 50%;

    background: #0A4A4B;

    font-style: normal;
}


.journey-point p {
    margin: 0;

    font-size: 0.78rem;
    line-height: 1.35;
}


.journey-copy {
    grid-column: 1 / -1;

    margin-top: 45px;

    max-width: 720px;
}


.journey-copy p {
    margin: 0 0 12px;

    font-family: Arial, Helvetica, sans-serif;

    line-height: 1.45;
}


.journey-copy p strong {
    color: #45B9B3;
}


.journey-ending {
    display: inline-block;

    margin-top: 8px;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: 1.8rem;
    font-weight: 400;

    color: #FDDB70;

    transform: rotate(-1deg);
}


/* =========================================================
   TAB 4 — DEMOGRAPHIC
   ========================================================= */

.product-panel-cream {
    background: #F7F1E7;
    color: #1D1D1D;
}


.demographic-visual {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 0;
}


.demographic-example {
    min-height: 175px;

    padding: 28px;

    border-left: 1px solid rgba(29, 29, 29, 0.15);
}


.demographic-example strong {
    display: block;

    margin-bottom: 25px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 2rem;

    color: #389D9A;
}


.demographic-example p {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 0.9rem;
    line-height: 1.45;
}


.demographic-example p span {
    color: #147F7C;
    font-weight: 700;
}


.demographic-ending {
    grid-column: 1 / -1;

    display: flex;

    align-items: center;

    gap: 35px;

    margin-top: 30px;
    padding-top: 25px;

    border-top: 1px solid rgba(29, 29, 29, 0.15);
}


.demographic-ending img {
    width: 120px;
}


.demographic-ending p {
    margin: 0;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: clamp(1.6rem, 2.4vw, 2.5rem);

    line-height: 1.2;
}


.demographic-ending p strong {
    text-transform: uppercase;

    color: #1D1D1D;
}


.demographic-ending p span {
    color: #389D9A;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .product-difference-inner {
        width: min(100% - 40px, 900px);
    }

    .product-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-panel {
        grid-template-columns: 1fr;

        min-height: auto;

        padding: 45px 35px;
    }

    .product-panel-copy {
        max-width: 650px;
    }

    .brain-visual {
        min-height: 480px;
    }

}


@media (max-width: 650px) {

    .product-difference {
        padding: 55px 0;
    }

    .product-tabs {
        grid-template-columns: 1fr;
    }

    .product-tab {
        min-height: 65px;
    }

    .product-panel {
        padding: 35px 22px;
    }

    .product-panel-copy h2 {
        font-size: 3rem;
    }

    .brain-ring {
        width: 290px;
        height: 290px;
    }

    .brain-pickett {
        width: 170px;
    }

    .intelligence-factors {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 25px;
    }

    .journey-visual {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 35px;
    }

    .journey-line {
        display: none;
    }

    .demographic-visual {
        grid-template-columns: 1fr;
    }

    .demographic-example {
        border-left: 0;
        border-top: 1px solid rgba(29, 29, 29, 0.15);
    }

}

/* =========================================================
   LIVING WITH PICKETT
   ========================================================= */

.living-pickett {
    background: #F7F1E7;
    color: #1D1D1D;
}


/* =========================================================
   TOP SECTION
   ========================================================= */

.living-top {
    width: min(1500px, calc(100% - 100px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    min-height: 500px;

    padding: 55px 0 50px;
}


/* =========================================================
   LEFT
   ========================================================= */

.living-left {
    position: relative;

    padding: 0 65px 0 35px;

    border-right: 1px solid rgba(29, 29, 29, 0.22);
}


.living-kicker {
    margin: 0 0 55px 65px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 1.65rem;
    font-weight: 600;

    line-height: 1.05;
}


.living-kicker span {
    color: #147F7C;
}


.living-listen {
    position: relative;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
}


.listen-small {
    margin-left: 50px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(3.3rem, 4.6vw, 5.2rem);
    font-weight: 600;

    line-height: 1;
    letter-spacing: -0.04em;
}


.living-listen strong {
    position: relative;

    display: inline-block;

    margin: 5px 0 0 45px;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: clamp(5rem, 8vw, 8.5rem);
    font-weight: 400;

    line-height: 0.9;

    color: #147F7C;

    transform: rotate(-2deg);
}


.living-listen strong::after {
    content: "";

    position: absolute;

    left: -3%;
    right: 12%;

    bottom: -18px;

    height: 8px;

    border-radius: 50%;

    background: #F2B943;

    transform: rotate(-2deg);
}


.listen-not {
    align-self: flex-end;

    position: relative;

    margin: -4px 20px 0 0;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: clamp(1.8rem, 2.7vw, 3rem);

    transform: rotate(-4deg);
}


.listen-not::after {
    content: "";

    position: absolute;

    left: 0;
    right: -10px;

    bottom: -8px;

    border-top: 3px solid #147F7C;

    transform: rotate(-2deg);
}


/* little teal emphasis lines */

.living-listen::before {
    content: "";

    position: absolute;

    left: 0;
    top: 115px;

    width: 38px;

    border-top: 4px solid #147F7C;

    transform: rotate(42deg);
}


/* =========================================================
   RIGHT
   ========================================================= */

.living-right {
    padding: 0 30px 0 80px;
}


.living-memory {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.55rem, 2.1vw, 2.2rem);
    font-weight: 600;

    line-height: 1.25;
}


.teal-underline {
    position: relative;

    color: #147F7C;
}


.teal-underline::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -3px;

    border-top: 2px solid #147F7C;
}


.yellow-highlight {
    position: relative;

    z-index: 1;
}


.yellow-highlight::before {
    content: "";

    position: absolute;

    z-index: -1;

    left: -8px;
    right: -8px;

    top: 20%;
    bottom: 3%;

    background: #FDDB70;

    border-radius: 12px 8px 13px 9px;

    transform: rotate(-2deg);
}


.circled-text {
    position: relative;

    display: inline-block;

    color: #147F7C;
}


.circled-text::after {
    content: "";

    position: absolute;

    left: -10px;
    right: -12px;

    top: -3px;
    bottom: -5px;

    border: 2px solid #147F7C;
    border-radius: 50%;

    transform: rotate(-2deg);
}


/* =========================================================
   CURIOUS
   ========================================================= */

.living-curious {
    margin: 35px 0 18px;

    padding-bottom: 14px;

    border-bottom: 1px solid rgba(29, 29, 29, 0.2);

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: clamp(1.65rem, 2.3vw, 2.5rem);

    transform: rotate(-1deg);
}


.living-curious span {
    position: relative;

    color: #147F7C;
}


.living-curious span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -5px;

    border-top: 3px solid #147F7C;
}


/* =========================================================
   QUESTION / GAME
   ========================================================= */

.living-asks {
    display: grid;

    grid-template-columns: 1fr 1fr;

    margin: 25px 0 42px;
}


.living-ask {
    display: flex;

    align-items: center;

    gap: 20px;

    min-height: 75px;

    padding: 0 28px;
}


.living-ask:first-child {
    padding-left: 0;

    border-right: 1px solid rgba(29, 29, 29, 0.2);
}


.ask-icon {
    flex: 0 0 auto;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: 2rem;

    border: 3px solid #147F7C;
}


.question-icon {
    border-radius: 50%;

    color: #147F7C;
}


.game-icon {
    border-color: #F2B943;

    border-radius: 18px;

    color: #F2B943;
}


.living-ask p {
    margin: 0;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-size: 1.25rem;

    line-height: 1.35;
}


.living-ask p span {
    position: relative;

    color: #147F7C;
}


.yellow-line {
    color: #1D1D1D !important;
}


.yellow-line::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -6px;

    border-top: 3px solid #F2B943;
}


/* =========================================================
   DISCOVERY
   ========================================================= */

.living-discovery {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.6rem, 2.25vw, 2.4rem);
    font-weight: 600;

    line-height: 1.3;
}


.living-discovery>span {
    color: #147F7C;
}


.living-discovery .yourself {
    position: relative;
}


.living-discovery .yourself::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -6px;

    border-top: 3px solid #147F7C;

    transform: rotate(-2deg);
}


/* =========================================================
   BLACK FINALE
   ========================================================= */

.living-finale {
    position: relative;

    min-height: 390px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 55px 40px 65px;

    background:
        radial-gradient(circle at 50% 50%,
            rgba(56, 157, 154, 0.07),
            transparent 45%),
        #050B0E;

    color: #F7F1E7;

    text-align: center;
}


.finale-small {
    position: relative;

    margin: 0 0 32px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(1.7rem, 2.4vw, 2.5rem);
    font-weight: 600;
}


.finale-small::after {
    content: "";

    position: absolute;

    width: 170px;

    left: 50%;
    bottom: -16px;

    border-top: 4px solid #F2B943;

    transform:
        translateX(-50%) rotate(-2deg);
}


.living-finale h2 {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(4rem, 6.8vw, 7.4rem);
    font-weight: 600;

    line-height: 0.9;
    letter-spacing: -0.045em;
}


.come-home {
    position: relative;

    display: inline-block;

    margin-right: 14px;

    font-family:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    font-weight: 400;

    color: #389D9A;

    transform: rotate(-2deg);
}


.come-home::after {
    content: "";

    position: absolute;

    left: -2%;
    right: -2%;

    bottom: -10px;

    border-top: 5px solid #F2B943;

    transform: rotate(-1deg);
}


.to-pickett {
    white-space: nowrap;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 850px) {

    .living-top {
        width: calc(100% - 40px);

        grid-template-columns: 1fr;

        padding: 45px 0;
    }


    .living-left {
        padding: 0 0 55px;

        border-right: 0;
        border-bottom: 1px solid rgba(29, 29, 29, 0.2);
    }


    .living-kicker {
        margin-left: 0;
    }


    .living-listen strong {
        margin-left: 0;
    }


    .living-right {
        padding: 45px 0 0;
    }


    .living-asks {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .living-ask:first-child {
        border-right: 0;
    }


    .living-ask,
    .living-ask:first-child {
        padding: 0;
    }


    .living-finale {
        min-height: 330px;
    }


    .living-finale h2 {
        font-size: clamp(3.3rem, 12vw, 5.5rem);
    }

}

/* =========================================================
   LIVING WITH PICKETT — SCALE DOWN
   ========================================================= */

/* ---------- BEIGE SECTION ---------- */

.living-top {
    min-height: 430px;
    padding-top: 45px;
    padding-bottom: 45px;
}

.living-kicker {
    font-size: 1.35rem;
    margin-bottom: 42px;
}

.listen-small {
    font-size: clamp(2.6rem, 3.5vw, 4rem);
}

.living-listen strong {
    font-size: clamp(4rem, 6vw, 6.5rem);
}

.listen-not {
    font-size: clamp(1.45rem, 2vw, 2.2rem);
}


/* Right side */

.living-memory {
    font-size: clamp(1.3rem, 1.65vw, 1.75rem);
}

.living-curious {
    margin-top: 27px;
    font-size: clamp(1.35rem, 1.75vw, 1.9rem);
}

.living-asks {
    margin: 20px 0 32px;
}

.ask-icon {
    width: 48px;
    height: 48px;
    font-size: 1.65rem;
}

.living-ask p {
    font-size: 1rem;
}

.living-discovery {
    font-size: clamp(1.3rem, 1.7vw, 1.8rem);
}


/* ---------- BLACK FINALE ---------- */

.living-finale {
    min-height: 315px;
    padding: 42px 40px 50px;
}

.finale-small {
    margin-bottom: 28px;
    font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

.finale-small::after {
    width: 135px;
    bottom: -12px;
    border-top-width: 3px;
}

.living-finale h2 {
    font-size: clamp(3.2rem, 5vw, 5.4rem);
    line-height: 0.92;
}

.come-home {
    margin-right: 10px;
}

.come-home::after {
    bottom: -8px;
    border-top-width: 4px;
}

/* =========================================================
   NAV LINK COLOURS
   ========================================================= */

/* DEFAULT — Food + Vision */

.nav-links a {
    color: rgba(29, 29, 29, 0.62);
}

.nav-links a.active {
    color: #1D1D1D;
    opacity: 1;
    font-weight: 500;
}


/* HOMEPAGE ONLY */

.home-page .nav-links a {
    color: rgba(255, 255, 255, 0.65);
}

.home-page .nav-links a.active {
    color: #FFFFFF;
    opacity: 1;
    font-weight: 500;
}