@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


:root {
    --cream: #fbf7ee;
    --paper: #f6eedf;
    --butter: #eadfbd;
    --sand: #ded0b6;
    --brown: #4a2412;
    --brown-2: #6a4128;
    --olive: #626443;
    --gold: #b8943c;
    --blush: #ead2ca;
    --line: rgba(74, 36, 18, .16);
    --muted: rgba(74, 36, 18, .68);
    --serif: 'Playfair Display', serif;
    --sans: 'Trebuchet MS', Arial, sans-serif;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

[id] {
    scroll-margin-top: var(--nav-height-desktop, 61px)
}

@media(max-width:900px) {
    [id] {
        scroll-margin-top: var(--nav-height-mobile, 64px)
    }
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--brown);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    transition: background-color .7s ease;
    overflow-x: clip;
}

/* Scroll color-swap effect currently disabled — background/text kept at normal values.
   The underlying toggle (body.bg-alt, driven by js/scroll-color.js) is left fully intact;
   to re-enable the effect later, just restore the values below. */
body.bg-alt {
    background-color: var(--cream);
    /* background-color: #7a704c */

}

body.bg-alt #offerings .eyebrow,
body.bg-alt #offerings .section-title,
body.bg-alt #offerings .lead,
body.bg-alt #offerings .fine {
    color: inherit;
    /* color: var(--cream) */
}

#offerings .eyebrow,
#offerings .section-title,
#offerings .lead,
#offerings .fine {
    transition: color .7s ease
}

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

a {
    color: inherit
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px clamp(22px, 5vw, 72px);
    transition: background-color .4s ease
}

body.nav-solid .site-nav {
    background: var(--cream)
}

body.nav-solid .site-nav .brand,
body.nav-solid .nav-links>a,
body.nav-solid .nav-item>a,
body.nav-solid .nav-dropdown-inner a {
    color: var(--muted)
}

body.nav-solid .nav-links>a:hover,
body.nav-solid .nav-item>a:hover {
    color: var(--brown)
}


/* color change for home page — currently neutralized to match the normal solid-nav look;
   see the note above body.bg-alt for how to restore this effect later. */
body.home.bg-alt.nav-solid .site-nav {
    background: var(--cream);
    border-bottom-color: var(--line);
    /* background: #7a704c;
    border-bottom-color: transparent*/
}

body.home.bg-alt.nav-solid .site-nav .brand,
body.home.bg-alt.nav-solid .nav-links>a,
body.home.bg-alt.nav-solid .nav-item>a,
body.home.bg-alt.nav-solid .nav-dropdown-inner a {
    color: var(--muted);
    /* Match the solid cream navbar text colour used on the other pages */
}

body.home.bg-alt.nav-solid .nav-links>a:hover,
body.home.bg-alt.nav-solid .nav-item>a:hover {
    color: var(--brown);
    /* color: #fff */
}

body:not(.home) {
    padding-top: var(--nav-height-desktop, 61px)
}

body:not(.home) .hero-full {
    margin-top: calc(-1 * var(--nav-height-desktop, 61px))
}

@media(max-width:900px) {
    body:not(.home) {
        padding-top: var(--nav-height-mobile, 64px)
    }

    body:not(.home) .hero-full {
        margin-top: calc(-1 * var(--nav-height-mobile, 64px))
    }
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 44px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter .2s ease;
}

body.nav-solid .brand-logo {
    filter: none;
}

body.home.bg-alt.nav-solid .brand-logo {
    filter: none;
    /* filter: brightness(0) invert(1); */
}

.brand span {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .22em;
    color: var(--gold);
    margin-bottom: 5px
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center
}

.nav-links a,
.nav-item>a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 10px;
    font-weight: 700;
    color: rgba(251, 247, 238, .86)
}

.nav-links a:hover,
.nav-item>a:hover {
    color: #fff
}

.nav-dropdown-inner a {
    color: rgba(251, 247, 238, .86)
}

.nav-dropdown-inner a:hover {
    color: #fff
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center
}

.nav-item>a:after {
    content: "";
    display: inline-block;
    margin-left: 5px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid currentColor;
    vertical-align: middle;
    opacity: .6
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 14px;
    z-index: 30
}

.nav-dropdown-inner {
    display: flex;
    flex-direction: column;
    min-width: 168px;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 10px
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    display: block
}

.nav-dropdown a {
    display: block;
    padding: 9px 12px;
    white-space: nowrap;
    text-align: center
}

.nav-dropdown a:hover {
    text-decoration: underline
}

.nav-utility {
    opacity: .72;
    font-size: 9px !important
}

@media(max-width:900px) {
    .nav-dropdown {
        position: static;
        transform: none;
        padding-top: 0;
        display: none
    }

    .nav-dropdown-inner {
        border: 0;
        box-shadow: none;
        padding: 4px 0 4px 12px
    }

    .nav-item {
        flex-direction: column;
        align-items: flex-start
    }

    .nav-item:focus-within .nav-dropdown,
    .nav-item.open .nav-dropdown {
        display: block
    }
}

.hero {
    min-height: calc(100vh - 73px);
    display: grid;
    grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
    border-bottom: 1px solid var(--line)
}

.hero-copy {
    padding: clamp(40px, 7vw, 92px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px
}

.hero-media {
    min-height: 540px;
    position: relative;
    overflow: hidden;
    background: var(--paper)
}

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

.hero-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 247, 238, .08), rgba(251, 247, 238, 0))
}

.hero-full {
    position: relative;
    height: 100svh;
    width: 100%;
    overflow: hidden;
    /* border-bottom: 1px solid var(--line) */
}

.hero-full-media {
    position: absolute;
    inset: 0
}

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

.hero-full-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 clamp(22px, 5vw, 72px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 3.5vw, 40px);
    z-index: 1
}

.display.light {
    color: var(--cream);
    text-shadow: 0 4px 30px rgba(0, 0, 0, .28)
}

.hero-full-content .hero-brandmark {
    margin: 0;
    font-size: clamp(24px, 2.6vw, 36px);
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: 700;
    position: relative;
    bottom: 6px;
    /* nudge down a couple px, or use a negative value to nudge up */


}

.hero-full-right {
    max-width: 360px;
    text-align: left
}

.hero-full-right .lead {
    margin: 0 0 12px;
    font-size: clamp(13px, 1.05vw, 15px);
    line-height: 1.5
}

.hero-full-right .caption {
    margin: 0
}

.h3.light,
.caption.light {
    color: var(--cream);
    text-shadow: 0 1px 12px rgba(0, 0, 0, .35)
}

.lead.light {
    color: rgba(251, 247, 238, .92);
    text-shadow: 0 1px 12px rgba(0, 0, 0, .35)
}

@media(max-width:900px) {
    .hero-full-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 22px
    }

    .hero-full-right {
        max-width: 100%;
        text-align: center
    }

    .hero-brandmark {
        white-space: normal
    }
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .24em;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 16px
}

/* bloom where you gather */
.display {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(54px, 8vw, 112px);
    line-height: .88;
    letter-spacing: -.017em;
    margin: 0 0 28px
}

.lead {
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
    color: var(--brown-2);
    max-width: 680px
}

.quiet {
    color: var(--muted);
    font-size: clamp(10px, 1vw, 12px);
}

.nav-cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--brown);
    background: var(--brown);
    color: var(--cream);
    padding: 13px 22px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    font-weight: 700;
    min-height: 44px
}

.btn:hover {
    background: transparent;
    color: var(--brown)
}

.btn.ghost {
    background: transparent;
    color: var(--brown)
}

.btn.ghost:hover {
    background: var(--brown);
    color: var(--cream)
}

.caption {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--muted)
}

.section {
    padding: clamp(64px, 9vw, 128px) clamp(22px, 5vw, 72px);
    /* border-bottom: 1px solid var(--line) */
}

.section.compact {
    padding-top: 70px;
    padding-bottom: 70px
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, .85fr);
    grid-template-rows: repeat(2, 1fr);
    gap: clamp(10px, 1.6vw, 20px);
    height: clamp(420px, 60vh, 620px);
    margin-top: 32px
}

.gallery-tile {
    position: relative;
    padding: 0;
    border: 0;
    background: var(--paper);
    cursor: pointer;
    overflow: hidden
}

.gallery-tile-big {
    grid-row: span 2
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease
}

.gallery-tile:hover img {
    transform: scale(1.04)
}

.gallery-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: rgba(20, 14, 8, .28);
    opacity: 0;
    transition: opacity .25s ease
}

.gallery-tile:hover .gallery-play,
.gallery-tile:focus-visible .gallery-play {
    opacity: 1
}

@media(max-width:900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
        height: auto
    }

    .gallery-tile {
        height: 220px
    }

    .gallery-tile-big {
        grid-column: span 2;
        grid-row: auto;
        height: 320px
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(20, 14, 8, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 60px)
}

.lightbox[hidden] {
    display: none
}

.lightbox-content {
    width: min(92vw, 1100px);
    height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer
}

.product-dropdowns {
    margin-top: 28px
}

/* 
.dropdown-row {
  border-bottom: 1px solid var(--line)
} */

.dropdown-row:first-child {
    border-top: 1px solid var(--line)
}

.dropdown-row summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    color: var(--brown)
}

.dropdown-row summary::-webkit-details-marker {
    display: none
}

.dropdown-row summary::after {
    content: "⌄";
    font-size: 14px;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .2s ease
}

.dropdown-row[open] summary::after {
    transform: rotate(180deg)
}

.dropdown-row-body {
    padding: 0 0 22px
}

.dropdown-row-body .care-grid {
    grid-template-columns: 1fr;
    gap: 18px
}

.care-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(24px, 2.6vw, 34px);
    margin: 0 0 32px
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px)
}

.care-block h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    margin: 0 0 10px
}

.care-block p {
    font-size: 14px;
    color: var(--brown-2);
    margin: 0
}

@media(max-width:900px) {
    .care-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

.seasonal-note-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 2vw, 26px);
    margin: 0 0 14px
}

.seasonal-note .lead {
    font-size: 14px;
    max-width: 640px
}

/* however you gather */
.section-title {
    padding-top: 25px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(38px, 5vw, 74px);
    line-height: .98;
    letter-spacing: -.035em;
    margin: 0 0 26px
}

.intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(40px, 8vw, 110px);
    align-items: end
}

.poem {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(25px, 3.4vw, 48px);
    line-height: 1.18;
    letter-spacing: -.05em
}

.fine {
    max-width: 560px;
    color: var(--muted)
}

.offer-list {
    margin-top: 56px;
    border-top: 1px solid var(--line)
}

.style-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(42px, 7vw, 96px);
    align-items: start
}

.style-image {
    position: sticky;
    top: 110px
}

.soft-img {
    background: var(--paper);
    overflow: hidden
}

.soft-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92)
}

.style-list {
    display: grid;
    gap: 54px
}

.style-item {
    padding-bottom: 44px;
    /* border-bottom: 1px solid var(--line) */
}

.style-item:last-child {
    border-bottom: 0
}

.style-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: baseline
}

.h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1;
    letter-spacing: -.045em;
    margin: 0 0 14px
}

.kanji {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: .12em;

}

.palette {
    display: flex;
    gap: 9px;
    margin-top: 20px;
    align-items: center;
    flex-wrap: wrap
}

.sw {
    width: 18px;
    height: 18px;
    border-radius: 99px;
    border: 1px solid rgba(74, 36, 18, .18);
    background: var(--paper)
}

.palette-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted);
    margin-top: 14px
}

.note-strip {
    background: var(--paper);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* border-bottom: 1px solid var(--line); */
    border-top: 1px solid var(--line)
}

.note {
    padding: 34px clamp(22px, 4vw, 54px);
    border-right: 1px solid var(--line)
}

.note:last-child {
    border-right: 0
}

.note strong {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px
}

.note p {
    margin: 0;
    color: var(--muted);
    font-size: 13px
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(42px, 7vw, 98px);
    align-items: center
}

.split.reverse {
    grid-template-columns: .9fr 1.1fr
}

.chapter {
    padding: clamp(72px, 10vw, 140px) clamp(22px, 5vw, 72px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: center;
    /* border-bottom: 1px solid var(--line) */
}

.chapter:nth-of-type(even) {
    background: var(--paper)
}

.chapter .media {
    min-height: 520px
}

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

.timeline {
    counter-reset: item;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 52px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.timeline.four {
    grid-template-columns: repeat(4, 1fr)
}

.t-step {
    padding: 30px 24px;
    border-right: 1px solid var(--line)
}

.t-step:last-child {
    border-right: 0
}

.t-step b {
    font-family: var(--serif);
    font-style: italic;
    font-size: 32px;
    color: var(--gold);
    display: block;
    margin-bottom: 18px
}

.t-step strong {
    font-family: var(--serif);
    font-style: italic;
    font-size: 24px;
    font-weight: 400;
    display: block;
    line-height: 1.05;
    margin-bottom: 10px
}

.t-step p {
    margin: 0;
    color: var(--muted);
    font-size: 13px
}

.minimal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 4vw, 64px);
    margin-top: 52px
}

.tier-header-row {
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
    margin-bottom: 20px
}

.tier-header-row .h3 {
    margin: 0 0 8px
}

.tier-price-inline {
    display: block;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted)
}

.tier-specs-list {
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 12px !important;
    /* display: flex;
    flex-direction: column;
    gap: 1px; */
}



.price {
    font-family: var(--serif);
    font-style: italic;
    font-size: 38px;
    line-height: 1;
    color: var(--brown);
    margin-top: 26px
}

.kit-audo-section {
    padding: clamp(48px, 6vw, 88px) 0;
}

.kit-audo-grid {
    display: grid;
    grid-template-columns: minmax(240px, .8fr) 1fr 1fr;
    gap: clamp(10px, 1.4vw, 18px);
    align-items: start;
    padding-right: clamp(10px, 1.4vw, 18px)
}

.kit-audo-text {
    padding: 0 clamp(22px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.kit-audo-text .lead {
    font-size: 14px;
    margin-top: 14px
}

.kit-audo-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--paper)
}

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

.kit-audo-copy {
    padding: 16px clamp(16px, 2vw, 28px) 0
}

.kit-audo-copy h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 28px);
    margin: 0 0 10px;
    color: var(--brown)
}

.kit-audo-copy>p {
    font-size: 14px;
    color: var(--brown-2);
    margin: 0 0 12px;
    line-height: 1.45;
    max-width: 340px
}

.kit-meta-italic {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--brown-2);
    margin: 0 0 4px
}

.kit-audo-copy .btn {
    margin-top: 10px
}

@media(max-width:900px) {
    .kit-audo-grid {
        grid-template-columns: 1fr;
        padding-right: clamp(10px, 3vw, 18px);
        padding-left: clamp(10px, 3vw, 18px)
    }

    .kit-audo-text {
        padding: 0 clamp(10px, 3vw, 18px) 8px
    }
}

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 60;
    visibility: hidden;
    pointer-events: none;
    /* overflow: hidden; */
}

.cart-drawer.open {
    visibility: visible;
    pointer-events: auto
}

.cart-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 14, 8, .35);
    opacity: 0;
    transition: opacity .3s ease
}

.cart-drawer.open .cart-drawer-overlay {
    opacity: 1
}

.cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(500px, 92vw);
    background: var(--cream);
    box-shadow: -18px 0 48px rgba(20, 14, 8, .18);
    padding: clamp(24px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    transform: translateX(100%);
    transition: transform .35s ease
}

.cart-drawer.open .cart-drawer-panel {
    transform: translateX(0)
}

.cart-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.cart-drawer-head h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 26px;
    margin: 0
}

.cart-drawer-head button {
    background: none;
    border: 0;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--brown)
}

.cart-drawer-items {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding-right: 0;
}

.cart-drawer-item {
    display: flex;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line)
}

.cart-drawer-items .cart-drawer-item:last-child {
    border-bottom: 0;
    padding-bottom: 0
}

.cart-drawer-item.just-added {
    background: var(--paper);
    border-bottom: 0;
    align-items: center;
    margin: 0;
    padding: 12px;
    border-bottom-color: transparent;
    /* A merged duplicate should visibly flash exactly like a newly-created line. */
    animation: dbCartAddedFlash 1.25s ease both;
}

.cart-drawer-item img {
    width: 84px;
    height: 84px;
    object-fit: cover;
}


.cart-drawer-item h4 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    margin: 0 0 4px;
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.15;
}


.cart-drawer-price {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    color: var(--gold);
    white-space: nowrap;
}

.cart-drawer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-weight: 100
}

.no-pad {
    padding-top: 0;
    padding-bottom: 0
}

.press-scroll-wrap {
    position: relative;
    height: 130vh
}

.press-style-grid {
    position: sticky;
    top: 0;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vw, 48px) clamp(22px, 5vw, 72px)
}

[data-shrink-image] {
    will-change: transform;
    width: min(90%, 620px);
    aspect-ratio: 5 / 4;
    background: var(--paper)
}

[data-shrink-image] img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.psg-text-below {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 clamp(22px, 5vw, 72px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px
}

.psg-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.05;
    margin: 4px 0 6px;
    color: var(--brown)
}

.visit-link {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 700;
    color: var(--brown);
    text-decoration: none;
    /* border-bottom: 1px solid var(--brown); */
    padding-bottom: 2px;
    margin-top: 6px
}

@media(max-width:900px) {
    .press-scroll-wrap {
        height: auto
    }

    .press-style-grid {
        position: static;
        height: auto
    }

    [data-shrink-image] {
        width: 100%
    }
}

.florist-choice-banner {
    background: var(--cream);
    border-bottom: 0
}

.florist-choice-banner a {
    text-decoration: underline
}

.plain-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 640px
}

.plain-list li {
    padding: 16px 0;
    /* border-bottom: 1px solid var(--line); */
    color: var(--brown-2)
}

.plain-list li:first-child {
    padding-top: 0
}

.plain-list.no-divider li {
    border-bottom: 0;
    padding: 0 0 14px
}

.plain-list.no-divider li:last-child {
    padding-bottom: 0
}

.how-it-works-delivery {
    border-bottom: 0;
    padding-top: clamp(40px, 5vw, 64px);
    padding-bottom: clamp(40px, 5vw, 64px)
}

.how-it-works-delivery .timeline.compact-steps {
    margin-top: 32px;
    margin-bottom: clamp(36px, 5vw, 56px)
}

.how-it-works-delivery .compact-steps .t-step {
    padding: 18px 16px
}

.how-it-works-delivery .compact-steps .t-step b {
    font-size: 18px;
    margin-bottom: 10px
}

.how-it-works-delivery .compact-steps .t-step strong {
    font-size: 18px;
    margin-bottom: 6px
}

.delivery-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: start
}

.delivery-split h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 2.2vw, 26px);
    margin: 0
}

.delivery-split .plain-list {
    font-size: 14px
}

.delivery-split .plain-list.no-divider li {
    padding-bottom: 10px
}

@media(max-width:900px) {
    .delivery-split {
        grid-template-columns: 1fr;
        gap: 12px
    }
}

.price small {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--muted);
    margin-top: 10px
}

.table-wrap {
    overflow-x: auto
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px
}

.table th {
    text-align: left;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    color: var(--muted);
    font-weight: 700
}

.table th,
.table td {
    padding: 18px 14px;
    /* border-bottom: 1px solid var(--line) */
}

.gallery {
    display: grid;
    grid-template-columns: 1.1fr .9fr 1fr;
    gap: 18px;
    margin-top: 48px
}

.gallery img {
    width: 100%;
    height: 360px;
    object-fit: cover
}

.gallery img:nth-child(2) {
    height: 460px;
    margin-top: 60px
}

.size-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px
}

.size-item img {
    height: 440px;
    width: 100%;
    object-fit: cover;
    background: var(--paper)
}

.size-item {
    position: relative
}

.size-item .size-copy {
    padding: 20px 0 0
}

.size-meta {
    font-size: 13px;
    color: var(--muted);
    margin: 0
}

.format-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-top: 50px
}

.page-banner {
    width: 100%;
    margin-top: calc(-1 * var(--nav-height-desktop, 61px))
}

.page-banner-media {
    width: 100%;
    height: clamp(320px, 46vh, 560px);
    overflow: hidden
}

.page-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.section.no-rule.page-banner-intro {
    max-width: none;
    padding-top: clamp(20px, 2.6vw, 32px);
    padding-bottom: 0
}

.page-hero-zone {
    display: flow-root
}

.page-banner-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(32px, 5vw, 90px);
    align-items: center
}

.page-banner-intro .display {
    /* font-size: clamp(32px, 4vw, 52px); */
    font-size: clamp(28px, 3vw, 45px);
    margin-top: 30px;
    margin-bottom: 50px;
}

.page-banner-intro-grid .lead {
    font-size: clamp(10px, 1.0vw, 12px);
    max-width: none
}

@media(max-width:900px) {
    .page-banner-intro-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

.section.product-section {
    padding-top: clamp(16px, 2vw, 28px);
    border-bottom: 0
}

.product-label {
    display: block;
    font-family: var(--serif);
    /* font-style: italic; */
    font-weight: 400;
    font-size: clamp(16px, 1.2vw, 22px);
    letter-spacing: -.02em;
    text-transform: none;
    color: var(--brown);
    margin-bottom: 20px
}

.flowers-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.6vw, 40px)
}

.flowers-product-item {
    display: block;
    text-decoration: none;
    color: inherit
}

.flowers-product-item img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    background: var(--paper)
}

.flowers-product-item h4 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(14px, 1.1vw, 16px);
    margin: 12px 0 3px;
    line-height: 1.2
}

@media(max-width:900px) {
    .page-banner {
        margin-top: calc(-1 * var(--nav-height-mobile, 64px))
    }
}

.flowers-product-price {
    font-size: 11px;
    color: var(--muted);
    margin: 0
}

@media(max-width:900px) {
    .flowers-product-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.format {
    border-top: 1px solid var(--line);
    padding-top: 28px
}


@media(max-width:900px) {

    .hero,
    .intro-grid,
    .style-layout,
    .split,
    .split.reverse,
    .chapter,
    .footer {
        grid-template-columns: 1fr
    }

    .hero {
        min-height: 0
    }

    .hero-media {
        min-height: 420px;
        order: -1
    }

    .site-nav {
        align-items: flex-start
    }

    .nav-links {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: flex-end
    }


    .note-strip,
    .minimal-grid,
    .timeline,
    .timeline.four,
    .size-showcase,
    .format-duo {
        grid-template-columns: 1fr
    }

    .note,
    .t-step {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .style-image {
        position: relative;
        top: auto
    }

    .gallery {
        grid-template-columns: 1fr
    }

    .gallery img,
    .gallery img:nth-child(2) {
        height: 320px;
        margin-top: 0
    }

    .section,
    .chapter {
        padding-left: 24px;
        padding-right: 24px
    }

    .display {
        font-size: 58px
    }

    .media,
    .chapter .media {
        min-height: 320px
    }

    .size-item img {
        height: 320px
    }
}

/* v7 refinement: softer editorial layouts, fewer divider lines, image-led home */
.section.no-rule {
    border-bottom: 0;
    padding-top: clamp(72px, 9vw, 132px);
    padding-bottom: clamp(72px, 9vw, 132px)
}

#bloom-zone {
    display: flex;
    flex-direction: column;
    height: 100svh
}

.section-heading {
    max-width: 760px;
    margin-bottom: 4px
}

.offerings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 90px);
    align-items: start
}

.offerings-belief .eyebrow {
    margin-bottom: 12px
}

.offerings-belief .lead {
    font-size: clamp(12px, 1.2vw, 13.5px)
}

@media(max-width:900px) {
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

#offerings {
    flex: 0 0 auto;
    padding-top: clamp(32px, 5vw, 56px);
    padding-bottom: clamp(8px, 1.2vw, 16px)
}

.section.flush-section {
    flex: 1 1 auto;
    display: flex;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0
}

#offerings .section-title {
    margin-bottom: 0
}

.offering-gallery.flush {
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 0
}

.offering-gallery.flush .offering-card {
    flex: 1 1 0;
    min-height: 0
}

.offering-gallery.flush .offering-card img {
    height: 100%
}

@media(max-width:900px) {
    #bloom-zone {
        height: auto
    }

    .offering-gallery.flush {
        flex-direction: column
    }

    .offering-gallery.flush .offering-card {
        flex: 1 1 auto;
        width: 100%;
        min-height: 100svh
    }
}

.hero {
    border-bottom: 0;
    background: linear-gradient(180deg, var(--cream), #fffaf2)
}

.nav-cta .btn.ghost {
    display: none
}

.style-triptych {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 54px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start
}

.style-card {
    text-decoration: none;
    color: inherit;
    flex: 0 0 340px;
}

.style-photo {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--paper);
    margin-bottom: 22px
}

.style-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92) contrast(.98)
}

.style-text {
    padding-right: 8px
}

.style-text p {
    color: var(--muted);
    margin-top: 0
}

.style-card .h3 {
    margin-bottom: 12px
}

.style-card .kanji {
    font-size: 30px;
    margin-left: 5px;

}

.offering-gallery {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    grid-template-rows: auto auto;
    gap: clamp(22px, 3vw, 42px);
    align-items: stretch
}

.offering-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: var(--brown);
    overflow: hidden;
    background: var(--paper);
    min-height: 420px
}

.offering-card.large {
    grid-row: span 2;
    min-height: 760px
}

.offering-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    filter: saturate(.9)
}

.offering-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 14, 8, 0) 42%, rgba(20, 14, 8, .62) 100%)
}

.offering-copy {
    position: relative;
    z-index: 1;
    padding: 0 clamp(24px, 3vw, 46px) clamp(24px, 3vw, 42px);
    color: #fff
}

.offering-copy h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(34px, 4.2vw, 66px);
    line-height: .92;
    letter-spacing: -.06em;
    margin: 0 0 14px;
    color: #fff
}

.offering-copy p {
    max-width: 440px;
    color: rgba(255, 255, 255, .88)
}

.text-link {
    display: inline-block;
    margin-top: 14px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    font-weight: 700;
    color: #fff
}

.cart-tfa-header .text-link {
    color: var(--brown);
}

.offering-card:hover .text-link {
    color: var(--gold)
}

/* Make process steps feel like a designed ritual, not a spreadsheet */
.timeline,
.timeline.four {
    border: 0;
    gap: 18px;
    margin-top: 42px
}

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

.timeline.four {
    grid-template-columns: repeat(4, 1fr)
}

.t-step {
    border: 0;
    background: var(--paper);
    padding: 34px 28px 30px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative
}

.t-step:before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(74, 36, 18, .08);
    pointer-events: none
}

.t-step b {
    font-size: 44px;
    margin-bottom: 26px
}

.t-step strong {
    font-size: 26px
}

.t-step p {
    font-size: 14px;
    max-width: 220px
}

/* Product/pricing blocks should feel like menus, not tables */
.format-duo {
    gap: clamp(30px, 5vw, 90px);
    align-items: start
}

.format {
    border-top: 0;
    background: var(--paper);
    padding: clamp(30px, 4vw, 52px)
}

.format p {
    color: var(--brown-2)
}

.table {
    border-collapse: separate;
    border-spacing: 0 10px;
    margin: 26px 0
}

.table tr {
    background: rgba(251, 247, 238, .72)
}

.table td,
.table th {
    border-bottom: 0;
    padding: 16px 20px
}

.table td:first-child {
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    color: var(--brown)
}


.table td:last-child {
    text-align: right;
    color: var(--brown)
}


.price {
    font-size: 32px;
    color: var(--gold)
}

@media(max-width:900px) {

    .style-triptych,
    .offering-gallery {
        grid-template-columns: 1fr
    }

    .offering-card.large,
    .offering-card {
        min-height: 520px
    }

    .timeline,
    .timeline.four {
        grid-template-columns: 1fr
    }

    .t-step {
        min-height: auto
    }

    .format-duo {
        grid-template-columns: 1fr
    }
}


/* v8 additions: poetic style copy + bouquet gallery */
.style-poem {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.75;
    color: rgba(74, 36, 18, .56);
    margin: 16px 0 0;
    max-width: 320px;
}

/* v9 refinements: richer about section, shared footer, cleaner booking rows */

.footer {
    /* background: rgba(66, 71, 54, 0.55); */
    /* background: rgb(107, 109, 92); */
    /* background: rgb(97, 78, 59); */
    background: var(--brown-2);
}

@media(max-width:900px) {
    .booking-row {
        grid-template-columns: 44px 1fr;
        gap: 12px 18px;
    }

    .booking-row p {
        grid-column: 2;
    }

    .booking-row h3 {
        white-space: normal;
    }
}


/* Footer CTA fix: make Email us visible on dark footer */
.footer .btn,
.footer .btn.ghost {
    display: inline-flex;
    width: fit-content;
    margin-top: 18px;
    border-color: rgba(251, 247, 238, .72);
    background: var(--cream);
    color: var(--brown);
}

.footer .btn:hover,
.footer .btn.ghost:hover {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}


/* v10: integrated Netlify Bloom Bar enquiry form */
.form-hero .hero-media:after {
    background: linear-gradient(90deg, rgba(251, 247, 238, .18), rgba(251, 247, 238, .02));
}

.enquiry-intro {
    max-width: 920px;
}

.enquiry-layout {
    display: grid;
    grid-template-columns: minmax(220px, .38fr) minmax(0, 1fr);
    gap: clamp(42px, 8vw, 110px);
    align-items: start;
}

.enquiry-side {
    position: sticky;
    top: 110px;
}

.enquiry-form {
    display: grid;
    gap: clamp(44px, 6vw, 74px);
}

.hidden-field {
    display: none;
}

.form-block {
    border: 0;
    padding: 0 0 clamp(36px, 5vw, 62px);
    margin: 0;
    border-bottom: 1px solid rgba(74, 36, 18, .10);
}

.form-block legend {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(30px, 3.8vw, 54px);
    letter-spacing: -.05em;
    line-height: 1.05;
    margin-bottom: 30px;
    color: var(--brown);
}

.form-grid {
    display: grid;
    gap: 22px;
}

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

.enquiry-form label {
    display: grid;
    gap: 9px;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="date"],
.enquiry-form input[type="number"],
.enquiry-form textarea {
    width: 100%;
    appearance: none;
    border: 0;
    border-bottom: 1px solid rgba(74, 36, 18, .22);
    background: transparent;
    padding: 13px 0 14px;
    color: var(--brown);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    outline: none;
    border-radius: 0;
}

.enquiry-form textarea {
    min-height: 130px;
    resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-bottom-color: var(--gold);
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: rgba(74, 36, 18, .38);
}

.form-note {
    max-width: 660px;
    margin: -10px 0 22px;
    color: var(--muted);
}

.choice-row {
    display: grid;
    gap: 18px;
}

.style-choice-row,
.tier-choice-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-card {
    position: relative;
    display: flex !important;
    flex-direction: column;
    gap: 12px !important;
    min-height: 100%;
    padding: 0 0 22px;
    cursor: pointer;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    color: var(--brown) !important;
    border-bottom: 1px solid rgba(74, 36, 18, .12);
}

.choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: var(--paper);
    margin-bottom: 8px;
    transition: filter .2s ease, transform .2s ease;
}

.choice-card.no-image {
    padding: 24px 0;
    border-top: 1px solid rgba(74, 36, 18, .12);
}

.choice-title {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(23px, 2.1vw, 34px);
    line-height: 1.05;
    color: var(--brown);
    letter-spacing: -.04em;
}

.choice-desc,
.choice-meta {
    display: block;
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
}

.choice-meta {
    color: rgba(74, 36, 18, .48);
    margin-top: auto;
}

.choice-card:has(input:checked) .choice-title,
.choice-card:hover .choice-title {
    color: var(--gold);
}

.choice-card:has(input:checked) img,
.choice-card:hover img {
    filter: saturate(1.08) contrast(1.04);
}

.choice-card:has(input:checked)::after {
    content: "Selected";
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(251, 247, 238, .92);
    color: var(--brown);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
}

.colour-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 24px;
}

.colour-choice-grid label,
.checkbox-list label {
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--brown-2);
    cursor: pointer;
}

.colour-choice-grid input,
.checkbox-list input {
    accent-color: var(--gold);
}

.colour-choice-grid span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--c);
    border: 1px solid rgba(74, 36, 18, .13);
    flex: 0 0 auto;
}

.checkbox-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 24px;
}

.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 4px;
}

.form-submit-row p {
    margin: 0;
    color: var(--muted);
}

.enquiry-cta {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.bloom-intro-section {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding-top: clamp(56px, 8vw, 96px) !important;
    padding-bottom: clamp(24px, 3vw, 40px) !important
}

.bloom-intro-section .lead {
    margin: 16px auto 20px
}

.bloom-intro-section .visit-link {
    display: inline-block
}

.bloom-ritual-section {
    position: relative;
    height: calc(100svh - var(--nav-height-desktop, 61px));
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.bloom-ritual-section .lead {
    max-width: 560px;
    margin: 16px auto 0
}

.bloom-ritual-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: clamp(28px, 5vw, 56px);
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted)
}

.bloom-ritual-scroll-cue:hover {
    color: var(--brown)
}

.bloom-ritual-scroll-line {
    width: 1px;
    height: 32px;
    background: currentColor;
    opacity: .5
}

@media(max-width:900px) {
    .bloom-ritual-section {
        height: calc(100svh - var(--nav-height-mobile, 64px));
        min-height: 420px
    }
}

.tiers-inclusions-wrap {
    height: calc(100svh - var(--nav-height-desktop, 61px));
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden
}

.tiers-section-compact {
    padding-top: clamp(24px, 3vw, 40px) !important;
    padding-bottom: clamp(16px, 2vw, 28px) !important;
    border-bottom: 0 !important
}

.tiers-section-compact .section-title {
    margin-bottom: clamp(20px, 3vw, 32px)
}

.tiers-section-compact .minimal-grid {
    margin-top: 0
}

.tier-card-flat .h3 {
    font-size: clamp(19px, 1.9vw, 23px)
}

.tier-header-row {
    padding-bottom: 10px;
    margin-bottom: 12px
}

@media(max-width:900px) {
    .tiers-inclusions-wrap {
        height: auto;
        min-height: 0
    }
}

.inclusions-section {
    max-width: 980px;
    margin: 0 auto;
    padding-top: clamp(16px, 2vw, 24px) !important;
    padding-bottom: clamp(24px, 3vw, 36px) !important
}

.inclusions-label-row {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 28px);
    margin-bottom: clamp(20px, 2.6vw, 32px)
}

.inclusions-line {
    flex: 1;
    height: 1px;
    background: var(--line)
}

.inclusions-label {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap
}

.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(40px, 8vw, 90px);
    row-gap: clamp(16px, 2.4vw, 24px)
}

.inclusion-item h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(15px, 1.5vw, 18px);
    margin: 0 0 6px;
    color: var(--brown)
}

.inclusion-item p {
    /* text-transform: uppercase; */
    letter-spacing: .1em;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    margin: 0
}

@media(max-width:900px) {
    .inclusions-grid {
        grid-template-columns: 1fr;
        row-gap: 28px
    }

    .scenic-steps-section {
        height: calc(100svh - var(--nav-height-mobile, 64px));
        min-height: 640px
    }
}

.scenic-steps-section {
    position: relative;
    height: calc(100svh - var(--nav-height-desktop, 61px));
    min-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: center
}

.scenic-steps-media {
    position: absolute;
    inset: 0
}

.scenic-steps-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4.5px) saturate(.9)
}

.scenic-steps-overlay {
    position: absolute;
    inset: 0;
    background: rgba(97, 92, 86, 0.42)
        /* background: rgba(20, 14, 8, .42) */
}

.scenic-steps-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(48px, 6vw, 80px) clamp(22px, 5vw, 72px)
}

.scenic-steps-title {
    font-size: clamp(28px, 3.4vw, 44px);
    margin: 6px 0 32px
}

.scenic-steps-line {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: -40px
}

.scenic-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2.5vw, 32px)
}

.scenic-step {
    color: var(--cream)
}


/* 
.scenic-step:nth-child(1) {
    margin-top: 10px
}

.scenic-step:nth-child(2) {
    margin-top: -95px
}

.scenic-step:nth-child(3) {
    margin-top: -160px
}

.scenic-step:nth-child(4) {
    margin-top: -240px
} */

.scenic-step b {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(26px, 2.6vw, 34px);
    color: var(--cream);
    margin-bottom: 8px
}

.scenic-step h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(18px, 1.8vw, 22px);
    margin: 0 0 8px;
    color: var(--cream)
}

.scenic-step p {
    font-size: 13px;
    color: rgba(251, 247, 238, .82);
    margin: 0;
    max-width: 220px
}

@media(max-width:900px) {
    .scenic-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px
    }

    .scenic-step:nth-child(n) {
        margin-top: 0
    }

    .scenic-steps-line {
        display: none
    }
}

.booking-row-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 40px);
    margin-top: 28px
}

.booking-compact-item {
    /* border-top: 1px solid var(--line); */
    padding-top: 16px
}

.booking-no-compact {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--gold);
    display: block;
    margin-bottom: 8px
}

.booking-compact-item h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    margin: 0 0 6px
}

.booking-compact-item p {
    margin: 0;
    font-size: 13px;
    color: var(--brown-2);
    line-height: 1.45
}

@media(max-width:900px) {
    .booking-row-compact {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px
    }
}

.booking-cta-section {
    position: relative;
    overflow: hidden;
    height: calc(100svh - var(--nav-height-desktop, 61px));
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: clamp(40px, 6vw, 72px) clamp(22px, 5vw, 72px)
}

.booking-cta-inner {
    width: 100%
}

@media(max-width:900px) {
    .booking-cta-section {
        height: auto;
        min-height: 0
    }
}

.booking-cta-media {
    position: absolute;
    inset: 0
}

.booking-cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) saturate(.9)
}

.booking-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(97, 92, 86, 0.42)
}

.booking-cta-inner {
    position: relative;
    z-index: 1
}

.booking-cta-title {
    font-size: clamp(34px, 4.4vw, 56px);
    margin: 8px 0 0
}

.booking-cta-inner .booking-compact-item h3 {
    color: var(--cream)
}

.booking-cta-inner .booking-compact-item p {
    color: rgba(251, 247, 238, .78)
}

.booking-cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgba(251, 247, 238, .25);
    margin-top: clamp(40px, 5vw, 64px);
    padding-top: clamp(32px, 4vw, 48px)
}

.booking-cta-question {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(18px, 1.8vw, 24px);
    color: var(--cream);
    margin: 0;
    max-width: 520px
}

.booking-cta-row .btn {
    flex-shrink: 0
}

.booking-cta-next {
    font-size: 13px;
    color: rgba(251, 247, 238, .68);
    max-width: 640px;
    margin: 28px 0 0
}

.booking-cta-next strong {
    color: var(--cream)
}

@media(max-width:900px) {
    .booking-cta-row {
        flex-direction: column;
        align-items: flex-start
    }
}

.enquiry-cta .lead {
    margin-left: auto;
    margin-right: auto;
}

/* 
.thank-you-page {
    min-height: calc(100vh - 82px);
    display: grid;
    place-items: center;
    padding: clamp(54px, 9vw, 120px) clamp(22px, 5vw, 72px);
}

.thank-you-card {
    max-width: 760px;
    text-align: center;
}

.thank-you-card .display {
    margin-bottom: 24px;
}

.thank-you-card .lead,
.thank-you-card .fine {
    margin-left: auto;
    margin-right: auto;
}

.thank-you-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 34px;
} */

@media(max-width:900px) {
    .enquiry-layout {
        grid-template-columns: 1fr;
    }

    .enquiry-side {
        position: static;
    }

    .style-choice-row,
    .tier-choice-row,
    .colour-choice-grid,
    .checkbox-list,
    .form-grid.two {
        grid-template-columns: 1fr;
    }

    .form-submit-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* v11: flower offerings collection, product detail and static cart */
.shop-hero {
    min-height: 560px;
    padding: clamp(52px, 8vw, 112px) clamp(22px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 44px;
    background: var(--cream);
}

.shop-intro {
    background: var(--paper);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(26px, 3vw, 46px);
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-image {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--paper);
    text-decoration: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92) contrast(.98);
    transition: transform .35s ease, filter .35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.025);
    filter: saturate(1) contrast(1.02);
}

.product-card-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    flex: 1;
}

.product-card-copy p {
    color: var(--muted);
    margin: 0;
}

.product-card-foot {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(74, 36, 18, .10);
}

.product-card-foot span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 26px;
    color: var(--gold);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(42px, 7vw, 96px);
    padding: clamp(42px, 6vw, 88px) clamp(22px, 5vw, 72px);
    align-items: start;
}

.product-detail-media {
    position: sticky;
    top: 110px;
    background: var(--paper);
}

.product-detail-media img {
    width: 100%;
    min-height: 640px;
    max-height: calc(100vh - 140px);
    object-fit: cover;
}

.product-detail-copy .display {
    font-size: clamp(42px, 4.5vw, 60px);
}

.product-detail-copy .lead {
    font-size: 14px;
}

.product-detail-copy>p:not(.lead) {
    color: var(--brown-2);
    max-width: 680px;
}

.product-form {
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

.checkout-form {
    display: grid;
    gap: 22px;
    margin-top: 34px;
    max-width: 620px;
}

.product-form label,
.checkout-form label {
    display: grid;
    gap: 5px;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.product-form select,
.product-form input,
.product-form textarea,
.checkout-form select,
.checkout-form input:not([type="checkbox"]):not([type="radio"]),
.checkout-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(74, 36, 18, .22);
    background: transparent;
    padding: 8px 0 9px;
    color: var(--brown);
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.4;
    outline: none;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    background-image: none;
}

.checkout-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%234a2412' stroke-width='1.4'%3E%3Cpath d='M5 7l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    cursor: pointer;
    border: 1px solid rgba(74, 36, 18, .22);
    border-bottom: 1px solid rgba(74, 36, 18, .22);
    background-color: var(--cream);
    padding: 12px 36px 12px 14px;
}

.checkout-form select:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.checkout-form select:hover:not(:disabled) {
    border-color: var(--gold);
}

.checkout-form input[type="date"] {
    cursor: pointer;
}

.checkout-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(20%) sepia(40%) saturate(1200%) hue-rotate(340deg);
    cursor: pointer;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus,
.product-form input:focus,
.product-form select:focus,
.product-form textarea:focus {
    border-bottom-color: var(--gold);
}

.checkout-form select:focus {
    border-color: var(--gold);
}

.product-form textarea,
.checkout-form textarea {
    min-height: 112px;
    resize: vertical;
}

.product-includes {
    /* margin-top: 46px;
    padding: 30px; */
    background: var(--paper);
    margin-top: 30px;
    padding: 24px;
}

.product-includes ul {
    margin: 0;
    padding-left: 18px;
    color: var(--brown-2);
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(34px, 6vw, 86px);
    align-items: start;
}

.cart-list {
    display: grid;
    gap: 14px;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: start;
    padding: 26px 0;
    border-bottom: 1px solid rgba(74, 36, 18, .12);
}

.cart-item h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 32px;
    margin: 0 0 8px;
    letter-spacing: -.04em;
}

.cart-item p {
    margin: 0;
    color: var(--brown-2);
}

.cart-item strong,
.cart-summary h2 {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 36px;
    color: var(--gold);
    text-align: right;
}

.cart-remove {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    cursor: pointer;
    padding: 10px 0 0;
}

.cart-summary,
.empty-cart {
    background: var(--paper);
    padding: clamp(30px, 4vw, 52px);
}

.cart-summary h2 {
    text-align: left;
    margin: 0 0 22px;
}

@media(max-width:900px) {

    .product-grid,
    .product-detail,
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .product-detail-media {
        position: relative;
        top: auto;
    }

    .product-detail-media img {
        min-height: 420px;
        max-height: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item strong {
        text-align: left;
    }
}

/* v12: tighter browsing scale + Shopify-style cart checkout */
@media (min-width: 901px) {
    .site-nav {
        padding-top: 13px;
        padding-bottom: 13px;
    }

    .brand {
        font-size: 21px;
    }

    .hero {
        min-height: calc(82vh - 61px);
        grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr);
    }

    .hero-copy {
        padding: clamp(34px, 5.6vw, 72px);
        gap: 38px;
    }

    .hero-media {
        min-height: 450px;
    }

    .display {
        font-size: clamp(44px, 6.6vw, 86px);
        margin-bottom: 20px;
    }

    .lead {
        font-size: clamp(16px, 1.45vw, 19px);
        line-height: 1.55;
    }

    .section {
        padding-top: clamp(46px, 6.5vw, 86px);
        padding-bottom: clamp(46px, 6.5vw, 86px);
    }

    .section.compact {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .section-title {
        font-size: clamp(34px, 4vw, 58px);
        margin-bottom: 18px;
    }

    .poem {
        font-size: clamp(23px, 2.8vw, 38px);
    }

    .offer-list {
        margin-top: 36px;
    }

    /* 
    .offer-row {
        padding: 24px 0;
    } */
}

.shop-hero {
    min-height: 340px;
    padding-top: clamp(42px, 6vw, 72px);
    padding-bottom: clamp(34px, 5vw, 62px);
    gap: 24px;
}

.shop-hero .display {
    max-width: 900px;
}

.shop-hero .lead {
    max-width: 760px;
}

.shop-intro .section-title {
    max-width: 760px;
}

.product-grid {
    gap: clamp(20px, 2.4vw, 34px);
}

.product-image {
    aspect-ratio: 4 / 5;
}

.product-card-copy {
    gap: 16px;
    padding-top: 16px;
}

.product-card-copy .h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.product-card-copy p {
    font-size: 14px;
    line-height: 1.55;
}

.product-card-foot {
    padding-top: 14px;
}

.product-card-foot span {
    font-size: 22px;
}

.product-detail {
    gap: clamp(32px, 5vw, 72px);
    padding-top: clamp(34px, 5vw, 64px);
    padding-bottom: clamp(34px, 5vw, 64px);
}

.product-detail-media img {
    min-height: 500px;
}

.product-detail-copy .display {
    font-size: clamp(39px, 3.9vw, 51px);
}

.product-form {
    gap: 16px;
    margin-top: 26px;
}

.checkout-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .75fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

.checkout-panel {
    background: #fffaf2;
    border: 1px solid rgba(74, 36, 18, .12);
    padding: clamp(22px, 3vw, 34px);
}

.checkout-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(32px, 3.6vw, 48px);
    line-height: 1;
    letter-spacing: -.045em;
    margin: 0 0 12px;
}

.checkout-form-compact {
    margin-top: 24px;
    gap: 16px;
    max-width: none;
}

.checkout-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.checkout-form-compact textarea {
    min-height: 82px;
}

.checkout-form-compact input,
.checkout-form-compact textarea {
    font-size: 15px;
    padding: 10px 0 11px;
}

.checkout-summary {
    position: sticky;
    top: 92px;
    background: var(--paper);
}

.checkout-summary-head,
.checkout-totals div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: baseline;
}

.checkout-summary-head {
    margin-bottom: 18px;
}

.checkout-items {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(74, 36, 18, .12);
}

.checkout-item {
    position: relative;
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 14px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(74, 36, 18, .12);
}

.checkout-item img {
    width: 74px;
    height: 92px;
    object-fit: cover;
    background: var(--cream);
}

.checkout-item h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 23px;
    letter-spacing: -.035em;
    margin: 0 0 4px;
}

.checkout-item p {
    margin: 0;
    color: var(--brown-2);
    font-size: 13px;
    line-height: 1.45;
}

.checkout-item strong {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.checkout-qty {
    position: absolute;
    left: 58px;
    top: 8px;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--brown);
    color: var(--cream);
    display: inline-grid;
    place-items: center;
    font-size: 10px;
}

.checkout-totals {
    display: grid;
    gap: 10px;
    padding-top: 18px;
}

.checkout-totals span {
    color: var(--muted);
}

.checkout-totals strong {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--brown);
}

.checkout-total {
    border-top: 1px solid rgba(74, 36, 18, .16);
    padding-top: 12px;
    margin-top: 2px;
}

.checkout-total strong {
    font-size: 28px;
    color: var(--gold);
    font-style: italic;
}

.checkout-note {
    font-size: 13px;
    margin-bottom: 0;
}

.cart-layout {
    display: none;
}

@media(max-width:900px) {
    .shop-hero {
        min-height: auto;
    }

    .checkout-shell {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
        order: -1;
    }

    .checkout-two-col {
        grid-template-columns: 1fr;
    }
}

/* v10: global compact viewport scale
   Keeps every cover/hero inside the visible browser window and brings content up sooner. */
@media (min-width: 901px) {
    body {
        font-size: 14px;
        line-height: 1.58;
    }

    .site-nav {
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .brand {
        font-size: 20px;
    }

    .brand span,
    .nav-links a,
    .eyebrow,
    .btn,
    .caption {
        font-size: 9px;
    }

    .nav-links {
        gap: 22px;
    }

    .hero {
        min-height: min(680px, calc(78vh - 56px));
        grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
    }

    .hero-copy {
        padding: clamp(28px, 4.6vw, 58px);
        gap: 24px;
    }

    .hero-media {
        min-height: 0;
        height: min(680px, calc(78vh - 56px));
    }

    .display {
        font-size: clamp(38px, 5.3vw, 72px);
        line-height: .92;
        margin-bottom: 16px;
    }

    .lead {
        font-size: clamp(15px, 1.22vw, 17px);
        line-height: 1.5;
        max-width: 560px;
    }

    .nav-cta {
        gap: 12px;
    }

    .btn {
        min-height: 38px;
        padding: 10px 17px;
    }

    .section {
        padding-top: clamp(38px, 5vw, 68px);
        padding-bottom: clamp(38px, 5vw, 68px);
    }

    .section.compact {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .section.no-rule {
        padding-top: clamp(42px, 5vw, 72px);
        padding-bottom: clamp(42px, 5vw, 72px);
    }

    .section-title {
        font-size: clamp(30px, 3.6vw, 50px);
        line-height: 1.02;
        margin-bottom: 14px;
    }

    .poem {
        font-size: clamp(20px, 2.3vw, 32px);
    }

    .chapter {
        padding: clamp(42px, 5vw, 72px) clamp(22px, 5vw, 72px);
        gap: clamp(30px, 4vw, 60px);
    }

    .style-card img,
    .offering-card img,
    .size-card img {
        height: clamp(260px, 33vw, 390px);
        object-fit: cover;
    }

    .product-image {
        aspect-ratio: 4 / 4.8;
    }

    .product-card-copy p {
        font-size: 13px;
    }

    .shop-hero {
        min-height: 0;
        padding-top: clamp(30px, 4.5vw, 54px);
        padding-bottom: clamp(26px, 4vw, 48px);
    }

    .product-detail {
        padding-top: clamp(28px, 4vw, 50px);
        padding-bottom: clamp(28px, 4vw, 50px);
    }

    .product-detail-media img {
        min-height: 0;
        height: min(620px, calc(78vh - 96px));
        object-fit: cover;
    }

    .product-detail-copy .display {
        font-size: clamp(36px, 7.5vw, 45px);
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
    }

    .hero-copy {
        padding: 28px 24px 30px;
        gap: 28px;
    }

    .hero-media {
        min-height: 0;
        height: 58vh;
    }

    .display {
        font-size: clamp(38px, 14vw, 58px);
        margin-bottom: 14px;
    }

    .lead {
        font-size: 15px;
        line-height: 1.5;
    }

    .section,
    .section.no-rule,
    .section.compact {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .section-title {
        font-size: clamp(30px, 10vw, 42px);
    }

    .style-card img,
    .offering-card img,
    .size-card img {
        height: 310px;
        object-fit: cover;
    }
}

/* v11: exact viewport hero covers
   Main cover sections now fit the current browser window exactly, accounting for the sticky nav. */
:root {
    --nav-height-desktop: 61px;
    --nav-height-mobile: 64px;
}

@media (min-width: 901px) {
    .hero {
        height: calc(100vh - var(--nav-height-desktop));
        min-height: calc(100vh - var(--nav-height-desktop));
        max-height: calc(100vh - var(--nav-height-desktop));
        overflow: hidden;
    }

    .hero-copy {
        min-height: 0;
        height: 100%;
        overflow: hidden;
    }

    .hero-media {
        min-height: 0;
        height: 100%;
        max-height: none;
    }

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

    /* Collection/cart headers should not behave like oversized cover images. */
    .shop-hero {
        min-height: 0;
        padding-top: clamp(34px, 4.5vw, 58px);
        padding-bottom: clamp(30px, 4vw, 52px);
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .hero-media {
        height: calc(100svh - var(--nav-height-mobile));
        min-height: 0;
        max-height: none;
    }

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

/* v12: make homepage cards and shop collection feel less oversized */
@media (min-width: 901px) {

    /* Home: signature style images should read as cards, not cover panels. */
    .style-triptych {
        gap: clamp(20px, 2.2vw, 34px);
        margin-top: 34px;
    }

    .style-photo {
        aspect-ratio: 4 / 5;
        max-height: 390px;
    }

    .style-photo img {
        height: 100%;
    }

    /* Home: Three ways cards reduced so a whole section is easier to read. */
    .offering-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto;
        gap: clamp(18px, 2.2vw, 32px);
    }

    .offering-card,
    .offering-card.large {
        grid-row: auto;
        min-height: 0;
        height: clamp(340px, 34vw, 460px);
    }

    .offering-copy {
        padding: 0 clamp(20px, 2.2vw, 34px) clamp(20px, 2.2vw, 32px);
    }

    .offering-copy p {
        font-size: 14px;
        line-height: 1.45;
    }
}

.collection-heading {
    display: grid;
    grid-template-columns: minmax(220px, .7fr) minmax(360px, 1.3fr);
    gap: clamp(28px, 6vw, 96px);
    align-items: end;
    padding: clamp(46px, 7vw, 92px) clamp(22px, 5vw, 72px) clamp(30px, 4vw, 54px);
    background: linear-gradient(180deg, #fffaf2, var(--cream));
}

.collection-heading .display {
    margin: 0;
    max-width: 520px;
}

.collection-heading .lead {
    max-width: 760px;
    margin: 0;
}

.collection-products {
    padding-top: clamp(24px, 3vw, 42px);
}

.collection-products .product-grid {
    align-items: start;
}

@media (max-width: 900px) {

    .style-triptych,
    .offering-gallery {
        gap: 24px;
    }

    .style-photo {
        aspect-ratio: 4 / 5;
    }

    .offering-card,
    .offering-card.large {
        min-height: 0;
        height: 340px;
    }

    .collection-heading {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 38px 24px 26px;
    }
}

/* v13: Floral Atelier-inspired product/cart logic */
.product-detail {
    align-items: start;
}

.product-gallery-tfa {
    display: grid;
    /* flex-direction: column; */
    gap: 14px;
    /* height: 100%; */
}

.product-main-image {
    width: 100%;
    /* flex: 1 1 auto; */

    height: min(68vh, 680px);
    min-height: 440px;
    object-fit: cover;
    background: var(--cream);
    cursor: zoom-in;
}

.product-image-lightbox .lightbox-content {
    width: min(94vw, 1400px);
    height: 90vh;
}


.product-image-lightbox .lightbox-content img {
    width: 100%;
    height: 100%;
    max-width: 94vw;
    max-height: 90vh;
    object-fit: contain;
}


/* House Special enquiry-only treatment */
.product-enquiry-box {
    margin: 28px 0 10px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.product-enquiry-box>p {
    max-width: 560px;
    margin: 0 0 20px;
    line-height: 1.7;
}

.product-enquiry-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}


.product-thumbs {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.product-thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--cream);
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s ease
}

.product-thumbs img.active {
    border-color: var(--brown)
}

.product-buybox {
    position: sticky;
    top: 92px;
}

.product-price {
    font-family: var(--serif);
    font-size: clamp(18px, 1.6vw, 22px);
    font-style: italic;
    color: var(--gold);
    margin: -4px 0 14px;
}

.tfa-product-form fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

.tfa-product-form legend,
.quantity-row>span,
.tfa-product-form label small {
    display: block;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 9px;
}

.option-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.option-pills input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-pills span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(74, 36, 18, .22);
    padding: 7px 13px;
    background: rgba(255, 255, 255, .35);
    font-size: 11px;
}

.option-pills input:checked+span {
    border-color: var(--brown);
    background: var(--paper);
}

.quantity-row {
    display: grid;
    grid-template-columns: 1fr 38px 58px 38px;
    align-items: end;
    gap: 8px;
    max-width: 260px;
}

.quantity-row button {
    height: 38px;
    border: 1px solid rgba(74, 36, 18, .22);
    background: transparent;
    color: var(--brown);
    cursor: pointer;
}

.quantity-row input {
    text-align: center;
    border: 1px solid rgba(74, 36, 18, .22);
    padding: 8px;
}

.cart-tfa-shell {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.checkout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--nav-height-desktop, 61px));
    margin: calc(-1 * clamp(64px, 9vw, 128px)) calc(-1 * clamp(22px, 5vw, 72px));
}

.checkout-split-left {
    background: var(--cream);
    padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 72px);
}

.checkout-split-right {
    background: var(--paper);
    padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 72px);
}

.light-quiet {
    color: var(--muted) !important;
}

.checkout-split-left .delivery-summary-card.dark-panel {
    background: #fff;
}

.order-summary-mini {
    display: grid;
    gap: 20px;
}

.order-summary-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 14px;
}

.order-summary-thumb {
    position: relative;
    width: 56px;
    height: 56px;
    overflow: visible;
}

.order-summary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.order-summary-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brown);
    color: var(--cream);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-summary-name {
    font-size: 14px;
    color: var(--brown);
}

.order-summary-price {
    font-size: 14px;
    color: var(--brown);
    white-space: nowrap;
}

.order-summary-totals {
    margin-top: 28px;
    display: grid;
    gap: 10px;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--brown);
}

.order-summary-row .quiet {
    color: var(--muted);
    font-size: 13px;
}

.order-summary-total {
    font-size: 17px;
    font-weight: 700;
}

.order-summary-total small {
    font-size: 11px;
    font-weight: 400;
    color: var(--muted);
    margin-right: 4px;
}

@media(max-width:900px) {
    .checkout-split {
        grid-template-columns: 1fr;
        min-height: 0;
    }
}

.cart-tfa-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: baseline;
    margin-bottom: 24px;
}

.cart-tfa-header h1 {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(38px, 4.2vw, 58px);
    font-weight: 400;
    letter-spacing: -.045em;
    margin: 0;
}

.cart-tfa-items {
    border-top: 1px solid rgba(74, 36, 18, .14);
}

.cart-tfa-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto auto;
    gap: 18px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(74, 36, 18, .14);
}

.cart-tfa-item img {
    width: 96px;
    height: 118px;
    object-fit: cover;
    background: var(--cream)
}

.cart-tfa-item a {
    text-decoration: none;
    color: inherit
}

.cart-tfa-item h2 a:hover {
    color: var(--gold)
}

.cart-tfa-item h2 {
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -.035em;
    margin: 0 0 6px;
}

.cart-tfa-item p {
    margin: 0 0 6px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}

.cart-edit-toggle summary {
    cursor: pointer;
    list-style: none;
    appearance: none;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    line-height: inherit;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted);
    padding: 10px 0 0;
}

.cart-edit-toggle summary:hover {
    color: var(--brown);
}

.cart-edit-toggle summary::-webkit-details-marker {
    display: none;
}

.cart-edit-form {
    display: grid;
    gap: 12px;
    max-width: 320px;
    margin-top: 14px;
    padding: 16px;
    background: var(--paper);
}

.cart-edit-form label {
    display: grid;
    gap: 6px;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700
}

.cart-edit-form select,
.cart-edit-form textarea {
    border: 1px solid rgba(74, 36, 18, .18);
    background: var(--cream);
    padding: 8px 10px;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--brown);
    border-radius: 0;
    outline: none
}

.cart-edit-form textarea {
    min-height: 56px;
    resize: vertical
}

.btn.small {
    padding: 9px 16px;
    font-size: 11px;
    width: max-content
}

.cart-tfa-qty,
.cart-tfa-item strong {
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    font-weight: 400;
    color: var(--gold);
}

.cart-tfa-summary {
    position: sticky;
    top: 92px;
    background: #fffaf2;
    border: 1px solid rgba(74, 36, 18, .12);
    padding: clamp(22px, 3vw, 34px);
}

.tfa-cart-form {
    max-width: none;
    gap: 18px;
}

.tfa-cart-form textarea {
    min-height: 78px;
}

.cart-tfa-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px solid rgba(74, 36, 18, .14);
    padding-top: 18px;
    margin-top: 2px;
}

.cart-tfa-total span {
    color: var(--muted);
}

.cart-tfa-total strong {
    font-family: var(--serif);
    font-style: italic;
    font-size: 34px;
    font-weight: 400;
    color: var(--gold);
}

.delivery-box,
.customer-box {
    display: grid;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(74, 36, 18, .12);
}

[data-address-section] {
    display: grid;
    gap: 10px;
}

.delivery-box.no-border {
    border-top: 0;
    padding-top: 0;
}

.fulfilment-disclosure {
    background: var(--paper);
    padding: 18px 20px;
}

.fulfilment-summary {
    list-style: none;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.fulfilment-summary::-webkit-details-marker {
    display: none;
}

.fulfilment-summary-value {
    font-family: var(--sans);
    font-style: normal;
    font-size: 15px;
    color: var(--brown);
    margin: 4px 0 0;
}

.edit-link {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 11px;
    font-weight: 700;
    color: var(--brown);
    text-decoration: none;
    border-bottom: 1px solid var(--brown);
    padding-bottom: 2px;
    white-space: nowrap;
    cursor: pointer;
}

.fulfilment-disclosure-body {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(74, 36, 18, .12);
}

.terms-check {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: var(--brown-2) !important;
    padding-top: 4px;
}

.terms-check input {
    width: 18px !important;
    height: 18px;
    margin: 1px 0 0;
    flex-shrink: 0;
    accent-color: var(--brown);
    cursor: pointer;
}

.terms-check a {
    color: var(--brown);
    text-decoration: underline;
}

.delivery-summary-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--paper);
    padding: 16px 18px;
    margin-bottom: 24px;
}

.delivery-summary-card p {
    margin: 4px 0 0;
    font-size: 14px;
}

.full-btn {
    width: 100%;
    justify-content: center;
}

@media(max-width:900px) {
    .product-gallery-tfa {
        height: auto;
    }

    .product-main-image {
        flex: none;
        height: min(68vh, 680px);
        min-height: 440px;
        aspect-ratio: 4 / 5;
    }

    .product-buybox {
        position: static;
    }

    .cart-tfa-shell {
        grid-template-columns: 1fr;
    }

    .cart-tfa-summary {
        position: static;
    }

    .cart-tfa-item {
        grid-template-columns: 76px 1fr;
    }

    .cart-tfa-item img {
        width: 76px;
        height: 96px;
    }

    .cart-tfa-qty,
    .cart-tfa-item strong {
        grid-column: 2;
    }
}


/* v14: restore editorial two-column offering layout, but keep images compact */
@media (min-width: 901px) {
    #offerings .offering-gallery {
        display: grid;
        grid-template-columns: 1.08fr .92fr;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: clamp(22px, 3vw, 40px);
        max-width: 1280px;
        margin: 0 auto;
    }

    #offerings .offering-card.large {
        grid-row: span 2;
        height: clamp(560px, 64vh, 720px);
        min-height: 0;
    }

    #offerings .offering-card:not(.large) {
        height: clamp(260px, 30vh, 340px);
        min-height: 0;
    }

    #offerings .offering-copy p {
        max-width: 470px;
    }

    /* Center signature style cards within the page instead of letting the grid drift. */
    .style-triptych {
        max-width: 1180px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

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

@media (max-width: 900px) {
    #offerings .offering-gallery {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
    }

    #offerings .offering-card,
    #offerings .offering-card.large {
        height: 360px;
    }
}

/* v14: first cart step only asks for fulfilment details */
.fulfilment-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.fulfilment-choice label {
    position: relative;
    border: 1px solid rgba(74, 36, 18, .18);
    padding: 10px 14px;
    cursor: pointer;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--brown-2);
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.fulfilment-choice label.active {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--cream);
}

.fulfilment-choice input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
}

/* Custom date field replacing the native <input type="date"> */
.date-field {
    position: relative;
    display: grid;
    gap: 5px;
}

.date-field-label {
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.date-display {
    width: 100%;
    text-align: left;
    border: 0;
    border-bottom: 1px solid rgba(74, 36, 18, .22);
    background: transparent;
    padding: 8px 0 9px;
    color: var(--brown);
    font-family: var(--sans);
    font-size: 14px;
    cursor: pointer;
}

.date-display:hover {
    border-bottom-color: var(--gold);
}

.date-display:disabled {
    color: rgba(74, 36, 18, .35);
    cursor: not-allowed;
}

.date-display:disabled:hover {
    border-bottom-color: rgba(74, 36, 18, .22);
}

.calendar-popup {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 20;
    width: min(320px, 90vw);
    background: var(--cream);
    border: 1px solid rgba(74, 36, 18, .16);
    box-shadow: 0 12px 32px rgba(74, 36, 18, .14);
    padding: 22px;
}

.enhanced-select-wrap {
    position: relative;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.calendar-month-label {
    font-family: var(--serif);
    font-style: italic;
    font-size: 21px;
    color: var(--brown);
}

.calendar-nav {
    display: flex;
    gap: 6px;
}

.calendar-nav-btn {
    border: 0;
    background: transparent;
    color: var(--brown);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
}

.calendar-nav-btn:hover {
    color: var(--gold);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 6px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 6px;
}

.calendar-day {
    border: 1px solid transparent;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--brown);
    cursor: pointer;
}

.calendar-day:hover:not(:disabled) {
    border-color: rgba(184, 148, 60, .5);
}

.calendar-day.selected {
    border-color: var(--gold);
    color: var(--gold);
}

.calendar-day.muted,
.calendar-day:disabled {
    color: rgba(74, 36, 18, .28);
    cursor: default;
}

.time-popup {
    width: min(280px, 90vw);
    padding: 10px;
    max-height: 320px;
    overflow-y: auto;
}

.time-option {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 11px 12px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--brown-2);
    cursor: pointer;
    border-radius: 2px;
}

.time-option:hover:not(:disabled) {
    background: var(--paper);
    color: var(--brown);
}

.time-option.selected {
    color: var(--gold);
    font-weight: 700;
}

.time-option:disabled {
    color: rgba(74, 36, 18, .28);
    cursor: default;
}

.customer-box {
    display: none !important;
}

.delivery-box .checkout-two-col {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 700px) {

    .fulfilment-choice,
    .delivery-box .checkout-two-col {
        grid-template-columns: 1fr;
    }
}

/* v16: cleaner cart step and smaller cart typography */
body:has([data-cart]) .section.no-rule {
    padding-top: clamp(34px, 4vw, 64px);
    padding-bottom: clamp(56px, 7vw, 92px);
}

body:has([data-cart]) .cart-tfa-shell {
    max-width: 1240px;
    gap: clamp(28px, 4vw, 56px);
}

body:has([data-cart]) .cart-tfa-header {
    margin-bottom: 16px;
}

body:has([data-cart]) .cart-tfa-header h1 {
    font-size: clamp(30px, 3vw, 42px);
    letter-spacing: -.035em;
}

body:has([data-cart]) .cart-tfa-header h1 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 6px;
    border-radius: 999px;
    background: rgba(74, 36, 18, .08);
    font-family: var(--sans);
    font-size: 13px;
    font-style: normal;
    letter-spacing: 0;
    vertical-align: middle;
}

body:has([data-cart]) .cart-tfa-item {
    padding: 16px 0;
}


body:has([data-cart]) .cart-tfa-summary {
    padding: clamp(20px, 2.5vw, 28px);
}


body:has([data-cart]) .delivery-box {
    gap: 12px;
    padding-top: 16px;
}

body:has([data-cart]) .tfa-cart-form {
    gap: 14px;
}

/* v17: tighter still, matching a compact reference layout — smaller image, tighter type scale */
body:has([data-cart]) .cart-tfa-item {
    grid-template-columns: 80px minmax(0, 1fr) auto auto;
    padding: 14px 0;
    gap: 16px;
}

body:has([data-cart]) .cart-tfa-item img {
    width: 80px;
    height: 98px;
}

body:has([data-cart]) .cart-tfa-item h2 {
    font-size: 18px;
    margin-bottom: 3px;
}

body:has([data-cart]) .cart-tfa-item p {
    font-size: 12px;
    margin-bottom: 4px;
}

body:has([data-cart]) .cart-tfa-qty,
body:has([data-cart]) .cart-tfa-item strong {
    font-size: 12px;
}

body:has([data-cart]) .cart-tfa-total strong {
    font-size: 24px;
}

body:has([data-cart]) .tfa-cart-form label {
    font-size: 9px;
}

body:has([data-cart]) .checkout-form select,
body:has([data-cart]) .checkout-form input,
body:has([data-cart]) .checkout-form textarea {
    font-size: 13px;
    padding: 10px 0 11px;
}

.checkout-error {
    color: #8a3f2b;
}

.checkout-form input.field-error,
.checkout-form textarea.field-error {
    border-bottom-color: #b3261e !important;
}

.field-error-msg {
    color: #b3261e;
    font-size: 12px;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    margin: 0;
}

.field-error-msg[hidden] {
    display: none;
}

button[disabled] {
    cursor: wait;
    opacity: 0.7;
}


/* The Bloom Bar and Potluck Blooms */

.hero-title {
    padding-top: 25px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(58px, 6vw, 94px);
    line-height: .98;
    letter-spacing: -.035em;
    margin: 0 0 26px
}






.section-center {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-center .section-title {
    margin-bottom: 28px;
}

.section-center .lead {
    max-width: 620px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
}




/* for the how it works section in potluck blooms*/

.editorial-section {
    width: 100%;
    min-height: 100svh;
    display: flex;
    align-items: center;

    /* White space around the image and text */
    padding: clamp(70px, 8vh, 120px) clamp(24px, 6vw, 110px);
}

.editorial-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(280px, 0.8fr);
    gap: clamp(50px, 7vw, 130px);
    align-items: center;
}

.editorial-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: min(72vh, 760px);
    overflow: hidden;
}

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

.editorial-copy {
    max-width: 390px;
}

.editorial-copy h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(38px, 4vw, 64px);
    line-height: 1.05;
    margin: 0 0 30px;
}

.editorial-copy p {
    color: var(--brown-2);
    line-height: 1.75;
    margin: 0 0 42px;
}

@media(max-width:900px) {
    .editorial-section {
        min-height: 0;
    }

    .editorial-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .editorial-image {
        max-height: none;
        aspect-ratio: 4 / 3;
    }

    .editorial-copy {
        max-width: none;
    }
}

.editorial-link {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 10px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid currentColor;
}


.faq-category-heading {
    font-family: var(--serif);
}


.cart-drawer-item,
.cart-drawer-items .cart-drawer-item:last-child {
    gap: 16px;
    align-items: center;
    padding: 12px;
    margin: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
}

.cart-drawer-items .cart-drawer-item:last-child {
    border-bottom: 0;
}


.cart-drawer-item img {
    flex: 0 0 92px;
    width: 92px;
    height: 108px;
    object-fit: cover;
    align-self: center;
}

.cart-drawer-item-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.cart-drawer-actions {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 8px;
    grid-column: 2;
    grid-row: 4;
    align-self: end;
    justify-self: end;
    margin: 0 0 2px;
}


.cart-drawer-actions>button,
.cart-drawer-edit-toggle>summary {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted);
}

.cart-drawer-edit-toggle>summary::-webkit-details-marker {
    display: none;
}

.cart-drawer-actions>button:hover,
.cart-drawer-edit-toggle>summary:hover {
    color: var(--brown);
}

.cart-drawer-edit-toggle {
    position: relative;
}

.cart-drawer-edit-form {
    position: absolute;
    z-index: 4;
    top: 24px;
    left: 0;
    width: min(270px, calc(92vw - 90px));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px;
    background: var(--paper);
    border: 1px solid rgba(74, 36, 18, .14);
    box-shadow: 0 14px 30px rgba(45, 25, 14, .12);
}

.cart-drawer-edit-form label {
    display: grid;
    gap: 6px;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
}

.cart-drawer-edit-form select,
.cart-drawer-edit-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(74, 36, 18, .2);
    background: transparent;
    padding: 8px 0;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--brown);
    outline: none;
}

.cart-drawer-edit-form .drawer-message-field,
.cart-drawer-edit-form .btn {
    grid-column: 1 / -1;
}

.cart-drawer-edit-form textarea {
    min-height: 70px;
    resize: vertical;
    border: 1px solid rgba(74, 36, 18, .16);
    padding: 10px;
    background: var(--cream);
}

/* Let the cart editor read like a small editorial panel rather than a skinny dropdown column. */
body:has([data-cart]) .cart-edit-toggle {
    position: static;
}

body:has([data-cart]) .cart-edit-form {
    border: 1px solid rgba(74, 36, 18, .10);
    background: var(--paper);
    box-sizing: border-box;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    margin-top: 14px;
    padding: 18px 20px;
    width: min(900px, 72vw);
    max-width: none;
}


body:has([data-cart]) .cart-edit-form label {
    gap: 8px;
}

body:has([data-cart]) .cart-edit-form select,
body:has([data-cart]) .cart-edit-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(74, 36, 18, .20);
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
}

body:has([data-cart]) .cart-edit-form textarea {
    min-height: 96px;
    border: 1px solid rgba(74, 36, 18, .16);
    background: var(--cream);
    padding: 12px;
}

body:has([data-cart]) .cart-edit-form label:has(textarea),
body:has([data-cart]) .cart-edit-form .btn.small {
    grid-column: 1 / -1;
}

body:has([data-cart]) .cart-edit-form .btn.small {
    margin-top: 2px;
    padding: 12px 20px;
}

.fulfilment-choice label {
    flex-wrap: wrap;
    column-gap: 7px;
}

/* for the price in the delivery/pickup button */
.fulfilment-choice label small {
    font-size: 8px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: .03em;
    opacity: .68;
}


.fulfilment-choice label.active small {
    opacity: .85;
}

@media (max-width: 700px) {
    body:has([data-cart]) .cart-edit-form {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 20px;
    }

    body:has([data-cart]) .cart-edit-form label:has(textarea),
    body:has([data-cart]) .cart-edit-form .btn.small {
        grid-column: auto;
    }

    .cart-drawer-edit-form {
        left: auto;
        right: -60px;
        width: min(290px, 78vw);
    }
}

.cart-drawer-actions>button {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted);
    /* border-bottom: 1px solid currentColor; */
}

.cart-drawer-actions>button:hover {
    color: var(--brown);
}

/* Keep the cart-page edit panel inside the item column and compact enough to see at once. */

body:has([data-cart]) .cart-edit-form label {
    gap: 5px;
}


@media (max-width: 700px) {
    body:has([data-cart]) .cart-edit-form {
        max-width: none;
        grid-template-columns: 1fr;
        padding: 16px;
        width: 100%;
    }
}


/* The colour choice uses the same pill language as cards/sizes. */
.orchid-colour-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.orchid-colour-pills label {
    flex: 0 0 auto;
}

/* v21: drawer quantity decrement + merged-line highlight + aligned cart editor */
/* Make the cart editor a true second row of the cart grid, from product copy to the same
   right edge as Continue shopping / Qty / price. */
body:has([data-cart]) .cart-tfa-item>.cart-edit-wide {
    grid-column: 2 / -1;
    width: 100%;
    min-width: 0;
    margin-top: -2px;
}

body:has([data-cart]) .cart-tfa-copy .cart-remove {
    margin-top: 8px;
}

body:has([data-cart]) .cart-edit-wide>summary {
    display: inline-block;
    padding-top: 4px;
    margin-bottom: 0;
}

body:has([data-cart]) .cart-edit-wide[open]>summary {
    margin-bottom: 12px;
}

body:has([data-cart]) .cart-edit-wide .cart-edit-form {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 18px 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 20px;
}

/* Message / request fields get their own full-width row. */
body:has([data-cart]) .cart-edit-wide .cart-edit-form label:has(textarea),
body:has([data-cart]) .cart-edit-wide .cart-edit-form .btn.small {
    grid-column: 1 / -1;
}

body:has([data-cart]) .cart-edit-wide .cart-edit-form textarea {
    min-height: 68px;
}

/* Keep the image aligned to the top row even while the editor is open. */
body:has([data-cart]) .cart-tfa-image {
    grid-row: 1;
}


@keyframes dbCartAddedFlash {

    0%,
    72% {
        background: var(--paper);
    }

    100% {
        background: transparent;
    }
}

@media (max-width: 700px) {
    body:has([data-cart]) .cart-tfa-item>.cart-edit-wide {
        grid-column: 1 / -1;
    }

    body:has([data-cart]) .cart-edit-wide .cart-edit-form {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    body:has([data-cart]) .cart-edit-wide .cart-edit-form label:has(textarea),
    body:has([data-cart]) .cart-edit-wide .cart-edit-form .btn.small {
        grid-column: auto;
    }
}

/* v22: Edit action sits beside Remove; editor opens as a full row underneath. */
body:has([data-cart]) .cart-tfa-copy .cart-item-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}

body:has([data-cart]) .cart-tfa-copy .cart-remove,
body:has([data-cart]) .cart-tfa-copy .cart-edit-button {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
}

body:has([data-cart]) .cart-tfa-copy .cart-remove:hover,
body:has([data-cart]) .cart-tfa-copy .cart-edit-button:hover {
    color: var(--ink);
}

body:has([data-cart]) .cart-edit-panel[hidden] {
    display: none !important;
}

body:has([data-cart]) .cart-tfa-item>.cart-edit-panel.cart-edit-wide {
    grid-column: 2 / -1;
    width: 100%;
    min-width: 0;
    margin-top: 12px;
}

@media (max-width: 700px) {
    body:has([data-cart]) .cart-tfa-item>.cart-edit-panel.cart-edit-wide {
        grid-column: 1 / -1;
    }
}


/* v23 — cart line-item layout inspired by the compact editorial reference.
   Quantity lives with the product information; price stays at the far right. */
body:has([data-cart]) .cart-tfa-item {
    grid-template-columns: 112px minmax(0, 1fr) auto;
    column-gap: 20px;
    row-gap: 12px;
    align-items: start;
    padding: 20px 0;
}

body:has([data-cart]) .cart-tfa-image {
    grid-column: 1;
    grid-row: 1;
}

body:has([data-cart]) .cart-tfa-item img {
    width: 112px;
    height: 138px;
}

body:has([data-cart]) .cart-tfa-copy {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
}


body:has([data-cart]) .cart-line-options {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

/* When no add-ons were selected, dbOptionSummary() returns only the size,
   e.g. "S", which is exactly what is shown here. */
body:has([data-cart]) .cart-line-quantity {
    margin-top: 16px;
    display: grid;
    gap: 6px;
    width: max-content;
}

body:has([data-cart]) .cart-line-quantity>span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    line-height: 1;
    color: var(--brown);
}

body:has([data-cart]) .cart-quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

body:has([data-cart]) .cart-quantity-controls button {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--brown);
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

body:has([data-cart]) .cart-quantity-controls b {
    min-width: 10px;
    text-align: center;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    color: var(--brown);
}

body:has([data-cart]) .cart-line-price {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 21px;
    color: var(--gold);
    white-space: nowrap;
}

body:has([data-cart]) .cart-tfa-copy .cart-item-actions {
    margin-top: 10px;
    gap: 16px;
}

/* The editor still opens on a separate row underneath the product. */
body:has([data-cart]) .cart-tfa-item>.cart-edit-panel.cart-edit-wide {
    grid-column: 2 / -1;
    grid-row: 2;
    width: 100%;
    margin-top: 2px;
}

@media (max-width: 700px) {
    body:has([data-cart]) .cart-tfa-item {
        grid-template-columns: 88px minmax(0, 1fr) auto;
        column-gap: 14px;
    }

    body:has([data-cart]) .cart-tfa-item img {
        width: 88px;
        height: 108px;
    }

    body:has([data-cart]) .cart-line-price {
        font-size: 17px;
    }

    body:has([data-cart]) .cart-tfa-item>.cart-edit-panel.cart-edit-wide {
        grid-column: 1 / -1;
    }
}

/* v24 — match cart drawer line items to the compact cart-page format. */
.cart-drawer-item,
.cart-drawer-items .cart-drawer-item:last-child {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 12px;
}

.cart-drawer-item img {
    width: 92px;
    height: 112px;
    object-fit: cover;
    align-self: start;
}

.cart-drawer-item-copy {
    min-width: 0;
}

.cart-drawer-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
}

.cart-drawer-options {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.4;
}

.cart-drawer-quantity {
    display: grid;
    gap: 6px;
    width: max-content;
    margin-top: 13px;
}

.cart-drawer-quantity>span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    line-height: 1;
    color: var(--brown);
}

.cart-drawer-quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cart-drawer-quantity-controls button {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: var(--brown);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1;
}

.cart-drawer-quantity-controls b {
    min-width: 9px;
    text-align: center;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    color: var(--brown);
}

@media (max-width: 520px) {

    .cart-drawer-item,
    .cart-drawer-items .cart-drawer-item:last-child {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 13px;
        padding: 10px;
    }

    .cart-drawer-item img {
        width: 82px;
        height: 102px;
    }

    .cart-drawer-item h4 {
        font-size: 12px;
    }

    .cart-drawer-price {
        font-size: 15px;
    }
}


/* v26 — drawer visual layout only. Keeps the proven v24 cart/add-to-cart JS untouched. */
.cart-drawer-item,
.cart-drawer-items .cart-drawer-item:last-child {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    padding: 18px 16px;
}

.cart-drawer-item img {
    width: 112px;
    height: 136px;
    object-fit: cover;
    align-self: start;
}

.cart-drawer-item-copy {
    min-width: 0;
    min-height: 136px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto 1fr auto;
    column-gap: 14px;
}

.cart-drawer-title-row {
    display: contents;
}


.cart-drawer-options {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 5px 0 0;
    font-size: 12px;
    line-height: 1.4;
}

.cart-drawer-quantity {
    grid-column: 1;
    grid-row: 4;
    align-self: end;
    margin: 0;
    display: grid;
    gap: 8px;
    width: max-content;
}

.cart-drawer-quantity>span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 12px;
    line-height: 1;
    color: var(--brown);
}

.cart-drawer-quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cart-drawer-quantity-controls button {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: var(--brown);
    font-size: 18px;
    line-height: 1;
}

.cart-drawer-quantity-controls b {
    min-width: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
}


@media (max-width: 520px) {

    .cart-drawer-item,
    .cart-drawer-items .cart-drawer-item:last-child {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 12px;
        padding: 14px 12px;
    }

    .cart-drawer-item img {
        width: 88px;
        height: 112px;
    }

    .cart-drawer-item-copy {
        min-height: 112px;
    }

    .cart-drawer-item h4 {
        font-size: 12px;
    }

    .cart-drawer-price {
        font-size: 15px;
    }
}


/* v29 — keep cart drawer product names on one line when there is room. */
@media (min-width: 700px) {
    .cart-drawer-item-copy {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .cart-drawer-item h4 {
        white-space: nowrap;
        overflow: visible;
        text-overflow: ellipsis;
    }
}


/* v33 — continuous gallery arrows for Bloom Bar + Potluck lightboxes */
.lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background: rgba(20, 14, 8, .18);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background .18s ease, border-color .18s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .9);
}

.lightbox-prev {
    left: clamp(16px, 3vw, 44px);
}

.lightbox-next {
    right: clamp(16px, 3vw, 44px);
}

@media (max-width: 700px) {
    .lightbox {
        padding-left: 14px;
        padding-right: 14px;
    }

    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 22px;
        background: rgba(20, 14, 8, .34);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content {
        width: calc(100vw - 52px);
    }
}


/* v34 — simple, clean < > gallery navigation */
.lightbox-nav {
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    color: #fff;
    line-height: 1;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0;
}

.lightbox-nav:hover {
    background: transparent;
    border: 0;
    opacity: .6;
}

@media (max-width: 700px) {
    .lightbox-nav {
        width: auto;
        height: auto;
        background: transparent;
        font-size: 26px;
        padding: 8px;
    }
}

.lightbox-next::after,
.lightbox-prev::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}

.lightbox-next::after {
    transform: rotate(45deg);
}

.lightbox-prev::after {
    transform: rotate(-135deg);
}

/* =========================================================
   CLEAN MOBILE NAV — isolated from desktop nav
   >650px: original navbar completely untouched.
   <=650px: right-side drawer.
   ========================================================= */

.mobile-nav-toggle,
.mobile-nav-drawer,
.mobile-nav-backdrop {
    display: none;
}

@media (max-width: 650px) {

    /* Keep the original header sizing/colour logic.
       We only replace the desktop links with a compact trigger. */
    .site-nav {
        padding: 18px clamp(22px, 5vw, 72px);
        align-items: center;
    }

    .brand-logo {
        height: 44px;
    }

    .nav-links {
        display: none !important;
    }

    .mobile-nav-toggle {
        display: block;
        appearance: none;
        border: 0;
        background: transparent;
        color: rgba(251, 247, 238, .86);
        padding: 8px 0 8px 12px;
        margin-left: auto;
        cursor: pointer;
        position: relative;
        z-index: 103;
    }

    body.nav-solid .mobile-nav-toggle {
        color: var(--brown);
    }

    .mobile-nav-toggle span {
        display: block;
        width: 20px;
        height: 1px;
        background: currentColor;
        margin: 5px 0;
        transition: transform .2s ease;
    }

    .mobile-nav-toggle.is-open {
        position: fixed;
        top: 17px;
        right: 18px;
        color: var(--brown);
    }

    .mobile-nav-toggle.is-open span:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    .mobile-nav-toggle.is-open span:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }

    .mobile-nav-drawer {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: min(78vw, 320px);
        height: 100dvh;
        min-height: 100vh;
        background: var(--cream);
        color: var(--brown);
        z-index: 102;
        padding: 72px 26px 34px;
        overflow-y: auto;

        /* No resize flash: closed state does not animate. */
        transform: translateX(101%);
        visibility: hidden;
        pointer-events: none;
        transition: none;
    }

    .mobile-nav-drawer.is-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
        transition: transform .24s ease;
    }

    .mobile-nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .mobile-nav-menu>a,
    .mobile-nav-flowers {
        appearance: none;
        border: 0;
        background: transparent;
        padding: 0;
        margin: 0;
        color: var(--brown);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: .13em;
        font-family: var(--sans);
        font-size: 9px;
        line-height: 1.25;
        font-weight: 700;
        cursor: pointer;
    }

    .mobile-nav-flowers {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .mobile-nav-caret {
        font-size: 10px;
        opacity: .6;
        transition: transform .18s ease;
    }

    .mobile-nav-group.is-open .mobile-nav-caret {
        transform: rotate(180deg);
    }

    .mobile-nav-submenu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
        padding: 9px 0 2px 12px;
    }

    .mobile-nav-group.is-open .mobile-nav-submenu {
        display: flex;
    }

    .mobile-nav-submenu a {
        color: var(--muted);
        text-decoration: none;
        font-family: var(--serif);
        font-style: italic;
        font-size: 11px;
        line-height: 1.3;
        letter-spacing: .02em;
        text-transform: none;
    }

    .mobile-nav-cart {
        margin-top: 4px;
        opacity: .72;
    }

    .mobile-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 101;
        background: rgba(40, 28, 18, .08);
        opacity: 0;
        transition: opacity .18s ease;
    }

    .mobile-nav-backdrop[hidden] {
        display: none;
    }

    .mobile-nav-backdrop.is-open {
        opacity: 1;
    }

    body.mobile-nav-open {
        overflow: hidden;
    }
}


/* =========================================================
   NAV DESKTOP ALIGNMENT + FLUID SIZING v8
   651–900px stays DESKTOP; only <=650px becomes the drawer.
   ========================================================= */

@media (min-width: 651px) and (max-width: 900px) {
    .site-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;

        /* Smoothly tighten spacing as the viewport narrows */
        padding-top: clamp(14px, 1.8vw, 18px) !important;
        padding-bottom: clamp(14px, 1.8vw, 18px) !important;
        padding-left: clamp(20px, 4vw, 42px) !important;
        padding-right: clamp(20px, 4vw, 42px) !important;
    }

    .brand {
        position: static !important;
        flex: 0 0 auto !important;
    }

    .brand-logo {
        height: clamp(38px, 5vw, 44px) !important;
        width: auto !important;
    }

    /* Restore the normal desktop row.
       This defeats the original max-width:900px mobile nav rule. */
    .nav-links {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        width: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: clamp(13px, 2.25vw, 28px) !important;
        white-space: nowrap !important;
        background: transparent !important;
    }

    .nav-links>a,
    .nav-item>a {
        /* ~8.5px close to 650px, smoothly increasing to 10px */
        font-size: clamp(8.5px, 1.08vw, 10px) !important;
        letter-spacing: .13em !important;
        line-height: 1 !important;
        padding: 0 !important;
        margin: 0 !important;
        width: auto !important;
    }

    .nav-utility {
        font-size: clamp(8px, .95vw, 9px) !important;
        margin: 0 !important;
    }

    .nav-item {
        display: flex !important;
        position: relative !important;
        align-items: center !important;
        width: auto !important;
    }

    .nav-item>a {
        display: inline-flex !important;
        align-items: center !important;
    }

    /* Flowers dropdown remains a true dropdown, centred beneath Flowers. */
    .nav-dropdown {
        display: none !important;
        position: absolute !important;
        top: calc(100% + 2px) !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: max-content !important;
        padding-top: 12px !important;
        z-index: 40 !important;
    }

    .nav-item:hover>.nav-dropdown,
    .nav-item:focus-within>.nav-dropdown {
        display: block !important;
    }

    .nav-dropdown-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        min-width: 128px !important;
        padding: 8px 10px !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        gap: 0 !important;
    }

    .nav-dropdown a {
        display: block !important;
        width: 100% !important;
        padding: 7px 10px !important;
        white-space: nowrap !important;
        text-align: center !important;
        font-size: clamp(8px, 1vw, 9.5px) !important;
        line-height: 1.15 !important;
    }

    .mobile-nav-toggle,
    .mobile-nav-drawer,
    .mobile-nav-backdrop {
        display: none !important;
    }
}


/* =========================================================
   MOBILE DRAWER — EVEN VERTICAL SPACING v9
   ========================================================= */
@media (max-width: 650px) {
    .mobile-nav-menu {
        gap: 0 !important;
    }

    /* Give every top-level menu row the exact same rhythm. */
    .mobile-nav-menu>a,
    .mobile-nav-menu>.mobile-nav-group {
        margin: 0 !important;
        padding: 0 !important;
    }

    .mobile-nav-menu>a,
    .mobile-nav-flowers {
        display: flex !important;
        align-items: center !important;
        min-height: 30px !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
        font-size: 12px;
    }

    .mobile-nav-group {
        width: 100% !important;
    }

    .mobile-nav-flowers {
        width: auto !important;
    }

    .mobile-nav-cart {
        margin-top: 0 !important;
    }

    /* Expanded Flowers links sit underneath without changing the
       spacing rule used by the main menu rows. */
    .mobile-nav-submenu {
        padding: 0 0 8px 12px !important;
        gap: 8px !important;
    }
}

/* Keep the Flowers dropdown background consistent with the solid navbar. */
body.nav-solid .nav-dropdown-inner,
body.home.bg-alt.nav-solid .nav-dropdown-inner {
    background: var(--cream) !important;
    width: 10px;
}

.nav-dropdown-inner {
    width: fit-content !important;
    /* min-width: clamp(100px, 8vw, 120px); */
    min-width: 0 !important;
    max-width: none !important;
    padding: 8px 14px !important;
}

.nav-dropdown-inner a {
    display: block;
    width: auto !important;
    min-width: 0 !important;
    padding: 8px 10px !important;
    white-space: nowrap;
}

/* 

@media(min-width: 901px) {
    .nav-dropdown-inner {
        width: 105px;
        padding-left: 6px;
        padding-right: 6px;
    }
}


.nav-dropdown-inner a {
    padding: 8px 6px;
    white-space: nowrap;
    text-align: center;
} */