:root {
    --color-black: #0f0f0f;
    --color-dark-gray: #2a2a2a;
    --color-gray: #5d5d5d;
    --color-light-gray: #eceae5;
    --color-cream: #f4f0e8;
    --color-white: #fff;
    --color-text: #111;
    --color-text-muted: #52504c;
    --color-border: #c9c5bc;
    --color-accent: #005fcc;
    --color-accent-dark: #00428f;
    --color-focus: #005fcc;
    --font-heading: "Arial Narrow", "Franklin Gothic Condensed", "Roboto Condensed", Arial, sans-serif;
    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: 82.5rem;
    --content-measure: 70ch;
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --radius-sm: .25rem;
    --radius-md: .5rem;
    --shadow-soft: 0 1.125rem 3.4375rem #0f0f0f14;
    --transition: .18s ease
}

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

html {
    scroll-behavior: smooth
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
    margin: 0
}

ul,
ol {
    padding: 0
}

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

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

button {
    border: 0
}

[hidden] {
    display: none !important
}

body {
    color: var(--color-text);
    font-family: var(--font-body);
    text-rendering: optimizelegibility;
    font-size: 1rem;
    line-height: 1.65
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text);
    font-family: var(--font-heading);
    letter-spacing: -.025em;
    text-wrap: balance;
    font-weight: 900;
    line-height: 1.05
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5.0rem)
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 4.25rem)
}

h3 {
    font-size: clamp(1.625rem, 3vw, 2.5rem)
}

h4 {
    font-size: clamp(1.375rem, 2.3vw, 2rem)
}

h5 {
    font-size: clamp(1.1875rem, 1.8vw, 1.55rem)
}

h6 {
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 1rem
}

p {
    max-width: var(--content-measure)
}

span {
    color: inherit;
    font: inherit
}

strong,
b {
    font-weight: 800
}

em,
i {
    font-style: italic
}

small {
    font-size: .875rem
}

blockquote {
    border-left: .25rem solid var(--color-black);
    padding-left: 1.25rem;
    font-size: 1.25rem;
    font-weight: 650
}

.lead {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    line-height: 1.6
}

.eyebrow {
    color: var(--color-text-muted);
    letter-spacing: .11em;
    text-transform: uppercase;
    margin-bottom: .9rem;
    font-size: .8125rem;
    font-weight: 800;
    line-height: 1.4
}

html {
    background: var(--color-white);
    scroll-padding-top: 7.5rem
}

body {
    background: var(--color-white);
    min-width: 20rem
}

body.menu-open {
    overflow: hidden
}

main {
    min-height: 55vh
}

.container {
    width: min(100% - var(--gutter) * 2, var(--container));
    margin-inline: auto
}

.section {
    padding-block: clamp(4rem, 8vw, 7rem)
}

.section--gray {
    background: var(--color-light-gray)
}

.section--products {
    border-top: .0625rem solid var(--color-border)
}

.section-heading {
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    display: flex
}

.section-heading--centered {
    text-align: center;
    justify-content: center
}

.button-group {
    flex-wrap: wrap;
    gap: .75rem;
    display: flex
}

.text-link {
    min-height: 2.75rem;
    color: var(--color-text);
    letter-spacing: .06em;
    text-underline-offset: .25em;
    text-transform: uppercase;
    align-items: center;
    gap: .55rem;
    font-size: .875rem;
    font-weight: 800;
    text-decoration: underline .1em;
    display: inline-flex
}

.text-link:hover {
    color: var(--color-accent-dark)
}

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

a:hover {
    text-decoration-thickness: .13em
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: .1875rem solid var(--color-focus);
    outline-offset: .1875rem
}

hr {
    border: 0;
    border-top: .0625rem solid var(--color-border)
}

figure {
    margin: 0
}

figcaption {
    color: var(--color-text-muted);
    margin-top: .75rem;
    font-size: .875rem
}

ul,
ol {
    padding-left: 1.25rem
}

li+li {
    margin-top: .4rem
}

table {
    border-collapse: collapse;
    width: 100%
}

th,
td {
    border: .0625rem solid var(--color-border);
    text-align: left;
    padding: .85rem 1rem
}

th {
    background: var(--color-light-gray);
    font-weight: 800
}

label {
    font-size: .9375rem;
    font-weight: 750;
    display: inline-block
}

input,
select,
textarea {
    border: .0625rem solid var(--color-gray);
    background: var(--color-white);
    width: 100%;
    min-height: 3rem;
    color: var(--color-text);
    font: inherit;
    border-radius: 0;
    padding: .75rem .9rem
}

textarea {
    resize: vertical;
    min-height: 9rem
}

details {
    border-block: .0625rem solid var(--color-border);
    padding-block: 1rem
}

summary {
    cursor: pointer;
    font-weight: 800
}

.icon-wrapper {
    flex: none;
    width: 1em;
    height: 1em;
    display: inline-flex
}

.icon-wrapper svg {
    fill: currentColor;
    width: 100%;
    height: 100%
}

.skip-link {
    z-index: 9999;
    border: .1875rem solid var(--color-accent);
    background: var(--color-white);
    color: var(--color-black);
    transition: transform var(--transition);
    padding: .875rem 1rem;
    font-weight: 800;
    position: fixed;
    top: .75rem;
    left: .75rem;
    transform: translateY(-160%)
}

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

.sr-only {
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    width: .0625rem;
    height: .0625rem;
    margin: -.0625rem;
    padding: 0;
    position: absolute;
    overflow: hidden
}

@media (width<=45rem) {
    .section-heading {
        flex-direction: column;
        align-items: flex-start
    }

    .button-group--stack-mobile {
        flex-direction: column;
        align-items: stretch
    }

    .button-group--stack-mobile .button {
        width: 100%
    }
}

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

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

.button,
button.button {
    letter-spacing: .065em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    min-height: 3rem;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    border: .0625rem solid #0000;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    gap: .65rem;
    padding: .875rem 1.5rem;
    font-size: .875rem;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
    display: inline-flex
}

.button:hover {
    text-decoration: none;
    transform: translateY(-.125rem)
}

.button:disabled,
.button[aria-disabled=true] {
    cursor: not-allowed;
    opacity: .55;
    transform: none
}

.button--primary {
    background: var(--color-black);
    color: var(--color-white)
}

.button--primary:hover {
    background: var(--color-accent-dark)
}

.button--secondary {
    border-color: var(--color-black);
    color: var(--color-black);
    background: 0 0
}

.button--secondary:hover {
    border-color: var(--color-accent-dark);
    background: var(--color-accent-dark);
    color: var(--color-white)
}

.button--light {
    background: var(--color-white);
    color: var(--color-black)
}

.button--light:hover {
    background: var(--color-cream);
    color: var(--color-accent-dark)
}

.button--text {
    min-height: 2.75rem;
    color: inherit;
    background: 0 0;
    padding: .5rem 0
}

.announcement-bar {
    padding: .625rem var(--gutter);
    background: var(--color-black);
    color: var(--color-white);
    text-align: center
}

.announcement-bar p {
    letter-spacing: .08em;
    text-transform: uppercase;
    max-width: none;
    font-size: .8125rem;
    font-weight: 750;
    line-height: 1.4
}

.site-header {
    z-index: 100;
    border-bottom: .0625rem solid var(--color-border);
    backdrop-filter: blur(.625rem);
    background: #fffffffa;
    position: sticky;
    top: 0
}

.site-header__inner {
    grid-template-columns: auto 1fr;
    align-items: center;
    min-height: 5.5rem;
    display: grid
}

.site-logo {
    align-items: center;
    width: 4.5rem;
    min-height: 3rem;
    padding-block: .5rem;
    text-decoration: none;
    display: inline-flex
}

.site-logo img {
    width: 100%;
    height: auto
}

.primary-navigation {
    justify-content: flex-end;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    display: flex
}

.primary-navigation ul {
    align-items: center;
    gap: clamp(1.2rem, 3vw, 2.4rem);
    padding: 0;
    list-style: none;
    display: flex
}

.primary-navigation li {
    margin: 0
}

.primary-navigation a {
    letter-spacing: .06em;
    text-transform: uppercase;
    align-items: center;
    min-height: 2.75rem;
    font-size: .875rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    position: relative
}

.primary-navigation ul a:after {
    content: "";
    background: var(--color-accent);
    height: .125rem;
    transition: transform var(--transition);
    position: absolute;
    bottom: .15rem;
    left: 0;
    right: 0;
    transform: scaleX(0)
}

.primary-navigation ul a:hover:after,
.primary-navigation ul a[aria-current=page]:after {
    transform: scaleX(1)
}

.header-shop-link {
    border: .0625rem solid var(--color-black);
    align-items: center;
    gap: .55rem;
    min-height: 3rem;
    padding: .8rem 1rem;
    display: inline-flex
}

.header-shop-link:hover {
    border-color: var(--color-accent-dark);
    background: var(--color-accent-dark);
    color: var(--color-white)
}

.site-header__toggle {
    width: 3rem;
    height: 3rem;
    color: var(--color-black);
    cursor: pointer;
    background: 0 0;
    border: 0;
    justify-content: center;
    justify-self: end;
    align-items: center;
    font-size: 1.35rem;
    display: none
}

.site-header__menu-close,
.site-header__toggle[aria-expanded=true] .site-header__menu-open {
    display: none
}

.site-header__toggle[aria-expanded=true] .site-header__menu-close {
    display: inline-flex
}

@media (width<=56.1875rem) {
    .site-header__inner {
        min-height: 4.625rem
    }

    .site-logo {
        width: 3.625rem
    }

    .site-header__toggle {
        display: inline-flex
    }

    .primary-navigation {
        min-height: auto; /*calc(100dvh - 4.625rem);*/
        padding: 2.5rem var(--gutter);
        background: var(--color-cream);
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
        display: none;
        position: fixed;
        inset: 4.625rem 0 auto;
        overflow-y: auto
    }

    .primary-navigation[data-open] {
        display: flex
    }

    .primary-navigation ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0
    }

    .primary-navigation ul a {
        border-bottom: .0625rem solid var(--color-border);
        min-height: 3.5rem;
        font-family: var(--font-heading);
        letter-spacing: -.01em;
        text-transform: none;
        padding-block: 1rem;
        font-size: 2rem;
        display: flex
    }

    .primary-navigation ul a:after {
        display: none
    }

    .header-shop-link {
        justify-content: center
    }
}

.site-footer {
    background: var(--color-black);
    color: var(--color-white);
    padding-top: clamp(3.5rem, 7vw, 6rem)
}

.site-footer a:focus-visible {
    outline-color: var(--color-white)
}

.site-footer__grid {
    grid-template-columns: minmax(17.5rem, 1.6fr) 1fr 1fr;
    gap: clamp(2.5rem, 7vw, 6rem);
    padding-bottom: 3.5rem;
    display: grid
}

.site-footer__brand img {
    width: 7.375rem;
    height: auto;
    margin-bottom: 1.4rem
}

.site-footer__brand p {
    color: #d5d3ce;
    font-size: 1rem
}

.site-footer__etsy {
    letter-spacing: .06em;
    text-underline-offset: .25em;
    text-transform: uppercase;
    align-items: center;
    gap: .55rem;
    min-height: 2.75rem;
    margin-top: 1.25rem;
    font-size: .875rem;
    font-weight: 800;
    text-decoration: underline;
    display: inline-flex
}

.site-footer__heading {
    color: var(--color-white);
    font-family: var(--font-body);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    font-size: .875rem;
    line-height: 1.3
}

.site-footer ul {
    padding: 0;
    list-style: none
}

.site-footer li {
    margin: 0
}

.site-footer li+li {
    margin-top: .35rem
}

.site-footer li a {
    min-height: 2.75rem;
    color: inherit;
    align-items: center;
    font-size: 1rem;
    display: inline-flex
}

.site-footer__bottom {
    border-top: .0625rem solid #555;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1.25rem;
    display: flex
}

.site-footer__bottom p {
    color: #d1cfca;
    font-size: .875rem
}

@media (width<=47.5rem) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr
    }

    .site-footer__brand {
        grid-column: 1/-1
    }

    .site-footer__bottom {
        flex-direction: column
    }
}

@media (width<=32rem) {
    .site-footer__grid {
        grid-template-columns: 1fr
    }

    .site-footer__brand {
        grid-column: auto
    }
}

.breadcrumbs {
    margin-bottom: 1.4rem
}

.breadcrumbs ol {
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding: 0;
    list-style: none;
    display: flex
}

.breadcrumbs li {
    color: var(--color-text-muted);
    letter-spacing: .04em;
    text-transform: uppercase;
    align-items: center;
    gap: .5rem;
    margin: 0;
    font-size: .8125rem;
    font-weight: 700;
    display: inline-flex
}

.breadcrumbs a {
    text-underline-offset: .2em;
    align-items: center;
    min-height: 2.75rem;
    text-decoration: underline;
    display: inline-flex
}

.breadcrumbs a:hover {
    color: var(--color-accent-dark)
}

.breadcrumbs .icon-wrapper {
    font-size: .7em
}

.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.25rem);
    display: grid
}

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

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

.product-card {
    min-width: 0
}

.product-card__image-link {
    background: var(--color-cream);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden
}

.product-card__image-link:after {
    content: "";
    pointer-events: none;
    border: .0625rem solid #0f0f0f1f;
    position: absolute;
    inset: 0
}

.product-card img {
    aspect-ratio: 1;
    object-fit: contain;
    background: var(--color-white);
    width: 100%;
    padding: 1rem;
    transition: transform .35s
}

.product-card:hover img,
.product-card__image-link:focus-visible img {
    transform: scale(1.02)
}

.product-card__content {
    padding-top: 1.15rem
}

.product-card__category {
    color: var(--color-text-muted);
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-bottom: .45rem;
    font-size: .8125rem;
    font-weight: 800
}

.product-card h2,
.product-card h3 {
    font-family: var(--font-body);
    letter-spacing: -.01em;
    font-size: 1.25rem;
    font-weight: 850;
    line-height: 1.3
}

.product-card h2 a,
.product-card h3 a {
    text-underline-offset: .2em;
    text-decoration: underline .075em
}

.product-card__content>p:not(.product-card__category) {
    color: var(--color-text-muted);
    margin-top: .55rem;
    font-size: 1rem;
    line-height: 1.6
}

.product-card__link {
    min-height: 2.75rem;
    color: var(--color-text);
    letter-spacing: .06em;
    text-underline-offset: .25em;
    text-transform: uppercase;
    align-items: center;
    gap: .45rem;
    margin-top: .75rem;
    font-size: .875rem;
    font-weight: 850;
    text-decoration: underline;
    display: inline-flex
}

.product-card__link:hover {
    color: var(--color-accent-dark)
}

.product-filters {
    border-bottom: .0625rem solid var(--color-border);
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    display: flex
}

.product-filters__buttons {
    flex-wrap: wrap;
    gap: .625rem;
    display: flex
}

.product-filter {
    border: .0625rem solid var(--color-gray);
    background: var(--color-white);
    min-height: 3rem;
    color: var(--color-text);
    font: inherit;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    padding: .75rem 1rem;
    font-size: .875rem;
    font-weight: 800
}

.product-filter:hover {
    border-color: var(--color-accent-dark);
    color: var(--color-accent-dark)
}

.product-filter[aria-pressed=true] {
    border-color: var(--color-black);
    background: var(--color-black);
    color: var(--color-white)
}

.sort-control {
    grid-template-columns: auto minmax(9rem, 1fr);
    align-items: center;
    gap: .65rem;
    display: grid
}

.sort-control span {
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: 800
}

.sort-control select {
    min-height: 3rem;
    padding: .55rem 2.3rem .55rem .8rem
}

.products-page__status {
    margin-bottom: 1.5rem
}

.products-page__status p {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 650
}

.products-page__empty {
    text-align: center;
    padding: 4rem 1rem
}

.product-detail__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, .9fr);
    align-items: start;
    gap: clamp(2.5rem, 7vw, 6rem);
    display: grid
}

.product-detail__media {
    background: var(--color-cream);
    position: sticky;
    top: 8.125rem
}

.product-detail__media img {
    object-fit: contain;
    background: var(--color-white);
    width: 100%;
    max-height: 48rem;
    padding: clamp(1rem, 3vw, 2rem)
}

.product-detail__content {
    padding-top: clamp(1rem, 4vw, 4rem)
}

.product-detail__content h1 {
    font-size: clamp(3rem, 6vw, 5.5rem)
}

.product-detail__lead {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.65
}

.product-detail__list {
    gap: .85rem;
    margin-block: 2rem;
    padding: 0;
    list-style: none;
    display: grid
}

.product-detail__list li {
    align-items: flex-start;
    gap: .7rem;
    margin: 0;
    display: flex
}

.product-detail__list .icon-wrapper {
    color: var(--color-accent-dark);
    margin-top: .3rem
}

.product-detail__note {
    border-left: .25rem solid var(--color-accent-dark);
    background: var(--color-light-gray);
    margin-bottom: 2rem;
    padding: 1.25rem
}

.product-detail__note h2 {
    font-family: var(--font-body);
    letter-spacing: 0;
    margin-bottom: .45rem;
    font-size: 1.125rem;
    font-weight: 850;
    line-height: 1.3
}

.product-detail__note p {
    font-size: 1rem
}

@media (width<=63.75rem) {
    .product-grid--featured {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (width<=51.25rem) {

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

    .product-detail__grid {
        grid-template-columns: 1fr
    }

    .product-detail__media {
        position: static
    }

    .product-detail__content {
        padding-top: 0
    }
}

@media (width<=38.75rem) {

    .product-grid,
    .product-grid--featured,
    .product-grid--related {
        grid-template-columns: 1fr
    }

    .product-filters {
        flex-direction: column;
        align-items: stretch
    }

    .sort-control {
        grid-template-columns: 1fr
    }

    .product-filter {
        flex: calc(50% - .625rem)
    }
}

.home-hero {
    background: var(--color-cream)
}

.home-hero__grid {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    align-items: center;
    min-height: clamp(38.75rem, 74vh, 53.125rem);
    display: grid
}

.home-hero__content {
    padding-block: clamp(4rem, 8vw, 8rem);
    padding-right: clamp(1rem, 4vw, 4rem)
}

.home-hero h1 {
    max-width: 9ch
}

.home-hero__lead {
    max-width: 34rem;
    color: var(--color-text-muted);
    margin-block: 1.5rem 2rem;
    font-size: clamp(1.05rem, 1.7vw, 1.3rem)
}

.home-hero__media {
    align-self: stretch;
    min-height: 100%;
    overflow: hidden
}

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

.feature-strip {
    border-block: .0625rem solid var(--color-border);
    background: var(--color-white)
}

.feature-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    display: grid
}

.feature-strip article {
    border-right: .0625rem solid var(--color-border);
    grid-template-columns: 2rem 1fr;
    gap: .85rem;
    padding: 1.65rem clamp(.75rem, 2vw, 1.5rem);
    display: grid
}

.feature-strip article:first-child {
    border-left: .0625rem solid var(--color-border)
}

.feature-strip article>.icon-wrapper {
    margin-top: .15rem;
    font-size: 1.45rem
}

.feature-strip h2 {
    font-family: var(--font-body);
    letter-spacing: .07em;
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: 850;
    line-height: 1.3
}

.feature-strip p {
    color: var(--color-text-muted);
    margin-top: .3rem;
    font-size: .9375rem;
    line-height: 1.45
}

.story-band {
    background: var(--color-black);
    color: var(--color-white)
}

.story-band__grid {
    grid-template-columns: 1.1fr .9fr;
    display: grid
}

.story-band__image img {
    object-fit: cover;
    filter: grayscale();
    width: 100%;
    height: 100%
}

.story-band__content {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(3rem, 7vw, 7rem);
    display: flex
}

.story-band h2 {
    color: var(--color-white)
}

.story-band p:not(.eyebrow) {
    color: #dedcd7;
    margin-block: 1.5rem 2rem;
    font-size: 1.125rem
}

.story-band .eyebrow {
    color: #d0cdc6
}

.etsy-cta {
    background: var(--color-cream);
    padding-block: clamp(3.5rem, 6vw, 6rem)
}

.etsy-cta__inner {
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    display: flex
}

.etsy-cta h2 {
    font-size: clamp(2.2rem, 4vw, 4rem)
}

@media (width<=58.125rem) {
    .home-hero__grid {
        grid-template-columns: 1fr
    }

    .home-hero__media {
        min-height: 30rem
    }

    .home-hero__content {
        padding-right: 0
    }

    .feature-strip__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .feature-strip article:nth-child(3) {
        border-left: .0625rem solid var(--color-border);
        border-top: .0625rem solid var(--color-border)
    }

    .feature-strip article:nth-child(4) {
        border-top: .0625rem solid var(--color-border)
    }

    .story-band__grid {
        grid-template-columns: 1fr
    }

    .story-band__image {
        max-height: 32.5rem
    }
}

@media (width<=40.625rem) {
    .home-hero__media {
        min-height: 20.625rem
    }

    .feature-strip__grid {
        grid-template-columns: 1fr
    }

    .feature-strip article {
        border-left: .0625rem solid var(--color-border);
        border-top: .0625rem solid var(--color-border)
    }

    .feature-strip article:first-child {
        border-top: 0
    }

    .etsy-cta__inner {
        flex-direction: column;
        align-items: flex-start
    }
}

.page-hero {
    background: var(--color-cream)
}

.page-hero--compact {
    padding-block: clamp(3rem, 7vw, 6rem)
}

.page-hero h1 {
    font-size: clamp(3.5rem, 8vw, 7rem)
}

.page-hero>.container>p {
    max-width: 42rem;
    color: var(--color-text-muted);
    margin-top: 1.2rem;
    font-size: 1.125rem
}

.about-story__grid {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(2rem, 7vw, 7rem);
    display: grid
}

.about-story__copy h2 {
    margin-bottom: 1.5rem
}

.about-story__copy p+p {
    margin-top: 1rem
}

.about-story__copy .button {
    margin-top: 2rem
}

.about-story__image img {
    width: 100%;
    box-shadow: var(--shadow-soft)
}

.values-grid {
    background: var(--color-border);
    border: .0625rem solid var(--color-border);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .0625rem;
    display: grid
}

.values-grid article {
    background: var(--color-white);
    padding: clamp(1.5rem, 4vw, 3rem)
}

.values-grid .icon-wrapper {
    margin-bottom: 1.5rem;
    font-size: 1.8rem
}

.values-grid h3 {
    font-family: var(--font-body);
    letter-spacing: 0;
    font-size: 1.125rem;
    font-weight: 850;
    line-height: 1.3
}

.values-grid p {
    color: var(--color-text-muted);
    margin-top: .65rem;
    font-size: 1rem
}

@media (width<=56.25rem) {
    .about-story__grid {
        grid-template-columns: 1fr
    }

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

@media (width<=35rem) {
    .values-grid {
        grid-template-columns: 1fr
    }
}

.legal-page__content {
    max-width: 820px
}

.legal-page__content h2 {
    font-family: var(--font-body);
    letter-spacing: 0;
    margin-top: 2.5rem;
    font-size: 1.4rem;
    font-weight: 850;
    line-height: 1.25
}

.legal-page__content h2:first-child {
    margin-top: 0
}

.legal-page__content p {
    color: var(--color-text-muted);
    margin-top: .75rem
}

.legal-page__content .button {
    margin-top: 2rem
}

.not-found {
    text-align: center;
    place-items: center;
    min-height: 65vh;
    padding-block: 5rem;
    display: grid
}

.not-found__number {
    max-width: none;
    color: var(--color-light-gray);
    font-family: var(--font-heading);
    letter-spacing: -.08em;
    font-size: clamp(7rem, 22vw, 18rem);
    font-weight: 900;
    line-height: .75
}

.not-found h1 {
    margin-top: -1rem;
    font-size: clamp(2.5rem, 6vw, 5rem)
}

.not-found>.container>p:not(.not-found__number) {
    color: var(--color-text-muted);
    margin: 1.5rem auto 2rem
}

.not-found .button-group {
    justify-content: center
}