:root {
    --cream: #f8f4eb;
    --paper: #fffdf8;
    --kraft: #d8bea0;
    --green: #254332;
    --sage: #aebda6;
    --red: #a14d3c;
    --ink: #2d2a25;
    --muted: #70695e;
    --line: #d8d0c3;
    --serif: Georgia, "Times New Roman", serif;
    --sans: system-ui, -apple-system, "Segoe UI", sans-serif;
    --max: 72rem;
    --space: clamp(3.75rem, 8vw, 7.5rem);
    --radius: 2px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.65
}

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

a {
    color: inherit
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 4px
}

.container {
    width: min(calc(100% - 2.5rem), var(--max));
    margin-inline: auto
}

.skip-link {
    position: absolute;
    z-index: 10;
    left: 1rem;
    top: -5rem;
    padding: .7rem 1rem;
    background: var(--green);
    color: white
}

.skip-link:focus {
    top: 1rem
}

.site-header {
    position: sticky;
    z-index: 5;
    top: 0;
    background: color-mix(in srgb, var(--cream) 94%, transparent);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px)
}

.header-inner {
    min-height: 5.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.brand,
.footer-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .65rem;
    font-family: var(--serif);
    line-height: 1.05
}

.brand strong,
.brand small {
    display: block
}

.brand strong {
    font-size: 1.05rem
}

.brand small {
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase
}

.brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--green);
    border-radius: 50%;
    color: var(--green);
    font-family: var(--serif);
    font-size: .82rem
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: .92rem
}

.primary-nav>a:not(.button) {
    text-decoration: none
}

.primary-nav>a:not(.button):hover {
    text-decoration: underline;
    text-underline-offset: .25rem
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font: inherit;
    color: var(--green);
    padding: .7rem
}

.button {
    display: inline-block;
    border: 1px solid var(--green);
    padding: .78rem 1.1rem;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .01em;
    transition: background-color .2s, color .2s
}

.button:hover {
    background: #173324
}

.button-small {
    padding: .55rem .8rem;
    font-size: .82rem
}

.button-outline {
    background: transparent;
    color: var(--green)
}

.button-outline:hover {
    background: var(--green);
    color: #fff
}

.text-link {
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: .28rem
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem
}

.hero {
    padding: clamp(3.5rem, 7vw, 7rem) 0 var(--space);
    background: linear-gradient(110deg, var(--cream) 50%, #eee5d8 50%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem)
}

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

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.12;
    color: var(--green)
}

h1 {
    font-size: clamp(2.65rem, 6vw, 5.4rem);
    letter-spacing: -.04em;
    margin-bottom: 1.35rem
}

h2 {
    font-size: clamp(2rem, 4vw, 3.45rem);
    letter-spacing: -.03em;
    margin-bottom: 1.25rem
}

h3 {
    font-size: 1.5rem;
    margin-bottom: .55rem
}

.eyebrow,
.label {
    margin-bottom: .85rem;
    color: var(--red);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase
}

.lede {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.45
}

.status-note {
    max-width: 40rem;
    color: var(--muted)
}

.hero-image {
    position: relative;
    margin: 0
}

.hero-image img {
    border: 10px solid var(--paper);
    box-shadow: 14px 15px 0 var(--kraft)
}

.hero-image figcaption {
    margin-top: .7rem;
    color: var(--muted);
    font-family: var(--serif);
    font-style: italic
}

.section {
    padding: var(--space) 0
}

.story-section {
    background: var(--paper)
}

.split-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(2rem, 10vw, 10rem)
}

.prose {
    font-size: 1.1rem
}

.collections-section {
    background: #eee5d8
}

.section-intro {
    max-width: 42rem;
    margin-bottom: 2.5rem;
    color: var(--muted)
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem
}

.collection-card {
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid #e4dacb
}

.collection-card img {
    width: 100%;
    border-bottom: 1px solid #e4dacb
}

.card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.5rem
}

.card-content .text-link {
    margin-top: auto;
    padding-top: .75rem
}

.price {
    color: var(--red);
    font-weight: 700;
    font-size: .9rem
}

.contents {
    font-size: .92rem;
    color: var(--muted)
}

.disclaimer {
    max-width: 58rem;
    margin: 1.5rem auto 0;
    text-align: center;
    color: var(--muted);
    font-size: .88rem
}

.how-section {
    background: var(--green);
    color: #f7f2e8
}

.how-section h2,
.how-section h3 {
    color: #fff
}

.how-section .eyebrow {
    color: #e8bc8c
}

.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0;
    margin: 3rem 0 0
}

.steps span {
    display: block;
    margin-bottom: 1.3rem;
    color: #e8bc8c;
    font-family: var(--serif);
    font-size: 1.2rem
}

.steps p {
    color: #d8dfd4;
    font-size: .94rem
}

.sourcing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 7vw, 7rem)
}

.sourcing-grid figure {
    margin: 0
}

.sourcing-grid img {
    border: 8px solid var(--paper);
    box-shadow: -10px 10px 0 var(--sage)
}

.use-cases {
    background: var(--paper)
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.6rem
}

.use-case-grid article {
    border-top: 3px solid var(--kraft);
    padding: 1.3rem 1rem 0 0
}

.use-case-grid ul {
    padding-left: 1.15rem;
    margin: 0
}

.use-case-grid li {
    margin: .45rem 0
}

.contact-section {
    background: #d8bea0
}

.contact-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: clamp(2rem, 9vw, 9rem)
}

.contact-panel {
    background: var(--paper);
    padding: 2rem;
    border: 1px solid #c7a782
}

.contact-panel .fine-print {
    margin: 1.5rem 0 0;
    font-size: .86rem;
    color: var(--muted)
}

.site-footer {
    padding: 3rem 0;
    background: #1e3528;
    color: #dfe5da
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem
}

.footer-brand {
    color: #fff;
    font-size: 1.2rem
}

.site-footer p {
    margin: .4rem 0;
    font-size: .9rem
}

.site-footer div:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: start;
    gap: .4rem 1rem
}

.site-footer div:last-child p {
    flex-basis: 100%;
    text-align: right
}

.site-footer a {
    color: #fff;
    text-underline-offset: .25rem
}

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

@media (max-width:760px) {
    .menu-toggle {
        display: block
    }

    .primary-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        padding: 1rem 1.25rem 1.4rem;
        background: var(--cream);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch
    }

    .primary-nav.is-open {
        display: flex
    }

    .primary-nav .button {
        text-align: center;
        margin-top: .4rem
    }

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

    .hero-grid,
    .split-layout,
    .sourcing-grid,
    .contact-inner {
        grid-template-columns: 1fr
    }

    .hero-image {
        max-width: 38rem
    }

    .card-grid,
    .use-case-grid {
        grid-template-columns: 1fr
    }

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

    .footer-inner {
        flex-direction: column
    }

    .site-footer div:last-child {
        justify-content: flex-start
    }

    .site-footer div:last-child p {
        text-align: left
    }
}

@media (max-width:420px) {
    .container {
        width: min(calc(100% - 1.5rem), var(--max))
    }

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

    .hero-image img {
        border-width: 6px
    }

    .button-row {
        align-items: flex-start;
        flex-direction: column;
        gap: .9rem
    }
}

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

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