:root {
    color-scheme: light;
    --blush-50: #fff8f8;
    --blush-100: #fadcde;
    --blush-300: #f4bbc3;
    --blush-500: #f19da8;
    --blush-700: #963b4d;
    --cream: #fff8f0;
    --white: #ffffff;
    --chocolate: #3b221b;
    --chocolate-soft: #684940;
    --sage: #72806c;
    --border: rgb(59 34 27 / 14%);
    --shadow-sm: 0 .75rem 2rem rgb(59 34 27 / 8%);
    --shadow-lg: 0 1.75rem 4rem rgb(59 34 27 / 14%);
    --radius-sm: .9rem;
    --radius-md: 1.5rem;
    --radius-lg: 2.5rem;
    --radius-pill: 999px;
    --container: 74rem;
    --content: 44rem;
    --section-space: clamp(4.75rem, 9vw, 8.5rem);
    --font-display: Georgia, "Times New Roman", serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--chocolate);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: .08em;
    text-underline-offset: .2em;
}

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

:focus-visible {
    outline: .2rem solid var(--chocolate);
    outline-offset: .25rem;
}

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

h1,
h2,
h3 {
    text-wrap: balance;
}

h1,
h2 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.04;
}

h1 {
    max-width: 12ch;
    margin-bottom: 1.5rem;
    font-size: clamp(3.25rem, 7.2vw, 6.75rem);
}

h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
}

h3 {
    margin-bottom: .65rem;
    font-size: 1.25rem;
    line-height: 1.25;
}

.container {
    width: min(calc(100% - 2.5rem), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: var(--section-space);
}

.section--cream {
    background: var(--cream);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: .75rem;
    left: .75rem;
    padding: .75rem 1rem;
    border-radius: var(--radius-pill);
    background: var(--chocolate);
    color: var(--white);
    transform: translateY(-200%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    margin-bottom: .9rem;
    color: var(--blush-700);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.button {
    display: inline-flex;
    min-height: 3.35rem;
    align-items: center;
    justify-content: center;
    padding: .85rem 1.45rem;
    border: .1rem solid var(--blush-500);
    border-radius: var(--radius-pill);
    background: var(--blush-500);
    color: var(--chocolate);
    font-size: .92rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.button:hover {
    background: var(--blush-300);
    box-shadow: var(--shadow-sm);
    transform: translateY(-.12rem);
}

.button--ghost {
    border-color: var(--border);
    background: transparent;
}

.button--ghost:hover {
    background: var(--white);
}

.button--dark {
    border-color: var(--chocolate);
    background: var(--chocolate);
    color: var(--white);
}

.button--dark:hover {
    background: #25130e;
}

.button--small {
    min-height: 2.8rem;
    padding-inline: 1.1rem;
    font-size: .82rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--chocolate);
    font-weight: 800;
    text-decoration-color: var(--blush-500);
    transition: gap .2s ease;
}

.text-link:hover {
    gap: .85rem;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgb(59 34 27 / 8%);
    background: rgb(255 248 240 / 92%);
    backdrop-filter: blur(1rem);
}

.header-inner {
    display: grid;
    min-height: 5.25rem;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.brand-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--blush-700);
    line-height: 1;
    text-decoration: none;
}

.brand-script {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -.06em;
}

.brand-subtitle {
    margin-top: .15rem;
    font-family: var(--font-display);
    font-size: .65rem;
    font-style: italic;
    letter-spacing: .08em;
}

.site-nav {
    justify-self: center;
}

.nav-list,
.site-footer ul {
    display: flex;
    align-items: center;
    gap: clamp(.8rem, 2vw, 1.65rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list a {
    position: relative;
    padding-block: .6rem;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-list a::after {
    position: absolute;
    right: 0;
    bottom: .35rem;
    left: 0;
    height: .12rem;
    background: var(--blush-500);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
}

.nav-backdrop {
    display: none;
}

.hero {
    min-height: calc(100svh - 5.25rem);
    display: grid;
    align-items: center;
    overflow: hidden;
    padding-top: clamp(3.5rem, 7vw, 6.5rem);
    background:
        radial-gradient(circle at 12% 14%, rgb(241 157 168 / 18%), transparent 25rem),
        linear-gradient(145deg, var(--cream) 0%, var(--blush-50) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(20rem, .98fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 7rem);
}

.hero-intro {
    max-width: 38rem;
    margin-bottom: 2rem;
    color: var(--chocolate-soft);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.availability-note {
    display: flex;
    max-width: 34rem;
    align-items: flex-start;
    gap: .65rem;
    margin-top: 1.65rem;
    margin-bottom: 0;
    color: var(--chocolate-soft);
    font-size: .88rem;
}

.availability-note span {
    color: var(--blush-700);
}

.hero-art {
    position: relative;
    width: min(100%, 34rem);
    justify-self: end;
    isolation: isolate;
}

.hero-art img {
    position: relative;
    z-index: 2;
    width: 100%;
    border: .7rem solid rgb(255 255 255 / 72%);
    border-radius: 48% 52% 43% 57% / 42% 43% 57% 58%;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}

.hero-art-halo {
    position: absolute;
    z-index: 1;
    inset: -8% -6% 4% 8%;
    border: 1px solid var(--blush-500);
    border-radius: 60% 40% 55% 45% / 48% 55% 45% 52%;
    transform: rotate(-5deg);
}

.hero-badge {
    position: absolute;
    z-index: 3;
    right: -1rem;
    bottom: 6%;
    width: 6.5rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: .4rem solid var(--cream);
    border-radius: 50%;
    background: var(--chocolate);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.05;
    text-align: center;
    transform: rotate(8deg);
}

.spark {
    position: absolute;
    z-index: 4;
    color: var(--blush-700);
    font-size: 1.7rem;
}

.spark--one { top: 1%; left: -7%; }
.spark--two { top: 12%; right: -6%; font-size: 1rem; }

.hero-wave {
    position: absolute;
    right: -5%;
    bottom: -4.5rem;
    left: -5%;
    height: 7rem;
    border-radius: 50% 50% 0 0;
    background: var(--cream);
}

.section-heading {
    max-width: 48rem;
    margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.section-heading > p:last-child {
    max-width: 42rem;
    margin-bottom: 0;
    color: var(--chocolate-soft);
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center > p:last-child {
    margin-inline: auto;
}

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

.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 .3rem 0 rgb(59 34 27 / 3%);
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-.35rem);
}

.product-visual {
    position: relative;
    min-height: 13rem;
    overflow: hidden;
    background: var(--blush-100);
}

.product-visual::before,
.product-visual::after,
.product-visual span,
.product-visual i,
.product-visual b {
    position: absolute;
    display: block;
    content: "";
}

.product-visual::after {
    inset: 1rem;
    border: 1px solid rgb(59 34 27 / 13%);
    border-radius: 45% 55% 48% 52%;
}

.product-visual--cookie::before {
    width: 8.5rem;
    height: 8.5rem;
    top: 2rem;
    left: 50%;
    border-radius: 50%;
    background: #d99d72;
    box-shadow: inset -.8rem -1rem 0 rgb(110 63 44 / 15%);
    transform: translateX(-50%) rotate(-7deg);
}

.product-visual--cookie span,
.product-visual--cookie i,
.product-visual--cookie b {
    z-index: 2;
    width: .85rem;
    height: .85rem;
    border-radius: 45%;
    background: var(--chocolate);
}

.product-visual--cookie span { top: 4.3rem; left: 43%; }
.product-visual--cookie i { top: 6.5rem; left: 55%; }
.product-visual--cookie b { top: 8.4rem; left: 42%; }

.product-visual--brownie::before {
    width: 8.5rem;
    height: 6.5rem;
    top: 3.25rem;
    left: 50%;
    border-radius: .8rem;
    background: #643a2c;
    box-shadow: .6rem .7rem 0 #3b221b;
    transform: translateX(-50%) rotate(4deg);
}

.product-visual--brownie span {
    z-index: 2;
    width: 6rem;
    height: .65rem;
    top: 4.6rem;
    left: 50%;
    border-radius: 50%;
    background: #f4bbc3;
    transform: translateX(-50%) rotate(4deg);
}

.product-visual--celebration::before {
    width: 8.5rem;
    height: 4.8rem;
    top: 5.2rem;
    left: 50%;
    border-radius: 1rem 1rem .6rem .6rem;
    background: #fff6e8;
    box-shadow: 0 .75rem 0 var(--blush-500);
    transform: translateX(-50%);
}

.product-visual--celebration span,
.product-visual--celebration i,
.product-visual--celebration b {
    z-index: 2;
    width: .28rem;
    height: 2.2rem;
    top: 2.8rem;
    background: var(--chocolate);
}

.product-visual--celebration span { left: 40%; }
.product-visual--celebration i { left: 50%; background: var(--blush-700); }
.product-visual--celebration b { left: 60%; }

.product-visual--special::before {
    width: 7.5rem;
    height: 7.5rem;
    top: 2.6rem;
    left: 50%;
    border: .8rem solid var(--blush-500);
    border-radius: 50% 43% 52% 45%;
    background: #fff6e8;
    transform: translateX(-50%) rotate(12deg);
}

.product-visual--special span {
    z-index: 2;
    width: 3rem;
    height: 1.5rem;
    top: 5.2rem;
    left: 50%;
    border-radius: 50%;
    background: var(--chocolate);
    transform: translateX(-50%) rotate(-12deg);
}

.product-card-copy {
    min-height: 13rem;
    padding: 1.65rem;
}

.product-card-copy p {
    margin-bottom: 0;
    color: var(--chocolate-soft);
    font-size: .92rem;
}

.product-description {
    margin-top: .8rem;
    color: var(--chocolate-soft);
    font-size: .88rem;
}

.product-description p {
    margin-bottom: .55rem;
}

.centered-cta {
    margin-top: 2.25rem;
    text-align: center;
}

.centered-cta p {
    margin-bottom: .35rem;
    color: var(--chocolate-soft);
}

.about {
    overflow: hidden;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(18rem, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(3rem, 9vw, 8rem);
}

.about-art {
    position: relative;
    width: min(100%, 30rem);
}

.about-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: .7rem solid rgb(255 255 255 / 72%);
    border-radius: 48% 52% 42% 58% / 35% 40% 60% 65%;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
}

.about-card {
    min-height: 35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    border-radius: 48% 52% 42% 58% / 35% 40% 60% 65%;
    background:
        radial-gradient(circle at 50% 35%, rgb(255 255 255 / 75%), transparent 10rem),
        var(--blush-100);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: rotate(-2deg);
}

.about-initial {
    font-family: var(--font-display);
    font-size: 11rem;
    font-style: italic;
    line-height: .8;
    color: var(--blush-500);
}

.about-card p {
    max-width: 15rem;
    margin: 2rem 0 0;
    color: var(--chocolate-soft);
    font-size: .85rem;
}

.about-seal {
    position: absolute;
    right: -2rem;
    bottom: 2rem;
    width: 8rem;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background: var(--chocolate);
    color: var(--white);
    font-size: .7rem;
    letter-spacing: .07em;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(8deg);
}

.about-seal strong {
    color: var(--blush-300);
}

.about-copy {
    max-width: 37rem;
}

.about-copy > p:not(.eyebrow) {
    color: var(--chocolate-soft);
    font-size: 1.05rem;
}

.ambience img {
    width: 100%;
    max-height: 42rem;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.values {
    background: var(--blush-100);
}

.values .section-heading {
    max-width: 40rem;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.values-list li {
    display: grid;
    min-height: 11rem;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1.4rem;
    padding: 1.75rem;
    border: 1px solid rgb(59 34 27 / 12%);
    border-radius: var(--radius-md);
    background: rgb(255 255 255 / 50%);
}

.value-number {
    display: grid;
    width: 3rem;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: var(--chocolate);
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
}

.values-list p {
    margin-bottom: 0;
    color: var(--chocolate-soft);
}

.contact {
    background: var(--cream);
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    padding: clamp(2rem, 6vw, 5rem);
    border-radius: var(--radius-lg);
    background: var(--blush-500);
    box-shadow: var(--shadow-lg);
}

.contact-copy h2 {
    max-width: 13ch;
}

.contact .eyebrow {
    color: var(--chocolate);
}

.contact-copy > p:not(.eyebrow, .contact-note) {
    max-width: 39rem;
    font-size: 1.05rem;
}

.contact-note {
    max-width: 32rem;
    margin: 1rem 0 0;
    color: #58382f;
    font-size: .8rem;
}

.contact-details {
    display: grid;
    align-content: center;
    gap: 1rem;
}

.contact-details > div {
    padding: 1.2rem 1.3rem;
    border: 1px solid rgb(59 34 27 / 13%);
    border-radius: var(--radius-sm);
    background: rgb(255 255 255 / 48%);
}

.contact-details span {
    display: block;
    margin-bottom: .25rem;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
    overflow-wrap: anywhere;
    font-size: .95rem;
}

.contact-details p {
    margin-bottom: 0;
    color: #58382f;
    font-size: .82rem;
    line-height: 1.5;
}

.site-footer {
    padding-top: 4.5rem;
    background: var(--chocolate);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand {
    color: var(--blush-300);
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 700;
}

.footer-grid p,
.footer-contact span {
    color: rgb(255 255 255 / 67%);
    font-size: .85rem;
}

.site-footer ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: .45rem 2rem;
}

.site-footer li,
.site-footer a {
    font-size: .83rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .35rem;
    text-align: right;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3.5rem;
    padding-block: 1.3rem;
    border-top: 1px solid rgb(255 255 255 / 14%);
    color: rgb(255 255 255 / 55%);
    font-size: .73rem;
}

@media (max-width: 64rem) {
    .header-cta {
        display: none;
    }

    .header-inner {
        grid-template-columns: auto 1fr;
    }

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

    .product-card-copy {
        min-height: 10rem;
    }
}

@media (max-width: 48rem) {
    html {
        scroll-padding-top: 4.8rem;
    }

    .container {
        width: min(calc(100% - 1.5rem), var(--container));
    }

    .header-inner {
        min-height: 4.8rem;
    }

    .js .nav-toggle {
        display: inline-flex;
        min-width: 4.75rem;
        min-height: 2.9rem;
        align-items: center;
        justify-content: center;
        justify-self: end;
        gap: .55rem;
        border: 1px solid var(--border);
        border-radius: var(--radius-pill);
        background: transparent;
        color: var(--chocolate);
        font: inherit;
        font-size: .76rem;
        font-weight: 800;
        cursor: pointer;
    }

    .nav-toggle-icon {
        display: grid;
        gap: .28rem;
    }

    .nav-toggle-icon span {
        display: block;
        width: 1.05rem;
        height: .1rem;
        border-radius: var(--radius-pill);
        background: currentColor;
        transition: transform .2s ease;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:first-child {
        transform: translateY(.19rem) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:last-child {
        transform: translateY(-.19rem) rotate(-45deg);
    }

    .site-nav {
        grid-column: 1 / -1;
        justify-self: stretch;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 1rem;
    }

    .js .site-nav {
        position: fixed;
        z-index: 52;
        top: 4.8rem;
        right: .75rem;
        left: .75rem;
        display: none;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        background: var(--cream);
        box-shadow: var(--shadow-lg);
    }

    .js .site-nav.is-open {
        display: block;
    }

    .js .nav-list {
        display: grid;
        gap: .25rem;
        padding: 0;
    }

    .js .nav-list a {
        display: block;
        min-height: 3rem;
        padding: .65rem .8rem;
        border-radius: .7rem;
    }

    .js .nav-list a:hover,
    .js .nav-list a:focus-visible {
        background: var(--blush-100);
    }

    .js .nav-list a::after {
        display: none;
    }

    .js .nav-backdrop:not([hidden]) {
        position: fixed;
        z-index: 49;
        inset: 4.8rem 0 0;
        display: block;
        background: rgb(59 34 27 / 28%);
        backdrop-filter: blur(.2rem);
    }

    .hero {
        min-height: auto;
        padding-top: 3.5rem;
    }

    .hero-grid,
    .about-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

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

    .hero-art {
        width: min(91%, 30rem);
        margin-top: 1rem;
        justify-self: center;
    }

    .hero-badge {
        right: -1.25rem;
    }

    .about-art {
        width: min(88%, 27rem);
        margin-inline: auto;
    }

    .about-copy {
        order: -1;
    }

    .contact-card {
        gap: 2.5rem;
    }

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

    .footer-contact {
        grid-column: 1 / -1;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 36rem) {
    :root {
        --section-space: 4.25rem;
    }

    h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    h2 {
        font-size: clamp(2.3rem, 11vw, 3.4rem);
    }

    .brand-script {
        font-size: 1.7rem;
    }

    .button-row,
    .button-row .button {
        width: 100%;
    }

    .hero-art {
        width: 88%;
    }

    .hero-badge {
        width: 5.7rem;
        right: -1.5rem;
        border-width: .3rem;
        font-size: .88rem;
    }

    .product-grid,
    .values-list {
        grid-template-columns: 1fr;
    }

    .product-visual {
        min-height: 12rem;
    }

    .product-card-copy {
        min-height: auto;
    }

    .about-card {
        min-height: 27rem;
        padding: 2rem;
    }

    .about-initial {
        font-size: 8rem;
    }

    .about-seal {
        right: -1rem;
        width: 6.7rem;
    }

    .contact-card {
        width: min(calc(100% - 1rem), var(--container));
        padding: 2rem 1.25rem;
        border-radius: 1.8rem;
    }

    .site-footer ul,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

@media (forced-colors: active) {
    .button,
    .product-card,
    .values-list li,
    .contact-card {
        border: 2px solid CanvasText;
    }
}
