@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,600&family=DM+Sans:wght@400;500;600&family=Fraunces:ital,opsz,wght@0,9..144,900;1,9..144,900&display=swap');

:root {
    --ink: #252622;
    --cream: #f4f0e7;
    --white: #fbf9f3;
    --lime: #58695e;
    --pink: #745e69;
    --yellow: #8d7349;
    --blue: #596d75;
    --orange: #70483e;
    --purple: #5e576d;
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--body-font, 'DM Sans'), sans-serif;
}

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

button {
    color: inherit;
    font: inherit;
}

.site-header {
    position: relative;
    z-index: 10;
    background: #fff;
}

.utility-bar {
    min-height: 86px;
    padding: 10px clamp(22px, 4vw, 64px);
    display: grid;
    grid-template-columns: minmax(180px, 220px) 1fr minmax(180px, 220px);
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
    border-bottom: 1px solid rgba(21, 44, 37, .18);
}

.brand {
    display: block;
    line-height: 0;
}

.brand-logo {
    width: clamp(180px, 16vw, 220px);
    height: auto;
    display: block;
}

.floating-cart svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.sign-in-button {
    padding: 12px 18px;
    justify-self: end;
    border: 1px solid var(--ink);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .2s, color .2s;
}

.sign-in-button span {
    margin-left: 14px;
}

.sign-in-button:hover {
    background: var(--ink);
    color: var(--white);
}

.account-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
}

.account-button {
    min-height: 46px;
    padding: 6px 13px 6px 7px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: background .2s, color .2s;
}

.account-button:hover,
.account-button.is-current {
    background: var(--ink);
    color: var(--white);
}

.account-button-avatar {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    object-fit: cover;
}

.account-button-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e5dccb;
    color: var(--ink);
    font-size: 12px;
}

.account-sign-out {
    padding-block: 10px;
    border-bottom: 1px solid currentColor;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(26px, 4vw, 62px);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .2s;
}

.main-nav a:hover::after,
.main-nav .is-current::after {
    transform: scaleX(1);
}

.site-flash-messages {
    width: min(1180px, calc(100% - 40px));
    margin: 20px auto 0;
    position: relative;
    z-index: 9;
}

.site-flash-messages .message {
    width: 100%;
    max-width: none;
    margin: 0 0 10px;
    padding: 15px 18px;
    border: 1px solid #9cbf76;
    background: #e4f6cd;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.5;
}

.site-flash-messages .message.error {
    border-color: #b96c66;
    background: #f8dfdc;
}

.site-flash-messages .message.warning {
    border-color: #c6a765;
    background: #f8edcf;
}

.site-flash-messages .message.hidden {
    display: none;
}

.hero {
    min-height: 700px;
    display: grid;
    grid-template-columns: 46% 54%;
    border-bottom: 1px solid rgba(21, 44, 37, .18);
    overflow: hidden;
}

.hero-content {
    padding: clamp(70px, 8vw, 120px) 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    margin: 0 0 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

.hero h1 {
    margin: 0;
    font-family: var(--heading-font, 'Fraunces'), serif;
    font-size: clamp(58px, 6vw, 96px);
    font-optical-sizing: auto;
    font-weight: 900;
    line-height: .94;
    letter-spacing: -.05em;
}

.hero h1 span,
.hero h1 em {
    display: block;
}

.hero h1 em {
    margin-top: .1em;
    color: var(--orange);
    font-family: var(--heading-font, 'Fraunces'), serif;
}

.hero-content > p:not(.eyebrow) {
    max-width: 520px;
    margin: 36px 0;
    font-size: 20px;
    line-height: 1.65;
}

.button {
    width: fit-content;
    padding: 16px 20px;
    display: inline-flex;
    align-items: center;
    gap: 36px;
    border: 2px solid var(--ink);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: transform .2s;
}

.button:hover {
    transform: translateY(-2px);
}

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

.hero-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    overflow: hidden;
}

.sunburst {
    position: absolute;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.34), rgba(255,255,255,0) 68%);
}

.snack-bag {
    position: absolute;
    width: 190px;
    height: 290px;
    padding: 50px 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--ink);
    border-radius: 14px 14px 28px 28px;
    box-shadow: 12px 15px 0 rgba(21,44,37,.15);
    text-align: center;
    color: var(--white);
}

.snack-bag::before {
    content: '';
    position: absolute;
    top: 18px;
    right: 8px;
    left: 8px;
    border-top: 3px dashed var(--ink);
}

.snack-bag > span {
    position: absolute;
    top: 37px;
    font-size: 9px;
    font-weight: 800;
}

.snack-bag strong {
    font-size: 27px;
    letter-spacing: -.07em;
}

.snack-bag small {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.snack-bag i {
    margin-top: 31px;
    font-style: normal;
    letter-spacing: 7px;
}

.bag-pink {
    background: var(--pink);
    transform: translate(-135px, 35px) rotate(-12deg);
}

.bag-yellow {
    z-index: 2;
    background: var(--yellow);
    transform: translate(0, -22px) rotate(2deg);
}

.bag-blue {
    background: var(--blue);
    transform: translate(145px, 42px) rotate(13deg);
}

.page-section {
    padding: 132px clamp(22px, 6vw, 92px);
}

.section-heading {
    margin-bottom: 38px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.section-heading h2,
.featured h2,
.ranges h2 {
    margin: 0;
    font-family: var(--heading-font, 'Fraunces'), serif;
    font-size: clamp(66px, 7vw, 106px);
    font-optical-sizing: auto;
    font-weight: 900;
    line-height: .9;
    letter-spacing: -.04em;
}

.text-link {
    padding-bottom: 6px;
    border-bottom: 1px solid;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.product-showcase {
    background: var(--white);
}

.product-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.product-tile {
    min-width: 0;
    padding: 14px;
    border: 1px solid #bdb6a9;
    background: var(--cream);
}

.product-art {
    position: relative;
    height: 205px;
    margin-bottom: 20px;
    padding: 20px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ink);
    border-radius: 8px 8px 18px 18px;
    overflow: hidden;
    color: var(--white);
}

.product-art::before {
    content: '';
    position: absolute;
    top: 13px;
    right: 7px;
    left: 7px;
    border-top: 2px dashed var(--ink);
}

.product-art strong {
    position: relative;
    font-size: clamp(15px, 1.55vw, 23px);
    letter-spacing: -.055em;
}

.product-art small {
    position: relative;
    margin-top: 5px;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .08em;
    text-align: center;
}

.product-mark {
    position: absolute;
    right: -8px;
    bottom: -22px;
    font-size: 95px;
    opacity: .14;
}

.berry { background: var(--pink); }
.cheese { background: var(--yellow); }
.salt { background: var(--blue); }
.choc { background: var(--purple); }
.apple { background: var(--lime); }

.product-tile h3 {
    margin: 0 0 5px;
    font-family: var(--heading-font, 'Fraunces'), serif;
    font-size: 18px;
    font-optical-sizing: auto;
    font-weight: 900;
}

.product-tile h3 a:hover,
.product-tile h3 a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-tile > p {
    margin: 0;
    color: #61706a;
    font-size: 12px;
}

.product-footer {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.product-footer button {
    padding: 8px 10px;
    border: 0;
    background: var(--ink);
    color: white;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.story-updates {
    background: #eef1ee;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.update-card {
    min-height: 220px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid #c8c1b5;
    border-radius: 8px;
    background: var(--white);
}

.update-card span {
    color: #70483e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.update-card h3 {
    margin: 0;
    font-size: 24px;
}

.update-card p {
    margin: 0;
    color: #59625b;
    line-height: 1.55;
}

.stockists {
    background: #fbf9f3;
}

.stockist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.stockist-card {
    width: 100%;
    min-width: 0;
    min-height: 230px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid #c8c1b5;
    border-radius: 8px;
    background: var(--white);
}

.stockist-card span {
    color: #70483e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.stockist-card h3 {
    margin: 0;
    font-size: 26px;
}

.stockist-card p {
    margin: 0;
    color: #59625b;
    line-height: 1.55;
}

.stockist-links {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.stockist-links a {
    max-width: 100%;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: underline;
    text-transform: uppercase;
    text-underline-offset: 4px;
}

.featured {
    min-height: 530px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(45px, 8vw, 120px);
    align-items: center;
    color: white;
    background: var(--ink);
}

.featured-membership {
    min-height: 440px;
    grid-template-columns: 1fr;
}

.featured-membership .featured-copy {
    width: min(100%, 1400px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    column-gap: clamp(55px, 10vw, 160px);
    align-items: end;
}

.featured-membership .featured-copy h2 {
    max-width: 820px;
    grid-row: 1 / 3;
}

.featured-membership .featured-copy > p:not(.eyebrow) {
    margin: 0 0 28px;
}

.featured-membership .button {
    justify-self: start;
}

.featured-art {
    position: relative;
    min-height: 340px;
    display: grid;
    place-items: center;
    background: var(--pink);
    color: var(--white);
    overflow: hidden;
}

.featured-art strong {
    z-index: 2;
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 5vw, 76px);
    font-optical-sizing: auto;
    font-weight: 900;
    line-height: .82;
    letter-spacing: -.04em;
    text-align: center;
    transform: rotate(-7deg);
}

.feature-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--yellow);
}

.feature-shape-one { width: 250px; height: 250px; top: -100px; left: -70px; }
.feature-shape-two { width: 180px; height: 180px; right: -60px; bottom: -60px; background: var(--orange); }

.featured-copy > p:not(.eyebrow) {
    max-width: 520px;
    margin: 26px 0;
    color: #dce6df;
    font-size: 18px;
    line-height: 1.65;
}

.featured-copy {
    min-width: 0;
}

.button-light {
    border-color: white;
    color: white;
}

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

.range-heading {
    margin-bottom: 42px;
    text-align: center;
}

.range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.range-card {
    min-height: 300px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--ink);
    transition: transform .2s, box-shadow .2s;
    color: var(--white);
}

.range-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0 var(--ink);
}

.range-card > span {
    font-size: 11px;
    font-weight: 800;
}

.range-card h3 {
    margin: auto 0 12px;
    font-family: 'Fraunces', serif;
    font-size: clamp(46px, 4.5vw, 68px);
    font-optical-sizing: auto;
    font-weight: 900;
    letter-spacing: -.04em;
}

.range-card p {
    max-width: 330px;
    margin: 0 0 24px;
    line-height: 1.5;
}

.range-card strong {
    font-size: 13px;
}

.range-sweet { background: var(--pink); }
.range-savoury { background: var(--yellow); }
.range-bundles { background: var(--blue); }

.about-strip {
    padding: 20px 5vw;
    display: flex;
    justify-content: space-around;
    gap: 24px;
    background: var(--orange);
    color: white;
    font-size: 13px;
    font-weight: 700;
}

footer {
    padding: 38px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: #fff;
    font-size: 12px;
}

.footer-brand {
    line-height: 0;
}

.footer-brand .brand-logo {
    width: 185px;
}

.floating-cart {
    position: fixed;
    z-index: 20;
    bottom: 24px;
    left: 24px;
    min-width: 104px;
    height: 54px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--ink);
    border-radius: 2px;
    background: var(--white);
    box-shadow: 4px 5px 0 rgba(21,44,37,.25);
    font-size: 12px;
    font-weight: 800;
}

.floating-cart strong {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: white;
    font-size: 10px;
}

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

body.cart-is-open {
    overflow: hidden;
}

.cart-overlay {
    position: fixed;
    z-index: 29;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(37, 38, 34, .58);
    transition: opacity .25s ease, visibility .25s ease;
    cursor: pointer;
}

.cart-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    z-index: 30;
    top: 0;
    right: 0;
    width: min(440px, 100%);
    height: 100dvh;
    padding: 28px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    visibility: hidden;
    background: var(--white);
    box-shadow: -12px 0 32px rgba(37, 38, 34, .18);
    transform: translateX(100%);
    transition: transform .28s ease, visibility .28s ease;
}

.cart-drawer.is-open {
    visibility: visible;
    transform: translateX(0);
}

.cart-drawer-header {
    padding-bottom: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(37, 38, 34, .2);
}

.cart-eyebrow {
    margin: 0 0 7px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
}

.cart-drawer h2 {
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: 42px;
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.035em;
}

.cart-close {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border: 1px solid var(--ink);
    background: transparent;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
}

.cart-close:hover,
.cart-close:focus-visible {
    background: var(--ink);
    color: var(--white);
}

.cart-empty {
    margin: auto 0;
    padding: 46px 10px;
    text-align: center;
}

.cart-empty > span {
    width: 56px;
    height: 56px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    color: var(--orange);
    font-family: 'Fraunces', serif;
    font-weight: 900;
}

.cart-empty h3 {
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: 31px;
    font-weight: 900;
}

.cart-empty p {
    max-width: 300px;
    margin: 14px auto 24px;
    color: #625f57;
    line-height: 1.55;
}

.cart-empty a {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cart-items {
    padding: 12px 0;
}

.cart-item {
    padding: 18px 0;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    border-bottom: 1px solid rgba(37, 38, 34, .15);
}

.cart-item-visual {
    width: 58px;
    height: 70px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 4px 4px 10px 10px;
    background: var(--blue);
    color: var(--white);
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 900;
}

.cart-item-sweet {
    background: var(--pink);
}

.cart-item-savoury {
    background: var(--yellow);
}

.cart-item-details {
    min-width: 0;
}

.cart-item-details h3 {
    margin: 0 0 4px;
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
}

.cart-item-details > p {
    margin: 0;
    color: #6f6b62;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cart-line-price {
    font-size: 13px;
    white-space: nowrap;
}

.cart-item-controls {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-quantity {
    display: grid;
    grid-template-columns: 36px 34px 36px;
    align-items: center;
    border: 1px solid rgba(37, 38, 34, .35);
}

.cart-quantity > span {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

.cart-quantity-button {
    width: 36px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}

.cart-quantity-button:hover,
.cart-quantity-button:focus-visible {
    background: rgba(37, 38, 34, .1);
}

.cart-remove {
    padding: 7px 0;
    border: 0;
    border-bottom: 1px solid;
    background: transparent;
    font-size: 11px;
    cursor: pointer;
}

.cart-summary {
    margin-top: auto;
    padding-top: 24px;
    border-top: 2px solid var(--ink);
}

.cart-summary > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    font-family: 'Fraunces', serif;
    font-size: 23px;
    font-weight: 900;
}

.cart-summary > p {
    margin: 10px 0 22px;
    color: #6f6b62;
    font-size: 11px;
}

.cart-checkout-form {
    margin: 0 0 12px;
}

.cart-checkout-button,
.cart-summary > button {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    border: 1px solid var(--ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    cursor: pointer;
}

.cart-checkout-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ink);
    color: var(--white);
}

.cart-checkout-button::after {
    content: '→';
    font-size: 16px;
    line-height: 1;
}

.cart-checkout-button:hover,
.cart-checkout-button:focus-visible {
    border-color: var(--orange);
    background: var(--orange);
}

.cart-summary > button {
    background: transparent;
    color: var(--ink);
}

.cart-summary > button:hover,
.cart-summary > button:focus-visible {
    background: rgba(37, 38, 34, .08);
}

.cart-checkout-button:disabled {
    cursor: default;
    opacity: .5;
}

[data-cart-add].is-added {
    background: var(--lime);
}

@media (max-width: 1000px) {
    .utility-bar {
        grid-template-columns: 180px 1fr 150px;
        gap: 22px;
    }

    .brand-logo {
        width: 180px;
    }

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

    .hero-art {
        min-height: 540px;
    }

    .product-row {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .featured-membership {
        min-height: auto;
    }

    .featured-membership .featured-copy {
        max-width: 760px;
        margin: 0;
        display: block;
    }

    .featured-membership .featured-copy > p:not(.eyebrow) {
        margin: 28px 0;
    }
}

@media (max-width: 700px) {
    .site-flash-messages {
        width: calc(100% - 32px);
        margin-top: 16px;
    }

    .site-header,
    main,
    footer,
    .hero,
    .hero-content,
    .hero-art,
    .page-section,
    .featured,
    .ranges,
    .about-strip {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .utility-bar {
        width: 100%;
        max-width: 100%;
        min-height: 72px;
        padding: 10px 0 0;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px 12px;
    }

    .utility-bar > .brand {
        min-width: 0;
        margin-left: 16px;
    }

    .brand-logo {
        width: clamp(138px, 42vw, 155px);
        max-width: 100%;
    }

    .sign-in-button {
        max-width: 100%;
        min-height: 44px;
        margin-right: 16px;
        padding: 10px 12px;
        display: inline-flex;
        align-items: center;
        font-size: 10px;
        white-space: nowrap;
    }

    .account-actions {
        grid-column: 2;
        grid-row: 1;
        margin-right: 16px;
        gap: 9px;
    }

    .account-button {
        min-height: 42px;
        padding: 5px 9px 5px 5px;
    }

    .account-button-avatar {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .account-sign-out {
        font-size: 9px;
    }

    .main-nav {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
        grid-column: 1 / -1;
        grid-row: 2;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        border-top: 1px solid rgba(21, 44, 37, .12);
        font-size: 11px;
        letter-spacing: .1em;
    }

    .main-nav a {
        min-width: 0;
        min-height: 46px;
        padding: 10px 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid rgba(21, 44, 37, .12);
        white-space: nowrap;
    }

    .main-nav a:nth-child(odd) {
        border-right: 1px solid rgba(21, 44, 37, .12);
    }

    .main-nav a::after {
        right: 25%;
        bottom: 5px;
        left: 25%;
    }

    .sign-in-button {
        grid-column: 2;
        grid-row: 1;
    }

    .hero-content {
        min-width: 0;
        padding: 56px 20px;
    }

    .hero-content > * {
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 60px);
        line-height: .96;
    }

    .section-heading h2,
    .featured h2,
    .ranges h2 {
        font-size: clamp(44px, 14vw, 54px);
    }

    .hero-content > p:not(.eyebrow) {
        margin: 28px 0;
        font-size: 17px;
    }

    .button {
        width: 100%;
        max-width: 100%;
        min-height: 50px;
        gap: 16px;
        justify-content: space-between;
    }

    .button span {
        flex: 0 0 auto;
    }

    .hero-art {
        min-height: 360px;
    }

    .snack-bag {
        width: 120px;
        height: 190px;
        padding-top: 42px;
    }

    .snack-bag strong {
        font-size: 18px;
    }

    .bag-pink { transform: translate(-78px, 26px) rotate(-12deg); }
    .bag-yellow { transform: translate(0, -15px) rotate(2deg); }
    .bag-blue { transform: translate(82px, 30px) rotate(13deg); }

    .page-section {
        padding: 60px 18px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .updates-grid,
    .stockist-grid {
        grid-template-columns: 1fr;
    }

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

    .product-art {
        height: 250px;
    }

    .product-art strong {
        font-size: 23px;
    }

    .product-footer button {
        min-width: 46px;
        min-height: 44px;
    }

    .featured {
        gap: 36px;
    }

    .featured-art {
        min-width: 0;
        min-height: 270px;
    }

    .featured-art strong {
        font-size: clamp(40px, 13vw, 52px);
    }

    .featured-copy > p:not(.eyebrow) {
        font-size: 16px;
    }

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

    .range-card {
        min-height: 280px;
        padding: 24px;
    }

    .range-card h3 {
        font-size: clamp(40px, 13vw, 50px);
    }

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

    .about-strip span {
        min-height: 52px;
        padding: 12px 14px;
        display: flex;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, .18);
    }

    footer {
        padding-right: 20px;
        padding-left: 20px;
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-cart {
        bottom: 16px;
        left: 16px;
        min-height: 54px;
    }

    .cart-drawer {
        width: 100%;
        padding: 20px 18px;
    }

    .cart-drawer h2 {
        font-size: 36px;
    }

    .cart-item {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .cart-item-visual {
        width: 52px;
        height: 64px;
    }

    .cart-line-price {
        grid-column: 2;
        grid-row: 2;
    }

    .cart-item-controls {
        flex-wrap: wrap;
    }

    .cart-quantity {
        grid-template-columns: 44px 38px 44px;
    }

    .cart-quantity-button {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 410px) {
    .sign-in-button span { display: none; }

    .account-button > span:last-child {
        display: none;
    }
}

@media (max-width: 350px) {
    .utility-bar {
        gap: 8px;
    }

    .brand-logo {
        width: 132px;
    }

    .utility-bar > .brand {
        margin-left: 12px;
    }

    .sign-in-button {
        margin-right: 12px;
        padding: 8px 10px;
        font-size: 9px;
    }

    .account-actions {
        margin-right: 12px;
    }

    .main-nav {
        font-size: 10px;
    }
}

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

.testimonial-heading-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.testimonial-controls {
    display: flex;
    gap: 8px;
}

.testimonial-controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(37, 38, 34, .18);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font: 700 24px/1 var(--heading-font, 'Fraunces'), serif;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, opacity .2s ease;
}

.testimonial-controls button:hover:not(:disabled) {
    border-color: var(--lime);
    background: rgba(88, 105, 94, .12);
}

.testimonial-controls button:disabled {
    cursor: not-allowed;
    opacity: .42;
}

.testimonial-gallery {
    overflow: hidden;
}

.testimonial-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, calc((100% - 32px) / 3));
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.testimonial-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(37, 38, 34, .16);
    background: var(--white);
    scroll-snap-align: start;
}

.testimonial-stars {
    margin: 0 0 14px;
    color: var(--orange);
    font-size: 17px;
    letter-spacing: 0;
}

.testimonial-card blockquote {
    margin: 0 0 22px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    margin-top: 4px;
    color: rgba(37, 38, 34, .68);
    font-size: 13px;
}

@media (max-width: 900px) {
    .testimonial-heading-actions {
        width: 100%;
        justify-content: space-between;
    }

    .testimonial-track {
        grid-auto-columns: minmax(260px, 86vw);
    }
}

@media (max-width: 420px) {
    .testimonial-heading-actions {
        align-items: flex-start;
    }

    .testimonial-track {
        grid-auto-columns: 100%;
    }
}
