:root {
    --forest: #143d2a;
    --forest-dark: #071b13;
    --moss: #6f8b46;
    --rose: #c85b78;
    --plum: #7a5b95;
    --sun: #e3c64d;
    --sky: #dce8df;
    --paper: #f7f1e5;
    --white: #fffdf8;
    --ink: #172019;
    --muted: #68695f;
    --line: rgba(20, 61, 42, 0.16);
    --shadow: 0 24px 70px rgba(7, 27, 19, 0.14);
    --hero-nav: rgba(31, 27, 18, 0.68);
    --hero-pill: #96a987;
    --hero-white: #faf8f0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
}

body,
main,
section,
article,
div {
    min-width: 0;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-weight: 600;
    line-height: 0.98;
}

h3 {
    color: var(--forest-dark);
    font-weight: 900;
}

p,
a,
span,
small,
h1,
h2,
h3 {
    overflow-wrap: anywhere;
    letter-spacing: 0;
}

.site-header {
    position: fixed;
    top: 22px;
    left: 50%;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    width: min(calc(100% - 32px), 1660px);
    max-width: calc(100% - 32px);
    min-height: 66px;
    padding: 12px clamp(24px, 3vw, 46px);
    border: 1px solid rgba(250, 248, 240, 0.1);
    border-radius: 8px;
    background: var(--hero-nav);
    color: var(--hero-white);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -22px);
    transition: opacity 220ms ease, transform 220ms ease, background-color 220ms ease;
    backdrop-filter: blur(20px);
}

.site-header > * {
    min-width: 0;
}

body.header-visible .site-header,
body.menu-open .site-header {
    opacity: 0.8;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--hero-white);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.65rem;
    font-weight: 700;
}

.brand-logo {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.desktop-nav {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 42px);
    color: var(--hero-white);
    font-size: 1rem;
    font-weight: 700;
}

.desktop-nav a {
    opacity: 0.82;
}

.desktop-nav a:hover {
    opacity: 1;
}

.header-links {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(250, 248, 240, 0.24);
    border-radius: 999px;
    color: var(--hero-white);
    background: rgba(250, 248, 240, 0.06);
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.header-link:hover {
    transform: translateY(-1px);
    background: rgba(250, 248, 240, 0.14);
    border-color: rgba(250, 248, 240, 0.38);
}

.header-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.app-button,
.download-pill {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.94rem;
    font-weight: 900;
}

.app-button {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    padding: 0 22px;
    background: var(--hero-pill);
    color: var(--hero-white);
}

.download-pill {
    margin-top: 30px;
    padding: 0 28px;
    background: var(--hero-white);
    color: #201f1a;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.download-pill.dark {
    background: var(--sun);
    color: var(--forest-dark);
    box-shadow: none;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: transparent;
}

.menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
}

.hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: flex-end;
    justify-content: center;
    padding: clamp(130px, 15vh, 190px) clamp(18px, 4vw, 56px) clamp(72px, 13vh, 132px);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(46, 36, 18, 0.18), rgba(14, 10, 7, 0.4) 46%, rgba(0, 0, 0, 0.88)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(43, 41, 8, 0.6)),
        url("assets/images/pexels-dried-herbs-tea-cup.jpg") center / cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: min(840px, 100%);
    text-align: center;
}

.hero-kicker,
.eyebrow {
    color: var(--moss);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker {
    margin-bottom: 16px;
    color: rgba(250, 248, 240, 0.78);
}

.hero-copy h1 {
    color: var(--hero-white);
    font-size: 6.8rem;
}

.hero-copy p:not(.hero-kicker) {
    width: min(700px, 100%);
    margin: 26px auto 0;
    color: rgba(250, 248, 240, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 650;
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--forest-dark);
}

.principle-card {
    min-height: 470px;
    padding: clamp(28px, 4vw, 52px);
    background: var(--sky);
}

.principle-card:nth-child(2) {
    background: var(--paper);
}

.principle-card:nth-child(3) {
    background: #f3dce5;
}

.illustration {
    position: relative;
    height: 86px;
    margin-bottom: 16px;
}

.leaf-cup::before,
.steam-cup::before,
.pouch::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 82px;
    height: 46px;
    border: 3px solid var(--forest);
    border-radius: 8px 8px 36px 36px;
}

.leaf-cup::after {
    content: "";
    position: absolute;
    left: 62px;
    bottom: 52px;
    width: 42px;
    height: 26px;
    border-radius: 100% 8px;
    background: var(--moss);
    transform: rotate(-24deg);
}

.steam-cup::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 8px;
    width: 34px;
    height: 34px;
    border-top: 4px solid var(--moss);
    border-right: 4px solid transparent;
    border-radius: 50%;
    box-shadow: 28px 2px 0 -10px var(--plum);
}

.pouch::before {
    width: 70px;
    height: 82px;
    border-radius: 8px;
    background: var(--white);
}

.pouch::after {
    content: "CHA";
    position: absolute;
    left: 10px;
    bottom: 32px;
    display: grid;
    width: 50px;
    height: 30px;
    place-items: center;
    border-radius: 4px;
    background: var(--sun);
    color: var(--forest-dark);
    font-size: 0.82rem;
    font-weight: 900;
}

.principle-card h2,
.feature-copy h2,
.recipes h2,
.boring h2,
.all-in-one h2,
.cook-mode h2,
.feedback h2,
.categories h2,
.resources h2,
.download h2 {
    color: var(--forest-dark);
    font-size: 4.3rem;
}

.principle-card h2 {
    margin-top: 12px;
    font-size: 3.25rem;
}

.principle-card p:not(.eyebrow),
.feature-copy p,
.boring p,
.all-in-one > p,
.cook-copy p,
.download p,
.insight-card p,
.review-card p {
    color: var(--muted);
    line-height: 1.65;
    font-weight: 650;
}

.principle-card p:not(.eyebrow) {
    margin-top: 20px;
}

.planner {
    padding: clamp(66px, 9vw, 120px) clamp(18px, 4vw, 56px);
    background: var(--white);
}

.tabs {
    display: flex;
    width: min(100%, fit-content);
    max-width: 100%;
    gap: 8px;
    margin: 0 auto clamp(54px, 7vw, 88px);
    padding: 8px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.tab {
    min-height: 44px;
    white-space: nowrap;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-weight: 900;
}

.tab.active {
    background: var(--forest);
    color: var(--white);
}

.feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: clamp(34px, 8vw, 118px);
    align-items: center;
    margin-top: clamp(70px, 10vw, 138px);
}

.feature-row > *,
.cook-mode > *,
.feedback > *,
.site-footer > *,
.recipe-grid > *,
.insight-grid > *,
.principles > * {
    min-width: 0;
}

.feature-row:first-of-type {
    margin-top: 0;
}

.feature-row.reverse {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
}

.feature-row.reverse .feature-copy {
    order: 2;
}

.feature-row.reverse .phone-showcase {
    order: 1;
}

.feature-copy {
    max-width: 720px;
}

.feature-copy > p:not(.eyebrow) {
    margin-top: 24px;
}

.feature-copy ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.feature-copy li {
    display: flex;
    gap: 12px;
    color: var(--forest-dark);
    font-weight: 850;
}

.feature-copy li::before {
    content: "\2713";
    color: var(--moss);
}

.phone-showcase {
    justify-self: center;
}

.phone-showcase img {
    width: min(470px, 84vw);
    aspect-ratio: 0.84;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.recipes {
    padding: clamp(72px, 9vw, 126px) clamp(18px, 4vw, 56px);
    background: #f5f3ed;
}

.resources {
    padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 56px);
    background: var(--paper);
}

.section-head {
    display: block;
    margin-bottom: clamp(48px, 6vw, 84px);
    text-align: center;
}

.section-head h2 {
    color: #25231f;
    font-size: clamp(3rem, 4.4vw, 5.1rem);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.recipe-card {
    display: flex;
    min-height: 370px;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px 28px 26px;
    border: 0;
    border-radius: 8px;
    background: #eae9e4;
    box-shadow: none;
}

.recipe-image {
    display: grid;
    width: 100%;
    height: 230px;
    place-items: center;
}

.recipe-card img {
    width: auto;
    max-width: 160px;
    height: 100%;
    max-height: 220px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
}

.recipe-card h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 26px 0 0;
    color: #25231f;
    font-size: clamp(1.25rem, 1.35vw, 1.6rem);
    font-weight: 500;
}

.recipe-card h3 span {
    font-size: 1.7rem;
    line-height: 1;
}

.boring {
    padding: clamp(74px, 11vw, 150px) 0;
    overflow: hidden;
    background: var(--forest-dark);
    color: var(--white);
}

.boring-copy {
    width: min(900px, calc(100% - 36px));
    margin: 0 auto 52px;
    text-align: center;
}

.boring .eyebrow {
    color: var(--sun);
}

.boring h2 {
    margin-top: 12px;
    color: var(--white);
}

.boring p:not(.eyebrow) {
    margin-top: 18px;
    color: rgba(255, 253, 248, 0.72);
}

.recipe-wall {
    overflow: hidden;
    display: grid;
    gap: 16px;
    contain: layout paint;
}

.recipe-line,
.nutrient-track {
    display: flex;
    width: max-content;
    gap: 12px;
    animation: marquee 34s linear infinite;
}

.reverse-line {
    animation-direction: reverse;
}

.recipe-line span,
.nutrient-track span {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    border-radius: 8px;
    padding: 0 22px;
    background: var(--white);
    color: var(--forest-dark);
    font-weight: 900;
}

.all-in-one {
    padding: clamp(74px, 11vw, 150px) clamp(18px, 4vw, 56px);
    overflow: hidden;
    background: var(--white);
    text-align: center;
}

.all-in-one h2,
.all-in-one > p {
    width: min(980px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.all-in-one > p {
    margin-top: 22px;
}

.nutrient-cloud {
    width: 100%;
    max-width: 100%;
    margin: 50px auto;
    overflow: hidden;
    contain: layout paint;
}

.nutrient-track {
    min-width: max-content;
    animation-duration: 44s;
}

.nutrient-track span {
    border: 1px solid var(--line);
    background: var(--paper);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: left;
}

.insight-card {
    min-height: 280px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.insight-card img {
    width: 100%;
    aspect-ratio: 1.25;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 18px;
}

.insight-card blockquote {
    margin: 0;
    color: var(--forest-dark);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.45rem;
    line-height: 1.18;
    font-weight: 600;
}

.insight-card p {
    margin-top: 14px;
}

.insight-card span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.insight-card h3 {
    font-size: 1.55rem;
}

.insight-card.compact {
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: var(--forest);
}

.insight-card.compact h3,
.insight-card.compact p {
    color: var(--white);
}

.cook-mode {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: clamp(30px, 7vw, 96px);
    align-items: center;
    padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 56px);
    background: var(--sky);
}

.cook-copy {
    display: grid;
    gap: 26px;
}

.cook-copy h3 {
    margin-top: 20px;
    font-size: 1.45rem;
}

.cook-image {
    width: 100%;
    aspect-ratio: 0.86;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feedback {
    display: grid;
    grid-template-columns: 1.1fr 0.72fr 0.72fr;
    gap: 18px;
    align-items: stretch;
    padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 56px);
    background: var(--white);
}

.feedback-copy,
.review-card {
    border-radius: 8px;
}

.feedback-copy {
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(26px, 4vw, 44px);
    background: var(--forest-dark);
}

.feedback-copy .eyebrow {
    color: var(--sun);
}

.feedback-copy h2 {
    color: var(--white);
}

.review-card {
    padding: 14px;
    border: 1px solid var(--line);
    background: var(--paper);
}

.review-card img {
    width: 100%;
    aspect-ratio: 0.9;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 18px;
}

.review-card h3 {
    margin: 0 4px 8px;
    font-size: 1.45rem;
}

.review-card p {
    margin: 0 4px 10px;
}

.categories {
    padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 56px);
    background: var(--rose);
}

.categories h2 {
    color: var(--white);
    margin-bottom: 38px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.category-grid a,
.resource-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 78px;
    padding: 0 22px;
    border-radius: 8px;
    background: var(--white);
    color: var(--forest-dark);
    font-weight: 900;
}

.resource-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.resource-grid a {
    align-items: flex-start;
    flex-direction: column;
    min-height: 188px;
    justify-content: space-between;
    padding: 24px;
}

.resource-grid span {
    font-size: 1.18rem;
}

.resource-grid small {
    color: var(--moss);
    font-weight: 850;
}

.download {
    padding: clamp(80px, 12vw, 160px) clamp(18px, 4vw, 56px);
    background: var(--forest-dark);
    color: var(--white);
    text-align: center;
}

.download h2 {
    width: min(950px, 100%);
    margin: 0 auto;
    color: var(--white);
}

.download p {
    width: min(620px, 100%);
    margin: 24px auto 0;
    color: rgba(255, 253, 248, 0.74);
}

.site-footer {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    gap: 36px;
    padding: 52px clamp(18px, 4vw, 56px) 34px;
    background: var(--white);
    font-family: "Inter", "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
}

.site-footer .brand {
    grid-column: auto;
    justify-self: start;
    color: var(--forest-dark);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.site-footer .brand-logo {
    width: 26px;
    height: 26px;
}

.site-footer p {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 400;
    padding-top: 5px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.footer-links div {
    display: grid;
    gap: 8px;
}

.footer-links b {
    color: var(--forest-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 400;
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: var(--forest);
}

.copyright {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    font-size: 0.78rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1160px) {
    .site-header {
        width: min(92vw, 1200px);
        gap: 18px;
        padding-inline: clamp(18px, 3vw, 28px);
    }

    .hero {
        min-height: 860px;
        padding-top: clamp(136px, 16vh, 176px);
    }

    .hero-copy h1 {
        font-size: 5.4rem;
    }

    .hero-copy p:not(.hero-kicker) {
        width: min(620px, 100%);
    }

    .principles,
    .category-grid,
    .insight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recipe-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .recipe-card {
        min-height: 340px;
        padding: 34px 22px 22px;
    }

    .recipe-image {
        height: 200px;
    }

    .phone-showcase img,
    .cook-image {
        width: min(100%, 560px);
    }

    .feature-row,
    .feature-row.reverse,
    .cook-mode,
    .feedback,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .feature-row.reverse .feature-copy,
    .feature-row.reverse .phone-showcase {
        order: initial;
    }

    .feature-copy,
    .cook-copy,
    .feedback-copy,
    .review-card {
        max-width: 760px;
        margin-inline: auto;
    }

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

    .resource-grid a:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 920px) {
    .site-header {
        grid-template-columns: 1fr auto 1fr;
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        min-height: 68px;
        padding: 10px 16px;
        top: 16px;
    }

    .desktop-nav {
        gap: 18px;
        font-size: 0.94rem;
    }

    .header-links {
        gap: 8px;
    }

    .header-link {
        width: 38px;
        height: 38px;
    }

    .hero {
        min-height: 780px;
        align-items: center;
        padding-bottom: 88px;
        background-position: 58% center;
    }

    .hero-copy {
        width: min(700px, 100%);
    }

    .hero-copy h1 {
        font-size: clamp(4.3rem, 9vw, 5.1rem);
    }

    .hero-copy p:not(.hero-kicker) {
        font-size: 1.08rem;
    }

    .principle-card,
    .planner,
    .recipes,
    .resources,
    .all-in-one,
    .cook-mode,
    .feedback,
    .categories,
    .download {
        padding-inline: 24px;
    }

    .principle-card {
        min-height: 400px;
        padding: 26px;
    }

    .principle-card h2 {
        font-size: 2.7rem;
    }

    .feature-row {
        gap: 28px;
        margin-top: 82px;
    }

    .feature-copy > p:not(.eyebrow) {
        margin-top: 18px;
    }

    .feature-copy ul {
        margin-top: 22px;
    }

    .phone-showcase img {
        width: min(100%, 500px);
        aspect-ratio: 1;
    }

    .recipe-grid,
    .category-grid,
    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .insight-card {
        min-height: 240px;
    }

    .resource-grid a {
        min-height: 160px;
    }

    .site-footer {
        padding-inline: 24px;
    }
}

@media (max-width: 760px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        width: calc(100% - 28px);
        max-width: calc(100% - 28px);
        min-height: 62px;
        padding: 10px 14px;
        top: 14px;
    }

    .brand {
        grid-column: 1;
        justify-self: start;
        font-size: 1.22rem;
    }

    .brand-logo {
        width: 28px;
        height: 28px;
    }

    .desktop-nav {
        position: fixed;
        inset: 64px 14px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        background: rgba(7, 27, 19, 0.94);
        box-shadow: var(--shadow);
    }

    .desktop-nav a {
        padding: 16px;
    }

    body.menu-open .desktop-nav {
        display: flex;
    }

    .header-links {
        display: none;
    }

    .app-button {
        display: none;
    }

    .menu-button {
        grid-column: 3;
        display: block;
    }

    .hero {
        min-height: 720px;
        align-items: end;
        padding-top: 120px;
        padding-bottom: 60px;
        background-position: 61% center;
    }

    .hero-copy h1 {
        font-size: clamp(3.45rem, 13vw, 4rem);
    }

    .hero-copy p:not(.hero-kicker) {
        font-size: 1rem;
        line-height: 1.55;
    }

    .download-pill {
        width: 100%;
        max-width: 320px;
        margin-top: 24px;
    }

    .principle-card h2,
    .feature-copy h2,
    .recipes h2,
    .boring h2,
    .all-in-one h2,
    .cook-mode h2,
    .feedback h2,
    .categories h2,
    .resources h2,
    .download h2 {
        font-size: 3rem;
    }

    .principle-card,
    .planner,
    .recipes,
    .resources,
    .all-in-one,
    .cook-mode,
    .feedback,
    .categories,
    .download,
    .site-footer {
        padding-inline: 18px;
    }

    .principles {
        gap: 0;
    }

    .principle-card {
        min-height: auto;
        padding-block: 24px;
    }

    .principles,
    .insight-grid,
    .category-grid,
    .resource-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .recipe-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .tabs {
        width: 100%;
        margin-bottom: 38px;
        padding: 6px;
    }

    .tab {
        flex: 0 0 auto;
        min-height: 42px;
        padding-inline: 14px;
        font-size: 0.92rem;
    }

    .feature-row {
        gap: 22px;
        margin-top: 58px;
    }

    .feature-copy li {
        font-size: 0.98rem;
    }

    .phone-showcase img,
    .cook-image,
    .review-card img,
    .insight-card img {
        border-radius: 8px;
    }

    .recipe-card {
        min-height: 290px;
        padding: 22px 16px 18px;
    }

    .recipe-image {
        height: 170px;
    }

    .recipe-card img {
        max-width: 120px;
        max-height: 166px;
    }

    .recipe-card h3 {
        margin-top: 18px;
        font-size: 1.12rem;
    }

    .boring {
        padding-block: 62px;
    }

    .boring-copy {
        margin-bottom: 34px;
    }

    .recipe-line span,
    .nutrient-track span {
        min-height: 50px;
        padding: 0 16px;
        font-size: 0.92rem;
    }

    .nutrient-cloud {
        margin: 36px auto;
    }

    .insight-card,
    .feedback-copy,
    .review-card,
    .resource-grid a {
        min-height: auto;
    }

    .feedback {
        gap: 14px;
    }

    .feedback-copy {
        min-height: 280px;
    }

    .category-grid a,
    .resource-grid a {
        min-height: 70px;
        padding-inline: 18px;
    }

    .resource-grid a {
        padding-block: 18px;
    }

    .site-footer {
        gap: 26px;
        padding-top: 36px;
    }

    .footer-links {
        gap: 18px;
    }

}

@media (max-width: 420px) {
    .site-header {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        top: 10px;
    }

    .desktop-nav {
        inset: 60px 10px auto;
    }

    .hero-copy h1 {
        font-size: 3.25rem;
    }

    .hero-copy p:not(.hero-kicker) {
        font-size: 0.96rem;
    }

    .principle-card h2,
    .feature-copy h2,
    .recipes h2,
    .boring h2,
    .all-in-one h2,
    .cook-mode h2,
    .feedback h2,
    .categories h2,
    .resources h2,
    .download h2 {
        font-size: 2.55rem;
    }

    .recipe-grid {
        grid-template-columns: 1fr;
    }

    .brand {
        font-size: 1.08rem;
    }

    .download-pill {
        max-width: none;
    }

    .tab {
        font-size: 0.88rem;
    }

    .feature-copy li,
    .principle-card p:not(.eyebrow),
    .insight-card p,
    .review-card p,
    .download p {
        font-size: 0.96rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
