:root {
    color-scheme: light;
    --ink: #132b28;
    --ink-2: #1c3934;
    --paper: #fffdf8;
    --cream: #f4f0e6;
    --yellow: #ffdb58;
    --yellow-2: #f7c934;
    --green: #276749;
    --green-soft: #dceadd;
    --line: rgba(19, 43, 40, 0.18);
    --muted: #65716c;
    --white: #ffffff;
    --container: 1180px;
    --radius: 24px;
    --shadow: 0 20px 60px rgba(19, 43, 40, 0.14);
    font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 104px;
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.5;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible {
    outline: 3px solid var(--yellow-2);
    outline-offset: 4px;
}

.announcement {
    display: grid;
    min-height: 34px;
    place-items: center;
    padding: 0.35rem 1rem;
    background: var(--ink);
    color: var(--white);
}

.announcement p {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-align: center;
    text-transform: uppercase;
}

.announcement p > span:first-child {
    margin-right: 0.35rem;
    color: var(--yellow);
}

.announcement-extra {
    display: none;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.94);
    backdrop-filter: blur(16px);
}

.header-inner,
.hero-inner,
.section,
.trust-track,
.footer-inner,
.hero-footnote {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.header-inner {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.brand strong {
    font-weight: 800;
}

.brand-seal {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
}

.brand-seal svg {
    width: 27px;
    height: 27px;
    fill: var(--ink);
}

.brand-seal .brand-vein {
    fill: none;
    stroke: var(--yellow);
    stroke-linecap: round;
    stroke-width: 2;
}

.main-nav {
    display: none;
}

.header-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.6rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.header-cta-label {
    display: none;
}

.header-cta-arrow {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    font-size: 1rem;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 2rem 0 3rem;
}

.hero-inner {
    display: grid;
    gap: 3rem;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.hero-overline {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.overline-rule {
    width: 26px;
    height: 1px;
    background: var(--ink);
}

.hero h1,
.section-heading h2,
.how-intro h2,
.closing-card h2 {
    margin: 0;
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    letter-spacing: -0.055em;
}

.hero h1 {
    max-width: 9ch;
    font-size: clamp(3.45rem, 16vw, 5.4rem);
    font-weight: 800;
    line-height: 0.89;
}

.hero-highlight {
    position: relative;
    z-index: 0;
    display: inline-block;
    margin-top: 0.12em;
    padding-inline: 0.08em;
    font-style: italic;
    font-weight: 600;
}

.hero-highlight::before {
    position: absolute;
    z-index: -1;
    right: -0.12em;
    bottom: -0.02em;
    left: -0.12em;
    height: 0.42em;
    border-radius: 999px 30px 999px 40px;
    background: var(--yellow);
    content: "";
    transform: rotate(-2deg);
}

.hero-description {
    max-width: 36rem;
    margin: 1.35rem 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.hero-actions {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.7rem;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0.6rem 0.55rem 1.25rem;
    border: 1.5px solid transparent;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
}

.button-dark {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(19, 43, 40, 0.2);
}

.button-dark .button-icon {
    background: var(--yellow);
    color: var(--ink);
}

.button-link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border-bottom: 1px solid var(--ink);
    font-size: 0.8rem;
    font-weight: 800;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.7rem;
}

.proof-score {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.stars {
    color: #c99300;
    font-size: 0.68rem;
    letter-spacing: 0.09em;
}

.hero-proof p {
    margin: 0.2rem 0 0;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.35;
}

.hero-visual {
    position: relative;
    min-height: 440px;
    padding: 1rem 0 2.2rem;
}

.hero-shape {
    position: absolute;
    inset: 0.1rem -3rem 0 1.3rem;
    border-radius: 46% 54% 16% 16% / 35% 35% 12% 12%;
    background: var(--yellow);
    transform: rotate(3deg);
}

.hero-image {
    position: relative;
    z-index: 1;
    width: calc(100% - 2.4rem);
    height: 390px;
    margin: 0 0 0 auto;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 48% 48% 22px 22px / 32% 32% 22px 22px;
    background: var(--cream);
    box-shadow: 12px 14px 0 var(--ink);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-recipe-tag {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 76px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1.5px solid var(--ink);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 6px 7px 0 var(--ink);
}

.recipe-tag-number {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    font-family: "Fraunces", Georgia, serif;
    font-weight: 800;
}

.hero-recipe-tag > span:nth-child(2) {
    display: grid;
}

.hero-recipe-tag strong {
    font-size: 0.75rem;
}

.hero-recipe-tag small {
    margin-top: 0.12rem;
    color: var(--muted);
    font-size: 0.62rem;
}

.hero-stamp {
    position: absolute;
    z-index: 4;
    top: -0.4rem;
    left: 0;
    display: grid;
    width: 82px;
    height: 82px;
    place-content: center;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    background: var(--paper);
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.25;
    text-align: center;
    transform: rotate(-10deg);
}

.hero-stamp strong {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.15rem;
    letter-spacing: -0.05em;
}

.hero-footnote {
    display: none;
}

.trust-strip {
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.trust-track {
    display: flex;
    overflow-x: auto;
    padding: 1.25rem 0;
    gap: 0;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.trust-track::-webkit-scrollbar {
    display: none;
}

.trust-item {
    display: grid;
    min-width: 82%;
    grid-template-columns: auto 1fr;
    column-gap: 0.8rem;
    align-items: center;
    padding: 0 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    scroll-snap-align: start;
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item > span {
    grid-row: 1 / 3;
    color: var(--yellow);
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.trust-item strong {
    font-size: 0.76rem;
}

.trust-item small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.65rem;
}

.section {
    padding-block: 4.8rem;
}

.section-heading {
    position: relative;
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.section-index {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.section-heading h2,
.how-intro h2,
.closing-card h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    font-weight: 750;
    line-height: 0.98;
}

.section-heading h2 em,
.how-intro h2 em,
.closing-card h2 em {
    color: var(--green);
    font-style: italic;
    font-weight: 600;
}

.section-heading > p,
.how-intro > p,
.closing-card > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.category-card {
    position: relative;
    display: grid;
    min-height: 190px;
    align-content: space-between;
    padding: 0.9rem;
    overflow: hidden;
    border: 1.5px solid var(--ink);
    border-radius: 18px;
    background: var(--cream);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.category-card:nth-child(1) {
    background: var(--yellow);
}

.category-card:nth-child(3) {
    background: var(--green-soft);
}

.category-number {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.category-icon {
    position: absolute;
    right: -0.15rem;
    top: 0.35rem;
    font-size: 3.7rem;
    filter: grayscale(0.1);
    transform: rotate(8deg);
}

.category-copy {
    display: grid;
    align-self: end;
}

.category-copy strong {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.05;
}

.category-copy small {
    margin-top: 0.28rem;
    color: var(--muted);
    font-size: 0.64rem;
}

.category-arrow {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    display: none;
}

.recipes-section {
    background: var(--ink);
    color: var(--white);
}

.recipes-inner {
    padding-block: 4.8rem;
}

.section-heading-light .section-index,
.section-heading-light > p {
    color: rgba(255, 255, 255, 0.6);
}

.section-heading-light h2 em {
    color: var(--yellow);
}

.editorial-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.5rem;
    justify-self: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 0.76rem;
    font-weight: 800;
}

.recipe-grid {
    display: grid;
    gap: 1.25rem;
}

.recipe-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 20px;
    background: var(--paper);
    color: var(--ink);
}

.recipe-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream);
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}

.recipe-count {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    font-family: "Fraunces", Georgia, serif;
    font-weight: 800;
}

.recipe-content {
    padding: 1.15rem;
}

.recipe-labels {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--green);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.recipe-labels span:last-child span {
    color: #bd8b00;
}

.recipe-content h3 {
    margin: 0.7rem 0 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.55rem;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.recipe-meta {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.9rem;
}

.recipe-meta span {
    padding: 0.34rem 0.62rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.64rem;
    font-weight: 700;
}

.recipe-link {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 800;
}

.how-section {
    padding-top: 4.8rem;
}

.how-panel {
    position: relative;
    display: grid;
    gap: 2.6rem;
    padding: 1.6rem;
    overflow: hidden;
    border: 1.5px solid var(--ink);
    border-radius: 26px;
    background: var(--yellow);
    box-shadow: 9px 10px 0 var(--ink);
}

.how-intro {
    display: grid;
    justify-items: start;
}

.how-intro h2 {
    margin-top: 0.75rem;
}

.how-intro h2 em {
    color: var(--ink);
}

.how-intro > p {
    margin-top: 1rem;
    color: rgba(19, 43, 40, 0.72);
}

.how-intro .button {
    width: 100%;
    margin-top: 1.4rem;
}

.steps {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    min-height: 118px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(19, 43, 40, 0.3);
}

.step-number {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-family: "Fraunces", Georgia, serif;
    font-size: 0.78rem;
    font-weight: 800;
}

.steps strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.1;
}

.steps p {
    margin: 0.35rem 0 0;
    color: rgba(19, 43, 40, 0.68);
    font-size: 0.7rem;
    line-height: 1.45;
}

.step-mark {
    font-size: 1.4rem;
}

.closing-section {
    padding-top: 0;
}

.closing-card {
    position: relative;
    display: grid;
    justify-items: start;
    min-height: 540px;
    align-content: center;
    padding: 2rem 1.35rem;
    overflow: hidden;
    border-radius: 26px;
    background: var(--ink);
    color: var(--white);
}

.closing-card::after {
    position: absolute;
    width: 240px;
    height: 240px;
    right: -120px;
    bottom: -95px;
    border: 54px solid var(--yellow);
    border-radius: 50%;
    content: "";
}

.closing-index {
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.closing-kicker {
    color: var(--yellow);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.closing-card h2 {
    position: relative;
    z-index: 1;
    margin-top: 0.75rem;
    font-size: clamp(3rem, 15vw, 5.6rem);
}

.closing-card h2 em {
    color: var(--yellow);
}

.closing-card > p {
    position: relative;
    z-index: 1;
    max-width: 30rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.65);
}

.button-yellow {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 1.5rem;
    background: var(--yellow);
    color: var(--ink);
}

.button-yellow .button-icon {
    background: var(--ink);
    color: var(--white);
}

.closing-orbit {
    display: none;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.footer-inner {
    display: grid;
    padding-block: 2.5rem;
    gap: 1.8rem;
}

.brand-footer {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.15rem;
}

.footer-brand p,
.copyright {
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.7rem;
}

.footer-nav {
    display: grid;
    gap: 0.25rem;
}

.footer-nav a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
}

.error-page {
    display: grid;
    width: min(calc(100% - 2rem), 720px);
    min-height: calc(100vh - 140px);
    margin-inline: auto;
    padding-block: 4rem;
    place-content: center;
    justify-items: start;
}

.error-page .section-kicker {
    color: var(--green);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.error-page h1 {
    max-width: 10ch;
    margin: 0.7rem 0 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(3.2rem, 15vw, 5.5rem);
    letter-spacing: -0.055em;
    line-height: 0.92;
}

.error-page p {
    max-width: 34rem;
    margin: 1.2rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.error-page .button {
    margin-top: 1.5rem;
}

@media (hover: hover) {
    .button:hover,
    .category-card:hover {
        transform: translateY(-3px);
    }

    .button-dark:hover {
        box-shadow: 0 16px 34px rgba(19, 43, 40, 0.28);
    }

    .category-card:hover {
        background: var(--yellow);
        box-shadow: 6px 7px 0 var(--ink);
    }

    .recipe-card:hover .recipe-image img {
        transform: scale(1.045);
    }

    .main-nav a:hover,
    .footer-nav a:hover {
        opacity: 0.58;
    }
}

@media (min-width: 700px) {
    .announcement-extra {
        display: inline;
    }

    .header-inner,
    .hero-inner,
    .section,
    .trust-track,
    .footer-inner,
    .hero-footnote {
        width: min(calc(100% - 4rem), var(--container));
    }

    .header-cta-label {
        display: inline;
    }

    .header-cta {
        padding-left: 1rem;
        background: var(--cream);
    }

    .hero {
        padding-block: 3.5rem;
    }

    .hero-actions {
        grid-template-columns: auto auto;
        justify-content: start;
        align-items: center;
    }

    .button {
        min-width: 210px;
    }

    .button-link {
        min-width: 150px;
    }

    .hero-visual {
        width: min(80%, 540px);
        justify-self: center;
    }

    .trust-item {
        min-width: 45%;
    }

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

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

    .recipe-card-featured {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1.25fr 0.75fr;
    }

    .recipe-card-featured .recipe-image {
        height: 100%;
        aspect-ratio: 16 / 10;
    }

    .recipe-card-featured .recipe-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1.8rem;
    }

    .how-panel {
        padding: 2.8rem;
    }

    .how-intro .button,
    .button-yellow {
        width: auto;
    }

    .closing-card {
        min-height: 520px;
        padding: 3.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr auto;
        align-items: end;
    }

    .footer-nav {
        grid-template-columns: repeat(3, auto);
        gap: 1.5rem;
    }

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

@media (min-width: 980px) {
    .header-inner {
        min-height: 78px;
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .main-nav a {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        color: var(--muted);
        font-size: 0.78rem;
        font-weight: 700;
    }

    .hero {
        display: grid;
        min-height: calc(100vh - 112px);
        align-items: center;
        padding: 4.2rem 0 2.5rem;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.8fr);
        align-items: center;
        gap: 6rem;
    }

    .hero h1 {
        font-size: clamp(5rem, 7.1vw, 7rem);
    }

    .hero-visual {
        width: 100%;
        max-width: 540px;
        min-height: 590px;
        justify-self: end;
    }

    .hero-image {
        height: 540px;
    }

    .hero-recipe-tag {
        right: -1rem;
        left: -1.5rem;
    }

    .hero-stamp {
        left: -2rem;
        width: 96px;
        height: 96px;
    }

    .hero-footnote {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        margin-top: 1rem;
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .footnote-line {
        width: 60px;
        height: 1px;
        background: var(--ink);
    }

    .trust-track {
        overflow: visible;
    }

    .trust-item {
        min-width: 0;
        flex: 1;
    }

    .section,
    .recipes-inner {
        padding-block: 7rem;
    }

    .section-heading {
        grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.55fr);
        align-items: end;
        column-gap: 5rem;
        margin-bottom: 3rem;
    }

    .section-heading .section-index {
        grid-column: 1 / -1;
    }

    .section-heading h2 {
        font-size: clamp(4rem, 6vw, 5.6rem);
    }

    .section-heading .editorial-link {
        justify-self: end;
    }

    .category-card {
        min-height: 255px;
        padding: 1.25rem;
        border-radius: 24px;
    }

    .category-icon {
        right: 0.2rem;
        font-size: 5rem;
    }

    .category-copy strong {
        font-size: 1.65rem;
    }

    .category-arrow {
        display: block;
    }

    .recipe-grid {
        grid-template-columns: 1.25fr 0.75fr;
        grid-template-rows: repeat(2, 1fr);
    }

    .recipe-card-featured {
        grid-row: 1 / 3;
        display: block;
    }

    .recipe-card-featured .recipe-image {
        height: auto;
        aspect-ratio: 4 / 4.2;
    }

    .recipe-card-featured .recipe-content {
        display: block;
        padding: 1.5rem;
    }

    .recipe-card-featured .recipe-content h3 {
        max-width: 14ch;
        font-size: 2.4rem;
    }

    .recipe-card:not(.recipe-card-featured) {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
    }

    .recipe-card:not(.recipe-card-featured) .recipe-image {
        height: 100%;
        aspect-ratio: auto;
    }

    .recipe-card:not(.recipe-card-featured) .recipe-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .recipe-card:not(.recipe-card-featured) .recipe-content h3 {
        font-size: 1.45rem;
    }

    .how-panel {
        grid-template-columns: 0.85fr 1.15fr;
        align-items: center;
        gap: 6rem;
        padding: 5rem;
    }

    .steps li {
        min-height: 135px;
    }

    .closing-card {
        min-height: 610px;
        padding: 5rem;
    }

    .closing-card::after {
        width: 420px;
        height: 420px;
        right: -160px;
        bottom: -190px;
        border-width: 92px;
    }

    .closing-card h2 {
        font-size: clamp(5rem, 8vw, 7rem);
    }

    .closing-orbit {
        position: absolute;
        right: 3rem;
        top: 3rem;
        display: grid;
        width: 150px;
        height: 150px;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 50%;
        color: var(--yellow);
        font-size: 0.56rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-align: center;
    }

    .footer-inner {
        grid-template-columns: 1fr auto auto;
        align-items: center;
    }

    .copyright {
        grid-column: auto;
        padding-top: 0;
        border-top: 0;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}