﻿/* ==========================================================
   WE KNEAD TO TALK™
   FREE BAKERY LANDING PAGE

   VISUAL SYSTEM:
   STOREFRONT × PASTRY CASE × MENU BOARD × BAKERY BOX
   ========================================================== */


/* ==========================================================
   ROOT
   ========================================================== */

:root {
    --cream: #fbf4e5;
    --cream-deep: #f0dfbc;
    --paper: #f7eacb;
    --butter: #f1c95f;
    --butter-soft: #f8dfa0;

    --blue: #244c8f;
    --blue-deep: #173764;
    --blue-dark: #102843;
    --blue-light: #d9e4f1;

    --chocolate: #2a1d18;
    --chocolate-soft: #57453c;
    --cocoa: #7a6256;

    --jam: #b7473f;
    --jam-dark: #86322e;

    --sage: #79806d;

    --glass: rgba(244, 248, 250, 0.58);
    --glass-line: rgba(255, 255, 255, 0.55);

    --white: #fffdf7;

    --display: "Fraunces", Georgia, serif;
    --body: "Work Sans", Arial, sans-serif;
    --mono: "IBM Plex Mono", Consolas, monospace;

    --wide: 1460px;
    --content: 1180px;

    --side: clamp(20px, 4vw, 72px);

    --line: rgba(42, 29, 24, 0.18);
    --line-dark: rgba(42, 29, 24, 0.32);

    --shadow:
        0 22px 70px rgba(42, 29, 24, 0.13);

    --shadow-deep:
        0 28px 90px rgba(16, 40, 67, 0.24);
}


/* ==========================================================
   RESET
   ========================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;

    color: var(--chocolate);
    background: var(--cream);

    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;

    text-rendering: optimizeLegibility;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

figure {
    margin: 0;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

ul,
ol {
    margin-top: 0;
}

::selection {
    color: var(--white);
    background: var(--blue);
}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;

    transform: translateY(-180%);

    padding: 11px 16px;

    color: var(--white);
    background: var(--blue-dark);

    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 600;

    border-radius: 3px;

    transition: transform 180ms ease;
}

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

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


/* ==========================================================
   STOREFRONT HEADER
   ========================================================== */

.storefront-header {
    position: relative;
    z-index: 50;

    color: var(--blue-dark);
    background: var(--cream);

    border-bottom: 1px solid var(--line);
}

.awning {
    height: 30px;

    background:
        repeating-linear-gradient(
            90deg,
            var(--blue) 0,
            var(--blue) 48px,
            var(--cream) 48px,
            var(--cream) 96px
        );

    border-bottom: 4px solid var(--blue-deep);

    box-shadow:
        0 7px 0 rgba(36, 76, 143, 0.08);
}

.storefront-header__inner {
    width: min(
        var(--wide),
        calc(100% - (var(--side) * 2))
    );

    min-height: 112px;
    margin-inline: auto;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(30px, 4vw, 72px);
}

.storefront-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;

    white-space: nowrap;
}

.storefront-logo__name {
    color: var(--blue-deep);

    font-family: var(--display);
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-weight: 800;
    line-height: 0.95;

    letter-spacing: -0.035em;
}

.storefront-logo__tagline {
    color: var(--jam-dark);

    font-family: var(--display);
    font-size: 0.78rem;
    font-style: italic;
    font-weight: 500;
}

.storefront-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 34px);
}

.storefront-nav a {
    position: relative;

    padding: 9px 0;

    color: var(--chocolate-soft);

    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;
}

.storefront-nav a::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;

    height: 2px;

    background: var(--blue);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 180ms ease;
}

.storefront-nav a:hover::after {
    transform: scaleX(1);
}

.storefront-order {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    color: var(--white);
    background: var(--blue);

    border: 2px solid var(--blue);

    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 0.055em;
    text-transform: uppercase;

    transition:
        color 180ms ease,
        background 180ms ease,
        transform 180ms ease;
}

.storefront-order:hover {
    color: var(--blue);
    background: transparent;

    transform: translateY(-2px);
}


/* ==========================================================
   STOREFRONT HERO
   ========================================================== */

.storefront-hero {
    position: relative;

    min-height: clamp(680px, 82vh, 920px);

    display: flex;
    align-items: stretch;

    overflow: hidden;

    color: var(--white);
    background: var(--blue-dark);
}

.storefront-hero__photo {
    position: absolute;
    inset: 0;
}

.storefront-hero__photo::before {
    content: "";

    position: absolute;
    z-index: 1;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(16, 40, 67, 0.82) 0%,
            rgba(16, 40, 67, 0.58) 42%,
            rgba(16, 40, 67, 0.16) 74%,
            rgba(16, 40, 67, 0.06) 100%
        ),
        linear-gradient(
            0deg,
            rgba(42, 29, 24, 0.44) 0%,
            transparent 44%
        );
}

.storefront-hero__photo::after {
    content: "";

    position: absolute;
    z-index: 2;
    inset: 18px;

    border:
        1px solid rgba(255, 255, 255, 0.25);

    pointer-events: none;
}

.storefront-hero__photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.storefront-window {
    position: relative;
    z-index: 4;

    width: min(
        860px,
        calc(100% - (var(--side) * 2))
    );

    margin:
        clamp(72px, 8vw, 120px)
        auto
        clamp(150px, 15vw, 210px)
        max(
            var(--side),
            calc((100vw - var(--wide)) / 2)
        );

    align-self: center;

    padding:
        clamp(32px, 4vw, 54px)
        clamp(30px, 4.5vw, 64px);

    background:
        linear-gradient(
            120deg,
            rgba(251, 244, 229, 0.16),
            rgba(255, 255, 255, 0.05)
        );

    border:
        1px solid rgba(255, 255, 255, 0.36);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    box-shadow:
        inset 0 0 0 8px rgba(255, 255, 255, 0.04);
}

.storefront-window__kicker {
    margin-bottom: 22px;

    color: var(--butter-soft);

    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 0.12em;
}

.storefront-window h1 {
    margin-bottom: 20px;

    font-family: var(--display);
    font-size: clamp(5rem, 10vw, 10.8rem);
    font-weight: 800;
    line-height: 0.73;

    letter-spacing: -0.075em;
}

.storefront-window h1 span {
    display: block;
}

.storefront-window h1 span:last-child {
    margin-left: 0.3em;

    color: var(--butter);
}

.storefront-window__tagline {
    margin-bottom: 25px;

    color: var(--cream);

    font-family: var(--display);
    font-size: clamp(1.35rem, 2.4vw, 2.15rem);
    font-style: italic;
    font-weight: 500;
}

.storefront-window__intro {
    max-width: 620px;
    margin-bottom: 0;

    color: rgba(255, 253, 247, 0.88);

    font-size: clamp(0.98rem, 1.25vw, 1.13rem);
}

.storefront-door {
    position: absolute;
    z-index: 6;

    right: max(
        var(--side),
        calc((100vw - var(--wide)) / 2)
    );

    bottom: 44px;

    display: grid;
    grid-template-columns: repeat(3, auto);

    background: var(--cream);

    color: var(--chocolate);

    box-shadow: var(--shadow);
}

.storefront-door a {
    min-width: 150px;
    min-height: 90px;

    padding: 17px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;

    border-right: 1px solid var(--line);

    transition:
        color 180ms ease,
        background 180ms ease;
}

.storefront-door a:last-child {
    border-right: 0;
}

.storefront-door a:hover {
    color: var(--white);
    background: var(--blue);
}

.storefront-door span {
    color: var(--jam);

    font-family: var(--mono);
    font-size: 0.56rem;
    font-weight: 600;

    letter-spacing: 0.09em;
}

.storefront-door a:hover span {
    color: var(--butter-soft);
}

.storefront-door strong {
    font-family: var(--display);
    font-size: 1.08rem;
    font-weight: 700;
}

.storefront-hero__note {
    position: absolute;
    z-index: 5;

    bottom: 42px;
    left: max(
        var(--side),
        calc((100vw - var(--wide)) / 2)
    );

    margin: 0;

    font-family: var(--mono);
    font-size: 0.58rem;
    font-weight: 600;

    letter-spacing: 0.07em;
}

.storefront-hero__note span {
    display: block;

    margin-top: 3px;

    color: var(--butter);

    font-family: var(--display);
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 500;

    letter-spacing: 0;
}


/* ==========================================================
   PASTRY CASE
   ========================================================== */

.pastry-case {
    position: relative;

    padding:
        clamp(76px, 8vw, 124px)
        0
        clamp(64px, 7vw, 104px);

    overflow: hidden;

    color: var(--chocolate);
    background: var(--cream);
}

.pastry-case__heading {
    width: min(
        var(--wide),
        calc(100% - (var(--side) * 2))
    );

    margin-inline: auto;
    margin-bottom: 42px;

    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
}

.case-label {
    margin-bottom: 9px;

    color: var(--blue);

    font-family: var(--mono);
    font-size: 0.64rem;
    font-weight: 600;

    letter-spacing: 0.09em;
}

.pastry-case__heading h2 {
    margin-bottom: 0;

    color: var(--blue-dark);

    font-family: var(--display);
    font-size: clamp(3.2rem, 6.5vw, 6.6rem);
    font-weight: 760;
    line-height: 0.9;

    letter-spacing: -0.055em;
}

.pastry-case__heading > p {
    max-width: 440px;
    margin-bottom: 7px;

    color: var(--chocolate-soft);

    font-size: 0.95rem;
}

.case-glass {
    position: relative;

    padding:
        38px
        max(
            var(--side),
            calc((100vw - var(--wide)) / 2)
        )
        50px;

    overflow-x: auto;
    overflow-y: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(217, 228, 241, 0.52),
            rgba(255, 255, 255, 0.18) 38%,
            rgba(240, 223, 188, 0.46) 100%
        );

    border-top: 5px solid #c9ced1;
    border-bottom: 12px solid var(--blue-dark);

    box-shadow:
        inset 0 12px 22px rgba(255, 255, 255, 0.6),
        inset 0 -15px 25px rgba(16, 40, 67, 0.08);

    scrollbar-width: thin;
    scrollbar-color:
        var(--blue)
        var(--cream-deep);
}

.case-glass::before {
    content: "";

    position: absolute;
    inset:
        12px
        0
        auto
        0;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.86);

    pointer-events: none;
}

.case-glass__rail {
    width: max-content;

    display: flex;
    gap: 24px;
}

.case-item {
    width: clamp(260px, 23vw, 350px);

    flex: 0 0 auto;
}

.case-item figure {
    position: relative;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: var(--cream-deep);
}

.case-item figure::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            125deg,
            rgba(255, 255, 255, 0.25),
            transparent 34%
        );

    pointer-events: none;
}

.case-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 350ms ease;
}

.case-item:hover img {
    transform: scale(1.025);
}

.shelf-label {
    min-height: 88px;

    padding: 13px 14px 12px;

    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;

    background: var(--white);

    border:
        1px solid rgba(42, 29, 24, 0.2);

    border-top: 4px solid var(--blue);
}

.shelf-label div {
    min-width: 0;
}

.shelf-label strong {
    display: block;

    margin-bottom: 4px;

    color: var(--blue-dark);

    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.05;
}

.shelf-label small {
    display: block;

    color: var(--cocoa);

    font-family: var(--mono);
    font-size: 0.52rem;
    line-height: 1.45;
}

.shelf-label > span {
    flex: 0 0 auto;

    color: var(--jam-dark);

    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 600;
}

.case-footer {
    width: min(
        var(--wide),
        calc(100% - (var(--side) * 2))
    );

    margin: 28px auto 0;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.case-footer span {
    color: var(--blue);

    font-family: var(--mono);
    font-size: 0.55rem;
    font-weight: 600;

    letter-spacing: 0.07em;
}

.case-footer strong {
    color: var(--chocolate-soft);

    font-family: var(--display);
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 500;
}


/* ==========================================================
   MENU BOARD
   ========================================================== */

.menu-board {
    position: relative;

    padding:
        clamp(70px, 8vw, 118px)
        max(
            var(--side),
            calc((100vw - var(--wide)) / 2)
        );

    color: var(--cream);
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        var(--blue-deep);

    background-size: 30px 30px;

    border-top: 14px solid var(--butter);
    border-bottom: 14px solid var(--butter);
}

.menu-board__top {
    margin-bottom: 56px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding-bottom: 15px;

    border-bottom:
        1px solid rgba(251, 244, 229, 0.25);
}

.menu-board__top p,
.menu-board__top span {
    margin: 0;

    font-family: var(--mono);
    font-size: 0.58rem;
    font-weight: 600;

    letter-spacing: 0.085em;
}

.menu-board__top p {
    color: var(--butter);
}

.menu-board__top span {
    color: rgba(251, 244, 229, 0.68);
}

.menu-board__title {
    max-width: 900px;
    margin-bottom: clamp(52px, 6vw, 82px);
}

.menu-board__title h2 {
    margin-bottom: 14px;

    color: var(--white);

    font-family: var(--display);
    font-size: clamp(3.8rem, 7.5vw, 7.8rem);
    font-weight: 760;
    line-height: 0.86;

    letter-spacing: -0.06em;
}

.menu-board__title > p {
    margin-bottom: 0;

    color: var(--butter-soft);

    font-family: var(--display);
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    font-style: italic;
}

.menu-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(36px, 5vw, 76px);
}

.menu-column h3 {
    margin-bottom: 26px;

    color: var(--butter);

    font-family: var(--display);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 650;

    border-bottom:
        4px solid rgba(241, 201, 95, 0.86);

    padding-bottom: 9px;
}

.menu-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.menu-list li {
    position: relative;

    padding: 13px 0;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 18px;

    border-bottom:
        1px dotted rgba(251, 244, 229, 0.38);
}

.menu-list strong {
    display: block;

    color: var(--cream);

    font-family: var(--body);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.35;
}

.menu-list small {
    display: block;

    margin-top: 3px;

    color: rgba(251, 244, 229, 0.6);

    font-family: var(--mono);
    font-size: 0.5rem;
    line-height: 1.45;
}

.menu-list > li > span {
    color: var(--butter-soft);

    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 600;
}

.menu-list__joke strong,
.menu-list__joke > span {
    color: #f09188;
}

.menu-board__bottom {
    margin-top: 70px;

    padding-top: 22px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;

    border-top:
        1px solid rgba(251, 244, 229, 0.25);
}

.menu-board__bottom p {
    margin-bottom: 0;
}

.menu-board__bottom p:first-child {
    color: var(--butter);

    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 600;

    letter-spacing: 0.085em;
}

.menu-board__bottom p:last-child {
    color: rgba(251, 244, 229, 0.75);

    font-family: var(--display);
    font-size: 1.15rem;
    font-style: italic;

    text-align: right;
}


/* ==========================================================
   BEFORE YOU WOKE UP
   ========================================================== */

.morning {
    position: relative;

    min-height: 900px;

    overflow: hidden;

    color: var(--white);
    background: var(--chocolate);
}

.morning__photo {
    position: absolute;
    inset: 0;
}

.morning__photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(42, 29, 24, 0.2) 0%,
            rgba(42, 29, 24, 0.58) 55%,
            rgba(42, 29, 24, 0.94) 100%
        );
}

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

.morning__intro {
    position: relative;
    z-index: 2;

    width: min(
        var(--wide),
        calc(100% - (var(--side) * 2))
    );

    margin-inline: auto;

    padding-top:
        clamp(80px, 9vw, 140px);
}

.morning__intro > p {
    margin-bottom: 15px;

    color: var(--butter);

    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 600;

    letter-spacing: 0.1em;
}

.morning__intro h2 {
    max-width: 900px;
    margin-bottom: 0;

    font-family: var(--display);
    font-size: clamp(4rem, 8vw, 8.5rem);
    font-weight: 760;
    line-height: 0.84;

    letter-spacing: -0.065em;
}

.morning-timeline {
    position: absolute;
    z-index: 3;

    right: 0;
    bottom: 205px;
    left: 0;

    margin: 0;
    padding:
        0
        max(
            var(--side),
            calc((100vw - var(--wide)) / 2)
        );

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    list-style: none;

    border-top:
        1px solid rgba(255, 255, 255, 0.4);
}

.morning-timeline li {
    position: relative;

    padding: 24px 22px 0 0;
}

.morning-timeline li::before {
    content: "";

    position: absolute;

    top: -7px;
    left: 0;

    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: var(--butter);

    box-shadow:
        0 0 0 5px rgba(241, 201, 95, 0.2);
}

.morning-timeline time {
    display: block;

    margin-bottom: 7px;

    color: var(--butter-soft);

    font-family: var(--display);
    font-size: clamp(2rem, 3vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
}

.morning-timeline time small {
    margin-left: 3px;

    font-family: var(--mono);
    font-size: 0.5rem;
}

.morning-timeline p {
    max-width: 175px;
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.84);

    font-size: 0.77rem;
    line-height: 1.5;
}

.morning__story {
    position: absolute;
    z-index: 3;

    right: max(
        var(--side),
        calc((100vw - var(--wide)) / 2)
    );

    bottom: 44px;

    width: min(720px, 60vw);

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.morning__story p {
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.83rem;
}


/* ==========================================================
   BAKERY BOX
   ========================================================== */

.bakery-box {
    position: relative;

    width: min(
        1280px,
        calc(100% - (var(--side) * 2))
    );

    margin:
        clamp(80px, 9vw, 140px)
        auto;

    color: var(--blue-dark);

    filter:
        drop-shadow(
            0 30px 40px rgba(42, 29, 24, 0.15)
        );
}

.bakery-box__lid {
    position: relative;

    min-height: 108px;

    padding:
        22px
        clamp(25px, 4vw, 50px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background:
        repeating-linear-gradient(
            90deg,
            var(--blue) 0,
            var(--blue) 18px,
            var(--cream) 18px,
            var(--cream) 36px
        );

    border:
        2px solid var(--blue-dark);
}

.bakery-box__lid::after {
    content: "";

    position: absolute;
    inset: 13px;

    border:
        1px solid rgba(251, 244, 229, 0.82);

    pointer-events: none;
}

.bakery-box__lid span,
.bakery-box__lid small {
    position: relative;
    z-index: 1;

    padding: 7px 10px;

    background: var(--cream);
}

.bakery-box__lid span {
    font-family: var(--display);
    font-size: clamp(1.45rem, 2.4vw, 2.3rem);
    font-weight: 800;
    line-height: 1;
}

.bakery-box__lid small {
    font-family: var(--mono);
    font-size: 0.55rem;
    font-weight: 600;

    letter-spacing: 0.06em;
}

.bakery-box__inside {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(420px, 1.1fr);

    min-height: 620px;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.34),
            rgba(255, 255, 255, 0.34)
        ),
        var(--paper);

    border-right: 2px solid var(--blue-dark);
    border-bottom: 2px solid var(--blue-dark);
    border-left: 2px solid var(--blue-dark);
}

.bakery-box__copy {
    padding:
        clamp(52px, 6vw, 88px)
        clamp(34px, 5vw, 72px);
}

.bakery-box__copy > p:first-child {
    margin-bottom: 15px;

    color: var(--jam-dark);

    font-family: var(--mono);
    font-size: 0.58rem;
    font-weight: 600;

    letter-spacing: 0.085em;
}

.bakery-box h2 {
    max-width: 580px;
    margin-bottom: 5px;

    color: var(--blue-deep);

    font-family: var(--display);
    font-size: clamp(3.8rem, 6.6vw, 7rem);
    font-weight: 780;
    line-height: 0.84;

    letter-spacing: -0.065em;
}

.bakery-box__lead {
    margin-bottom: 34px;

    color: var(--jam-dark);

    font-family: var(--display);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-style: italic;
    font-weight: 550;
}

.bakery-box ul {
    margin: 0 0 35px;
    padding: 0;

    list-style: none;

    border-top:
        1px solid var(--line-dark);
}

.bakery-box li {
    padding: 10px 0;

    border-bottom:
        1px solid var(--line);

    font-family: var(--mono);
    font-size: 0.64rem;
    font-weight: 500;

    letter-spacing: 0.035em;
}

.box-button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 21px;

    color: var(--white);
    background: var(--blue);

    font-family: var(--mono);
    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    transition:
        background 180ms ease,
        transform 180ms ease;
}

.box-button:hover {
    background: var(--jam-dark);
    transform: translateY(-2px);
}

.bakery-box__photo {
    overflow: hidden;

    min-height: 100%;
}

.bakery-box__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bakery-box__fine-print {
    padding: 14px 22px;

    color: rgba(251, 244, 229, 0.82);
    background: var(--blue-dark);

    font-family: var(--mono);
    font-size: 0.55rem;

    letter-spacing: 0.045em;
    text-align: center;
}


/* ==========================================================
   FRONT DOOR
   ========================================================== */

.front-door {
    position: relative;

    min-height: clamp(680px, 82vh, 940px);

    overflow: hidden;

    color: var(--white);
    background: var(--blue-dark);
}

.front-door__photo {
    position: absolute;
    inset: 0;
}

.front-door__photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(16, 40, 67, 0.1),
            rgba(16, 40, 67, 0.25) 50%,
            rgba(16, 40, 67, 0.72)
        );
}

.front-door__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.door-glass {
    position: absolute;
    z-index: 2;

    top: 50%;
    right: max(
        var(--side),
        calc((100vw - var(--wide)) / 2)
    );

    width: min(520px, 42vw);

    padding:
        clamp(32px, 4vw, 56px);

    transform: translateY(-50%);

    color: var(--white);

    background:
        rgba(16, 40, 67, 0.74);

    border:
        1px solid rgba(255, 255, 255, 0.38);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    box-shadow:
        inset 0 0 0 8px rgba(255, 255, 255, 0.04),
        var(--shadow-deep);
}

.door-glass::before {
    content: "";

    position: absolute;

    inset: 16px;

    border:
        1px solid rgba(255, 255, 255, 0.18);

    pointer-events: none;
}

.door-glass__small {
    margin-bottom: 13px;

    color: var(--butter);

    font-family: var(--mono);
    font-size: 0.59rem;
    font-weight: 600;

    letter-spacing: 0.1em;
}

.door-glass h2 {
    margin-bottom: 5px;

    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 760;
    line-height: 0.87;

    letter-spacing: -0.055em;
}

.door-glass h2 + p {
    color: rgba(255, 255, 255, 0.7);
}

.door-hours {
    margin: 32px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.28);
}

.door-hours > div {
    padding: 11px 0;

    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.18);
}

.door-hours span {
    font-family: var(--mono);
    font-size: 0.58rem;

    letter-spacing: 0.07em;
}

.door-hours strong {
    font-family: var(--display);
    font-size: 1.08rem;
    font-weight: 650;

    text-align: right;
}

.door-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;

    margin-bottom: 32px;
}

.door-contact a {
    color: var(--butter-soft);

    font-family: var(--mono);
    font-size: 0.7rem;

    border-bottom:
        1px solid transparent;
}

.door-contact a:hover {
    border-color: currentColor;
}

.door-glass__warning {
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.68);

    font-family: var(--mono);
    font-size: 0.56rem;

    letter-spacing: 0.05em;
}

.door-glass__warning span {
    display: block;

    margin-top: 5px;

    color: var(--butter);

    font-family: var(--display);
    font-size: 0.92rem;
    font-style: italic;

    letter-spacing: 0;
}


/* ==========================================================
   CLOSING RECEIPT
   ========================================================== */

.closing-receipt {
    position: relative;

    padding:
        clamp(80px, 9vw, 140px)
        var(--side);

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        repeating-linear-gradient(
            90deg,
            var(--blue) 0,
            var(--blue) 54px,
            var(--cream) 54px,
            var(--cream) 108px
        );
}

.closing-receipt::before {
    content: "";

    position: absolute;
    inset: 24px;

    border:
        1px solid rgba(255, 255, 255, 0.55);

    pointer-events: none;
}

.receipt {
    position: relative;
    z-index: 1;

    width: min(420px, 100%);

    padding:
        42px
        32px
        34px;

    color: var(--chocolate);
    background: var(--white);

    box-shadow:
        0 28px 60px rgba(16, 40, 67, 0.3);

    font-family: var(--mono);
}

.receipt::before,
.receipt::after {
    content: "";

    position: absolute;
    right: 0;
    left: 0;

    height: 12px;

    background:
        linear-gradient(
            135deg,
            transparent 6px,
            var(--white) 6px
        )
        0 0 / 12px 12px repeat-x;
}

.receipt::before {
    top: -12px;
}

.receipt::after {
    bottom: -12px;

    transform: rotate(180deg);
}

.receipt__brand {
    margin-bottom: 3px;

    color: var(--blue-deep);

    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 800;

    text-align: center;
}

.receipt__tagline {
    margin-bottom: 26px;

    color: var(--jam-dark);

    font-family: var(--display);
    font-size: 0.88rem;
    font-style: italic;

    text-align: center;
}

.receipt__rule {
    height: 1px;

    margin: 18px 0;

    border-top:
        1px dashed rgba(42, 29, 24, 0.45);
}

.receipt__line {
    padding: 5px 0;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    font-size: 0.62rem;
}

.receipt__total {
    display: block;

    margin: 22px 0;

    color: var(--blue-deep);

    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 800;

    text-align: center;
}

.receipt__return {
    width: 100%;

    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    color: var(--white);
    background: var(--jam);

    font-size: 0.62rem;
    font-weight: 600;

    letter-spacing: 0.05em;

    transition: background 180ms ease;
}

.receipt__return:hover {
    background: var(--blue);
}

.receipt small {
    display: block;

    color: var(--cocoa);

    font-size: 0.5rem;
    line-height: 1.55;

    text-align: center;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.bakery-footer {
    min-height: 92px;

    padding:
        20px
        max(
            var(--side),
            calc((100vw - var(--wide)) / 2)
        );

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 35px;

    color: var(--cream);
    background: var(--blue-dark);

    border-top:
        4px solid var(--butter);
}

.bakery-footer > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bakery-footer strong {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 700;
}

.bakery-footer span,
.bakery-footer p {
    margin: 0;

    color: rgba(251, 244, 229, 0.68);

    font-family: var(--mono);
    font-size: 0.52rem;
}

.bakery-footer > p:last-child {
    text-align: right;
}


/* ==========================================================
   RESPONSIVE — 1240
   ========================================================== */

@media (max-width: 1240px) {

    .storefront-header__inner {
        gap: 28px;
    }

    .storefront-nav {
        gap: 16px;
    }

    .storefront-nav a {
        font-size: 0.7rem;
    }

    .storefront-order {
        padding-inline: 15px;
    }

    .storefront-window {
        width: min(
            760px,
            calc(100% - (var(--side) * 2))
        );
    }

    .storefront-door a {
        min-width: 135px;
    }

}


/* ==========================================================
   RESPONSIVE — 1020
   ========================================================== */

@media (max-width: 1020px) {

    .storefront-header__inner {
        min-height: 100px;

        grid-template-columns: auto auto;
    }

    .storefront-nav {
        grid-column: 1 / -1;
        grid-row: 2;

        width: 100%;

        justify-content: flex-start;

        padding-bottom: 16px;

        overflow-x: auto;

        scrollbar-width: none;
    }

    .storefront-nav::-webkit-scrollbar {
        display: none;
    }

    .storefront-order {
        justify-self: end;
    }

    .storefront-hero {
        min-height: 760px;
    }

    .storefront-window {
        margin-bottom: 180px;
    }

    .storefront-window h1 {
        font-size: clamp(5rem, 12vw, 8.5rem);
    }

    .storefront-door {
        right: var(--side);
    }

    .storefront-hero__note {
        left: var(--side);
    }

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

    .menu-column:last-child {
        grid-column: 1 / -1;

        max-width: 50%;
    }

    .morning {
        min-height: 980px;
    }

    .morning-timeline {
        grid-template-columns: repeat(5, 1fr);
    }

    .bakery-box__inside {
        grid-template-columns: 1fr 1fr;
    }

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

    .bakery-footer > p:last-child {
        grid-column: 1 / -1;

        text-align: left;
    }

}


/* ==========================================================
   RESPONSIVE — 820
   ========================================================== */

@media (max-width: 820px) {

    :root {
        --side: 24px;
    }

    .awning {
        height: 23px;

        background:
            repeating-linear-gradient(
                90deg,
                var(--blue) 0,
                var(--blue) 32px,
                var(--cream) 32px,
                var(--cream) 64px
            );
    }

    .storefront-header__inner {
        min-height: 88px;

        grid-template-columns: 1fr auto;
        gap: 16px 24px;
    }

    .storefront-logo__name {
        font-size: 1.55rem;
    }

    .storefront-order {
        min-height: 44px;
    }

    .storefront-hero {
        min-height: 770px;
    }

    .storefront-hero__photo::before {
        background:
            linear-gradient(
                180deg,
                rgba(16, 40, 67, 0.65) 0%,
                rgba(16, 40, 67, 0.56) 48%,
                rgba(16, 40, 67, 0.76) 100%
            );
    }

    .storefront-window {
        width: calc(100% - (var(--side) * 2));

        margin:
            70px
            auto
            200px;

        align-self: center;
    }

    .storefront-window h1 span:last-child {
        margin-left: 0;
    }

    .storefront-door {
        right: var(--side);
        bottom: 56px;
        left: var(--side);

        grid-template-columns: repeat(3, 1fr);
    }

    .storefront-door a {
        min-width: 0;
    }

    .storefront-hero__note {
        display: none;
    }

    .pastry-case__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .case-footer {
        justify-content: flex-start;
    }

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

    .menu-column:last-child {
        grid-column: auto;
        max-width: none;
    }

    .menu-board__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .menu-board__bottom p:last-child {
        text-align: left;
    }

    .morning {
        min-height: 1120px;
    }

    .morning__intro {
        padding-top: 72px;
    }

    .morning-timeline {
        top: 390px;
        bottom: auto;

        grid-template-columns: 1fr;

        border-top: 0;
        border-left:
            1px solid rgba(255, 255, 255, 0.4);

        margin-left: var(--side);
        padding:
            0
            var(--side)
            0
            26px;
    }

    .morning-timeline li {
        min-height: 102px;

        padding: 0 0 20px;
    }

    .morning-timeline li::before {
        top: 3px;
        left: -33px;
    }

    .morning-timeline time {
        font-size: 2rem;
    }

    .morning__story {
        right: var(--side);
        bottom: 42px;
        left: var(--side);

        width: auto;

        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bakery-box__inside {
        grid-template-columns: 1fr;
    }

    .bakery-box__photo {
        min-height: 420px;
    }

    .door-glass {
        right: var(--side);
        left: var(--side);

        width: auto;
    }

}


/* ==========================================================
   RESPONSIVE — 620
   ========================================================== */

@media (max-width: 620px) {

    :root {
        --side: 18px;
    }

    .storefront-header__inner {
        padding-block: 14px;

        grid-template-columns: 1fr;
    }

    .storefront-order {
        display: none;
    }

    .storefront-nav {
        grid-column: 1;
        grid-row: auto;

        padding-bottom: 0;

        gap: 22px;
    }

    .storefront-nav a {
        font-size: 0.66rem;
    }

    .storefront-logo__tagline {
        font-size: 0.7rem;
    }

    .storefront-hero {
        min-height: 730px;
    }

    .storefront-hero__photo::after {
        inset: 10px;
    }

    .storefront-window {
        margin:
            52px
            auto
            215px;

        padding:
            28px
            22px;
    }

    .storefront-window h1 {
        font-size: clamp(4.2rem, 20vw, 6.4rem);
    }

    .storefront-window__tagline {
        font-size: 1.25rem;
    }

    .storefront-window__intro {
        font-size: 0.91rem;
    }

    .storefront-door {
        bottom: 24px;

        grid-template-columns: 1fr;
    }

    .storefront-door a {
        min-height: 61px;

        padding: 9px 15px;

        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .storefront-door a:last-child {
        border-bottom: 0;
    }

    .storefront-door span {
        font-size: 0.5rem;
    }

    .storefront-door strong {
        font-size: 0.93rem;
    }

    .pastry-case {
        padding-top: 65px;
    }

    .pastry-case__heading h2 {
        font-size: clamp(3rem, 15vw, 4.7rem);
    }

    .case-glass {
        padding-top: 28px;
        padding-bottom: 35px;
    }

    .case-item {
        width: min(78vw, 310px);
    }

    .case-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .menu-board {
        border-top-width: 9px;
        border-bottom-width: 9px;
    }

    .menu-board__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .menu-board__title h2 {
        font-size: clamp(3.4rem, 16vw, 5.5rem);
    }

    .menu-column h3 {
        font-size: 2.2rem;
    }

    .menu-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .menu-list > li > span {
        justify-self: start;
    }

    .morning {
        min-height: 1180px;
    }

    .morning__intro h2 {
        font-size: clamp(3.3rem, 16vw, 5.4rem);
    }

    .bakery-box {
        width: calc(100% - 24px);

        margin-block: 70px;
    }

    .bakery-box__lid {
        min-height: 92px;

        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .bakery-box__lid span {
        font-size: 1.45rem;
    }

    .bakery-box__lid small {
        font-size: 0.45rem;
    }

    .bakery-box__copy {
        padding:
            45px
            25px;
    }

    .bakery-box h2 {
        font-size: clamp(3.5rem, 17vw, 5.6rem);
    }

    .bakery-box__photo {
        min-height: 320px;
    }

    .front-door {
        min-height: 760px;
    }

    .door-glass {
        padding: 34px 26px;
    }

    .door-glass h2 {
        font-size: clamp(3rem, 14vw, 4.6rem);
    }

    .closing-receipt {
        padding-inline: 26px;

        background:
            repeating-linear-gradient(
                90deg,
                var(--blue) 0,
                var(--blue) 34px,
                var(--cream) 34px,
                var(--cream) 68px
            );
    }

    .receipt {
        padding:
            38px
            24px
            32px;
    }

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

        gap: 12px;
    }

    .bakery-footer > p:last-child {
        grid-column: auto;
    }

}


/* ==========================================================
   RESPONSIVE — 420
   ========================================================== */

@media (max-width: 420px) {

    .storefront-logo__name {
        font-size: 1.35rem;
    }

    .storefront-nav {
        gap: 18px;
    }

    .storefront-window__kicker {
        font-size: 0.56rem;
    }

    .storefront-window h1 {
        font-size: clamp(3.9rem, 21vw, 5.2rem);
    }

    .shelf-label {
        min-height: 82px;
    }

    .morning {
        min-height: 1240px;
    }

    .morning-timeline {
        top: 365px;
    }

    .morning__story {
        bottom: 30px;
    }

    .door-hours > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .door-hours strong {
        text-align: left;
    }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

}

/* WE KNEAD TYPE POLISH START */


/* ==========================================================
   HEADER — stronger everyday readability
   ========================================================== */

.storefront-nav a {
    font-size: 0.81rem;
    line-height: 1.15;
}

.storefront-order {
    font-size: 0.72rem;
}

.storefront-logo__tagline {
    margin-top: 3px;

    font-size: 0.82rem;
    line-height: 1.2;
}


/* ==========================================================
   HERO — loosen oversized display typography slightly
   ========================================================== */

.storefront-window h1 {
    max-width: 780px;

    font-size: clamp(4.8rem, 9.3vw, 10rem);
    line-height: 0.79;

    letter-spacing: -0.065em;
}

.storefront-window__tagline {
    margin-top: 8px;
    margin-bottom: 28px;

    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.2;
}

.storefront-window__intro {
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    line-height: 1.72;
}

.storefront-door span {
    font-size: 0.6rem;
}

.storefront-door strong {
    font-size: 1.14rem;
    line-height: 1.15;
}

.storefront-hero__note {
    font-size: 0.62rem;
}

.storefront-hero__note span {
    margin-top: 5px;

    font-size: 1rem;
    line-height: 1.2;
}


/* ==========================================================
   PASTRY CASE — hide browser scrollbar, keep scrolling
   ========================================================== */

.case-glass {
    -ms-overflow-style: none;
    scrollbar-width: none;

    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
}

.case-glass::-webkit-scrollbar {
    width: 0;
    height: 0;

    display: none;
}

.case-item {
    scroll-snap-align: start;
}

.shelf-label {
    min-height: 96px;

    padding: 15px 15px 14px;
}

.shelf-label strong {
    margin-bottom: 6px;

    font-size: 1.08rem;
    line-height: 1.08;
}

.shelf-label small {
    font-size: 0.57rem;
    line-height: 1.55;
}

.shelf-label > span {
    font-size: 0.82rem;
}

.case-footer span {
    font-size: 0.59rem;
}

.case-footer strong {
    font-size: 1rem;
}


/* ==========================================================
   MENU BOARD — retain drama, improve reading size
   ========================================================== */

.menu-board__top p,
.menu-board__top span {
    font-size: 0.62rem;
}

.menu-board__title h2 {
    max-width: 1000px;

    font-size: clamp(3.65rem, 7vw, 7.15rem);
    line-height: 0.9;

    letter-spacing: -0.052em;
}

.menu-board__title > p {
    margin-top: 8px;

    font-size: clamp(1.08rem, 1.65vw, 1.4rem);
    line-height: 1.25;
}

.menu-column h3 {
    font-size: clamp(2.1rem, 2.8vw, 2.85rem);
    line-height: 1;
}

.menu-list strong {
    font-size: 0.92rem;
    line-height: 1.4;
}

.menu-list small {
    margin-top: 5px;

    font-size: 0.55rem;
    line-height: 1.55;
}

.menu-list > li > span {
    font-size: 0.76rem;
}

.menu-board__bottom p:first-child {
    font-size: 0.66rem;
}

.menu-board__bottom p:last-child {
    font-size: 1.22rem;
    line-height: 1.3;
}


/* ==========================================================
   MORNING — reduce headline crowding + strengthen timeline
   ========================================================== */

.morning__intro > p {
    font-size: 0.66rem;
}

.morning__intro h2 {
    max-width: 980px;

    font-size: clamp(3.9rem, 7.3vw, 7.7rem);
    line-height: 0.9;

    letter-spacing: -0.055em;
}

.morning-timeline time {
    font-size: clamp(1.9rem, 2.7vw, 2.9rem);
    line-height: 1.05;
}

.morning-timeline time small {
    margin-left: 5px;

    font-size: 0.57rem;
}

.morning-timeline p {
    max-width: 190px;

    font-size: 0.82rem;
    line-height: 1.55;
}

.morning__story p {
    font-size: 0.88rem;
    line-height: 1.65;
}


/* ==========================================================
   BAKERY BOX — fix tight headline
   ========================================================== */

.bakery-box__lid small {
    font-size: 0.59rem;
}

.bakery-box__copy > p:first-child {
    font-size: 0.62rem;
}

.bakery-box h2 {
    max-width: 540px;

    font-size: clamp(3.5rem, 5.9vw, 6.25rem);
    line-height: 0.91;

    letter-spacing: -0.052em;
}

.bakery-box__lead {
    margin-top: 10px;

    font-size: clamp(1.3rem, 1.9vw, 1.65rem);
    line-height: 1.25;
}

.bakery-box li {
    padding-block: 12px;

    font-size: 0.68rem;
}

.box-button {
    font-size: 0.71rem;
}

.bakery-box__fine-print {
    font-size: 0.59rem;
}


/* ==========================================================
   FRONT DOOR — improve small information typography
   ========================================================== */

.door-glass__small {
    font-size: 0.63rem;
}

.door-glass h2 {
    font-size: clamp(3rem, 4.7vw, 5.1rem);
    line-height: 0.93;
}

.door-glass h2 + p {
    font-size: 1rem;
}

.door-hours span {
    font-size: 0.63rem;
}

.door-hours strong {
    font-size: 1.17rem;
}

.door-contact a {
    font-size: 0.76rem;
    line-height: 1.55;
}

.door-glass__warning {
    font-size: 0.61rem;
    line-height: 1.55;
}

.door-glass__warning span {
    margin-top: 7px;

    font-size: 1rem;
}


/* ==========================================================
   RECEIPT — readable without losing receipt scale
   ========================================================== */

.receipt__brand {
    font-size: 1.9rem;
}

.receipt__tagline {
    font-size: 0.94rem;
}

.receipt__line {
    font-size: 0.67rem;
    line-height: 1.5;
}

.receipt__total {
    font-size: 2.35rem;
    line-height: 1.05;
}

.receipt__return {
    font-size: 0.67rem;
}

.receipt small {
    font-size: 0.55rem;
    line-height: 1.6;
}


/* ==========================================================
   FOOTER — was too microscopic
   ========================================================== */

.bakery-footer strong {
    font-size: 1.25rem;
}

.bakery-footer span,
.bakery-footer p {
    font-size: 0.58rem;
    line-height: 1.55;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 820px) {

    .storefront-nav a {
        font-size: 0.74rem;
    }

    .storefront-window h1 {
        line-height: 0.82;
    }

    .morning__intro h2 {
        line-height: 0.93;
    }

    .morning-timeline p {
        font-size: 0.84rem;
    }

    .bakery-box h2 {
        line-height: 0.94;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 620px) {

    .storefront-nav a {
        font-size: 0.7rem;
    }

    .storefront-window h1 {
        font-size: clamp(4rem, 18vw, 5.8rem);
        line-height: 0.84;
    }

    .storefront-window__tagline {
        font-size: 1.3rem;
    }

    .shelf-label strong {
        font-size: 1.02rem;
    }

    .shelf-label small {
        font-size: 0.55rem;
    }

    .menu-board__title h2 {
        font-size: clamp(3.2rem, 14vw, 5rem);
        line-height: 0.94;
    }

    .morning__intro h2 {
        font-size: clamp(3.15rem, 14vw, 4.9rem);
        line-height: 0.95;
    }

    .bakery-box h2 {
        font-size: clamp(3.2rem, 15vw, 5rem);
        line-height: 0.96;
    }

    .receipt__brand {
        font-size: 1.7rem;
    }

}


/* WE KNEAD TYPE POLISH END */

/* WE KNEAD FINAL SPACING START */


/* ==========================================================
   DISPLAY TYPOGRAPHY
   More breathing room — receipt section is the reference.
   ========================================================== */


/* HERO */

.storefront-window h1 {
    max-width: 760px;

    font-size: clamp(4.5rem, 8.6vw, 9.2rem);
    line-height: 0.91;

    letter-spacing: -0.042em;
}

.storefront-window h1 span + span {
    margin-top: 0.055em;
}

.storefront-window__tagline {
    margin-top: 18px;
}


/* PASTRY CASE HEADING */

.pastry-case__heading h2 {
    max-width: 600px;

    font-size: clamp(3rem, 5.8vw, 5.8rem);
    line-height: 0.97;

    letter-spacing: -0.035em;
}


/* MENU BOARD */

.menu-board__title h2 {
    max-width: 980px;

    font-size: clamp(3.4rem, 6.3vw, 6.5rem);
    line-height: 0.98;

    letter-spacing: -0.035em;
}

.menu-board__title > p {
    margin-top: 14px;
}


/* MORNING FEATURE */

.morning__intro h2 {
    max-width: 960px;

    font-size: clamp(3.6rem, 6.5vw, 7rem);
    line-height: 0.98;

    letter-spacing: -0.037em;
}


/* BAKERY BOX */

.bakery-box h2 {
    max-width: 520px;

    font-size: clamp(3.25rem, 5.35vw, 5.75rem);
    line-height: 1;

    letter-spacing: -0.035em;
}

.bakery-box__lead {
    margin-top: 15px;
}


/* FRONT DOOR */

.door-glass h2 {
    line-height: 0.98;
    letter-spacing: -0.035em;
}


/* ==========================================================
   SMALL TYPOGRAPHY
   Bring tiny labels up without making them loud.
   ========================================================== */

.case-label,
.menu-board__top p,
.menu-board__top span,
.morning__intro > p,
.bakery-box__copy > p:first-child,
.door-glass__small {
    font-size: 0.67rem;
    line-height: 1.5;

    letter-spacing: 0.075em;
}

.shelf-label small {
    font-size: 0.60rem;
    line-height: 1.55;
}

.menu-list small {
    font-size: 0.58rem;
    line-height: 1.6;
}

.menu-list strong {
    line-height: 1.45;
}

.morning-timeline p {
    line-height: 1.6;
}

.morning__story p {
    line-height: 1.72;
}

.bakery-footer span,
.bakery-footer p {
    font-size: 0.62rem;
    line-height: 1.6;
}


/* ==========================================================
   DESKTOP PASTRY CASE
   All FIVE products visible.
   No horizontal scrolling required on desktop.
   ========================================================== */

@media (min-width: 980px) {

    .case-glass {
        overflow-x: hidden;
    }

    .case-glass__rail {
        width: 100%;

        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));

        gap: 18px;
    }

    .case-item {
        width: auto;
        min-width: 0;
    }

    .case-item figure {
        aspect-ratio: 4 / 3;
    }

    .shelf-label {
        min-height: 104px;
    }

}


/* ==========================================================
   TABLET / MOBILE PASTRY CASE
   Swipe horizontally — scrollbar remains hidden.
   ========================================================== */

@media (max-width: 979px) {

    .case-glass {
        overflow-x: auto;

        scrollbar-width: none;
        -ms-overflow-style: none;

        scroll-snap-type: x proximity;
    }

    .case-glass::-webkit-scrollbar {
        display: none;

        width: 0;
        height: 0;
    }

    .case-glass__rail {
        width: max-content;

        display: flex;

        gap: 20px;
    }

    .case-item {
        width: clamp(260px, 42vw, 340px);

        flex: 0 0 auto;

        scroll-snap-align: start;
    }

}


/* ==========================================================
   TABLET DISPLAY TYPE
   ========================================================== */

@media (max-width: 820px) {

    .storefront-window h1 {
        line-height: 0.94;

        letter-spacing: -0.035em;
    }

    .pastry-case__heading h2,
    .menu-board__title h2,
    .morning__intro h2,
    .bakery-box h2 {
        line-height: 1;

        letter-spacing: -0.03em;
    }

}


/* ==========================================================
   MOBILE DISPLAY TYPE
   ========================================================== */

@media (max-width: 620px) {

    .storefront-window h1 {
        font-size: clamp(3.8rem, 17vw, 5.4rem);
        line-height: 0.96;
    }

    .pastry-case__heading h2 {
        font-size: clamp(2.9rem, 13vw, 4.3rem);
        line-height: 1;
    }

    .menu-board__title h2 {
        font-size: clamp(3rem, 13.5vw, 4.6rem);
        line-height: 1;
    }

    .morning__intro h2 {
        font-size: clamp(3rem, 13.5vw, 4.7rem);
        line-height: 1;
    }

    .bakery-box h2 {
        font-size: clamp(3rem, 14vw, 4.7rem);
        line-height: 1.02;
    }

}


/* WE KNEAD FINAL SPACING END */

/* WE KNEAD VIEWPORT TUNE START */


/* ==========================================================
   WIDE / ULTRAWIDE

   Keep the composition editorial instead of allowing sections
   to stretch endlessly across large monitors.
   ========================================================== */

@media (min-width: 1500px) {

    :root {
        --wide: 1320px;
        --content: 1120px;
    }

    .menu-board__title {
        max-width: 840px;
    }

    .menu-board__title h2 {
        max-width: 840px;
    }

    .morning__intro h2 {
        max-width: 900px;
    }

    .morning__story {
        width: min(660px, 48vw);
    }

}


/* Extra-large monitors */

@media (min-width: 1900px) {

    :root {
        --wide: 1280px;
        --content: 1080px;
    }

}


/* ==========================================================
   MOBILE — PASTRY CASE INTRO

   Reduce "Pick your problem." so it leads the section
   without eating the entire viewport.
   ========================================================== */

@media (max-width: 620px) {

    .pastry-case__heading {
        gap: 22px;
    }

    .pastry-case__heading > div {
        width: 100%;
    }

    .pastry-case__heading h2 {
        max-width: 9ch;

        font-size: clamp(
            2.75rem,
            11vw,
            3.55rem
        );

        line-height: 1.01;

        letter-spacing: -0.028em;
    }

    .pastry-case__heading > p {
        max-width: 390px;

        font-size: 0.94rem;
        line-height: 1.65;
    }

}


/* Narrow phones */

@media (max-width: 420px) {

    .pastry-case__heading h2 {
        max-width: 8.5ch;

        font-size: clamp(
            2.55rem,
            12vw,
            3.15rem
        );
    }

}


/* WE KNEAD VIEWPORT TUNE END */

/* WE KNEAD MOBILE PASTRY FINAL START */

@media (max-width: 620px) {

    /* ------------------------------------------------------
       SECTION INTRO
       ------------------------------------------------------ */

    .pastry-case {
        padding-top: 58px;
        padding-bottom: 42px;
    }

    .pastry-case__heading {
        margin-bottom: 30px;

        gap: 20px;
    }

    .pastry-case__heading h2 {
        max-width: 8.4ch;

        font-size: clamp(
            2.55rem,
            10.4vw,
            3.15rem
        );

        line-height: 1.07;

        letter-spacing: -0.024em;
    }

    .pastry-case__heading > p {
        max-width: 420px;
        margin-bottom: 0;

        font-size: 0.94rem;
        line-height: 1.68;
    }


    /* ------------------------------------------------------
       MOBILE PASTRY RAIL

       One dominant card + a small preview of the next.
       ------------------------------------------------------ */

    .case-glass {
        padding-top: 24px;
        padding-bottom: 28px;
    }

    .case-glass__rail {
        gap: 16px;
    }

    .case-item {
        width: min(
            78vw,
            370px
        );

        flex: 0 0 auto;
    }

    .case-item figure {
        aspect-ratio: 4 / 3;
    }

    .shelf-label {
        min-height: 102px;

        padding:
            15px
            15px
            16px;
    }

    .shelf-label strong {
        font-size: 1.08rem;
        line-height: 1.12;
    }

    .shelf-label small {
        max-width: 28ch;

        font-size: 0.58rem;
        line-height: 1.55;
    }

    .shelf-label > span {
        font-size: 0.8rem;
    }


    /* ------------------------------------------------------
       CASE FOOTER
       ------------------------------------------------------ */

    .case-footer {
        margin-top: 22px;

        padding-bottom: 0;

        gap: 5px;
    }

    .case-footer span {
        font-size: 0.58rem;
    }

    .case-footer strong {
        font-size: 1rem;
        line-height: 1.25;
    }

}


/* EXTRA-NARROW PHONES */

@media (max-width: 420px) {

    .pastry-case__heading h2 {
        max-width: 8.2ch;

        font-size: clamp(
            2.45rem,
            11vw,
            2.9rem
        );

        line-height: 1.08;
    }

    .case-item {
        width: 82vw;
    }

}


/* WE KNEAD MOBILE PASTRY FINAL END */

/* WE KNEAD MOBILE STACK START */

@media (max-width: 620px) {

    /* ------------------------------------------------------
       PASTRY CASE
       Show every product vertically.
       No carousel. No hidden products. No swipe required.
       ------------------------------------------------------ */

    .case-glass {
        overflow-x: visible;
        overflow-y: visible;

        padding:
            22px
            var(--side)
            28px;

        scroll-snap-type: none;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .case-glass::-webkit-scrollbar {
        display: none;

        width: 0;
        height: 0;
    }

    .case-glass__rail {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;

        gap: 24px;
    }

    .case-item {
        width: 100%;
        min-width: 0;

        flex: none;

        scroll-snap-align: none;
    }

    .case-item figure {
        width: 100%;

        aspect-ratio: 4 / 3;
    }

    .shelf-label {
        width: 100%;
        min-height: 0;

        padding:
            16px
            16px
            18px;
    }

    .shelf-label strong {
        font-size: 1.12rem;
    }

    .shelf-label small {
        max-width: none;
    }

}


/* Narrow phones */

@media (max-width: 420px) {

    .case-glass {
        padding-inline: 14px;
    }

    .case-glass__rail {
        gap: 20px;
    }

}


/* WE KNEAD MOBILE STACK END */

/* WE KNEAD PASTRY DESKTOP SIZE START */


/* ==========================================================
   NORMAL DESKTOP
   3 + 2 layout so photography stays substantial.
   ========================================================== */

@media (min-width: 980px) and (max-width: 1499px) {

    .case-glass {
        overflow: visible;

        padding-left: max(
            var(--side),
            calc((100vw - 1180px) / 2)
        );

        padding-right: max(
            var(--side),
            calc((100vw - 1180px) / 2)
        );
    }

    .case-glass__rail {
        width: min(1180px, 100%);
        margin-inline: auto;

        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 26px;
    }

    .case-item {
        width: auto;
        min-width: 0;
    }

    .case-item figure {
        aspect-ratio: 4 / 3;
    }

    .shelf-label {
        min-height: 108px;

        padding:
            16px
            17px
            18px;
    }

    .shelf-label strong {
        font-size: 1.12rem;
    }

    .shelf-label small {
        font-size: 0.59rem;
    }

}


/* ==========================================================
   WIDE + ULTRAWIDE
   All 5 across, but give this section its own wider canvas.
   ========================================================== */

@media (min-width: 1500px) {

    .case-glass {
        overflow: visible;

        padding-left: max(
            32px,
            calc((100vw - 1540px) / 2)
        );

        padding-right: max(
            32px,
            calc((100vw - 1540px) / 2)
        );
    }

    .case-glass__rail {
        width: min(1540px, 100%);
        margin-inline: auto;

        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));

        gap: 24px;
    }

    .case-item {
        width: auto;
        min-width: 0;
    }

    .case-item figure {
        aspect-ratio: 4 / 3;
    }

    .shelf-label {
        min-height: 110px;

        padding:
            17px
            17px
            19px;
    }

    .shelf-label strong {
        font-size: 1.14rem;
    }

    .shelf-label small {
        font-size: 0.60rem;
        line-height: 1.55;
    }

    .shelf-label > span {
        font-size: 0.84rem;
    }

}


/* ==========================================================
   MOBILE
   Keep the approved vertical stack.
   ========================================================== */

@media (max-width: 620px) {

    .case-glass__rail {
        grid-template-columns: 1fr;
    }

    .case-item {
        width: 100%;
    }

}


/* WE KNEAD PASTRY DESKTOP SIZE END */

/* WE KNEAD MOBILE NAV START */


/* ==========================================================
   DESKTOP
   ========================================================== */

.menu-toggle,
.mobile-order-link {
    display: none;
}


/* ==========================================================
   MOBILE / TABLET NAVIGATION
   ========================================================== */

@media (max-width: 820px) {

    body.nav-open {
        overflow: hidden;
    }

    .storefront-header__inner {
        min-height: 82px;

        padding-block: 0;

        grid-template-columns:
            minmax(0, 1fr)
            auto;

        gap: 18px;
    }

    .storefront-order {
        display: none;
    }


    /* BURGER */

    .menu-toggle {
        position: relative;
        z-index: 102;

        width: 46px;
        height: 46px;

        display: grid;
        place-content: center;

        padding: 0;

        color: var(--blue-dark);
        background: transparent;

        border: 2px solid var(--blue-dark);

        cursor: pointer;
    }

    .menu-toggle span {
        width: 21px;
        height: 2px;

        display: block;

        margin: 2.5px 0;

        background: currentColor;

        transform-origin: center;

        transition:
            transform 180ms ease,
            opacity 180ms ease;
    }


    /* OPEN ICON */

    body.nav-open .menu-toggle span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    body.nav-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .menu-toggle span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }


    /* NAV PANEL */

    .storefront-nav {
        position: fixed;
        z-index: 100;

        top: 105px;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;

        margin: 0;
        padding:
            38px
            var(--side)
            48px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;

        overflow-y: auto;

        color: var(--cream);
        background: var(--blue-dark);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-18px);

        pointer-events: none;

        transition:
            opacity 180ms ease,
            visibility 180ms ease,
            transform 180ms ease;
    }

    body.nav-open .storefront-nav {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    /* NAV LINKS */

    .storefront-nav > a {
        width: 100%;

        padding:
            17px
            2px;

        color: var(--cream);

        border-bottom:
            1px solid rgba(251, 244, 229, 0.18);

        font-family: var(--display);
        font-size: clamp(
            1.65rem,
            5vw,
            2.35rem
        );
        font-weight: 650;
        line-height: 1.1;

        white-space: normal;
    }

    .storefront-nav > a::after {
        display: none;
    }

    .storefront-nav > a:hover,
    .storefront-nav > a:focus-visible {
        color: var(--butter);
    }


    /* ORDER CTA INSIDE MOBILE NAV */

    .storefront-nav .mobile-order-link {
        min-height: 58px;

        margin-top: 30px;
        padding:
            0
            20px;

        display: flex;
        align-items: center;
        justify-content: center;

        color: var(--blue-dark);
        background: var(--butter);

        border: 0;

        font-family: var(--mono);
        font-size: 0.76rem;
        font-weight: 600;

        letter-spacing: 0.055em;
        text-transform: uppercase;
    }

    .storefront-nav .mobile-order-link:hover,
    .storefront-nav .mobile-order-link:focus-visible {
        color: var(--blue-dark);
        background: var(--cream);
    }

}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 620px) {

    .storefront-header__inner {
        min-height: 82px;

        padding-block: 0;

        grid-template-columns:
            minmax(0, 1fr)
            auto;
    }

    .storefront-nav {
        top: 105px;
    }

    .storefront-logo__name {
        font-size: 1.35rem;
    }

    .storefront-logo__tagline {
        font-size: 0.72rem;
    }

}


/* ==========================================================
   VERY SMALL MOBILE
   ========================================================== */

@media (max-width: 420px) {

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .storefront-logo__name {
        font-size: 1.2rem;
    }

}


/* WE KNEAD MOBILE NAV END */

