:root {
    --wine: #651127;
    --wine-dark: #3f0717;
    --berry: #a21d43;
    --rose: #f7e9ec;
    --cream: #fffaf7;
    --ink: #171315;
    --muted: #6d6468;
    --line: #eadfe2;
    --white: #fff;
    --shadow: 0 24px 70px rgba(71, 11, 31, .12);
    --radius: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--wine);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: 'Newsreader', "Times New Roman", serif;
    color: var(--wine-dark);
    font-weight: 400;
    letter-spacing: -.045em;
}

h1 {
    margin: 20px 0;
    font-size: clamp(3.45rem, 6vw, 6rem);
    line-height: 0.8;
    font-weight: 400;
}

h1 em {
    font-weight: 300;
    font-size: clamp(3.45rem, 4.5vw, 4.5rem);
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1;
}

h3 {
    line-height: 1.15;
}

.section-copy {
    max-width: 640px;
    color: var(--muted);
    font-size: 1rem;
}

.button {
    display: inline-flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid var(--wine);
    border-radius: 999px;
    background: transparent;
    color: var(--wine);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    background: var(--wine);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(101, 17, 39, .24);
}

.button--filled {
    background: var(--wine);
    color: var(--white);
}

.button--filled:hover,
.button--filled:focus-visible {
    background: var(--wine-dark);
}

.button--text {
    border-color: var(--wine);
    padding-inline: 40px;
}

.button--text:hover,
.button--text:focus-visible {
    box-shadow: none;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(101, 17, 39, .08);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: grid;
    min-height: 82px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.logo img {
    max-height: 48px;
    width: auto;
}

@media screen and (min-width: 768px) {
    .logo img {
        max-height: 60px;
    }
}

.logo-mark {
    position: relative;
    width: 17px;
    height: 17px;
}

.logo-mark::before,
.logo-mark::after {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50% 50% 50% 0;
    background: var(--berry);
    content: "";
    transform: rotate(45deg);
}

.logo-mark::before {
    top: 0;
    left: 1px;
}

.logo-mark::after {
    right: 0;
    bottom: 1px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 42px);
}

.desktop-nav a {
    position: relative;
    padding: 9px 0;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    background: var(--wine);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--rose);
    color: var(--wine);
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle span {
    position: relative;
}

.menu-toggle span::before {
    position: absolute;
    top: -6px;
}

.menu-toggle span::after {
    position: absolute;
    top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: -14%;
    width: 52vw;
    height: 52vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 218, 224, .7), rgba(255, 255, 255, 0) 69%);
    content: "";
}

.hero-grid {
    display: grid;
    min-height: 570px;
    grid-template-columns: minmax(0, .8fr) minmax(470px, 1.2fr);
    align-items: center;
    gap: 24px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-block: 36px;
}

.hero-copy>p:not(.eyebrow) {
    max-width: 430px;
    margin-bottom: 30px;
    color: #50474b;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.play-icon {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: .72rem;
    padding-top: 2px;
    padding-left: 1px;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 570px;
    z-index: 0;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.08) contrast(1.02);
}

.floating-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--berry);
    box-shadow: 0 7px 16px rgba(112, 8, 41, .24);
    animation: float 4s ease-in-out infinite;
}

.floating-dot:nth-child(2) {
    top: 23%;
    left: 12%;
}

.floating-dot:nth-child(3) {
    right: 8%;
    bottom: 23%;
    width: 18px;
    height: 18px;
    animation-delay: -1.6s;
}

@keyframes float {
    50% {
        transform: translateY(-14px);
    }
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
}

.split-media {
    min-height: 530px;
    overflow: hidden;
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    display: flex;
    align-items: center;
    padding: clamp(54px, 7vw, 100px);
}

.benefit-list {
    display: grid;
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.benefit {
    min-width: 0;
}

.benefit-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--wine);
    font-size: 1.3rem;
}

.benefit h3 {
    margin-bottom: 7px;
    color: var(--wine-dark);
    font-size: .78rem;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.benefit p {
    margin: 0;
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.5;
}

.story {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
}

.story-copy {
    display: flex;
    align-items: center;
    padding: clamp(54px, 7vw, 100px);
    background: var(--cream);
}

.story-copy h2 {
    max-width: 500px;
}

.story-copy strong {
    color: var(--wine-dark);
}

.story-media {
    min-height: 450px;
}

.story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection {
    padding: 72px 0 56px;
    text-align: center;
    background: #f8f9f8;
}

.collection h2 {
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.collection img {
    width: 100%;
    margin: 0 auto;
}

.applications {
    padding: 100px 0;
    background: #fff;
}

.applications h2 {
    margin-bottom: 34px;
    text-align: center;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.application-card {
    position: relative;
    display: flex;
    min-height: 480px;
    flex-direction: column;
    overflow: hidden;
    border: 0 solid transparent;
    border-radius: 20px;
    background: #fbf8f6;
    transition: 0.4s !important;
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 12px -12px rgba(0, 0, 0, 0.2);
}

.application-card:nth-child(1) {
    --accent: #ef5046;
}

.application-card:nth-child(2) {
    --accent: #d65a8a;
}

.application-card:nth-child(3) {
    --accent: #f3a51a;
}

.application-card:nth-child(4) {
    --accent: #7ea33a;
}

.application-card:nth-child(5) {
    --accent: #7f598f;
}

.application-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 22px auto 14px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 1.25rem;
}

.application-card h3 {
    margin-bottom: 16px;
    text-align: center;
    font-size: 1rem;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.application-card ul {
    flex: 1;
    margin: 0;
    padding: 0 30px 0 44px;
    color: #4d4548;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.application-card li::marker {
    color: var(--accent);
}

.application-card .decor {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center bottom;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    transition: 0.4s;
    transform-origin: center bottom;
}

.application-card:hover .decor {
    transform: scale(1.1);
}

.quality-strip {
    background: #421120;
    color: #fff;
}

.quality-grid {
    display: grid;
    min-height: 116px;
    grid-template-columns: repeat(6, 1fr);
    align-items: stretch;
}

.quality-item {
    display: grid;
    min-width: 0;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 40px 14px;
    text-align: center;
}

.quality-item+.quality-item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.quality-item strong {
    font-family: 'Newsreader', "Times New Roman", serif;
    font-size: 1.95rem;
    font-weight: 400;
    line-height: 1;
}

.quality-item span:first-child {
    font-size: 1.45rem;
}

.quality-item span:last-child {
    max-width: 110px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.how {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: #fffefe;
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}

.how-bg {
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

@media screen and (min-width: 1050px) {
    .how-bg {
        display: block;
    }
}

.how-bg img {
    width: auto;
    height: 100%;
    display: block;
    margin: 0;
}

.how-grid {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    align-items: center;
    gap: 54px;
    position: relative;
    z-index: 2;
}

.how h2 {
    margin-bottom: 26px;
    text-align: left;
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
    font-size: .92rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.step {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 20px;
}

.step:not(:last-child)::after {
    position: absolute;
    top: 21px;
    right: -24px;
    color: var(--berry);
    content: "→";
    font-size: 1.35rem;
}

.step-number {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border: 1px solid var(--wine);
    border-radius: 50%;
    color: var(--wine);
    font-size: 24px;
    font-weight: 300;
}

.step h3 {
    margin: 3px 0 5px;
    font-size: 16px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.2;
    
}

@media screen and (min-width: 1050px) {
    .step p {
        max-width: 120px;
    }
}

.how-image {
    min-height: 230px;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.recipes {
    padding: 80px 0;
}

.section-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-heading-row h2 {
    margin: 0;
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.carousel-controls {
    display: flex;
    gap: 8px;
}

.carousel-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
    color: var(--wine);
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
    background: var(--wine);
    color: white;
}

.recipe-track {
    display: grid;
    grid-auto-columns: minmax(180px, 1fr);
    grid-auto-flow: column;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.recipe-track::-webkit-scrollbar {
    display: none;
}

.recipe-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    scroll-snap-align: start;
}

.recipe-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.recipe-card p {
    margin: 0;
    padding: 14px;
    text-align: center;
    color: var(--wine-dark);
    font-size: .78rem;
    font-weight: 800;
}

.faq-section {
    min-height: 375px;
    position: relative;
    overflow: hidden;
    padding: 40px 0 0;
    background: #fffefe;
    border-top: 1px solid rgba(0, 0, 0, 0.075);
}

.faq-bg {
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.faq-bg img {
    width: auto;
    height: 100%;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    align-items: end;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.faq-content {
    padding-bottom: 40px;
}

.faq-content h2 {
    margin-bottom: 26px;
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .92);
    margin-bottom: auto;
}

.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 18px;
    background: transparent;
    color: var(--ink);
    text-align: left;
    font-size: .8rem;
    font-weight: 800;
    cursor: pointer;
}

.faq-plus {
    position: relative;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.faq-plus::before,
.faq-plus::after {
    position: absolute;
    top: 7px;
    left: 1px;
    width: 14px;
    height: 2px;
    background: var(--wine);
    content: "";
    transition: transform .25s ease;
}

.faq-plus::after {
    transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-plus::after {
    transform: rotate(0);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
}

.faq-answer>div {
    overflow: hidden;
}

.faq-answer p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
    font-size: .8rem;
}

.faq-item:has(.faq-question[aria-expanded="true"]) .faq-answer {
    grid-template-rows: 1fr;
}

.faq-image {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    object-position: center bottom;
}

.final-cta {
    background: #fff9f7;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.075);
}

.final-cta-bg {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.final-cta-bg img {
    width: auto;
    height: 100%;
    display: block;
    margin: 0;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.final-cta-grid > div {
    backdrop-filter: blur(5px);
    background: rgba(255,249,247,0.6);
    padding: 40px 40px 30px 0;
}

.final-cta h2 {
    max-width: 480px;
    margin-bottom: 10px;
    font-size: clamp(2.2rem, 3vw, 3rem);
}

.final-cta p {
    max-width: 470px;
    margin-bottom: 24px;
}

.final-cta-image {
    width: 100%;
    align-self: end;
    mix-blend-mode: multiply;
}

.site-footer {
    padding: 26px 0;
    background: var(--wine-dark);
    color: rgba(255, 255, 255, .78);
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    color: white;
    font-family: 'Newsreader', "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 28px;
    font-size: 14px;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    font-size: .74rem;
}

.copyright {
    margin: 20px 0 0;
    text-align: center;
    color: rgba(255, 255, 255, .52);
    font-size: .68rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1050px) {
    .header-inner {
        grid-template-columns: auto auto 1fr;
    }

    .desktop-nav,
    .header-buy {
        display: none;
    }

    .menu-toggle {
        display: grid;
        justify-self: end;
        grid-column: 3;
    }

    .mobile-nav {
        height: 100vh;
        position: fixed;
        z-index: 49;
        top: 82px;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        align-content: start;
        gap: 12px;
        padding: 32px 20px;
        background: rgba(255, 255, 255, .985);
        transform: translate3D(100%,0,0);
        transition: transform .32s ease;
    }

    .mobile-nav.is-open {
        transform: translate3D(0,0,0);
    }

    .mobile-nav a {
        padding: 14px 8px;
        border-bottom: 1px solid var(--line);
        color: var(--wine-dark);
        font-family: 'Newsreader', "Times New Roman", serif;
        font-size: 1.8rem;
    }

    .mobile-nav .button {
        width: fit-content;
        margin-top: 18px;
        font-family: inherit;
        font-size: .78rem;
        color: #FFF;
        padding: 0 40px;
        border-radius: 100px;
        border: none;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        min-height: 470px;
    }

    .split-content {
        padding: 54px 38px;
    }

    .benefit-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .benefit {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 14px;
    }

    .benefit-icon {
        grid-row: span 2;
    }

    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quality-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quality-item:nth-child(4) {
        border-left: 0;
    }

    .quality-item:nth-child(-n+3) {
        border-bottom: 1px solid rgba(255, 255, 255, .22);
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .how-image {
        width: min(100%, 620px);
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 40px), var(--container));
    }

    .hero {
        padding-top: 24px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-copy {
        padding-bottom: 90px;
    }

    .hero-visual {
        min-height: 140px;
        top: auto;
        bottom: 0;
        order: 2;
    }

    .hero-actions {
        gap: 10px;
    }

    .split-section,
    .story {
        grid-template-columns: 1fr;
    }

    .split-media,
    .story-media {
        min-height: 360px;
    }

    .split-content,
    .story-copy {
        padding: 52px 22px;
    }

    .story-media {
        order: -1;
    }

    .applications-grid {
        grid-template-columns: 1fr 1fr;
    }

    .application-card {
        min-height: 400px;
    }

    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-item:nth-child(3),
    .quality-item:nth-child(5) {
        border-left: 0;
    }

    .quality-item:nth-child(4) {
        border-left: 1px solid rgba(255, 255, 255, .25);
    }

    .quality-item:nth-child(-n+4) {
        border-bottom: 1px solid rgba(255, 255, 255, .22);
    }

    .how {
        padding: 40px 0;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -32px;
        left: 29px;
        content: "↓";
        font-size: 16px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .faq-content {
        padding-bottom: 10px;
    }

    .faq-image {
        max-height: 270px;
    }

    .final-cta-grid {
        grid-template-columns: 1fr;
        padding-top: 52px;
    }

    .final-cta-image {
        margin-top: 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (max-width: 520px) {
    h1 {
        font-size: clamp(3rem, 18vw, 4.65rem);
    }

    h2 {
        font-size: 2.45rem;
    }

    .hero-visual {
        min-height: 190px;
        right: -26px;
        left: auto;
    }

    .hero-image {
        width: 112%;
        max-width: none;
        left: -6%;
    }

    .button {
        height: 44px;
        padding: 10px 17px;
        font-size: .7rem;
    }

    .applications {
        padding: 40px 0;
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .application-card {
        min-height: 0;
        padding-bottom: 20px;
    }

    .application-card .decor {
        display: none;
        height: 0;
    }

    .collection {
        padding-inline: 0;
    }

    .collection-image {
        width: 125%;
        max-width: none;
        margin-left: -12.5%;
    }

    .quality-item {
        min-height: 105px;
        padding-inline: 8px;
    }

    .quality-item strong {
        font-size: 1.6rem;
    }

    .recipes {
        padding: 40px 0;
    }

    .recipe-track {
        grid-auto-columns: minmax(55%, 1fr);
    }

    .section-heading-row {
        align-items: flex-end;
    }

    .carousel-button {
        width: 38px;
        height: 38px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-bg,
    .final-cta-bg {
        display: none;
    }

    .final-cta-grid > div {
        padding: 0 0 40px;
    }

    .final-cta h2 {
        max-width: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}