:root {
    --ink: #0B1F16;
    --ink-2: #133026;
    --ink-3: #1C4033;
    --pulp: #EEF2DF;
    --pulp-2: #E3E9CF;
    --flesh: #B9CB78;
    --oil: #D8A521;
    --oil-hi: #F0C24A;
    --seed: #8C4A2B;
    --stone: #6B7A5A;
    --stone-l: #A8B79A;
    --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
    --pad: clamp(1.15rem, 4.5vw, 5rem);
    --maxw: 1380px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --fs-body: clamp(0.95rem, 0.91rem + 0.2vw, 1.05rem);
    --fs-h1: clamp(2.1rem, 1.35rem + 3.4vw, 4.6rem);
    --fs-h2: clamp(1.65rem, 1.25rem + 1.9vw, 3.1rem);
    --fs-h3: clamp(1.08rem, 1rem + 0.55vw, 1.45rem);
    --fs-micro: clamp(0.62rem, 0.6rem + 0.1vw, 0.7rem);
}
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    background: var(--pulp);
    color: var(--ink);
    font-family: var(--font);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg, video {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    color: inherit;
}
::selection {
    background: var(--oil);
    color: var(--ink);
}
:focus-visible {
    outline: 2px solid var(--oil);
    outline-offset: 3px;
    border-radius: 2px;
}
.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--pad);
}
.section {
    padding-block: clamp(3rem, 7vw, 7.5rem);
}
.section--dark {
    background: var(--ink);
    color: var(--pulp);
}
.section--mid {
    background: var(--ink-2);
    color: var(--pulp);
}
.section--tint {
    background: var(--pulp-2);
}
.eyebrow {
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--seed);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    line-height: 1.4;
}
.eyebrow--light {
    color: var(--flesh);
}
.h1 {
    font-size: var(--fs-h1);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.03em;
    margin: 0;
}
.h2 {
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin: 0;
    max-width: 18ch;
}
.h2--light {
    color: var(--pulp);
}
.h3 {
    font-size: var(--fs-h3);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.015em;
    margin: 0 0 .5rem;
}
.h3--light {
    color: var(--pulp);
}
.lede {
    max-width: 50ch;
    color: var(--stone);
    margin: 1rem 0 0;
}
.lede--light {
    color: var(--stone-l);
}
.sec__head {
    margin-bottom: clamp(2rem, 4.5vw, 4rem);
}
.sec__head--split {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 3rem;
    align-items: flex-end;
    justify-content: space-between;
}
.sec__head--split .lede {
    margin: 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 48px;
    padding: .8rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .005em;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn i {
    font-size: .82em;
    transition: transform .35s var(--ease);
}
.btn:hover {
    transform: translateY(-2px);
}
.btn:hover i {
    transform: translateX(4px);
}
.btn--solid {
    background: var(--ink);
    color: var(--pulp);
}
.btn--solid:hover {
    background: var(--seed);
}
.btn--oil {
    background: var(--oil);
    color: var(--ink);
}
.btn--oil:hover {
    background: var(--oil-hi);
}
.btn--ghost {
    border-color: rgba(11, 31, 22, .28);
}
.btn--ghost:hover {
    border-color: var(--ink);
    background: rgba(11, 31, 22, .05);
}
.btn--ghost-l {
    border-color: rgba(238, 242, 223, .34);
    color: var(--pulp);
}
.btn--ghost-l:hover {
    border-color: var(--flesh);
    background: rgba(238, 242, 223, .07);
}
.btn--full {
    width: 100%;
}
.link-arrow {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    min-height: 40px;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(11, 31, 22, .3);
    padding-bottom: .25rem;
}
.link-arrow i {
    transition: transform .35s var(--ease);
}
.link-arrow:hover {
    border-color: var(--oil);
    color: var(--seed);
}
.link-arrow:hover i {
    transform: translateX(4px);
}
.link-arrow--light {
    border-color: rgba(238, 242, 223, .32);
}
.link-arrow--light:hover {
    color: var(--oil);
    border-color: var(--oil);
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}
.hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}
.note {
    margin-top: 2rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(11, 31, 22, .14);
    font-size: .78rem;
    color: var(--stone);
    display: flex;
    gap: .65rem;
    align-items: baseline;
}
.note i {
    color: var(--seed);
}
.note code {
    background: var(--pulp-2);
    padding: .1rem .4rem;
    border-radius: 3px;
    font-size: .95em;
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
}
.tabular {
    font-variant-numeric: tabular-nums;
}
.loader {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--ink);
    display: grid;
    place-items: center;
}
.loader__inner {
    width: min(78vw, 300px);
    text-align: center;
    color: var(--pulp);
}
.loader__word {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -.02em;
    display: block;
    margin-bottom: 1rem;
}
.loader__bar {
    height: 2px;
    background: rgba(238, 242, 223, .16);
    overflow: hidden;
}
.loader__bar i {
    display: block;
    height: 100%;
    width: 0;
    background: var(--oil);
}
.loader__num {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .22em;
    color: var(--flesh);
    display: block;
    margin-top: .8rem;
    font-variant-numeric: tabular-nums;
}
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: .4rem var(--pad);
    transition: transform .5s var(--ease), background .4s, padding .4s, box-shadow .4s;
}
.nav.is-stuck {
    background: rgba(238, 242, 223, .9);
    backdrop-filter: blur(14px) saturate(1.3);
    -webkit-backdrop-filter: blur(14px) saturate(1.3);
    padding-block: .3rem;
    box-shadow: 0 1px 0 rgba(11, 31, 22, .09);
}
.nav.is-hidden {
    transform: translateY(-104%);
}
.nav__brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex: 0 0 auto;
}
.nav__logo-wrap {
    display: inline-flex;
    align-items: center;
    background: var(--pulp);
    border-radius: 14px;
    padding: 4px 10px;
    transition: background-color .4s var(--ease), box-shadow .4s var(--ease);
}
.nav__logo {
    display: block;
    /* Horizontal lockup, supplied as a 2x asset (399x116). Native render is
       200x58; nudged up 2px here at the client's request. */
    height: 60px;
    width: auto;
}
/* Shrink slightly once the nav sticks so the header stays compact on scroll. */
.nav.is-stuck .nav__logo {
    height: 52px;
}
.foot__logo-wrap {
    box-shadow: 0 2px 14px rgba(0, 0, 0, .25);
    align-self: flex-start;
}
.foot__logo-wrap .nav__logo {
    height: 66px;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.9rem);
}
.nav__links a {
    font-size: .87rem;
    font-weight: 500;
    position: relative;
    padding: .35rem 0;
    white-space: nowrap;
}
.nav__links a:not(.nav__cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.nav__links a.is-active::after {
    transform: scaleX(1);
    background: var(--oil);
    height: 2px;
}
.nav__cta {
    background: var(--ink);
    color: var(--pulp);
    padding: .65rem 1.05rem !important;
    border-radius: 100px;
    display: inline-flex;
    gap: .4rem;
    align-items: center;
    font-weight: 600 !important;
    transition: background .3s;
}
.nav__cta i {
    font-size: .7em;
}
.nav__cta:hover {
    background: var(--seed);
}
.nav__cta.is-active::after {
    display: none;
}
.nav__phone {
    font-size: .76rem;
    font-weight: 500;
    color: var(--stone);
    display: inline-flex;
    gap: .45rem;
    align-items: center;
    white-space: nowrap;
}
.nav__phone:hover {
    color: var(--ink);
}
.nav__burger {
    display: none;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    background: var(--ink);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}
.nav__burger span {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 1.5px;
    background: var(--pulp);
    transition: transform .35s var(--ease);
}
.nav__burger span:nth-child(1) {
    top: 20px;
}
.nav__burger span:nth-child(2) {
    top: 26px;
}
.nav__burger.is-open span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
}
.nav--on-dark:not(.is-stuck) {
    color: var(--pulp);
}
.nav--on-dark:not(.is-stuck) .nav__logo-wrap {
    box-shadow: 0 2px 14px rgba(0, 0, 0, .18);
}
.nav--on-dark:not(.is-stuck) .nav__phone {
    color: #C8D6B8;
}
.nav--on-dark:not(.is-stuck) .nav__phone:hover {
    color: var(--pulp);
}
.nav--on-dark:not(.is-stuck) .nav__cta {
    background: var(--oil);
    color: var(--ink);
}
.nav--on-dark:not(.is-stuck) .nav__cta:hover {
    background: var(--oil-hi);
}
.nav--on-dark:not(.is-stuck) .nav__burger {
    background: var(--pulp);
}
.nav--on-dark:not(.is-stuck) .nav__burger span {
    background: var(--ink);
}
.nav--on-dark:not(.is-stuck) .nav__links a.is-active::after {
    background: var(--oil);
}
.nav__logo-wrap, .nav__phone, .nav__cta, .nav__burger, .nav__burger span {
    transition: background-color .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.hero {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding: clamp(9.5rem, 13vw, 11rem) var(--pad) clamp(2.5rem, 5vw, 4.5rem);
    position: relative;
}
.hero__grid {
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: clamp(2rem, 4.5vw, 4.5rem);
    align-items: center;
}
.hero__title {
    font-size: clamp(2.15rem, 1.4rem + 3.7vw, 5rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -.035em;
    margin: 0 0 1.2rem;
    max-width: 14ch;
}
.hero__lede {
    max-width: 46ch;
    color: var(--stone);
    margin: 0 0 1.8rem;
}
.hero__lede--units {
    margin-bottom: .7rem;
}
.hero__units {
    list-style: none;
    max-width: 50ch;
    margin: 0 0 1.8rem;
    padding: 0;
    display: grid;
    gap: .7rem;
}
.hero__units li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--stone);
    line-height: 1.55;
}
.hero__units li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--flesh);
}
.hero__units strong {
    color: var(--ink);
    font-weight: 600;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}
.hero__stats {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0 0;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(11, 31, 22, .14);
}
.hero__stats dt {
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: .3rem;
    line-height: 1.35;
}
.hero__stats dd {
    margin: 0;
    font-size: clamp(1.4rem, 1.1rem + 1.1vw, 2rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.03em;
    font-variant-numeric: tabular-nums;
}
.hero__art {
    position: relative;
    aspect-ratio: 1/1.06;
}
.hero__img {
    margin: 0;
    position: absolute;
    overflow: hidden;
    background: #fff;
    will-change: transform;
}
.hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__img--a {
    width: 58%;
    aspect-ratio: 3/4;
    top: 0;
    right: 0;
    border-radius: 180px 180px 12px 12px;
}
.hero__img--b {
    width: 47%;
    aspect-ratio: 4/5;
    bottom: 6%;
    left: 0;
    border-radius: 12px 12px 120px 120px;
    box-shadow: 0 30px 60px -30px rgba(11, 31, 22, .5);
}
.hero__img--b img {
    object-fit: contain;
    mix-blend-mode: multiply;
}
.hero__img--b figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .7rem .8rem;
    background: linear-gradient(transparent, rgba(11, 31, 22, .88));
    color: var(--pulp);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.hero__img--c {
    width: 31%;
    aspect-ratio: 1/1;
    right: 8%;
    bottom: 0;
    border-radius: 50%;
}
.hero--bg {
    max-width: none;
    margin-inline: 0;
    padding: 0;
    /* Hero photos are 16:9. A full 100svh box on a tall screen forces object-fit:cover
       to scale them up and crop hard — the "zoomed in" look. Capping the height keeps
       the box close to 16:9 so the photo is shown at close to its full frame. */
    min-height: min(100vh, 54rem);
    min-height: min(100svh, 54rem);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
    background: var(--ink);
    color: var(--pulp);
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg .hslide {
    position: absolute;
    inset: 0;
    margin: 0;
}
.hero__bg picture {
    display: block;
    width: 100%;
    height: 100%;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--pos, 50% 45%);
}
.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(100deg, rgba(11, 31, 22, .93) 0%, rgba(11, 31, 22, .84) 22%, rgba(11, 31, 22, .52) 42%, rgba(11, 31, 22, .14) 62%, rgba(11, 31, 22, 0) 78%),
        linear-gradient(to bottom, rgba(11, 31, 22, .5) 0%, rgba(11, 31, 22, 0) 16%),
        linear-gradient(to top, rgba(11, 31, 22, .7) 0%, rgba(11, 31, 22, 0) 32%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding: clamp(5.75rem, 9vw, 7.25rem) var(--pad) clamp(1.25rem, 2.5vw, 1.75rem);
}
.hero--bg .hero__copy {
    max-width: 60ch;
}
@media (min-width: 1100px) {
    .hero--bg .hero__copy {
        max-width: min(60ch, 56%);
    }
}
@media (max-width: 900px) {
    .hero__bg img {
        object-position: var(--pos-m, var(--pos, 50% 40%));
    }
    .hero__scrim {
        background:
            linear-gradient(to top, rgba(11, 31, 22, .9) 0%, rgba(11, 31, 22, .74) 34%, rgba(11, 31, 22, .4) 66%, rgba(11, 31, 22, .24) 100%),
            linear-gradient(to bottom, rgba(11, 31, 22, .55) 0%, rgba(11, 31, 22, 0) 22%);
    }
    .hero--bg .hero__lede,
    .hero--bg .hero__units li {
        text-shadow: 0 1px 14px rgba(11, 31, 22, .6);
    }
}
.hero--bg .hero__title {
    color: var(--pulp);
    font-size: clamp(2.1rem, 1.3rem + 2.9vw, 4.05rem);
    max-width: 15ch;
    margin-bottom: .85rem;
    text-shadow: 0 2px 26px rgba(11, 31, 22, .5);
}
.hero--bg .hero__lede {
    color: #DCE4CC;
    max-width: 52ch;
    margin-bottom: .95rem;
    font-size: .96rem;
}
.hero--bg .hero__units {
    margin-bottom: 1.35rem;
    gap: .5rem;
}
.hero--bg .hero__units li {
    font-size: .93rem;
    line-height: 1.5;
}
.hero--bg .hero__stats {
    margin-top: 1.4rem;
    padding-top: 1rem;
}
.hero--bg .hero__lede strong,
.hero--bg .hero__units strong {
    color: var(--pulp);
}
.hero--bg .hero__units li {
    color: #DCE4CC;
}
.hero--bg .hero__units li::before {
    background: var(--oil);
}
.hero--bg .hero__stats {
    border-top-color: rgba(238, 242, 223, .28);
    max-width: 46rem;
}
.hero--bg .hero__stats dt {
    color: var(--stone-l);
}
.hero--bg .hero__stats dd {
    color: var(--pulp);
}
.btn--ghost-light {
    border-color: rgba(238, 242, 223, .5);
    color: var(--pulp);
}
.btn--ghost-light:hover {
    background: var(--pulp);
    color: var(--ink);
    border-color: var(--pulp);
}
.hero__bar {
    position: relative;
    z-index: 2;
    margin-top: clamp(1.25rem, 2.5vw, 1.9rem);
    padding-top: .95rem;
    border-top: 1px solid rgba(238, 242, 223, .18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.hero--bg .hero__scroll {
    position: static;
    color: var(--stone-l);
}
.hero--bg .hero__scroll:hover {
    color: var(--pulp);
}
.hero__ctrl {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.hero__cap {
    order: -1;
    margin: 0 .35rem 0 0;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-align: right;
    color: var(--stone-l);
    max-width: 30ch;
    line-height: 1.5;
}
.hslider {
    position: relative;
    width: 100%;
}
.hslider__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.06;
    overflow: hidden;
    border-radius: 210px 210px 16px 16px;
    background: var(--pulp-2);
    box-shadow: 0 34px 70px -34px rgba(11, 31, 22, .55);
}
.hslide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s var(--ease), visibility 0s linear .9s;
}
.hslide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity .9s var(--ease), visibility 0s linear 0s;
}
.hslide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 7s linear;
}
.hslide.is-active img {
    transform: scale(1);
}
.hslide figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.4rem .95rem .85rem;
    background: linear-gradient(transparent, rgba(11, 31, 22, .88));
    color: var(--pulp);
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
    line-height: 1.5;
}
.hslider__nav {
    position: absolute;
    top: 54%;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: var(--ink);
    background: rgba(238, 242, 223, .86);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px -8px rgba(11, 31, 22, .6);
    opacity: 0;
    transition: opacity .35s var(--ease), background-color .35s var(--ease), transform .35s var(--ease);
}
.hslider:hover .hslider__nav,
.hslider__nav:focus-visible {
    opacity: 1;
}
.hslider__nav:hover {
    background: var(--pulp);
    transform: scale(1.08);
}
.hslider__nav--prev {
    left: -14px;
}
.hslider__nav--next {
    right: -14px;
}
.hslider__dots {
    position: absolute;
    left: 50%;
    bottom: -2.1rem;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 3;
}
.hslider__dot {
    width: 26px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    cursor: pointer;
    background: rgba(11, 31, 22, .2);
    transition: background-color .4s var(--ease), width .4s var(--ease);
}
.hslider__dot.is-on {
    width: 40px;
    background: var(--ink-3);
}
.hero--bg .hslider__nav {
    position: static;
    opacity: 1;
    width: 36px;
    height: 36px;
    font-size: .72rem;
    background: rgba(238, 242, 223, .12);
    color: var(--pulp);
    box-shadow: none;
    border: 1px solid rgba(238, 242, 223, .3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero--bg .hslider__nav:hover {
    background: var(--pulp);
    color: var(--ink);
    border-color: var(--pulp);
    transform: none;
}
.hero--bg .hslider__dots {
    position: static;
    transform: none;
}
.hero--bg .hslider__dot {
    background: rgba(238, 242, 223, .3);
}
.hero--bg .hslider__dot.is-on {
    background: var(--oil);
}
.hero__bg .hslide img {
    transform: scale(1.08);
    transition: transform 9s linear;
}
.hero__bg .hslide.is-active img {
    transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
    .hslide, .hslide img {
        transition: none;
    }
    .hslide img {
        transform: none;
    }
}
.hero__scroll {
    position: absolute;
    left: var(--pad);
    bottom: .9rem;
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--stone);
}
.hero__scroll i {
    animation: bob 2.2s var(--ease) infinite;
}
@keyframes bob {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(5px)
    }
}
.phero {
    background: var(--ink);
    color: var(--pulp);
    padding: clamp(6.5rem, 13vw, 10rem) 0 clamp(2.75rem, 6vw, 5rem);
}
.phero--short {
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.phero__inner {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--pad);
    display: grid;
    grid-template-columns:1.15fr .85fr;
    gap: clamp(1.5rem, 4vw, 4.5rem);
    align-items: end;
}
.phero__inner--single {
    grid-template-columns:1fr;
}
.phero__h {
    max-width: 15ch;
}
.phero__h--wide {
    max-width: 24ch;
}
.phero__side {
    padding-bottom: .4rem;
}
.crumb {
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--stone);
    margin: 0 0 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    align-items: center;
    line-height: 1.5;
}
.crumb i {
    font-size: .55em;
    opacity: .6;
}
.crumb a:hover {
    color: var(--flesh);
}
.phero__strip {
    border-top: 1px solid var(--ink-3);
    margin-top: clamp(2rem, 4.5vw, 3.5rem);
    padding-top: 1.4rem;
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}
.phero__strip div dt {
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: .35rem;
    line-height: 1.35;
}
.phero__strip div dd {
    margin: 0;
    font-size: clamp(1.15rem, .95rem + .9vw, 1.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--flesh);
    font-variant-numeric: tabular-nums;
}
.ticker {
    background: var(--ink);
    color: var(--pulp);
    overflow: hidden;
    padding: .85rem 0;
    border-block: 1px solid var(--ink-3);
}
.ticker__track {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    white-space: nowrap;
    width: max-content;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.ticker__track b {
    color: var(--oil);
}
.press__stage {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--pad);
    display: grid;
    grid-template-columns:.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 5.5rem);
    align-items: start;
}
.press__viz {
    position: sticky;
    top: 15vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}
.press__viz figure,
figure.press__viz {
    margin: 0;
}
.press__shot {
    width: min(300px, 66vw);
    border-radius: 200px 200px 14px 14px;
    overflow: hidden;
    background: var(--pulp-2, #EEF2DF);
    border: 1px solid rgba(238, 242, 223, .16);
    box-shadow: 0 36px 72px -34px rgba(0, 0, 0, .6);
}
.press__shot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}
.press__cap {
    display: grid;
    gap: .3rem;
    text-align: center;
    max-width: 30ch;
}
.press__cap strong {
    font-size: .95rem;
    font-weight: 600;
    color: var(--pulp);
    letter-spacing: -.01em;
}
.press__cap span {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--stone);
    line-height: 1.6;
}
.steps {
    list-style: none;
    margin: 0;
    padding: 0;
}
.step {
    padding: 1.9rem 0 1.9rem 3.9rem;
    border-top: 1px solid var(--ink-3);
    position: relative;
    opacity: .34;
    transition: opacity .5s var(--ease);
}
.step:last-child {
    border-bottom: 1px solid var(--ink-3);
}
.step.is-active {
    opacity: 1;
}
.step__no {
    position: absolute;
    left: 0;
    top: 2.05rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--oil);
}
.step h3 {
    font-size: clamp(1.05rem, .98rem + .55vw, 1.4rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.015em;
    margin: 0 0 .5rem;
}
.step p {
    margin: 0;
    color: var(--stone-l);
    max-width: 54ch;
    font-size: .93rem;
}
.origin__inner {
    display: grid;
    grid-template-columns:1.1fr .9fr;
    gap: clamp(2rem, 4.5vw, 4.5rem);
    align-items: center;
}
.counties {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 2rem 0;
}
.county {
    background: transparent;
    border: 1px solid var(--ink-3);
    color: var(--pulp);
    cursor: pointer;
    min-height: 44px;
    padding: .55rem 1.05rem;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: background .3s, color .3s, border-color .3s;
}
.county:hover {
    border-color: var(--flesh);
}
.county.is-on {
    background: var(--oil);
    border-color: var(--oil);
    color: var(--ink);
}
.origin__stats {
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ink-3);
}
.origin__stats dt {
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: .35rem;
    line-height: 1.35;
}
.origin__stats dd {
    margin: 0;
    font-size: clamp(1.15rem, .95rem + .9vw, 1.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.025em;
    color: var(--flesh);
    font-variant-numeric: tabular-nums;
}
.origin__img {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 180px 180px 8px 8px;
    background: #fff;
}
.origin__img img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.origin__img figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.1rem;
    background: linear-gradient(transparent, rgba(11, 31, 22, .9));
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--flesh);
    text-align: center;
}
.marks {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.marks span {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    border: 1px solid rgba(11, 31, 22, .2);
    border-radius: 100px;
    min-height: 44px;
    padding: .5rem 1.05rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.marks i {
    color: var(--oil);
}
.range__note {
    margin: 2.4rem 0 0;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(11, 31, 22, .14);
    font-size: .8rem;
    color: var(--stone);
    display: flex;
    gap: .65rem;
    align-items: baseline;
}
.range__note i {
    color: var(--seed);
    flex: 0 0 auto;
}
.range__note a {
    color: var(--seed);
    border-bottom: 1px solid currentColor;
}
.posts {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 2.25rem);
}
.post {
    display: flex;
    flex-direction: column;
    padding: 1.6rem 0 0;
    border-top: 2px solid var(--ink);
    transition: border-color .35s;
}
.post:hover {
    border-color: var(--oil);
}
.post__meta {
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: .85rem;
}
.post h3 {
    font-size: clamp(1.1rem, 1rem + .7vw, 1.5rem);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -.02em;
    margin: 0 0 .7rem;
}
.post p {
    margin: 0 0 1.4rem;
    font-size: .9rem;
    color: var(--stone);
}
.post__go {
    margin-top: auto;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    display: inline-flex;
    gap: .5rem;
    align-items: center;
}
.post__go i {
    transition: transform .35s var(--ease);
}
.post:hover .post__go i {
    transform: translateX(5px);
}
.post--feat {
    grid-column: 1 / -1;
    border-top: 0;
    padding: 0;
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: clamp(1.25rem, 3.5vw, 3rem);
    align-items: center;
    margin-bottom: clamp(1.75rem, 4vw, 3.5rem);
}
.post--feat .post__img {
    margin: 0;
    overflow: hidden;
    border-radius: 8px 8px 8px 110px;
    background: #fff;
}
.post--feat .post__img img {
    width: 100%;
    aspect-ratio: 5/4;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .8s var(--ease);
}
.post--feat:hover .post__img img {
    transform: scale(1.04);
}
.post--feat p {
    font-size: 1rem;
    max-width: 48ch;
}
.story {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: clamp(2rem, 4.5vw, 4.5rem);
    align-items: center;
}
.story--rev .story__img {
    order: 2;
    border-radius: 150px 8px 150px 8px;
}
.story__img {
    margin: 0;
    overflow: hidden;
    border-radius: 8px 150px 8px 150px;
    background: #fff;
}
.story__img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.story__body p {
    color: var(--stone);
}
.story__body p + p {
    margin-top: 1rem;
}
.tl {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tl li {
    display: grid;
    grid-template-columns:110px 1fr;
    gap: clamp(.75rem, 2.5vw, 2.5rem);
    padding: 1.6rem 0;
    border-top: 1px solid rgba(11, 31, 22, .14);
    align-items: start;
}
.tl li:last-child {
    border-bottom: 1px solid rgba(11, 31, 22, .14);
}
.tl__yr {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--seed);
    padding-top: .15rem;
    font-variant-numeric: tabular-nums;
}
.tl p {
    margin: 0;
    color: var(--stone);
    font-size: .92rem;
    max-width: 62ch;
}
.infographic {
    margin: 0 0 clamp(2rem, 5vw, 3.5rem);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 54px -30px rgba(11, 31, 22, .45);
}
.infographic img {
    display: block;
    width: 100%;
    height: auto;
}
.infographic figcaption {
    padding: .8rem 1rem;
    background: var(--ink);
    color: var(--stone-l);
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.impacts {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
}
.impact {
    display: grid;
    grid-template-columns:0.85fr 1.15fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}
.impact--rev {
    grid-template-columns:1.15fr 0.85fr;
}
.impact--rev .impact__media {
    order: 2;
}
.impact__media {
    margin: 0;
    overflow: hidden;
    border-radius: 8px 120px 8px 120px;
    background: #fff;
}
.impact--rev .impact__media {
    border-radius: 120px 8px 120px 8px;
}
.impact__media img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.impact:hover .impact__media img {
    transform: scale(1.04);
}
.impact__tag {
    display: block;
    margin-bottom: .6rem;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--seed);
}
.impact__body p {
    margin: .8rem 0 0;
    color: var(--stone);
    font-size: .94rem;
    line-height: 1.7;
}
.impact__climate {
    margin-top: 1.1rem !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(11, 31, 22, .14);
    font-size: .88rem !important;
}
.impact__climate i {
    color: var(--ink-3);
    margin-right: .4rem;
}
.pair {
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: clamp(1.1rem, 2.5vw, 2.25rem);
}
.pair__item {
    border-top: 2px solid var(--flesh);
    padding-top: 1.35rem;
}
.pair__ic {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: .95rem;
    border-radius: 12px;
    background: var(--pulp-2);
    color: var(--ink-3);
    font-size: 1rem;
}
.pair__item p {
    margin: .5rem 0 0;
    color: var(--stone);
    font-size: .93rem;
    line-height: 1.66;
}
.section--dark .pair__item p,
.section--mid .pair__item p {
    color: var(--stone-l);
}
.section--dark .pair__ic,
.section--mid .pair__ic {
    background: var(--ink-3);
    color: var(--oil);
}
.notecard {
    margin-top: clamp(1.75rem, 4vw, 3rem);
    padding: clamp(1.35rem, 3vw, 2.25rem);
    border-radius: 6px 6px 34px 6px;
    background: var(--pulp-2);
    border-left: 3px solid var(--oil);
}
.notecard p {
    margin: 0 0 .95rem;
    color: var(--stone);
    font-size: .93rem;
    line-height: 1.7;
    max-width: 88ch;
}
.notecard p:last-child {
    margin-bottom: 0;
}
.notecard i {
    color: var(--oil);
    margin-right: .45rem;
}
.section--dark .notecard,
.section--mid .notecard {
    background: var(--ink-3);
    border-left-color: var(--oil);
}
.section--dark .notecard p,
.section--mid .notecard p {
    color: var(--stone-l);
}
.values {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 2rem);
}
.value {
    border-top: 2px solid var(--oil);
    padding-top: 1.25rem;
}
.value p {
    margin: 0;
    color: var(--stone-l);
    font-size: .91rem;
}
.team {
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.75rem);
}
.member figure {
    margin: 0 0 .9rem;
    overflow: hidden;
    border-radius: 6px 6px 80px 80px;
    background: var(--pulp-2);
}
.member img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
    transition: filter .6s, transform .8s var(--ease);
}
.member:hover img {
    filter: none;
    transform: scale(1.04);
}
.member__ph {
    margin: 0 0 .9rem;
    aspect-ratio: 4/5;
    background: var(--pulp-2);
    border-radius: 6px 6px 80px 80px;
    display: grid;
    place-items: center;
    color: var(--flesh);
    font-size: 2rem;
}
.member span {
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--stone);
}
.svc {
    display: grid;
    grid-template-columns:.95fr 1.05fr;
    gap: clamp(1.75rem, 4.5vw, 4.5rem);
    align-items: center;
    padding-block: clamp(2rem, 4.5vw, 4rem);
    border-top: 1px solid rgba(11, 31, 22, .14);
}
.svc:first-of-type {
    border-top: 0;
    padding-top: 0;
}
.svc:nth-of-type(even) .svc__media {
    order: 2;
}
.svc__media {
    margin: 0;
    overflow: hidden;
    background: #fff;
}
.svc:nth-of-type(odd) .svc__media {
    border-radius: 130px 8px 8px 8px;
}
.svc:nth-of-type(even) .svc__media {
    border-radius: 8px 130px 8px 8px;
}
.svc__media img {
    width: 100%;
    aspect-ratio: 5/4;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .9s var(--ease);
}
.svc:hover .svc__media img {
    transform: scale(1.03);
}
.svc__no {
    display: block;
    margin-bottom: .8rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--seed);
}
.svc__body h2 {
    font-size: clamp(1.4rem, 1.15rem + 1.3vw, 2.2rem);
    max-width: 20ch;
    margin-bottom: .8rem;
}
.svc__body > p {
    color: var(--stone);
    margin: 0 0 1.3rem;
    max-width: 54ch;
}
.svc__list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: .55rem;
}
.svc__list li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    font-size: .91rem;
}
.svc__list i {
    color: var(--oil);
    font-size: .72rem;
    margin-top: .42rem;
    flex: 0 0 auto;
}
.how {
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 2rem);
}
.how__item {
    border-top: 1px solid var(--ink-3);
    padding-top: 1.25rem;
}
.how__no {
    display: block;
    margin-bottom: .8rem;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--oil);
}
.how__item p {
    margin: 0;
    color: var(--stone-l);
    font-size: .9rem;
}
.pgrid {
    display: grid;
    gap: clamp(.9rem, 2vw, 1.6rem);
}
.pgrid--3 {
    grid-template-columns:repeat(3, minmax(0, 1fr));
}
.pgrid--4 {
    grid-template-columns:repeat(4, minmax(0, 1fr));
}
.pcard {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--pulp-2);
    border-radius: 6px 6px 70px 6px;
    overflow: hidden;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 46px -26px rgba(11, 31, 22, .42);
}
.pcard__media {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #fff;
}
.pcard__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .8s var(--ease);
}
.pcard:hover .pcard__media img {
    transform: scale(1.05);
}
.pcard__badge {
    position: absolute;
    top: .7rem;
    left: .7rem;
    background: var(--oil);
    color: var(--ink);
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    padding: .35rem .6rem;
    border-radius: 100px;
}
.pcard__body {
    padding: 1.15rem 1.1rem 2.3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pcard__cat {
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--seed);
    margin-bottom: .5rem;
}
.pcard__name {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -.02em;
    margin: 0 0 .35rem;
}
.pcard__tag {
    margin: 0 0 1rem;
    font-size: .84rem;
    color: var(--stone);
    flex: 1;
}
.pcard__foot {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .6rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(11, 31, 22, .14);
}
.price {
    font-size: .92rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.price--soft {
    color: var(--seed);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.size {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--stone);
    text-align: right;
}
.pcard__link {
    position: absolute;
    inset: 0;
}
.shopbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    margin-bottom: clamp(1.5rem, 3.5vw, 2.75rem);
    border-bottom: 1px solid rgba(11, 31, 22, .16);
}
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 44px;
    border: 1px solid rgba(11, 31, 22, .22);
    border-radius: 100px;
    padding: .5rem 1rem;
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: background .3s, color .3s, border-color .3s;
}
.chip b {
    font-weight: 600;
    opacity: .5;
    font-size: .9em;
    font-variant-numeric: tabular-nums;
}
.chip:hover {
    border-color: var(--ink);
}
.chip.is-on {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--pulp);
}
.chip.is-on b {
    color: var(--oil);
    opacity: 1;
}
.shopbar__sort {
    display: flex;
    align-items: center;
    gap: .65rem;
}
.shopbar__sort label {
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--stone);
}
.shopbar__sort select {
    appearance: none;
    background: transparent;
    cursor: pointer;
    border: 0;
    border-bottom: 1px solid rgba(11, 31, 22, .3);
    min-height: 44px;
    padding: .4rem 1.6rem .4rem .2rem;
    font-family: var(--font);
    font-size: .86rem;
    font-weight: 500;
    color: var(--ink);
    background-image: linear-gradient(45deg, transparent 50%, var(--seed) 50%),
    linear-gradient(135deg, var(--seed) 50%, transparent 50%);
    background-position: calc(100% - 12px) 55%, calc(100% - 7px) 55%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}
.shopbar__sort select:focus {
    outline: none;
    border-color: var(--oil);
}
.shopbar__term {
    font-size: .8rem;
    color: var(--stone);
    margin: -.75rem 0 1.75rem;
}
.shopbar__term a {
    color: var(--seed);
    border-bottom: 1px solid currentColor;
    margin-left: .4rem;
}
.empty {
    text-align: center;
    padding: clamp(2.5rem, 7vw, 5.5rem) 1rem;
    border: 1px dashed rgba(11, 31, 22, .22);
    border-radius: 8px;
}
.empty i {
    font-size: 1.9rem;
    color: var(--flesh);
    margin-bottom: 1rem;
    display: block;
}
.empty p {
    color: var(--stone);
    max-width: 42ch;
    margin: .5rem auto 1.6rem;
}
.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: clamp(2rem, 4.5vw, 3.5rem);
}
.pager__btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(11, 31, 22, .24);
    display: grid;
    place-items: center;
    font-size: .8rem;
    transition: background .3s, color .3s, border-color .3s;
}
.pager__btn:hover {
    background: var(--ink);
    color: var(--pulp);
    border-color: var(--ink);
}
.pager__btn.is-off {
    opacity: .28;
    pointer-events: none;
}
.pager__nums {
    display: flex;
    align-items: center;
    gap: .25rem;
}
.pager__num, .pager__gap {
    min-width: 40px;
    height: 40px;
    padding: 0 .4rem;
    display: grid;
    place-items: center;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    transition: background .3s, color .3s;
}
.pager__num:hover {
    background: var(--pulp-2);
}
.pager__num.is-on {
    background: var(--oil);
    color: var(--ink);
}
.pager__gap {
    color: var(--stone);
}
.pdp {
    padding: clamp(6.5rem, 11vw, 9rem) 0 clamp(2.5rem, 5vw, 4.5rem);
}
.pdp__inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: clamp(1.75rem, 4.5vw, 4.5rem);
    align-items: start;
}
.pdp__gallery {
    position: sticky;
    top: 11vh;
}
.pdp__main {
    margin: 0;
    background: #fff;
    border-radius: 8px 8px 8px 130px;
    overflow: hidden;
    border: 1px solid rgba(11, 31, 22, .1);
}
.pdp__main img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.pdp__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: .7rem;
}
.pdp__thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(11, 31, 22, .16);
    border-radius: 6px;
    transition: border-color .3s;
}
.pdp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.pdp__thumb.is-on {
    border-color: var(--oil);
    border-width: 2px;
}
.pdp__name {
    font-size: clamp(1.7rem, 1.3rem + 2vw, 3rem);
    margin: .5rem 0 .6rem;
    max-width: 17ch;
}
.pdp__tag {
    font-size: 1.02rem;
    color: var(--stone);
    margin: 0 0 1.5rem;
    max-width: 46ch;
}
.pdp__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .85rem;
    padding: 1rem 0;
    border-block: 1px solid rgba(11, 31, 22, .16);
}
.pdp__price .price {
    font-size: 1.45rem;
}
.pdp__price .size {
    text-align: left;
}
.pdp__badge {
    background: var(--oil);
    color: var(--ink);
    border-radius: 100px;
    padding: .3rem .7rem;
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.pdp__desc {
    margin: 1.4rem 0;
    max-width: 58ch;
}
.pdp__h {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--seed);
    margin: 0 0 .45rem;
}
.pdp__use {
    margin: 1.6rem 0;
    padding-left: 1.1rem;
    border-left: 2px solid var(--flesh);
}
.pdp__use p {
    margin: 0;
    color: var(--stone);
    font-size: .93rem;
    max-width: 56ch;
}
.pdp__specs {
    margin: 1.8rem 0;
    border-top: 1px solid rgba(11, 31, 22, .16);
}
.pdp__specs > div {
    display: grid;
    grid-template-columns:1fr 1.2fr;
    gap: .85rem;
    padding: .8rem .15rem;
    border-bottom: 1px solid rgba(11, 31, 22, .1);
}
.pdp__specs dt {
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--stone);
}
.pdp__specs dd {
    margin: 0;
    font-size: .86rem;
    font-weight: 500;
}
.pdp__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.8rem;
}
.pdp__sku {
    margin: 1.3rem 0 0;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--stone);
}
.article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.3rem;
    margin: 1.4rem 0 0;
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--stone);
}
.article__wrap {
    max-width: 800px;
}
.article__hero {
    margin: 0 0 clamp(1.75rem, 3.5vw, 2.75rem);
    overflow: hidden;
    border-radius: 8px 8px 8px 130px;
    background: #fff;
}
.article__hero img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.prose {
    font-size: clamp(1rem, .97rem + .25vw, 1.12rem);
    line-height: 1.78;
}
.prose__lede {
    font-size: clamp(1.12rem, 1rem + .8vw, 1.45rem);
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: -.012em;
    color: var(--ink);
    margin: 0 0 1.6rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(11, 31, 22, .16);
}
.prose p {
    margin: 0 0 1.3rem;
    color: #2A3B31;
}
.prose p:last-child {
    margin-bottom: 0;
}
.article__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
    margin-top: clamp(2rem, 4.5vw, 3.5rem);
    padding-top: 1.4rem;
    border-top: 1px solid rgba(11, 31, 22, .16);
}
.article__share {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.article__share span {
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--stone);
    margin-right: .15rem;
}
.article__share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(11, 31, 22, .22);
    display: grid;
    place-items: center;
    font-size: .8rem;
    transition: background .3s, color .3s, border-color .3s;
}
.article__share a:hover {
    background: var(--ink);
    color: var(--pulp);
    border-color: var(--ink);
}
.contact__inner {
    display: grid;
    grid-template-columns:.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 5rem);
}
.contact__list {
    list-style: none;
    margin: 1.9rem 0 0;
    padding: 0;
    display: grid;
    gap: .9rem;
}
.contact__list li {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    font-size: .93rem;
    color: var(--stone-l);
    line-height: 1.6;
}
.contact__list i {
    color: var(--oil);
    width: 18px;
    margin-top: .35rem;
    flex: 0 0 18px;
}
.contact__list a {
    word-break: break-word;
}
.contact__list a:hover {
    color: var(--pulp);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.form {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 1rem;
    align-content: start;
}
.field {
    position: relative;
    grid-column: 1 / -1;
}
.field--half {
    grid-column: span 1;
}
.field input, .field textarea, .field select {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ink-3);
    color: var(--pulp);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 500;
    padding: 1.45rem 0 .65rem;
    border-radius: 0;
    appearance: none;
    transition: border-color .3s;
}
.field select {
    padding-top: 1.55rem;
    cursor: pointer;
}
.field select option {
    background: var(--ink);
    color: var(--pulp);
}
.field textarea {
    resize: vertical;
    min-height: 110px;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--oil);
}
.field label {
    position: absolute;
    left: 0;
    top: 1.45rem;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .03em;
    color: var(--stone);
    pointer-events: none;
    transform-origin: left top;
    transition: transform .3s var(--ease), color .3s;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field .label--static {
    transform: translateY(-1.3rem) scale(.82);
    color: var(--flesh);
}
.field.is-bad input, .field.is-bad textarea, .field.is-bad select {
    border-color: #C0563C;
}
.field__err {
    display: block;
    margin-top: .4rem;
    font-size: .72rem;
    font-weight: 500;
    color: #E08A6E;
}
.alert {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    padding: .95rem 1.1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: .9rem;
}
.alert p {
    margin: 0;
}
.alert ul {
    margin: .45rem 0 0;
    padding-left: 1.1rem;
}
.alert li {
    margin-bottom: .2rem;
}
.alert--ok {
    background: rgba(185, 203, 120, .16);
    border: 1px solid var(--flesh);
    color: var(--pulp);
}
.alert--ok i {
    color: var(--flesh);
    margin-top: .2rem;
}
.alert--bad {
    background: rgba(192, 86, 60, .14);
    border: 1px solid #C0563C;
    color: #F0C7B8;
}
.alert--bad i {
    color: #E08A6E;
    margin-top: .2rem;
}
.faq {
    border-top: 1px solid rgba(11, 31, 22, .18);
}
.faq__item {
    border-bottom: 1px solid rgba(11, 31, 22, .14);
}
.faq__q {
    width: 100%;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    min-height: 56px;
    padding: 1.15rem 2.75rem 1.15rem 0;
    position: relative;
    font-family: var(--font);
    font-weight: 600;
    font-size: clamp(.98rem, .94rem + .35vw, 1.18rem);
    letter-spacing: -.012em;
    line-height: 1.4;
}
.faq__q::after {
    content: "\002B";
    position: absolute;
    right: .3rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--seed);
    font-size: 1.3rem;
    font-weight: 400;
    transition: transform .35s var(--ease);
}
.faq__item.is-open .faq__q::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq__a {
    overflow: hidden;
    height: 0;
}
.faq__a p {
    margin: 0 0 1.3rem;
    color: var(--stone);
    max-width: 72ch;
    font-size: .93rem;
}
.band {
    background: var(--oil);
    color: var(--ink);
    padding-block: clamp(2.5rem, 5.5vw, 5rem);
}
.band__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}
.band h2 {
    max-width: 22ch;
}
.band .btn--solid:hover {
    background: var(--ink-2);
}
.foot {
    background: var(--ink);
    color: var(--pulp);
    padding: clamp(2.5rem, 5.5vw, 4.5rem) var(--pad) 1.75rem;
}
.foot__top {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    display: grid;
    grid-template-columns:1fr 1.3fr;
    gap: clamp(1.75rem, 4.5vw, 4.5rem);
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--ink-3);
}
.foot__brand p {
    margin: 1.1rem 0 0;
    max-width: 36ch;
    color: #8FA07E;
    font-size: .9rem;
}
.foot__cols {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}
.foot__cols div {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.foot__cols h4 {
    margin: 0 0 .3rem;
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--oil);
}
.foot__cols a {
    font-size: .88rem;
    color: #B4C3A6;
}
.foot__cols a:hover {
    color: var(--pulp);
}
.foot__addr {
    font-size: .85rem;
    color: #8FA07E;
    line-height: 1.6;
}
.foot__bot {
    width: 100%;
    max-width: var(--maxw);
    margin: 1.4rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--stone);
}
.foot__social {
    display: flex;
    gap: .5rem;
}
.foot__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--ink-3);
    display: grid;
    place-items: center;
    font-size: .8rem;
    transition: background .3s, color .3s, border-color .3s;
}
.foot__social a:hover {
    background: var(--oil);
    color: var(--ink);
    border-color: var(--oil);
}
.wa {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 90;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #1FA855;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.45rem;
    box-shadow: 0 12px 26px -10px rgba(0, 0, 0, .5);
    transition: transform .35s var(--ease);
}
.wa:hover {
    transform: scale(1.08);
}
@media (max-width: 1280px) {
    .nav__links {
        gap: 1.1rem;
    }
    .nav__links a {
        font-size: .83rem;
    }
    .nav__phone {
        display: none;
    }
}
@media (max-width: 1080px) {
    .pgrid--4, .pgrid--3 {
        grid-template-columns:repeat(3, minmax(0, 1fr));
    }
    .team, .how {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .posts, .values {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .press__stage, .origin__inner, .contact__inner, .hero__grid,
    .foot__top, .phero__inner, .story, .post--feat, .pdp__inner, .svc,
    .pair, .impact {
        grid-template-columns:1fr;
    }
    .story--rev .story__img,
    .impact--rev .impact__media {
        order: -1;
    }
    .impact__media, .story__img, .impact--rev .impact__media,
    .story--rev .story__img {
        border-radius: 8px 8px 8px 100px;
    }
    .svc:nth-of-type(even) .svc__media {
        order: 0;
    }
    .svc:nth-of-type(odd) .svc__media,
    .svc:nth-of-type(even) .svc__media {
        border-radius: 8px 8px 8px 100px;
    }
    .press__viz {
        position: relative;
        top: 0;
        flex-direction: column;
        justify-content: center;
        gap: 1.4rem;
        margin-bottom: 2.5rem;
    }
    .press__shot {
        width: min(230px, 58vw);
    }
    .origin__img, .story__img, .pdp__gallery, .impact__media {
        max-width: 440px;
    }
    .origin__img {
        order: -1;
    }
    .pdp__gallery {
        position: relative;
        top: 0;
    }
    .phero__inner {
        align-items: start;
    }
    .phero__h, .phero__h--wide {
        max-width: 20ch;
    }
}
@media (max-width: 900px) {
    .pgrid--4, .pgrid--3 {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .phero__strip {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: 1.1rem;
    }
    .origin__stats {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .h2 {
        max-width: 22ch;
    }
}
@media (max-width: 768px) {
    .nav__burger {
        display: block;
    }
    .nav__links {
        position: fixed;
        inset: 0;
        z-index: -1;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.1rem;
        padding: 5.5rem var(--pad) 2.5rem;
        background: var(--ink);
        color: var(--pulp);
        overflow-y: auto;
        overscroll-behavior: contain;
        clip-path: circle(0% at calc(100% - 2.6rem) 2.2rem);
        transition: clip-path .65s var(--ease);
    }
    .nav__links.is-open {
        clip-path: circle(160% at calc(100% - 2.6rem) 2.2rem);
    }
    .nav__links a {
        font-size: 1.55rem;
        font-weight: 600;
        letter-spacing: -.02em;
        padding: .4rem 0;
    }
    .nav__links a:not(.nav__cta)::after {
        bottom: .25rem;
    }
    .nav__cta {
        margin-top: .6rem;
        font-size: .95rem !important;
        padding: .85rem 1.6rem !important;
    }
    .nav .nav__links a {
        color: var(--pulp);
    }
    .nav .nav__links .nav__cta {
        background: var(--oil);
        color: var(--ink);
    }
    .nav__burger.is-open {
        background: var(--pulp);
    }
    .nav__burger.is-open span {
        background: var(--ink);
    }
    .hero__art {
        position: static;
        aspect-ratio: auto;
        display: block;
        margin-top: 1.25rem;
    }
    .hero__img {
        position: static;
        width: auto;
    }
    .hero__img--a,
    .hero__img--c {
        display: none;
    }
    .hslider__frame {
        aspect-ratio: 4/3;
        border-radius: 16px;
        box-shadow: 0 20px 44px -24px rgba(11, 31, 22, .5);
    }
    .hslider__nav {
        opacity: 1;
        width: 38px;
        height: 38px;
    }
    .hslider__nav--prev {
        left: 8px;
    }
    .hslider__nav--next {
        right: 8px;
    }
    .hslider__dots {
        bottom: -1.5rem;
    }
    .hero__img--b {
        position: relative;
        width: 100%;
        aspect-ratio: 4/3;
        border-radius: 16px;
        overflow: hidden;
        background: var(--pulp-2);
        box-shadow: 0 20px 44px -24px rgba(11, 31, 22, .5);
        isolation: isolate;
    }
    .hero__img--b::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background-image: var(--shot);
        background-size: cover;
        background-position: center;
        filter: blur(26px) saturate(1.25) brightness(1.02);
        transform: scale(1.35);
    }
    .hero__img--b::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(180deg,
        rgba(238, 242, 223, .42) 0%,
        rgba(238, 242, 223, .10) 45%,
        rgba(11, 31, 22, .30) 100%);
    }
    .hero__img--b img {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        object-fit: contain;
        mix-blend-mode: normal;
        padding: 1.15rem 1.15rem 2.1rem;
    }
    .hero__img--b figcaption {
        z-index: 3;
        background: linear-gradient(transparent, rgba(11, 31, 22, .9));
        padding: 1.4rem .9rem .8rem;
        text-align: center;
    }
    .hero__scroll {
        display: none;
    }
    .hero--bg {
        min-height: auto;
        align-items: stretch;
    }
    .hero--bg .hero__inner {
        padding-top: clamp(8.5rem, 24vw, 10rem);
        padding-bottom: 1.75rem;
    }
    .hero--bg .hero__title,
    .hero--bg .hero__lede,
    .hero--bg .hero__copy {
        max-width: 100%;
    }
    .hero__scrim {
        background:
            linear-gradient(180deg, rgba(11, 31, 22, .82) 0%, rgba(11, 31, 22, .88) 45%, rgba(11, 31, 22, .95) 100%);
    }
    .hero__bar {
        justify-content: flex-start;
    }
    .hero__cap {
        display: none;
    }
    .hero__stats {
        gap: 1rem;
    }
    .band__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .band .btn {
        width: 100%;
    }
    .form {
        grid-template-columns:1fr;
    }
    .field--half {
        grid-column: 1 / -1;
    }
    .foot__cols {
        grid-template-columns:1fr 1fr;
    }
    .step {
        padding: 1.5rem 0 1.5rem 0;
    }
    .step__no {
        position: static;
        display: block;
        margin-bottom: .5rem;
    }
    .tl li {
        grid-template-columns:1fr;
        gap: .4rem;
    }
    .tl__yr {
        padding-top: 0;
    }
    .shopbar {
        flex-direction: column;
        align-items: stretch;
        gap: .9rem;
    }
    .chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: .35rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin-inline: calc(var(--pad) * -1);
        padding-inline: var(--pad);
    }
    .chips::-webkit-scrollbar {
        display: none;
    }
    .chip {
        white-space: nowrap;
        flex: 0 0 auto;
    }
    .shopbar__sort {
        justify-content: space-between;
    }
    .pdp__specs > div {
        grid-template-columns:1fr;
        gap: .15rem;
    }
    .article__hero, .pdp__main, .post--feat .post__img {
        border-radius: 8px 8px 8px 70px;
    }
    .article__foot {
        flex-direction: column;
        align-items: flex-start;
    }
    .wa {
        width: 50px;
        height: 50px;
        font-size: 1.35rem;
        right: .85rem;
        bottom: .85rem;
    }
}
@media (max-width: 600px) {
    .nav__logo {
        height: 52px;
    }
    .nav.is-stuck .nav__logo {
        height: 46px;
    }
    .pgrid--3, .pgrid--4 {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .posts, .values, .team, .how {
        grid-template-columns:1fr;
    }
    .pcard__body {
        padding: .9rem .85rem 1.9rem;
    }
    .pcard__name {
        font-size: .96rem;
    }
    .pcard__tag {
        font-size: .78rem;
    }
    .pcard__foot {
        flex-direction: column;
        align-items: flex-start;
        gap: .15rem;
    }
    .size {
        text-align: left;
    }
    .hero__stats {
        grid-template-columns:1fr;
        gap: .9rem;
        text-align: left;
    }
    .hero__stats > div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 1rem;
        padding-bottom: .6rem;
        border-bottom: 1px solid rgba(11, 31, 22, .1);
    }
    .hero__stats dt {
        margin-bottom: 0;
    }
    .hero__actions .btn {
        width: 100%;
    }
    .phero__strip {
        grid-template-columns:1fr;
        gap: .75rem;
    }
    .phero__strip div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 1rem;
        padding-bottom: .55rem;
        border-bottom: 1px solid var(--ink-3);
    }
    .phero__strip div dt {
        margin-bottom: 0;
    }
    .origin__stats {
        grid-template-columns:1fr;
        gap: .7rem;
    }
    .origin__stats > div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 1rem;
        padding-bottom: .5rem;
        border-bottom: 1px solid var(--ink-3);
    }
    .origin__stats dt {
        margin-bottom: 0;
    }
    .pdp__actions .btn {
        width: 100%;
    }
    .foot__cols {
        grid-template-columns:1fr;
        gap: 1.5rem;
    }
    .foot__bot {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.1rem;
    }
    .pager {
        gap: .4rem;
    }
    .pager__num, .pager__gap {
        min-width: 36px;
        height: 36px;
        font-size: .75rem;
    }
}
@media (max-width: 420px) {
    .pgrid--3, .pgrid--4 {
        grid-template-columns:1fr;
    }
    .pcard {
        border-radius: 6px 6px 50px 6px;
    }
    .nav__logo {
        height: 46px;
    }
    .nav.is-stuck .nav__logo {
        height: 42px;
    }
    .nav__links a {
        font-size: 1.35rem;
    }
    .marks span, .chip {
        font-size: .62rem;
    }
    .hero__img--b {
        aspect-ratio: 1/1;
        border-radius: 14px;
    }
    .hero__img--b img {
        padding: .9rem .9rem 1.9rem;
    }
    .article__hero, .pdp__main, .post--feat .post__img {
        border-radius: 8px;
    }
}
@media (max-height: 520px) and (max-width: 900px) {
    .nav__links {
        gap: .5rem;
        padding-top: 4.5rem;
        justify-content: flex-start;
    }
    .nav__links a {
        font-size: 1.1rem;
    }
}
@media print {
    .nav, .wa, .loader, .ticker, .band, .hero__scroll {
        display: none !important;
    }
    body {
        background: #fff;
        color: #000;
    }
    .section {
        padding-block: 1rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .ticker__track {
        width: 100%;
        overflow: hidden;
    }
    .step {
        opacity: 1;
    }
}
img.is-placeholder {
    mix-blend-mode: normal !important;
    background: var(--pulp-2);
    object-fit: cover !important;
}
.hero__copy, .hero__art, .press__steps, .press__viz, .pdp__info, .pdp__gallery,
.story__body, .svc__body, .origin__inner > *, .contact__inner > *,
.foot__top > *, .phero__inner > *, .band__inner > * {
    min-width: 0;
}
.prose, .pdp__desc, .lede, .post p, .contact__list, .foot__brand p {
    overflow-wrap: anywhere;
}
.duo {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: clamp(1rem, 2.5vw, 2rem);
}
.duo__panel {
    display: flex;
    flex-direction: column;
    background: var(--pulp-2);
    border-radius: 8px 8px 8px 110px;
    overflow: hidden;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.duo__panel--alt {
    background: var(--ink);
    color: var(--pulp);
    border-radius: 8px 8px 110px 8px;
}
.duo__panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 52px -30px rgba(11, 31, 22, .45);
}
.duo__media {
    margin: 0;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #fff;
}
.duo__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .8s var(--ease);
}
.duo__panel:hover .duo__media img {
    transform: scale(1.04);
}
.duo__body {
    padding: clamp(1.4rem, 3vw, 2.25rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}
.duo__count {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--seed);
    margin-bottom: .7rem;
}
.duo__panel--alt .duo__count {
    color: var(--oil);
}
.duo__body h3 {
    font-size: clamp(1.3rem, 1.1rem + 1vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -.02em;
}
.duo__body > p {
    margin: 0 0 1.5rem;
    color: var(--stone);
    font-size: .95rem;
    max-width: 44ch;
}
.duo__panel--alt .duo__body > p {
    color: var(--stone-l);
}
.duo__specs {
    list-style: none;
    margin: auto 0 0;
    padding: 0;
    display: grid;
    gap: .85rem;
}
.duo__specs li {
    padding-top: .85rem;
    border-top: 1px solid rgba(11, 31, 22, .16);
    font-size: .88rem;
    line-height: 1.6;
    color: var(--stone);
}
.duo__panel--alt .duo__specs li {
    border-color: var(--ink-3);
    color: var(--stone-l);
}
.duo__specs strong {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--seed);
}
.duo__panel--alt .duo__specs strong {
    color: var(--oil);
}
.duo__links {
    list-style: none;
    margin: auto 0 0;
    padding: 0;
    display: grid;
    gap: .15rem;
}
.duo__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 52px;
    padding: .75rem 0;
    border-top: 1px solid rgba(11, 31, 22, .16);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: padding-left .35s var(--ease), color .3s;
}
.duo__panel--alt .duo__links a {
    border-color: var(--ink-3);
}
.duo__links a:hover {
    padding-left: .65rem;
    color: var(--seed);
}
.duo__panel--alt .duo__links a:hover {
    color: var(--oil);
}
.duo__links i {
    font-size: .75em;
    transition: transform .35s var(--ease);
}
.duo__links a:hover i {
    transform: translateX(4px);
}
.benefits {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 2.25rem);
}
.benefit {
    padding-top: 1.3rem;
    border-top: 2px solid var(--ink);
}
.benefit__ic {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: var(--oil);
    color: var(--ink);
    font-size: 1rem;
}
.benefit h3 {
    margin-bottom: .45rem;
}
.benefit p {
    margin: 0;
    font-size: .9rem;
    color: var(--stone);
}
.voices {
    background: var(--flesh);
    color: var(--ink);
    padding-block: clamp(2.75rem, 6vw, 5.5rem);
}
.voices .eyebrow {
    color: #4A5A3B;
    margin-bottom: 1.75rem;
}
.voices__viewport {
    overflow: hidden;
}
.voices__track {
    display: flex;
    transition: transform .8s var(--ease);
}
.quote {
    flex: 0 0 100%;
    margin: 0;
    padding-right: 1.5rem;
}
.quote p {
    font-size: clamp(1.2rem, 1rem + 1.7vw, 2.2rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.02em;
    margin: 0 0 1.5rem;
    max-width: 26ch;
}
.quote p::before {
    content: "\201C";
}
.quote p::after {
    content: "\201D";
}
.quote footer {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.quote strong {
    font-size: .92rem;
    font-weight: 700;
}
.quote span {
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: #4A5A3B;
}
.voices__nav {
    margin-top: 2.25rem;
    display: flex;
    align-items: center;
    gap: .9rem;
}
.voices__nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(11, 31, 22, .3);
    background: transparent;
    cursor: pointer;
    transition: background .3s, color .3s;
}
.voices__nav button:hover {
    background: var(--ink);
    color: var(--flesh);
}
.voices__dots {
    display: flex;
    gap: .4rem;
}
.voices__dots i {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: rgba(11, 31, 22, .28);
    cursor: pointer;
    transition: background .3s;
}
.voices__dots i.is-on {
    background: var(--ink);
}
.trade__inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.trade__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 2rem;
}
.trade__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}
.trade__list li {
    display: grid;
    grid-template-columns:46px 1fr;
    gap: 1.1rem;
    padding: 1.35rem 0;
    border-top: 1px solid var(--ink-3);
    align-items: start;
}
.trade__list li:last-child {
    border-bottom: 1px solid var(--ink-3);
}
.trade__list i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(216, 165, 33, .14);
    color: var(--oil);
    font-size: .95rem;
}
.trade__list h3 {
    margin-bottom: .25rem;
}
.trade__list p {
    margin: 0;
    color: var(--stone-l);
    font-size: .9rem;
    max-width: 46ch;
}
@media (max-width: 1080px) {
    .benefits {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .duo, .trade__inner {
        grid-template-columns:1fr;
    }
    .duo__panel, .duo__panel--alt {
        border-radius: 8px 8px 8px 90px;
    }
}
@media (max-width: 768px) {
    .quote {
        padding-right: 0;
    }
    .quote p {
        max-width: 100%;
    }
    .trade__actions .btn {
        width: 100%;
    }
    .duo__media {
        aspect-ratio: 16/11;
    }
}
@media (max-width: 600px) {
    .benefits {
        grid-template-columns:1fr;
    }
    .duo__panel, .duo__panel--alt {
        border-radius: 8px 8px 8px 60px;
    }
    .trade__list li {
        grid-template-columns:1fr;
        gap: .75rem;
    }
    .voices__nav {
        gap: .6rem;
    }
}
.trade__copy, .trade__list, .duo__body, .duo__panel, .benefit, .quote {
    min-width: 0;
}
.nav__links a.is-off,
.foot__cols a.is-off {
    opacity: .45;
    cursor: default;
}
.nav__links a.is-off::after {
    display: none;
}
.nav__links a.is-off:hover,
.foot__cols a.is-off:hover {
    color: inherit;
}
.nav__cta.is-off {
    opacity: .5;
    cursor: default;
}
.pager__wrap {
    margin-top: clamp(2rem, 4.5vw, 3.5rem);
}
.pager__summary {
    margin: 0;
    text-align: center;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .03em;
    color: var(--stone);
    font-variant-numeric: tabular-nums;
}
.pager__summary b {
    font-weight: 700;
    color: var(--ink);
}
.pager__wrap .pager {
    margin-top: 1.1rem;
}
.field--select::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: .15rem;
    bottom: .85rem;
    font-size: .62rem;
    line-height: 1;
    color: var(--stone-l);
    pointer-events: none;
    transition: transform .3s var(--ease), color .3s;
}
.field--select:focus-within::after {
    color: var(--oil);
    transform: translateY(2px);
}
.field--select.is-bad::after {
    color: var(--seed);
}
.field--select select {
    padding-right: 1.9rem;
    text-overflow: ellipsis;
}
.field select:invalid,
.field select option[value=""] {
    color: var(--stone-l);
}
.field select:valid {
    color: var(--pulp);
}
.field select optgroup {
    background: var(--ink);
    color: var(--oil);
    font-size: .74rem;
    font-weight: 700;
    font-style: normal;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: .5rem 0 .25rem;
}
.field select optgroup option {
    background: var(--ink-2);
    color: var(--pulp);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    padding: .45rem .75rem .45rem 1rem;
}
.field select option:checked {
    background: var(--ink-3);
    color: var(--oil-hi);
}
@media (max-width: 768px) {
    .nav__links > :first-child { margin-top: auto; }
    .nav__links > :last-child  { margin-bottom: auto; }
    .nav__here {
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
        justify-content: center;
        gap: .45rem;
        margin-bottom: .9rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--ink-3);
        width: min(100%, 20rem);
        text-align: center;
        font-size: .68rem;
        font-weight: 600;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--stone-l);
    }
    .nav__here i {
        color: var(--oil);
        font-size: .74rem;
    }
    .nav__here b {
        display: block;
        width: 100%;
        margin-top: .3rem;
        font-size: 1.15rem;
        font-weight: 700;
        letter-spacing: -.01em;
        text-transform: none;
        color: var(--oil);
    }
    .nav .nav__links a.is-active:not(.nav__cta) {
        color: var(--oil);
    }
    .nav__links a.is-active:not(.nav__cta)::before {
        content: "";
        position: absolute;
        left: -1rem;
        top: 50%;
        width: 5px;
        height: 5px;
        margin-top: -2px;
        border-radius: 50%;
        background: var(--oil);
    }
    .nav__links a.is-active:not(.nav__cta)::after {
        display: none;
    }
}
@media (min-width: 769px) {
    .nav__here { display: none; }
}
@media (max-height: 520px) and (max-width: 900px) {
    .nav__here {
        margin-bottom: .5rem;
        padding-bottom: .5rem;
        font-size: .6rem;
    }
    .nav__here b {
        margin-top: .15rem;
        font-size: .95rem;
    }
}
@media (max-width: 768px) {
    .nav.is-hidden {
        transform: none;
    }
}
@media (max-width: 768px) {
    .nav__links {
        bottom: auto;
        height: 100vh;
        height: 100dvh;
        gap: clamp(.5rem, 2.2vw, .8rem);
        padding-top: 4.6rem;
        padding-bottom: max(2.2rem, calc(env(safe-area-inset-bottom) + 1.2rem));
        -webkit-overflow-scrolling: touch;
    }
    .nav__links a {
        font-size: clamp(1.1rem, 5vw, 1.35rem);
        padding: .3rem 0;
    }
    .nav__cta {
        margin-top: .45rem;
        font-size: .9rem !important;
        padding: .75rem 1.45rem !important;
    }
    .nav__here {
        margin-bottom: .6rem;
        padding-bottom: .7rem;
        font-size: .64rem;
    }
    .nav__here b {
        margin-top: .22rem;
        font-size: 1rem;
    }
}
@media (max-width: 900px) and (max-height: 560px) {
    .nav__here {
        display: none;
    }
    .nav__links {
        gap: .4rem;
        padding-top: 4rem;
    }
    .nav__links a {
        font-size: 1.02rem;
    }
}
.shopbar__filter {
    display: none;
}
@media (max-width: 768px) {
    .chips {
        display: none;
    }
    .shopbar__filter {
        display: flex;
        justify-content: space-between;
    }
    .shopbar__filter + .shopbar__sort {
        padding-top: .8rem;
        border-top: 1px solid rgba(11, 31, 22, .12);
    }
    .shopbar__filter select {
        flex: 1 1 auto;
        min-width: 0;
        text-align: right;
        text-overflow: ellipsis;
    }
}
.map {
    position: relative;
    margin: 0;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    border-radius: 8px 8px 8px 130px;
    border: 1px solid rgba(11, 31, 22, .16);
    background: var(--pulp-2);
}
.map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.82) contrast(1.02);
}
.map__foot {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 2.5rem;
    margin-top: 1.15rem;
}
.map__foot p {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    margin: 0;
    font-size: .86rem;
    color: var(--stone);
}
.map__foot i {
    margin-top: .18rem;
    color: var(--oil);
    font-size: .8rem;
}
@media (max-width: 900px) {
    .map {
        aspect-ratio: 16 / 10;
        border-radius: 8px 8px 8px 70px;
    }
}
@media (max-width: 600px) {
    .map {
        aspect-ratio: 4 / 5;
        border-radius: 8px;
    }
    .map__foot {
        gap: .55rem;
    }
    .map__foot p {
        font-size: .8rem;
    }
}
@media (min-width: 769px) {
    .nav__links {
        flex: 1 1 auto;
        justify-content: center;
    }
}
@media (max-width: 1280px) and (min-width: 901px) {
    .nav__phone {
        display: inline-flex;
    }
}
@media (max-width: 1100px) and (min-width: 901px) {
    .nav__phone {
        font-size: .72rem;
    }
    .nav__links {
        gap: 1rem;
    }
}
@media (max-width: 900px) and (min-width: 769px) {
    .nav__links {
        justify-content: flex-end;
        gap: .95rem;
    }
    .nav__links a {
        font-size: .8rem;
    }
    .nav {
        gap: .9rem;
    }
}

/* ---------------------------------------------------------------
   Waste recycling & value-addition partners
   --------------------------------------------------------------- */
.plogos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.2vw, 1.75rem);
}
.plogo {
    display: grid;
    grid-template-rows:auto auto 1fr auto;
    gap: .55rem;
    height: 100%;
    padding: clamp(1.1rem, 2.2vw, 1.5rem);
    background: var(--pulp-2);
    border: 1px solid rgba(11, 31, 22, .1);
    border-top: 2px solid var(--flesh);
    border-radius: 4px 4px 26px 4px;
    transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.plogo:hover,
.plogo:focus-visible {
    border-top-color: var(--oil);
    transform: translateY(-3px);
}
.plogo__frame {
    display: flex;
    align-items: center;
    min-height: 56px;
}
.plogo__img {
    max-height: 56px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    object-position: left center;
}
.plogo__mark {
    display: none;
    font-size: 1.32rem;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.1;
    color: var(--ink-3);
}
.plogo__mark b {
    font-weight: 800;
    color: var(--ink);
}
.plogo--wordmark .plogo__mark {
    display: block;
}
.plogo__name {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--stone);
}
.plogo__role {
    font-size: .9rem;
    line-height: 1.62;
    color: var(--stone);
}
.plogo__go {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--ink);
}
.plogo__go i {
    font-size: .62rem;
    margin-left: .3rem;
    color: var(--oil);
}
.pstreams {
    margin-top: clamp(1.75rem, 4vw, 3rem);
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: clamp(1.1rem, 2.5vw, 2.25rem);
}
.pstream {
    margin: 0;
}
.pstream img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
    border-radius: 4px 4px 34px 4px;
    background: var(--pulp-2);
}
.pstream figcaption {
    margin-top: .85rem;
    font-size: .88rem;
    line-height: 1.62;
    color: var(--stone);
}
.pstream figcaption strong {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: .3rem;
}
@media (max-width: 1080px) {
    .plogos {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 620px) {
    .plogos,
    .pstreams {
        grid-template-columns:1fr;
    }
}

/* Compact partner strip — homepage variant of .plogos */
.plogos--strip {
    grid-template-columns:repeat(6, minmax(0, 1fr));
    gap: clamp(.6rem, 1.4vw, 1rem);
}
.plogos--strip .plogo {
    grid-template-rows:1fr auto;
    gap: .7rem;
    padding: clamp(.9rem, 1.8vw, 1.2rem) .75rem;
    text-align: center;
    border-radius: 4px 4px 18px 4px;
}
.plogos--strip .plogo__frame {
    justify-content: center;
    min-height: 44px;
}
.plogos--strip .plogo__img {
    max-height: 44px;
    max-width: 100%;
    object-position: center;
}
.plogos--strip .plogo__mark {
    font-size: 1rem;
}
.plogos--strip .plogo__name {
    font-size: .58rem;
    letter-spacing: .1em;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .plogos--strip {
        grid-template-columns:repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 620px) {
    .plogos--strip {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}
