/* ==========================================================================
   Milele Agri-Tech / Avocare — stylesheet
   Typeface: Montserrat throughout (300–800).
   Palette taken from an avocado cross-section: skin, flesh, stone, oil.
   Breakpoints: 1280 / 1080 / 900 / 768 / 600 / 420
   ========================================================================== */

: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;

    /* fluid page gutter — never lets content touch the screen edge */
    --pad: clamp(1.15rem, 4.5vw, 5rem);
    --maxw: 1380px;
    --ease: cubic-bezier(.22, 1, .36, 1);

    /* fluid type scale */
    --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);
}

/* --------------------------------------------------------------------------
   TYPE PRIMITIVES
   -------------------------------------------------------------------------- */

/* small uppercase label — replaces the old mono face */
.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;
}

/* --------------------------------------------------------------------------
   BUTTONS & LINKS  (44px minimum touch target throughout)
   -------------------------------------------------------------------------- */
.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);
}

/* --------------------------------------------------------------------------
   UTILITIES
   -------------------------------------------------------------------------- */
.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;
}

/* numbers that need to line up in columns */
.tabular {
    font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.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
   ========================================================================== */
.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: .9rem 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: .6rem;
    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: 10px;
    padding: 6px 10px;
    transition: background-color .4s var(--ease), box-shadow .4s var(--ease);
}

.nav__logo {
    display: block;
    height: 32px;
    width: auto;
}

.foot__logo-wrap {
    box-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

.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 — light-on-dark variant
   Inner pages open with the dark .phero block. Until the nav sticks and gets
   its own pale background, its contents have to invert or they disappear into
   the hero. .is-stuck wins, because that background is always pale.
   -------------------------------------------------------------------------- */
.nav--on-dark:not(.is-stuck) {
    color: var(--pulp);
}

/* the logo keeps its own pale chip so the artwork's colors stay true
   whether the nav is on-dark or stuck; a soft shadow lifts it off the hero */
.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: var(--stone-l);
}

.nav--on-dark:not(.is-stuck) .nav__phone:hover {
    color: var(--pulp);
}

/* an ink pill on an ink hero reads as a hole; oil keeps the CTA legible */
.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);
}

/* the underline sweep inherits currentColor, so it follows automatically;
   the active marker stays oil in both themes */
.nav--on-dark:not(.is-stuck) .nav__links a.is-active::after {
    background: var(--oil);
}

/* smooth the swap as the nav sticks */
.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);
}

/* ==========================================================================
   HOME HERO
   ========================================================================== */
.hero {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding: clamp(6rem, 12vw, 10rem) 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__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__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)
    }
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.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
   ========================================================================== */
.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 SEQUENCE
   ========================================================================== */
.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;
}

.bottle {
    width: min(215px, 52vw);
    height: auto;
    overflow: visible;
}

.bottle__cap {
    fill: var(--seed);
}

.bottle__collar {
    fill: #6E3A22;
}

.bottle__outline {
    fill: none;
    stroke: rgba(238, 242, 223, .45);
    stroke-width: 2;
}

.bottle__label {
    fill: var(--pulp);
    opacity: .94;
}

.bottle__labeltxt {
    font-family: var(--font);
    font-weight: 800;
    font-size: 18px;
    fill: var(--ink);
    letter-spacing: .04em;
}

.bottle__labelsub {
    font-family: var(--font);
    font-weight: 600;
    font-size: 8px;
    fill: var(--stone);
    letter-spacing: .2em;
}

.bottle__rule {
    stroke: var(--oil);
    stroke-width: 1.4;
}

.readout {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: .5rem 1.4rem;
    width: min(280px, 84vw);
}

.readout li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .5rem;
    padding-bottom: .35rem;
    border-bottom: 1px solid var(--ink-3);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .1em;
    font-variant-numeric: tabular-nums;
}

.readout span {
    color: var(--stone);
    text-transform: uppercase;
}

.readout b {
    color: var(--oil);
    font-weight: 700;
}

.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
   ========================================================================== */
.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 / CERTIFICATIONS
   ========================================================================== */
.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
   ========================================================================== */
.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;
}

/* ==========================================================================
   ABOUT — story, timeline, values, team
   ========================================================================== */
.story {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: clamp(2rem, 4.5vw, 4.5rem);
    align-items: center;
}

.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;
}

.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);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.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;
}

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */
.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;
}

/* ==========================================================================
   SHOP BAR
   ========================================================================== */
.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;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.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);
}

/* ==========================================================================
   PRODUCT DETAIL
   ========================================================================== */
.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
   ========================================================================== */
.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 / FORMS
   ========================================================================== */
.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
   ========================================================================== */
.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;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.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);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.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);
}

/* ==========================================================================
   ============================ RESPONSIVE ==================================
   ========================================================================== */

/* ---------- ≤1280px : large laptops ---------- */
@media (max-width: 1280px) {
    .nav__links {
        gap: 1.1rem;
    }

    .nav__links a {
        font-size: .83rem;
    }

    .nav__phone {
        display: none;
    }
}

/* ---------- ≤1080px : small laptops & landscape tablets ---------- */
@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 {
        grid-template-columns:1fr;
    }

    .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: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .origin__img, .story__img, .pdp__gallery {
        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;
    }
}

/* ---------- ≤900px : portrait tablets ---------- */
@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;
    }
}

/* ---------- ≤768px : phones & small tablets — nav flips to overlay ---------- */
@media (max-width: 768px) {
    .nav__burger {
        display: block;
    }

    .nav__links {
        position: fixed;
        inset: 0;
        z-index: -1;
        flex-direction: column;
        justify-content: center;
        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;
    }

    /* the overlay is dark on every page, so its links are always pale and the
       CTA always oil — regardless of which nav theme is active behind it */
    .nav .nav__links a {
        color: var(--pulp);
    }

    .nav .nav__links .nav__cta {
        background: var(--oil);
        color: var(--ink);
    }

    /* burger sits above the open overlay and must stay visible on it */
    .nav__burger.is-open {
        background: var(--pulp);
    }

    .nav__burger.is-open span {
        background: var(--ink);
    }

    /* --------------------------------------------------------------
       Hero on mobile: one product, shown large on a blurred backdrop
       made from the same photo. Three small crops fought for room and
       none of them read; a single frame does the job at this width.
       The backdrop URL comes from the --shot custom property set on
       the figure in home.blade.php.
       -------------------------------------------------------------- */
    .hero__art {
        position: static;
        aspect-ratio: auto;
        display: block;
        margin-top: 1.25rem;
    }

    .hero__img {
        position: static;
        width: auto;
    }

    /* the two supporting crops step aside */
    .hero__img--a,
    .hero__img--c {
        display: none;
    }

    .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;
    }

    /* blurred, over-scaled copy of the photo as the backdrop */
    .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);
    }

    /* wash to keep the product readable against its own blur */
    .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; /* multiply would fight the blurred ground */
        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__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 scroll sideways instead of wrapping into a wall */
    .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;
    }
}

/* ---------- ≤600px : phones ---------- */
@media (max-width: 600px) {
    .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;
    }
}

/* ---------- ≤420px : small phones ---------- */
@media (max-width: 420px) {
    .pgrid--3, .pgrid--4 {
        grid-template-columns:1fr;
    }

    .pcard {
        border-radius: 6px 6px 50px 6px;
    }

    .nav__logo {
        height: 26px;
    }

    .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;
    }
}

/* ---------- short landscape phones : keep the menu usable ---------- */
@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;
    }
}

/* ---------- print ---------- */
@media print {
    .nav, .wa, .loader, .ticker, .band, .hero__scroll {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .section {
        padding-block: 1rem;
    }
}

/* ---------- reduced motion ---------- */
@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;
    }
}

/* placeholder images sit on the tinted ground rather than white */
img.is-placeholder {
    mix-blend-mode: normal !important;
    background: var(--pulp-2);
    object-fit: cover !important;
}

/* --------------------------------------------------------------------------
   OVERFLOW GUARDS
   Grid and flex children default to min-width:auto, which lets long words,
   URLs and wide media push a track past the viewport. These are the
   containers most likely to do it.
   -------------------------------------------------------------------------- */
.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;
}

/* ==========================================================================
   HOME — TWO RANGES (duo panels)
   ========================================================================== */
.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__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);
}

/* ==========================================================================
   HOME — WHY AVOCADO OIL (benefit grid)
   ========================================================================== */
.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);
}

/* ==========================================================================
   HOME — VOICES
   ========================================================================== */
.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);
}

/* ==========================================================================
   HOME — TRADE & BULK
   ========================================================================== */
.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;
}

/* ==========================================================================
   HOME ADDITIONS — RESPONSIVE
   ========================================================================== */
@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;
    }
}

/* overflow guards for the new home sections */
.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;
}

/* no hover underline */
.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;
}
