@font-face {
    font-family: "Beth Ellen";
    src: url("../fonts/BethEllen-Regular.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

:root {
    --cream: #fffaf5;
    --pink: #ffadb5;
    --pink-soft: #ffe1e2;
    --pink-stripe: #ffd7da;
    --charcoal: #4a4848;
    --line: rgba(255, 173, 181, 0.8);
}

html {
    background: var(--cream);
    scroll-behavior: smooth;
}

body {
    animation: page-fade-in 300ms cubic-bezier(0.22, 1, 0.36, 1);
    background: var(--cream);
    color: var(--charcoal);
    font-family: "Beth Ellen", cursive;
    line-height: 1.85;
    overflow-x: hidden;
    transition: opacity 160ms ease-in;
}

html.is-leaving body {
    animation: none;
    opacity: 0;
    pointer-events: none;
}

@keyframes page-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

a {
    color: inherit;
}

.site-navigation {
    left: 1.25rem;
    position: fixed;
    top: 1.25rem;
    z-index: 1100;
}

.site-navigation__toggle {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 46px;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 46px;
    z-index: 2;
}

.site-navigation__toggle:hover,
.site-navigation__toggle:focus,
.site-navigation__toggle:focus-visible,
.site-navigation__toggle:active {
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    outline: 0;
}

.site-navigation__toggle-line {
    background: var(--pink);
    border-radius: 999px;
    height: 3px;
    opacity: 1;
    transition: transform 160ms ease;
    width: 28px;
}

.site-navigation.is-on-dark-background:not(.is-open) .site-navigation__toggle-line {
    background: #fff;
}

.site-navigation__toggle[aria-expanded="true"] .site-navigation__toggle-line:first-child {
    transform: translateY(9px) rotate(45deg);
}

.site-navigation__toggle[aria-expanded="true"] .site-navigation__toggle-line:nth-child(2) {
    opacity: 0;
}

.site-navigation__toggle[aria-expanded="true"] .site-navigation__toggle-line:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

.site-navigation__menu {
    background: var(--cream);
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 48px,
        rgba(255, 225, 226, 0.45) 48px,
        rgba(255, 225, 226, 0.45) 96px
    );
    display: grid;
    inset: 0;
    min-height: 100dvh;
    overflow-y: auto;
    padding: clamp(5rem, 10vh, 8rem) 1.5rem 3rem;
    place-items: center;
    position: fixed;
    width: 100%;
    z-index: 1;
}

.site-navigation__menu-inner {
    text-align: center;
}

.site-navigation.is-open .site-navigation__menu {
    animation: navigation-menu-in 240ms ease-out both;
}

.site-navigation.is-open .site-navigation__menu-inner {
    animation: navigation-menu-content-in 320ms cubic-bezier(0.22, 1, 0.36, 1) 35ms both;
}

@keyframes navigation-menu-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes navigation-menu-content-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.site-navigation__bow {
    height: auto;
    margin-bottom: clamp(1.5rem, 4vh, 3rem);
    width: clamp(70px, 9vw, 105px);
}

.site-navigation__links a {
    -webkit-tap-highlight-color: transparent;
    color: var(--pink);
    display: block;
    font-size: clamp(1.35rem, 3.5vw, 2.35rem);
    line-height: 1.5;
    padding: clamp(0.3rem, 1vh, 0.7rem) 1rem;
    text-decoration: none;
}

.site-navigation__links a:hover,
.site-navigation__links a:focus,
.site-navigation__links a:focus-visible,
.site-navigation__links a:active,
.site-navigation__links a[aria-current="page"] {
    border: 0;
    box-shadow: none;
    color: var(--pink);
    outline: 0;
    transform: none;
}

body.navigation-open {
    overflow: hidden;
}

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

.section-striped {
    background-color: var(--cream);
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 48px,
        rgba(255, 225, 226, 0.45) 48px,
        rgba(255, 225, 226, 0.45) 96px
    );
}

.content-header {
    align-items: center;
    display: flex;
    min-height: 145px;
    padding: 1.5rem 1rem;
}

.content-header__home-link {
    color: var(--pink);
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}

.content-header__home-link:hover,
.content-header__home-link:focus-visible {
    color: var(--pink);
}

.content-header__home-link:focus-visible {
    border-radius: 4px;
    outline: 2px solid currentColor;
    outline-offset: 0.5rem;
}

.content-header__logo {
    font-size: clamp(1.9rem, 3.2vw, 3.1rem);
}

.brand-header {
    align-items: center;
    display: flex;
    min-height: 145px;
    padding: 1.5rem 1rem;
}

.brand-header__bow {
    display: none;
}

.site-announcement {
    background: var(--pink);
    color: #fff;
    height: 36px;
    margin: 0;
    overflow: hidden;
}

.site-announcement__viewport {
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.site-announcement__track {
    align-items: center;
    display: flex;
    height: 100%;
    min-width: max-content;
    width: max-content;
    will-change: transform;
}

.site-announcement__track.is-ready {
    animation: site-announcement-marquee var(--site-announcement-duration, 24s) linear infinite;
}

.site-announcement__group {
    align-items: center;
    display: flex;
    flex: none;
    height: 100%;
}

.site-announcement__item {
    align-items: center;
    display: inline-flex;
    flex: none;
    font-size: clamp(0.72rem, 1vw, 0.95rem);
    gap: 1.15rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    padding-right: 1.15rem;
    white-space: nowrap;
}

.site-announcement__separator {
    line-height: 1;
}

@keyframes site-announcement-marquee {
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-announcement__track.is-ready {
        animation: none;
    }
}

.brand-header .content-header__logo {
    font-size: clamp(1.9rem, 3.2vw, 3.1rem);
    margin: 0;
}

.intro-section {
    padding-bottom: 0;
}

.intro-copy {
    color: var(--pink);
    max-width: 1000px;
    padding-bottom: 6rem;
    padding-top: 6rem;
    text-align: center;
}

.intro-copy p {
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    line-height: 2;
    margin: 0 auto 2rem;
}

.intro-copy p:last-child {
    margin-bottom: 0;
}

.intro-photo {
    display: none;
}

.intro-header-photo {
    background-image: url("../images/photos/pretty-bakery-cookie-mobile.jpg");
}

.homepage-intro-grid,
.homepage-quote,
.parallax-photo {
    display: none;
}

.display-title {
    color: var(--pink);
    font-size: clamp(2.25rem, 4.5vw, 4.75rem);
    line-height: 1.25;
    margin: 0 0 1.25rem;
    transform: rotate(-2deg);
}

.display-title-sm {
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.logo-curve {
    line-height: 1;
    margin-bottom: 0.35rem;
    transform: none;
}

.logo-curve__letters {
    align-items: flex-start;
    display: inline-flex;
    padding: 0 0.2em 0.75em;
    white-space: nowrap;
}

.logo-letter {
    display: block;
    margin-inline: -0.035em;
    transform-origin: center bottom;
}

.logo-space {
    display: block;
    flex: 0 0 0.32em;
}

.logo-letter:nth-child(1) { transform: translateY(0.56em) rotate(-22deg); }
.logo-letter:nth-child(2) { transform: translateY(0.37em) rotate(-17deg); }
.logo-letter:nth-child(3) { transform: translateY(0.22em) rotate(-12deg); }
.logo-letter:nth-child(4) { transform: translateY(0.11em) rotate(-8deg); }
.logo-letter:nth-child(5) { transform: translateY(0.04em) rotate(-4deg); }
.logo-letter:nth-child(6) { transform: translateY(0) rotate(-1deg); }
.logo-letter:nth-child(8) { transform: translateY(0) rotate(1deg); }
.logo-letter:nth-child(9) { transform: translateY(0.04em) rotate(4deg); }
.logo-letter:nth-child(10) { transform: translateY(0.11em) rotate(8deg); }
.logo-letter:nth-child(11) { transform: translateY(0.22em) rotate(12deg); }
.logo-letter:nth-child(12) { transform: translateY(0.37em) rotate(17deg); }
.logo-letter:nth-child(13) { transform: translateY(0.56em) rotate(22deg); }

.curved-heading {
    font-size: clamp(1.35rem, 4.8vw, 3.8rem);
    line-height: 1;
    transform: none;
}

.curved-heading__letters {
    align-items: flex-start;
    display: inline-flex;
    padding: 0 0.12em 0.6em;
    white-space: nowrap;
}

.curved-heading__letter,
.curved-heading__space {
    display: block;
    transform: translateY(var(--curve-y, 0)) rotate(var(--curve-r, 0deg));
    transform-origin: center bottom;
}

.curved-heading__letter {
    margin-inline: -0.035em;
}

.curved-heading__space {
    flex: 0 0 0.3em;
}

.curve-pos-1 { --curve-y: 0.48em; --curve-r: -18deg; }
.curve-pos-2 { --curve-y: 0.34em; --curve-r: -15deg; }
.curve-pos-3 { --curve-y: 0.23em; --curve-r: -12deg; }
.curve-pos-4 { --curve-y: 0.14em; --curve-r: -9deg; }
.curve-pos-5 { --curve-y: 0.08em; --curve-r: -7deg; }
.curve-pos-6 { --curve-y: 0.03em; --curve-r: -4deg; }
.curve-pos-7 { --curve-y: 0.01em; --curve-r: -2deg; }
.curve-pos-8 { --curve-y: 0; --curve-r: -1deg; }
.curve-pos-9 { --curve-y: 0; --curve-r: 1deg; }
.curve-pos-10 { --curve-y: 0.01em; --curve-r: 2deg; }
.curve-pos-11 { --curve-y: 0.03em; --curve-r: 4deg; }
.curve-pos-12 { --curve-y: 0.08em; --curve-r: 7deg; }
.curve-pos-13 { --curve-y: 0.14em; --curve-r: 9deg; }
.curve-pos-14 { --curve-y: 0.23em; --curve-r: 12deg; }
.curve-pos-15 { --curve-y: 0.34em; --curve-r: 15deg; }
.curve-pos-16 { --curve-y: 0.48em; --curve-r: 18deg; }

.section-title {
    color: var(--pink);
    font-size: clamp(1.75rem, 3.2vw, 2.8rem);
    line-height: 1.25;
    margin-bottom: 2.4rem;
    text-align: center;
}

.menu-container {
    padding: 5.5rem 1rem 4.5rem;
}

.arched-panel {
    background: var(--cream);
    border-radius: 48% 48% 12px 12px / 180px 180px 12px 12px;
    container-type: inline-size;
    isolation: isolate;
    position: relative;
}

.arched-panel::before {
    border: 1.5px solid var(--line);
    border-radius: inherit;
    content: "";
    inset: 10px;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.menu-card {
    max-width: 740px;
    padding: 7rem clamp(2rem, 6vw, 5.5rem) 3.5rem;
}

.menu-list {
    margin: 0 auto 1.75rem;
    max-width: 550px;
}

.menu-item {
    align-items: center;
    display: grid;
    font-size: 1.05rem;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0.65rem 0;
}

.menu-item h2,
.menu-item h3 {
    color: var(--pink);
    font-size: 1.25rem;
    margin: 0;
}

.menu-item p {
    font-size: 0.88rem;
    margin: 0.1rem 0 0;
}

.menu-item > span {
    white-space: nowrap;
}

.menu-mobile-break {
    display: none;
}

.menu-note {
    color: var(--pink);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 1.75rem 0 0;
    text-align: center;
}

.text-link {
    display: table;
    font-size: 1.2rem;
    margin: 1.5rem auto 0;
    text-decoration-color: transparent;
    text-underline-offset: 0.35rem;
    transition: color 180ms ease, text-decoration-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--pink);
    text-decoration-color: currentColor;
}

.text-link-pink {
    color: var(--pink);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 2;
    margin-top: 3rem;
}

.stall-more-link {
    color: var(--charcoal);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.bow {
    display: inline-block;
    height: auto;
    position: relative;
    user-select: none;
}

.bow-small {
    width: clamp(44px, 4vw, 60px);
}

.bow-tail {
    width: clamp(65px, 6vw, 90px);
}

.bow-top {
    left: 50%;
    position: absolute;
    top: -108px;
    transform: translateX(-50%);
    z-index: 3;
}

.ribbon-piece {
    height: auto;
    pointer-events: none;
    position: absolute;
    user-select: none;
    z-index: 1;
}

.ribbon-piece-top-left {
    left: -4.5cqw;
    top: -2.8cqw;
    width: 54%;
}

.ribbon-piece-top-right {
    right: -4.5cqw;
    top: -2.8cqw;
    width: 55.5%;
}

.ribbon-piece-bottom-left {
    bottom: -9.5cqw;
    left: -9.6cqw;
    width: 49%;
}

.ribbon-piece-bottom-right {
    bottom: -10.5cqw;
    right: -10.2cqw;
    width: 50.5%;
}

.menu-card .section-title,
.menu-card .menu-list,
.menu-card .menu-note,
.menu-card .text-link,
.contact-card .section-title,
.contact-card .form-intro,
.contact-card form {
    position: relative;
    z-index: 2;
}

.section-copy {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 760px;
    padding: 5rem 1rem;
}

.section-copy > p {
    color: var(--pink);
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    line-height: 2;
    margin: 3rem auto 0;
    max-width: 960px;
}

.striped-band {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 285px;
    padding: 3.75rem 1rem 2.25rem;
    position: relative;
}

.striped-band > .bow {
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%, -17.5%);
    z-index: 2;
}

.striped-band p {
    color: var(--pink);
    font-size: clamp(1.6rem, 3.2vw, 3rem);
    margin: 1.5rem 0 0;
}

.photo-collage {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    max-width: none;
    padding: 0;
    position: relative;
}

.photo-collage__bow {
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%, -17.5%);
    z-index: 2;
}

.photo-collage__item {
    aspect-ratio: 9 / 16;
    background-image: url("../images/photos/pretty-bakery-collage-mobile.jpg");
    background-repeat: no-repeat;
    background-size: 200% 200%;
}

.photo-collage--individual .photo-collage__item {
    background-position: center;
    background-size: cover;
}

.photo-collage__mobile-image {
    display: none;
}

.terms-mobile-photo {
    display: none;
}

.photo-collage--baking .photo-collage__item {
    background-image: url("../images/photos/pretty-bakery-baking-collage.jpg");
}

.photo-collage--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 960px;
}

.photo-collage.photo-collage--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
}

.photo-collage__item--cake {
    background-position: left top;
}

.photo-collage__item--cookies {
    background-position: right top;
}

.photo-collage__item--seventy {
    background-position: left bottom;
}

.photo-collage__item--gift-box {
    background-position: right bottom;
}

.contact-intro .section-copy {
    min-height: 800px;
}

.contact-intro .section-copy > p {
    font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.contact-container {
    padding: 6.5rem 1rem;
}

.contact-card {
    max-width: 800px;
    padding: 7.5rem clamp(2rem, 6vw, 5rem) 4rem;
}

.form-intro {
    color: var(--pink);
    font-size: 1.1rem;
    margin: -1.5rem 0 2.25rem;
    text-align: center;
}

.form-errors {
    background: rgba(255, 173, 181, 0.12);
    border: 1px solid rgba(255, 173, 181, 0.65);
    color: #7a4f53;
    font-family: system-ui, sans-serif;
    margin: 0 0 2rem;
    padding: 1rem 1.25rem;
    position: relative;
    z-index: 2;
}

.form-errors p {
    font-weight: 600;
    margin: 0 0 0.4rem;
}

.form-errors ul {
    margin: 0;
    padding-left: 1.25rem;
}

.contact-verification {
    margin-block: .5rem;
}

.contact-verification .contact-verification__status {
    margin: .8rem 0 0;
    font-size: .95rem;
}

.form-honeypot {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

.form-label {
    color: var(--charcoal);
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 173, 181, 0.62);
    border-radius: 3px;
    color: var(--charcoal);
    font-family: system-ui, sans-serif;
    min-height: 3.4rem;
    padding: 0.85rem 1rem;
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--pink);
    box-shadow: 0 0 0 0.25rem rgba(255, 173, 181, 0.23);
}

textarea.form-control {
    min-height: 170px;
    resize: vertical;
}

.bakery-button {
    background: transparent;
    border: 0;
    color: var(--charcoal);
    font-family: "Beth Ellen", cursive;
    font-size: 1.3rem;
    padding: 1.25rem 2rem 0.5rem;
}

.bakery-button:hover,
.bakery-button:focus-visible {
    color: var(--pink);
}

.bakery-button:disabled {
    color: var(--charcoal);
    opacity: 0.65;
}

.bakery-button__loading {
    align-items: center;
    display: none;
    gap: 0.65rem;
}

.bakery-button.is-loading .bakery-button__label {
    display: none;
}

.bakery-button.is-loading .bakery-button__loading {
    display: inline-flex;
}

.bakery-button__spinner {
    animation: bakery-button-spin 800ms linear infinite;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-right-color: transparent;
    height: 0.9em;
    width: 0.9em;
}

@keyframes bakery-button-spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-success {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 480px;
    padding: 3rem 1rem;
    position: relative;
    text-align: center;
    z-index: 2;
}

.contact-success h3 {
    color: var(--pink);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.5;
    margin: 0 0 1.25rem;
}

.contact-success p {
    color: var(--charcoal);
    font-size: 1rem;
    margin: 0;
}

.photos-section {
    padding: 0;
}

.photo-duo-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: clamp(540px, 44vw, 680px);
}

.photo-duo__item {
    min-width: 0;
    overflow: hidden;
}

.photo-duo__image {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.photo-duo__image--cupcakes {
    object-position: center 72%;
}

.photo-duo__image--number-cake,
.photo-duo__image--number-ten {
    object-position: center 58%;
}

.photo-duo__image--cookies {
    object-position: center 60%;
}

.photo-duo__image--packaged-cookie {
    object-position: center 48%;
}

.site-footer {
    display: flex;
    min-height: 420px;
    padding: 4.5rem 1rem 1.5rem;
    position: relative;
}

.site-footer > .container {
    display: flex;
    flex-direction: column;
}

.site-footer .bow {
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%, -17.5%);
    z-index: 2;
}

.site-footer h2 {
    color: var(--pink);
    font-size: clamp(1.9rem, 3.2vw, 3.1rem);
    margin: 3rem 0 1rem;
}

.site-footer .footer-logo {
    line-height: 1;
}

.site-footer address {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.site-footer .footer-email {
    color: inherit;
    font-size: 1rem;
    text-decoration-color: transparent;
    text-underline-offset: 0.25rem;
    transition: text-decoration-color 160ms ease;
}

.site-footer .footer-email:hover,
.site-footer .footer-email:focus-visible {
    text-decoration-color: currentColor;
}

.site-footer .footer-meta {
    align-items: center;
    color: var(--pink);
    display: flex;
    font-size: 0.9rem;
    gap: 0.6rem;
    justify-content: center;
    margin: auto 0 0;
    padding-top: 2.5rem;
}

.site-footer .footer-meta a {
    color: inherit;
    text-decoration-color: transparent;
    text-underline-offset: 0.25rem;
    transition: text-decoration-color 160ms ease;
}

.site-footer .footer-meta a:hover,
.site-footer .footer-meta a:focus-visible {
    text-decoration-color: currentColor;
}

@media (min-width: 768px) {
    .site-navigation__bow {
        margin-bottom: 1.25rem;
        width: 64px;
    }

    .site-navigation__links a {
        font-size: 1.65rem;
        line-height: 1.45;
        padding-block: 0.2rem;
    }

    .homepage .site-navigation,
    .inner-page .site-navigation {
        left: calc(50% - 23px);
        position: absolute;
        top: 234px;
    }

    .homepage .site-navigation.is-open,
    .inner-page .site-navigation.is-open {
        left: auto;
        position: fixed;
        right: 2rem;
        top: 2rem;
    }

    .homepage .brand-header,
    .inner-page .content-header--desktop-brand {
        min-height: 280px;
        padding: 4.75rem 1rem 3.25rem;
        position: relative;
    }

    .homepage .brand-header__bow,
    .inner-page .brand-header__bow {
        display: block;
        height: 102px;
        left: 50%;
        object-fit: contain;
        object-position: top;
        position: absolute;
        top: -19px;
        transform: translateX(-50%);
        width: 70px;
    }

    .homepage .brand-header .content-header__logo,
    .inner-page .content-header--desktop-brand .content-header__logo {
        font-size: clamp(2rem, 3.25vw, 3.15rem);
    }

    .homepage-intro-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: clamp(610px, 56vw, 840px);
    }

    .homepage-intro-photo {
        background-image: url("../images/photos/pretty-bakery-cookie-mobile.jpg");
        background-position: center 48%;
        background-repeat: no-repeat;
        background-size: cover;
        min-width: 0;
    }

    .homepage-intro-copy {
        align-items: center;
        color: var(--pink);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: clamp(4rem, 8vw, 8rem);
    }

    .homepage-intro-copy h2 {
        font-size: clamp(1.2rem, 2vw, 1.75rem);
        line-height: 1.5;
        margin: 0 0 clamp(2.5rem, 5vw, 4.5rem);
    }

    .homepage-intro-copy p {
        font-size: clamp(1.05rem, 1.6vw, 1.45rem);
        line-height: 2;
        margin: 0;
        max-width: 650px;
    }

    .homepage-intro-copy__mobile-only {
        display: none;
    }

    .homepage-quote {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: clamp(340px, 33vw, 495px);
        padding: 3rem 1.5rem 2.5rem;
    }

    .homepage-quote__curve {
        display: block;
        height: auto;
        max-width: 900px;
        overflow: visible;
        width: min(70vw, 900px);
    }

    .homepage-quote__curve text {
        fill: var(--pink);
        font-family: "Beth Ellen", cursive;
        font-size: 50px;
    }

    .homepage-quote .bow {
        margin-top: -0.75rem;
    }

    .photo-collage--homepage-showcase .photo-collage__item {
        aspect-ratio: auto;
        background-position: center;
        background-size: cover;
        height: clamp(400px, 38vw, 570px);
    }

    .photo-collage--homepage-showcase .photo-collage__item--cake {
        background-image: url("../images/photos/pretty-bakery-home-showcase-cake.webp");
    }

    .photo-collage--homepage-showcase .photo-collage__item--cookies {
        background-image: url("../images/photos/pretty-bakery-home-showcase-cookies.webp");
    }

    .photo-collage--homepage-showcase .photo-collage__item--seventy {
        background-image: url("../images/photos/pretty-bakery-home-showcase-number-ten.webp");
    }

    .photo-collage--homepage-showcase .photo-collage__item--gift-box {
        background-image: url("../images/photos/pretty-bakery-home-showcase-gift-box.webp");
    }

    .homepage .stall-section .section-copy {
        min-height: clamp(650px, 58vw, 870px);
    }

    .homepage .stall-section .section-copy > p {
        font-size: clamp(1.05rem, 1.6vw, 1.45rem);
        max-width: 790px;
    }

    .parallax-photo {
        display: block;
        height: clamp(560px, 52vw, 760px);
        overflow: hidden;
    }

    .parallax-photo__picture {
        display: block;
        height: 100%;
        width: 100%;
    }

    .parallax-photo__image {
        display: block;
        height: calc(100% + 260px);
        object-fit: cover;
        object-position: center 49%;
        position: relative;
        top: -130px;
        transform: translate3d(0, var(--parallax-photo-shift, 0), 0);
        will-change: transform;
        width: 100%;
    }

    .parallax-photo__image.photo-duo__image--cupcakes {
        object-position: center 72%;
    }

    .parallax-photo__image.photo-duo__image--number-ten {
        object-position: center 58%;
    }

    .parallax-photo__image.photo-duo__image--cookies {
        object-position: center 60%;
    }

    .site-footer {
        min-height: 450px;
    }

    .site-footer .bow {
        width: 70px;
    }
}

.terms-intro {
    padding: clamp(8rem, 13vw, 11rem) 1.5rem clamp(7rem, 10vw, 9rem);
}

.terms-intro h1 {
    color: var(--pink);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    line-height: 1.35;
    margin: 0;
}

.terms-content {
    overflow-x: clip;
}

.terms-container {
    padding: 5.5rem 1.5rem clamp(8rem, 11vw, 11rem);
}

.terms-article {
    background: #fff;
    margin: 0 auto;
    max-width: 920px;
    padding: clamp(7rem, 10vw, 9rem) clamp(2.5rem, 7vw, 6rem) clamp(4.5rem, 7vw, 6.5rem);
}

.terms-article > section {
    position: relative;
    z-index: 2;
}

.terms-article > section + section {
    margin-top: clamp(3.5rem, 6vw, 5.5rem);
}

.terms-article h2 {
    color: var(--pink);
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    line-height: 1.55;
    margin: 0 0 1.75rem;
}

.terms-article p {
    font-size: 1rem;
    line-height: 1.95;
    margin: 0;
}

.terms-article p + p {
    margin-top: 1.25rem;
}

.terms-article strong,
.terms-number {
    color: var(--pink);
    font-weight: 400;
}

.terms-highlight {
    margin-top: 2rem !important;
}

.order-intro {
    padding: clamp(5.5rem, 9vw, 8.5rem) 1.5rem;
}

.order-intro-copy {
    color: var(--pink);
    max-width: 980px;
    text-align: center;
}

.order-intro-copy p {
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    line-height: 2;
    margin: 0 auto 2.25rem;
    max-width: 920px;
}

.order-intro-copy p:last-child {
    margin-bottom: 0;
}

.order-details-container {
    padding: 5.5rem 1rem clamp(7rem, 10vw, 10rem);
}

.order-details {
    overflow-x: clip;
    overflow-y: visible;
}

.order-content-card {
    background: #fff;
    max-width: 800px;
    padding: clamp(6rem, 9vw, 8rem) clamp(2rem, 8vw, 7rem) clamp(4rem, 7vw, 6rem);
}

.order-information,
.order-form,
.order-content-card .contact-success {
    position: relative;
    z-index: 2;
}

.order-information {
    margin: 0 auto;
    max-width: 760px;
    text-align: center;
}

.order-information h2,
.order-form .section-title {
    color: var(--pink);
    font-size: clamp(1.35rem, 2.3vw, 1.85rem);
    line-height: 1.5;
    margin: 0 0 1.5rem;
}

.order-information h3 {
    color: var(--pink);
    font-size: 1.1rem;
    margin: 2rem 0 1rem;
}

.order-information p {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.9;
    margin: 0;
}

.order-information p + p {
    margin-top: 1.25rem;
}

.crossed-seven {
    display: inline-block;
    line-height: 1;
    position: relative;
}

.crossed-seven::after {
    background: currentColor;
    border-radius: 999px;
    content: "";
    height: 0.08em;
    left: 8%;
    pointer-events: none;
    position: absolute;
    right: 4%;
    top: 48%;
    transform: rotate(-4deg);
}

.order-information section + section {
    margin-top: 4rem;
}

.order-information strong {
    color: var(--pink);
    font-weight: 400;
}

.order-form {
    margin-top: clamp(4rem, 7vw, 6rem);
}

.order-form .section-title {
    position: relative;
    z-index: 2;
}

.order-form form {
    position: relative;
    z-index: 2;
}

.order-quote-section {
    background: var(--cream);
    padding: clamp(8rem, 12vw, 11rem) 1.5rem;
}

.order-quote {
    margin: 0 auto;
    max-width: 760px;
}

.order-quote__curve {
    display: block;
    height: auto;
    margin: 0 auto clamp(0.5rem, 1.5vw, 1rem);
    max-width: 760px;
    overflow: visible;
    width: 100%;
}

.order-quote__curve text {
    fill: var(--pink);
    font-family: "Beth Ellen", cursive;
    font-size: 50px;
}

.order-quote--two-lines .order-quote__curve text {
    font-size: 56px;
}

.order-page .form-errors,
.order-page .form-control {
    font-family: inherit;
}

@media (max-width: 767.98px) {
    .site-navigation {
        left: 0.9rem;
        top: calc(36px + 0.9rem);
    }

    .site-navigation__menu {
        background-image: repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 28px,
            rgba(255, 225, 226, 0.45) 28px,
            rgba(255, 225, 226, 0.45) 56px
        );
        padding-inline: 1rem;
    }

    .section-striped {
        background-image: repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 28px,
            rgba(255, 225, 226, 0.45) 28px,
            rgba(255, 225, 226, 0.45) 56px
        );
    }

    .content-header {
        min-height: 90px;
        padding: 0.75rem 1rem;
    }

    .content-header__logo {
        font-size: 1.65rem;
    }

    .brand-header {
        display: block;
        min-height: 0;
        padding: 0;
    }

    .homepage .brand-header {
        align-items: center;
        display: flex;
        min-height: 90px;
        padding: 0.75rem 1rem;
    }

    .intro-section {
        padding-bottom: 0;
    }

    .intro-copy {
        padding: 6rem 1.5rem;
    }

    .intro-copy p {
        font-size: 1.1rem;
        line-height: 1.85;
        margin-bottom: 2rem;
    }

    .logo-curve {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        white-space: nowrap;
        width: 1px;
    }

    .homepage .brand-header .logo-curve {
        clip: auto;
        font-size: 1.65rem;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        white-space: normal;
        width: auto;
    }

    .intro-photo {
        aspect-ratio: 3 / 4;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        margin: 0;
        width: 100%;
    }

    .homepage-intro-grid {
        display: block;
    }

    .homepage-intro-photo {
        aspect-ratio: 3 / 4;
        background-image: url("../images/photos/pretty-bakery-cookie-mobile.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .homepage-intro-copy {
        color: var(--pink);
        padding: 5.5rem 1.5rem;
        text-align: center;
    }

    .homepage-intro-copy h2 {
        display: none;
    }

    .homepage-intro-copy p {
        font-size: 1.1rem;
        line-height: 1.85;
        margin: 0 0 2rem;
    }

    .homepage-intro-copy p:last-child {
        margin-bottom: 0;
    }

    .parallax-photo {
        display: block;
    }

    .parallax-photo__image {
        display: block;
        height: auto;
        position: static;
        transform: none;
        width: 100%;
    }

    .section-title {
        font-size: 1.45rem;
        margin-bottom: 1.75rem;
    }

    .curved-heading {
        font-size: 1.65rem;
    }

    .menu-container {
        padding: 3.5rem 1.5rem 3.5rem;
    }

    .arched-panel {
        border-radius: 45% 45% 10px 10px / 105px 105px 10px 10px;
    }

    .arched-panel::before {
        inset: 7px;
    }

    .menu-card {
        padding: 5.25rem 1.25rem 3rem;
    }

    .menu-item {
        align-items: end;
        font-size: 0.95rem;
        gap: 0.75rem;
    }

    .menu-item h2,
    .menu-item h3 {
        font-size: 1.15rem;
    }

    .menu-item p {
        font-size: 0.76rem;
        line-height: 1.6;
    }

    .menu-mobile-break {
        display: inline;
    }

    .bow-top {
        top: -78px;
    }

    .section-copy,
    .contact-intro .section-copy {
        min-height: 620px;
        padding: 4.5rem 1.5rem;
    }

    .section-copy > p,
    .contact-intro .section-copy > p {
        font-size: 1.1rem;
        line-height: 1.85;
        margin-top: 2.5rem;
    }

    .striped-band {
        display: none;
    }

    .photo-collage {
        gap: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0;
    }

    .photo-collage__bow {
        display: none;
    }

    .photo-collage--mobile-single {
        display: block;
    }

    .photo-collage--mobile-single .photo-collage__item {
        display: none;
    }

    .photo-collage--mobile-single .photo-collage__mobile-image {
        display: block;
        height: auto;
        width: 100%;
    }

    .contact-container {
        padding: 5rem 1.5rem;
    }

    .contact-card {
        padding: 6rem 1.25rem 3.5rem;
    }

    .ribbon-piece-top-left {
        left: -3cqw;
        width: 52%;
    }

    .ribbon-piece-top-right {
        right: -3cqw;
        width: 53.5%;
    }

    .ribbon-piece-bottom-left {
        bottom: -8cqw;
        left: -7cqw;
        width: 47%;
    }

    .ribbon-piece-bottom-right {
        bottom: -8.5cqw;
        right: -7cqw;
        width: 48.5%;
    }

    .photos-section {
        padding: 0;
    }

    .terms-mobile-photo {
        display: block;
    }

    .photo-duo-section {
        display: block;
        height: auto;
    }

    .photo-duo__item:not(:first-child) {
        display: none;
    }

    .photo-duo__image {
        height: auto;
        object-fit: fill;
        object-position: center;
    }

    .site-footer h2 {
        font-size: 1.65rem;
    }

    .site-footer .footer-meta {
        flex-wrap: nowrap;
        font-size: 0.78rem;
        gap: 0.4rem;
    }

    .terms-intro {
        padding: 7rem 1.5rem 6.5rem;
    }

    .terms-intro h1 {
        font-size: 2rem;
    }

    .terms-container {
        padding: 3.5rem 1.5rem 8rem;
    }

    .terms-article {
        padding: 5.25rem 1.5rem 3.75rem;
    }

    .terms-article h2 {
        font-size: 1.25rem;
    }

    .terms-article p {
        font-size: 0.94rem;
        line-height: 1.85;
    }

    .order-intro {
        padding: 5rem 1.5rem 5.75rem;
    }

    .order-intro-copy p {
        font-size: 1.1rem;
        line-height: 1.85;
    }

    .order-details-container {
        padding: 3.5rem 1.5rem 7rem;
    }

    .order-content-card {
        padding: 5.25rem 1.5rem 3.5rem;
    }

    .order-information h2,
    .order-form .section-title {
        font-size: 1.3rem;
    }

    .order-information p {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .order-information section + section {
        margin-top: 3.25rem;
    }

    .order-form {
        margin-top: 3.75rem;
    }

    .order-quote-section {
        padding: 6.5rem 1.25rem;
    }

}

/* Product catalog */
.product-catalog {
    scroll-margin-top: 1.5rem;
}

.product-catalog__container {
    padding: clamp(6rem, 9vw, 8.5rem) 1.5rem clamp(7rem, 10vw, 9.5rem);
}

.product-catalog__header {
    margin: 0 auto clamp(3.5rem, 6vw, 5rem);
    max-width: 820px;
    text-align: center;
}

.product-detail__ribbon {
    display: block;
    height: auto;
    margin: 0 auto 1.5rem;
    width: clamp(100px, 10vw, 145px);
}

.product-catalog__header h2,
.product-gallery h2,
.related-products h2 {
    color: var(--pink);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.45;
    margin: 0 0 1.5rem;
}

.product-catalog__header p {
    color: var(--charcoal);
    font-size: clamp(1rem, 1.55vw, 1.25rem);
    line-height: 1.9;
    margin: 0 auto;
    max-width: 720px;
}

.product-catalog__header p + p {
    margin-top: 1.25rem;
}

.product-grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1180px;
}

.product-card {
    min-width: 0;
}

.product-card__link {
    background: #fff;
    border: 1px solid rgba(255, 173, 181, 0.5);
    box-shadow: 0 16px 42px rgba(74, 72, 72, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card__link:hover,
.product-card__link:focus-visible {
    border-color: var(--pink);
    box-shadow: 0 20px 50px rgba(74, 72, 72, 0.13);
    color: inherit;
    outline: none;
    transform: translateY(-5px);
}

.product-card__link:focus-visible {
    box-shadow: 0 0 0 4px rgba(255, 173, 181, 0.28), 0 20px 50px rgba(74, 72, 72, 0.13);
}

.product-card__image-wrap {
    aspect-ratio: 4 / 5;
    background: var(--pink-soft);
    display: block;
    overflow: hidden;
}

.product-card__image {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
}

.product-card__link:hover .product-card__image,
.product-card__link:focus-visible .product-card__image {
    transform: scale(1.025);
}

.product-card__body {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 2.25rem) 1.25rem 1.5rem;
    text-align: center;
}

.product-card__name {
    color: var(--pink);
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    line-height: 1.5;
}

.product-card__price {
    color: var(--charcoal);
    font-size: 1.05rem;
    margin-top: 0.85rem;
}

.product-card__more {
    color: var(--pink);
    font-size: 0.88rem;
    margin-top: auto;
    padding-top: 1.25rem;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 0.35rem;
    transition: text-decoration-color 180ms ease;
}

.product-card__link:hover .product-card__more,
.product-card__link:focus-visible .product-card__more {
    text-decoration-color: currentColor;
}

.product-pagination {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: clamp(3.5rem, 6vw, 5rem);
}

.product-pagination__pages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
}

.product-pagination__page,
.product-pagination__arrow {
    align-items: center;
    border: 1px solid var(--pink-soft);
    display: inline-flex;
    height: 44px;
    justify-content: center;
    min-width: 44px;
    padding: 0 0.65rem;
    text-decoration: none;
}

.product-pagination__page:hover,
.product-pagination__page:focus-visible,
.product-pagination__arrow:hover,
.product-pagination__arrow:focus-visible,
.product-pagination__page.is-current {
    background: var(--pink-soft);
    border-color: var(--pink);
    color: var(--charcoal);
    outline: none;
}

.product-pagination__page:focus-visible,
.product-pagination__arrow:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 173, 181, 0.28);
}

.product-detail__container {
    padding: clamp(4rem, 7vw, 6.5rem) 1.5rem clamp(7rem, 10vw, 10rem);
}

.product-detail__back {
    color: var(--pink);
    display: inline-block;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    text-decoration-color: transparent;
    text-underline-offset: 0.35rem;
}

.product-detail__back:hover,
.product-detail__back:focus-visible {
    color: var(--pink);
    text-decoration-color: currentColor;
}

.product-detail__back:focus-visible,
.product-detail__order-link:focus-visible {
    border-radius: 3px;
    outline: 2px solid var(--pink);
    outline-offset: 0.4rem;
}

.product-detail__hero {
    align-items: center;
    display: grid;
    gap: clamp(3rem, 7vw, 7rem);
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    margin: 0 auto;
    max-width: 1180px;
}

.product-detail__main-image-wrap {
    aspect-ratio: 4 / 5;
    background: var(--pink-soft);
    box-shadow: 0 18px 50px rgba(74, 72, 72, 0.1);
    overflow: hidden;
}

.product-detail__main-image {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-detail__copy {
    text-align: center;
}

.product-detail__copy h1 {
    color: var(--pink);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.35;
    margin: 0;
}

.product-detail__price {
    color: var(--charcoal);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    margin: 1.5rem 0 clamp(2.5rem, 4vw, 3.5rem);
}

.product-detail__description {
    font-size: clamp(0.98rem, 1.4vw, 1.1rem);
    line-height: 1.95;
}

.product-detail__description p {
    margin: 0;
}

.product-detail__description p + p {
    margin-top: 1.35rem;
}

.product-detail__order-link {
    color: var(--pink);
    display: inline-block;
    font-size: 1.05rem;
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
    text-decoration-color: currentColor;
    text-underline-offset: 0.4rem;
}

.product-gallery {
    margin: clamp(6rem, 10vw, 9rem) auto 0;
    max-width: 1180px;
    text-align: center;
}

.product-gallery__grid {
    display: grid;
    gap: clamp(1rem, 2.5vw, 2rem);
    grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
    justify-content: center;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.product-gallery__item {
    aspect-ratio: 4 / 5;
    background: var(--pink-soft);
    margin: 0;
    overflow: hidden;
}

.product-gallery__item img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.related-products {
    padding: clamp(6.5rem, 10vw, 9rem) 1.5rem clamp(7rem, 11vw, 10rem);
}

.related-products__container {
    text-align: center;
}

.related-products h2 {
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.product-grid--related {
    text-align: left;
}

@media (max-width: 991.98px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail__hero {
        gap: 3.5rem;
    }
}

@media (max-width: 767.98px) {
    .product-catalog__container {
        padding: 5.5rem 1.25rem 6.5rem;
    }

    .product-catalog__header {
        margin-bottom: 3rem;
    }

    .product-detail__ribbon {
        width: 96px;
    }

    .product-catalog__header h2,
    .product-gallery h2,
    .related-products h2 {
        font-size: 1.65rem;
    }

    .product-catalog__header p {
        font-size: 1rem;
        line-height: 1.85;
    }

    .product-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 460px;
    }

    .product-card__body {
        padding: 1.5rem 1.1rem;
    }

    .product-card__name {
        font-size: 1.25rem;
    }

    .product-detail__container {
        padding: 3rem 1.25rem 6.5rem;
    }

    .product-detail__back {
        font-size: 0.88rem;
        margin-bottom: 2.25rem;
    }

    .product-detail__hero {
        display: block;
    }

    .product-detail__copy {
        padding-top: 3.5rem;
    }

    .product-detail__copy h1 {
        font-size: 2rem;
    }

    .product-detail__price {
        margin: 1.25rem 0 2.5rem;
    }

    .product-gallery {
        margin-top: 5.5rem;
    }

    .product-gallery__grid {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 2.5rem;
    }

    .related-products {
        padding: 5.5rem 1.25rem 7rem;
    }

    .related-products h2 {
        margin-bottom: 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-card__link,
    .product-card__image,
    .product-card__more {
        transition: none;
    }
}

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

    body {
        animation: none;
        transition: none;
    }

    .site-navigation__toggle,
    .site-navigation__toggle-line {
        transition: none;
    }

    .site-navigation__menu,
    .site-navigation__menu-inner {
        animation: none !important;
    }

    .parallax-photo__image {
        transform: translate3d(0, 0, 0);
        will-change: auto;
    }

    .bakery-button__spinner {
        animation: none;
    }
}

/* Menu page revision */
.menu-page .menu-intro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: clamp(565px, 48.5vw, 695px);
    min-height: 0;
    overflow: visible;
    position: relative;
    z-index: 2;
}

.menu-intro__photo {
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.menu-intro__photo img {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center 48%;
    position: absolute;
    width: 100%;
}

.menu-intro__copy {
    align-items: center;
    color: var(--pink);
    display: flex;
    justify-content: center;
    overflow: visible;
    padding: clamp(3rem, 5vw, 5rem);
    position: relative;
    text-align: center;
}

.menu-page .content-header--desktop-brand {
    z-index: 1;
}

.menu-intro__copy-inner {
    max-width: 610px;
    position: relative;
    z-index: 2;
}

.menu-intro__copy h1 {
    font-size: clamp(1.35rem, 2.1vw, 1.9rem);
    line-height: 1.5;
    margin: 0 0 clamp(2.5rem, 4.5vw, 4rem);
}

.menu-intro__copy p {
    font-size: clamp(1.05rem, 1.55vw, 1.4rem);
    line-height: 2;
    margin: 0;
}

.menu-intro__copy p + p {
    margin-top: clamp(1.75rem, 3vw, 2.75rem);
}

.menu-intro__ribbon {
    height: auto;
    pointer-events: none;
    position: absolute;
    right: 0.75rem;
    top: clamp(-70px, -4.5vw, -50px);
    width: clamp(205px, 18vw, 285px);
    z-index: 1;
}

.menu-quote {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(350px, 34vw, 500px);
    padding: 4rem 1.5rem 3rem;
    text-align: center;
}

.menu-quote__content {
    margin: 0;
    max-width: 840px;
    width: min(76vw, 840px);
}

.menu-quote__curve {
    display: block;
    height: auto;
    overflow: visible;
    width: 100%;
}

.menu-quote__curve text {
    fill: var(--pink);
    font-family: "Beth Ellen", cursive;
    font-size: 52px;
}

.menu-page .menu-section {
    overflow: clip;
}

.menu-page .menu-container {
    padding: clamp(8rem, 12vw, 11rem) 1.5rem clamp(7rem, 10vw, 9rem);
}

.menu-page .menu-card {
    max-width: 760px;
    padding: clamp(7rem, 10vw, 8.5rem) clamp(3rem, 7vw, 6rem) clamp(3rem, 5vw, 4.5rem);
}

.menu-card__bow {
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%, -52%);
    width: clamp(72px, 7vw, 100px);
    z-index: 3;
}

.menu-page .menu-list {
    margin-bottom: 0;
}

.menu-page .menu-item {
    padding-block: 0.75rem;
}

.menu-more-link {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    margin-top: clamp(4rem, 7vw, 6rem);
}

.photo-collage--menu-showcase .photo-collage__item {
    aspect-ratio: auto;
    background-size: 200% auto;
    height: clamp(400px, 38vw, 570px);
}

@media (max-width: 767.98px) {
    .menu-page .menu-intro {
        display: block;
        height: auto;
        min-height: 0;
    }

    .menu-intro__photo {
        aspect-ratio: 1;
    }

    .menu-intro__photo img {
        object-position: center;
    }

    .menu-intro__copy {
        aspect-ratio: 1;
        min-height: 0;
        padding: 2.5rem 1.5rem;
    }

    .menu-intro__copy-inner {
        max-width: 440px;
    }

    .menu-intro__copy h1 {
        font-size: 1.35rem;
        margin-bottom: 2.5rem;
    }

    .menu-intro__copy p {
        font-size: 1.05rem;
        line-height: 1.85;
    }

    .menu-intro__copy p + p {
        margin-top: 1.75rem;
    }

    .menu-intro__ribbon {
        display: none;
    }

    .menu-quote {
        min-height: 310px;
        padding: 3.5rem 1.25rem 2.75rem;
    }

    .menu-quote p {
        margin: 0;
    }

    .menu-quote__content {
        width: min(100%, 360px);
    }

    .menu-quote__curve text {
        font-size: 52px;
    }

    .menu-page .menu-container {
        padding: 6.5rem 1.25rem 5.5rem;
    }

    .menu-page .menu-card {
        padding: 5.75rem 1.25rem 3.5rem;
    }

    .menu-card__bow {
        width: 66px;
    }

    .menu-page .menu-item {
        gap: 0.65rem;
        padding-block: 0.65rem;
    }

    .menu-page .menu-item > span {
        font-size: 0.86rem;
    }

    .menu-more-link {
        margin-top: 4.25rem;
    }

    .photo-collage--menu-showcase {
        grid-template-columns: minmax(0, 1fr);
    }

    .photo-collage--menu-showcase .photo-collage__item {
        display: none;
    }

    .photo-collage--menu-showcase .photo-collage__item--seventy {
        aspect-ratio: 9 / 16;
        background-size: 200% 200%;
        display: block;
        height: auto;
    }

}

@media (min-width: 768px) {
    .menu-page .menu-card {
        padding-bottom: clamp(8.5rem, 12.5vw, 10rem);
        padding-top: clamp(8.5rem, 12.5vw, 10rem);
    }

    .menu-page .menu-item {
        font-size: 1.22rem;
        gap: 2rem;
        padding-block: 1.05rem;
    }

    .menu-page .menu-item h3 {
        font-size: 1.55rem;
    }

    .menu-page .menu-item p {
        font-size: 1rem;
        line-height: 1.65;
        margin-top: 0.2rem;
    }
}

/* Order page revision */
.order-page .content-header--desktop-brand {
    z-index: 1;
}

.order-hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: clamp(565px, 48.5vw, 695px);
    min-height: 0;
    overflow: visible;
    position: relative;
    z-index: 2;
}

.order-hero__photo {
    display: block;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.order-hero__photo img {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center 48%;
    position: absolute;
    width: 100%;
}

.order-hero__copy {
    align-items: center;
    color: var(--pink);
    display: flex;
    justify-content: center;
    overflow: visible;
    padding: clamp(3rem, 5vw, 5rem);
    position: relative;
    text-align: center;
}

.order-hero__copy-inner {
    max-width: 610px;
    position: relative;
    z-index: 2;
}

.order-hero__copy p {
    font-size: clamp(1.05rem, 1.55vw, 1.4rem);
    line-height: 2;
    margin: 0;
}

.order-hero__copy p + p {
    margin-top: clamp(1.75rem, 3vw, 2.75rem);
}

.order-hero__ribbon {
    bottom: clamp(-342px, -22.4vw, -247px);
    height: auto;
    left: 0.75rem;
    pointer-events: none;
    position: absolute;
    width: clamp(260px, 24vw, 360px);
    z-index: 3;
}

.order-page-quote {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(350px, 34vw, 500px);
    padding: 4rem 1.5rem 3rem;
    position: relative;
    text-align: center;
    z-index: 1;
}

.order-page-quote__content {
    margin: 0;
    max-width: 840px;
    width: min(76vw, 840px);
}

.order-page-quote__curve {
    display: block;
    height: auto;
    overflow: visible;
    width: 100%;
}

.order-page-quote__curve text {
    fill: var(--pink);
    font-family: "Beth Ellen", cursive;
    font-size: 52px;
}

.order-page .order-details-container {
    padding-top: clamp(8rem, 11vw, 10rem);
}

.order-page .order-content-card {
    background: var(--cream);
}

.order-content-card__bow {
    left: 50%;
    position: absolute;
    top: 10px;
    transform: translate(-50%, -50%);
    width: clamp(72px, 7vw, 100px);
    z-index: 3;
}

@media (max-width: 767.98px) {
    .order-hero {
        display: block;
        height: auto;
        min-height: 0;
    }

    .order-hero__photo {
        aspect-ratio: 1;
    }

    .order-hero__photo img {
        object-position: center;
    }

    .order-hero__copy {
        aspect-ratio: 1;
        min-height: 0;
        padding: 2.5rem 1.5rem;
    }

    .order-hero__copy-inner {
        max-width: 440px;
    }

    .order-hero__copy p {
        font-size: 1.05rem;
        line-height: 1.85;
    }

    .order-hero__copy p + p {
        margin-top: 1.6rem;
    }

    .order-hero__ribbon {
        display: none;
    }

    .order-page-quote {
        min-height: 310px;
        padding: 3.5rem 1.25rem 2.75rem;
    }

    .order-page-quote__content {
        width: min(100%, 360px);
    }

    .order-page-quote__curve text {
        font-size: 52px;
    }

    .order-page .order-details-container {
        padding: 6.5rem 1.25rem 5.5rem;
    }

    .order-content-card__bow {
        top: 7px;
        width: 66px;
    }

}

/* Contact page revision */
.contact-page .content-header--desktop-brand {
    z-index: 1;
}

.contact-hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: clamp(565px, 48.5vw, 695px);
    min-height: 0;
    overflow: visible;
    position: relative;
    z-index: 2;
}

.contact-hero__photo {
    display: block;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.contact-hero__photo img {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center 48%;
    position: absolute;
    width: 100%;
}

.contact-hero__copy {
    align-items: center;
    color: var(--pink);
    display: flex;
    justify-content: center;
    overflow: visible;
    padding: clamp(3rem, 5vw, 5rem);
    position: relative;
    text-align: center;
}

.contact-hero__copy-inner {
    max-width: 610px;
    position: relative;
    z-index: 2;
}

.contact-hero__copy h1 {
    font-size: clamp(1.35rem, 2.1vw, 1.9rem);
    line-height: 1.5;
    margin: 0 0 clamp(2.5rem, 4.5vw, 4rem);
}

.contact-hero__copy p {
    font-size: clamp(1.05rem, 1.55vw, 1.4rem);
    line-height: 2;
    margin: 0;
}

.contact-hero__copy p + p {
    margin-top: clamp(1.75rem, 3vw, 2.75rem);
}

.contact-hero__ribbon {
    height: auto;
    pointer-events: none;
    position: absolute;
    right: 0.75rem;
    top: clamp(-70px, -4.5vw, -50px);
    width: clamp(205px, 18vw, 285px);
    z-index: 3;
}

.contact-page-quote {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(350px, 34vw, 500px);
    padding: 4rem 1.5rem 3rem;
    position: relative;
    text-align: center;
    z-index: 1;
}

.contact-page-quote__content {
    margin: 0;
    max-width: 840px;
    width: min(76vw, 840px);
}

.contact-page-quote__curve {
    display: block;
    height: auto;
    overflow: visible;
    width: 100%;
}

.contact-page-quote__curve text {
    fill: var(--pink);
    font-family: "Beth Ellen", cursive;
    font-size: 52px;
}

.contact-page .contact-section {
    overflow: clip;
}

.contact-page .contact-container {
    padding: clamp(8rem, 11vw, 10rem) 1.5rem clamp(8rem, 11vw, 10rem);
}

.contact-page .contact-card {
    background: var(--cream);
    padding-bottom: clamp(7rem, 10vw, 8rem);
    padding-top: clamp(8.5rem, 12.5vw, 10rem);
}

.contact-card__bow {
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%);
    width: clamp(72px, 7vw, 100px);
    z-index: 3;
}

@media (max-width: 767.98px) {
    .contact-hero {
        display: block;
        height: auto;
        min-height: 0;
    }

    .contact-hero__photo {
        aspect-ratio: 1;
    }

    .contact-hero__photo img {
        object-position: center;
    }

    .contact-hero__copy {
        aspect-ratio: 1;
        min-height: 0;
        padding: 2.5rem 1.5rem;
    }

    .contact-hero__copy-inner {
        max-width: 440px;
    }

    .contact-hero__copy h1 {
        font-size: 1.35rem;
        margin-bottom: 2.5rem;
    }

    .contact-hero__copy p {
        font-size: 1.05rem;
        line-height: 1.85;
    }

    .contact-hero__copy p + p {
        margin-top: 1.75rem;
    }

    .contact-hero__ribbon {
        display: none;
    }

    .contact-page-quote {
        min-height: 310px;
        padding: 3.5rem 1.25rem 2.75rem;
    }

    .contact-page-quote__content {
        width: min(100%, 360px);
    }

    .contact-page-quote__curve text {
        font-size: 52px;
    }

    .contact-page .contact-container {
        padding: 6.5rem 1.25rem 5.5rem;
    }

    .contact-page .contact-card {
        padding: 6rem 1.25rem 4rem;
    }

    .contact-card__bow {
        width: 66px;
    }

}
