/* =========================================================
   Oriola Oils Ltd. — warm industrial design system
   ========================================================= */

:root {
  /* ---- colour ---- */
  --ink-900: #14150f;
  --ink-800: #1b1d15;
  --ink-700: #24261c;
  --ink-600: #2f3226;
  --steel-500: #454838;
  --steel-400: #6a6d5b;
  --steel-300: #8d907d;

  --olive-800: #2b311d;
  --olive-700: #3b4327;
  --olive-600: #4d5733;
  --olive-500: #63703f;

  --amber-700: #8f5c14;
  --amber-600: #ab7118;
  --amber-500: #c38a26;
  --amber-400: #d8a441;
  --amber-300: #e7c684;

  --kraft-400: #bda684;
  --kraft-300: #d2c0a3;
  --kraft-200: #e4d8c3;
  --kraft-100: #efe7d8;

  --paper-100: #f4efe5;
  --paper-50:  #faf7f1;
  --paper-0:   #fffdf9;

  --fg: #22241a;
  --fg-muted: #575a48;
  --on-dark: #efe9dc;
  --on-dark-muted: #a9a993;

  --line: rgba(20, 21, 15, .14);
  --line-soft: rgba(20, 21, 15, .08);
  --line-dark: rgba(239, 233, 220, .16);
  --line-dark-soft: rgba(239, 233, 220, .09);

  --focus: #8f5c14;

  /* ---- type ---- */
  --font-display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", monospace;

  --step--2: clamp(.688rem, .67rem + .08vw, .75rem);
  --step--1: clamp(.813rem, .79rem + .12vw, .875rem);
  --step-0:  clamp(1rem, .97rem + .14vw, 1.063rem);
  --step-1:  clamp(1.125rem, 1.07rem + .28vw, 1.313rem);
  --step-2:  clamp(1.375rem, 1.26rem + .55vw, 1.75rem);
  --step-3:  clamp(1.688rem, 1.45rem + 1.05vw, 2.5rem);
  --step-4:  clamp(2.063rem, 1.6rem + 2.05vw, 3.5rem);
  --step-5:  clamp(2.5rem, 1.63rem + 3.9vw, 5rem);

  /* ---- space ---- */
  --s1: .25rem;
  --s2: .5rem;
  --s3: .75rem;
  --s4: 1rem;
  --s5: 1.5rem;
  --s6: 2rem;
  --s7: 3rem;
  --s8: 4rem;
  --s9: 6rem;
  --s10: 8rem;

  --pad: clamp(1.25rem, 4.5vw, 3.5rem);
  --maxw: 78rem;
  --nav-h: 4.25rem;

  /* ---- shape ---- */
  --r-xs: 2px;
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 10px;

  --lift: 0 14px 34px -24px rgba(20, 21, 15, .58);

  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* =========================================================
   Base
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--fg);
  background: var(--paper-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* page-wide film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--noise);
  background-size: 180px 180px;
  opacity: .045;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 9000;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 108%;
  line-height: 1.08;
  letter-spacing: -.018em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
address { font-style: normal; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
em { font-style: italic; }
sub { font-size: .7em; }

a { color: inherit; text-decoration-color: rgba(143, 92, 20, .45); text-underline-offset: .18em; }
a:hover { text-decoration-color: currentColor; }

button, input, select, textarea { font: inherit; color: inherit; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: absolute;
  left: var(--s4);
  top: -6rem;
  z-index: 200;
  background: var(--ink-900);
  color: var(--on-dark);
  padding: .7rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: var(--step--1);
  text-decoration: none;
  transition: top .18s var(--ease);
}
.skip-link:focus-visible { top: var(--s3); }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

section[id], header[id] { scroll-margin-top: calc(var(--nav-h) + .75rem); }

/* =========================================================
   Shared type helpers
   ========================================================= */

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber-700);
  margin-bottom: var(--s4);
}
.eyebrow--light { color: var(--amber-300); }

.sec-head { max-width: 44rem; margin-bottom: var(--s7); }
.sec-head__title { font-size: var(--step-3); }
.sec-head__lede {
  margin-top: var(--s4);
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 40rem;
  text-wrap: pretty;
}
.sec-head--split { max-width: none; display: grid; gap: var(--s5); }
.sec-head--split .sec-head__lede { margin-top: 0; }

.minor-title {
  font-size: var(--step-1);
  letter-spacing: -.01em;
  margin-bottom: var(--s5);
}

@media (min-width: 56rem) {
  .sec-head--split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: end;
    gap: var(--s7);
  }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  --btn-bd: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .62rem 1.1rem;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .005em;
  text-decoration: none;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--solid {
  --btn-bg: var(--amber-500);
  --btn-fg: var(--ink-900);
  --btn-bd: var(--amber-500);
}
.btn--solid:hover {
  --btn-bg: var(--amber-400);
  --btn-bd: var(--amber-400);
  box-shadow: var(--lift);
}

/* ghost buttons inherit the contrast of whatever surface they sit on */
.btn--ghost { --btn-fg: var(--fg); --btn-bd: var(--line); }
.btn--ghost:hover { --btn-bd: var(--amber-600); --btn-fg: var(--amber-700); }

.hero .btn--ghost { --btn-fg: var(--on-dark); --btn-bd: rgba(239, 233, 220, .4); }
.hero .btn--ghost:hover,
.section--dark .btn--ghost:hover { --btn-bd: var(--amber-300); --btn-fg: var(--amber-300); }

.btn--lg { padding: .85rem 1.5rem; font-size: var(--step-0); }

/* =========================================================
   Utility bar
   ========================================================= */

.utility {
  background: var(--ink-900);
  color: var(--on-dark-muted);
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(239, 233, 220, .07);
}
.utility__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2) var(--s5);
  padding-block: .55rem;
}
.utility__list { display: flex; flex-wrap: wrap; align-items: center; }
.utility__list li { display: flex; align-items: center; }
.utility__list li + li::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--amber-600);
  transform: rotate(45deg);
  flex: none;
  margin-inline: .85rem;
}
.utility a { text-decoration: none; transition: color .18s var(--ease); }
.utility a:hover { color: var(--amber-300); }
.utility__hours { color: var(--steel-400); }

@media (max-width: 40rem) {
  .utility__hours { display: none; }
  .utility__list { justify-content: center; width: 100%; }
  .utility__inner { justify-content: center; }
}

/* =========================================================
   Masthead / nav
   ========================================================= */

.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--paper-0) 92%, transparent);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .masthead { background: var(--paper-0); }
}
.masthead.is-stuck {
  background: var(--paper-0);
  box-shadow: 0 10px 26px -22px rgba(20, 21, 15, .7);
}
.masthead__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
  min-height: var(--nav-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex: none;
}
.brand__glyph {
  width: 2rem; height: 2rem;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--olive-700), var(--ink-800));
  border-radius: var(--r-sm);
  flex: none;
}
.brand__glyph svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: var(--amber-400); stroke-width: 1.6; stroke-linejoin: round; }
.brand__glyph .brand__glyph-hi { stroke: var(--kraft-300); stroke-linecap: round; opacity: .8; }
.brand__text { display: grid; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 118%;
  font-size: 1.06rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.brand__sub {
  font-family: var(--font-mono);
  font-size: .563rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--steel-400);
  margin-top: .28rem;
}

.nav { display: flex; align-items: center; gap: var(--s6); }
.nav__list { display: flex; align-items: center; gap: var(--s5); }
.nav__list a {
  text-decoration: none;
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--fg-muted);
  padding-block: .3rem;
  position: relative;
  transition: color .18s var(--ease);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -.1rem;
  height: 1.5px;
  background: var(--amber-500);
  transition: right .28s var(--ease);
}
.nav__list a:hover { color: var(--fg); }
.nav__list a:hover::after,
.nav__list a.is-current::after { right: 0; }
.nav__list a.is-current { color: var(--fg); }

.burger {
  display: none;
  align-items: center;
  gap: .55rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .45rem .7rem;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.burger__bars { display: grid; gap: 3.5px; width: 15px; }
.burger__bars i { display: block; height: 1.6px; background: var(--fg); transition: transform .24s var(--ease), opacity .18s var(--ease); }
.burger[aria-expanded="true"] .burger__bars i:nth-child(1) { transform: translateY(5.1px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bars i:nth-child(3) { transform: translateY(-5.1px) rotate(-45deg); }

@media (max-width: 60rem) {
  .burger { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s4);
    padding: var(--s4) var(--pad) var(--s6);
    background: var(--paper-0);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 34px -28px rgba(20, 21, 15, .8);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav.is-open { display: flex; animation: navIn .2s var(--ease); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a { display: block; padding: .95rem 0; border-bottom: 1px solid var(--line-soft); font-size: var(--step-1); color: var(--fg); }
  .nav__list a::after { display: none; }
  .nav__cta { width: 100%; margin-top: var(--s2); }
}

@keyframes navIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 34rem;
  min-height: clamp(34rem, 88svh, 52rem);
  color: var(--on-dark);
  background:
    radial-gradient(120% 90% at 12% 100%, #3a2f18 0%, transparent 60%),
    linear-gradient(160deg, #2b2a1c 0%, var(--ink-900) 62%);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 45%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 21, 15, .72) 0%, rgba(20, 21, 15, .3) 32%, rgba(20, 21, 15, .66) 72%, rgba(20, 21, 15, .92) 100%),
    linear-gradient(92deg, rgba(20, 21, 15, .88) 0%, rgba(20, 21, 15, .48) 48%, rgba(20, 21, 15, .04) 90%);
}

.hero__inner { padding-block: clamp(4rem, 13vh, 8rem) clamp(3rem, 9vh, 5.5rem); }

.hero__eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .55rem .9rem;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-bottom: var(--s5);
}
.hero__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 122%;
  font-size: var(--step-0);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--paper-0);
}
.hero__rule { width: clamp(1.5rem, 6vw, 3.5rem); height: 1px; background: var(--amber-500); flex: none; }

.hero__title {
  font-size: var(--step-5);
  font-weight: 800;
  font-stretch: 104%;
  letter-spacing: -.028em;
  max-width: 20ch;
  color: var(--paper-0);
}
.hero__lede {
  margin-top: var(--s5);
  max-width: 46ch;
  font-size: var(--step-1);
  line-height: 1.55;
  color: rgba(239, 233, 220, .84);
  text-wrap: pretty;
}
.hero__actions { margin-top: var(--s6); display: flex; flex-wrap: wrap; gap: var(--s3); }

@media (max-width: 30rem) {
  .hero__actions .btn { width: 100%; }
}

/* =========================================================
   Trust ticker
   ========================================================= */

.ticker {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--olive-800), var(--ink-800) 55%, var(--olive-800));
  border-block: 1px solid rgba(239, 233, 220, .1);
  padding-block: .85rem;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(2rem, 8vw, 6rem);
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--olive-800), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--olive-800), transparent); }

.ticker__track { display: flex; width: max-content; animation: tickerRun 42s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__list { display: flex; align-items: center; }
.ticker__list li {
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--kraft-300);
  white-space: nowrap;
  padding-inline: clamp(1rem, 3vw, 2rem);
}
.ticker__list li::after {
  content: "";
  width: 5px; height: 5px;
  margin-left: clamp(1rem, 3vw, 2rem);
  background: var(--amber-500);
  transform: rotate(45deg);
  flex: none;
}

@keyframes tickerRun { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

/* =========================================================
   Section shells
   ========================================================= */

.section { position: relative; padding-block: clamp(3.5rem, 9vw, 7rem); }
.section--tight { padding-block: clamp(3rem, 7vw, 5.5rem); }

.section--paper {
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(210, 192, 163, .3) 0%, transparent 62%),
    linear-gradient(180deg, var(--paper-50) 0%, var(--paper-0) 100%);
}
.section--kraft {
  background:
    radial-gradient(80% 70% at 0% 0%, rgba(189, 166, 132, .38) 0%, transparent 58%),
    linear-gradient(180deg, var(--paper-100) 0%, var(--kraft-100) 100%);
  border-block: 1px solid rgba(189, 166, 132, .35);
}

.section--dark {
  color: var(--on-dark);
  --focus: var(--amber-300);
  --line: var(--line-dark);
  --line-soft: var(--line-dark-soft);
  --fg: var(--on-dark);
  --fg-muted: var(--on-dark-muted);
  background:
    radial-gradient(70% 55% at 88% 6%, rgba(143, 92, 20, .3) 0%, transparent 62%),
    linear-gradient(170deg, var(--ink-800) 0%, var(--ink-900) 70%);
}
.section--olive {
  background:
    radial-gradient(65% 60% at 6% 4%, rgba(99, 112, 63, .42) 0%, transparent 60%),
    linear-gradient(175deg, var(--olive-800) 0%, var(--ink-900) 72%);
}
.section--dark .sec-head__title { color: var(--paper-0); }

/* =========================================================
   01 — Categories
   ========================================================= */

.cats { display: grid; gap: var(--s4); }
@media (min-width: 40rem) { .cats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 66rem) { .cats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s5); } }

.cat {
  display: flex;
  flex-direction: column;
  background: var(--paper-0);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: var(--s5);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.cat:hover {
  transform: translateY(-3px);
  border-color: rgba(171, 113, 24, .4);
  box-shadow: var(--lift);
}
.cat__swatch {
  display: block;
  height: 5.25rem;
  border-radius: var(--r-sm);
  margin-bottom: var(--s5);
  border: 1px solid rgba(20, 21, 15, .1);
  position: relative;
  overflow: hidden;
}
.cat__swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 90% at 22% 12%, rgba(255, 255, 255, .55), transparent 58%);
}
.cat__swatch--shea      { background: linear-gradient(150deg, #f2e7d1 0%, #dcc79c 58%, #c6ad7c 100%); }
.cat__swatch--sheaoil   { background: linear-gradient(150deg, #f6e6b3 0%, #e0bf6d 55%, #c39c3f 100%); }
.cat__swatch--coconut   { background: linear-gradient(150deg, #fbf6ec 0%, #ece2cf 55%, #d8cbb2 100%); }
.cat__swatch--blackseed { background: linear-gradient(150deg, #4a4231 0%, #2b2519 55%, #14120c 100%); }
.cat__swatch--pko       { background: linear-gradient(150deg, #f7edd0 0%, #e3cf95 55%, #c9ae63 100%); }
.cat__swatch--blend     { background: linear-gradient(112deg, #e6cf9c 0%, #e6cf9c 28%, #9aa06b 28%, #9aa06b 52%, #c99a41 52%, #c99a41 76%, #5f6b3c 76%); }

.cat__title { font-size: var(--step-1); }
.cat__desc { margin-top: var(--s3); color: var(--fg-muted); font-size: var(--step--1); line-height: 1.6; }
.cat__meta { margin-top: auto; padding-top: var(--s5); display: grid; gap: var(--s3); }
.cat__meta > div { display: grid; gap: .15rem; padding-top: var(--s3); border-top: 1px solid var(--line-soft); }
.cat__meta dt {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--steel-400);
}
.cat__meta dd { font-size: var(--step--1); font-weight: 500; }

/* =========================================================
   02 — Grades
   ========================================================= */

.grades { display: grid; gap: var(--s7); }
.grades__intro { display: grid; gap: var(--s6); }
@media (min-width: 56rem) {
  .grades__intro {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: var(--s8);
    align-items: center;
  }
}

.grades__figure { margin: 0; }
.grades__figure img { border-radius: var(--r-md); aspect-ratio: 5 / 3; object-fit: cover; width: 100%; }

.grades__list { display: grid; gap: var(--s5); }
@media (min-width: 46rem) { .grades__list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 62rem) { .grades__list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.grade {
  background: var(--paper-0);
  border: 1px solid rgba(189, 166, 132, .55);
  border-radius: var(--r-md);
  padding: var(--s5);
}
.grade__head { padding-bottom: var(--s4); border-bottom: 2px solid var(--ink-900); }
.grade__title { font-size: var(--step-1); }
.grade__note {
  margin-top: .35rem;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--amber-700);
}

.spec { margin-top: var(--s2); }
.spec__row {
  display: grid;
  gap: .1rem .75rem;
  padding-block: .7rem;
  border-bottom: 1px solid var(--line-soft);
}
.spec__row:last-child { border-bottom: 0; }
.spec dt {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel-400);
}
.spec dd { font-size: var(--step--1); font-weight: 500; line-height: 1.45; }

@media (min-width: 30rem) {
  .spec__row { grid-template-columns: 8.5rem minmax(0, 1fr); align-items: baseline; }
}

/* =========================================================
   03 — Catalogue
   ========================================================= */

.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s2);
  padding-bottom: var(--s5);
  margin-bottom: var(--s5);
  border-bottom: 1px solid var(--line);
}
.filter {
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .45rem .95rem;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.filter:hover { border-color: var(--amber-600); color: var(--amber-700); }
.filter.is-active {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--paper-0);
}
.filters__status {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .1em;
  color: var(--steel-400);
}

.skus { display: grid; gap: var(--s4); }
@media (min-width: 38rem) { .skus { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 62rem) { .skus { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 82rem) { .skus { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.sku {
  display: flex;
  flex-direction: column;
  background: var(--paper-0);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: var(--s5);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.sku:hover {
  transform: translateY(-3px);
  border-color: rgba(171, 113, 24, .45);
  box-shadow: var(--lift);
}
.sku[hidden] { display: none; }

.sku__top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s3); min-height: 2.5rem; }
.sku__icon {
  width: 2.4rem; height: 2.4rem;
  fill: none;
  stroke: var(--olive-600);
  stroke-width: 1.3;
  stroke-linejoin: round;
  stroke-linecap: round;
  flex: none;
}
.sku:hover .sku__icon { stroke: var(--amber-600); }

.sku__tag {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .11em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: var(--r-xs);
  background: var(--kraft-200);
  color: var(--ink-800);
  white-space: nowrap;
}
.sku__tag--best { background: var(--amber-500); color: var(--ink-900); }
.sku__tag--label { background: var(--olive-700); color: var(--paper-0); }

.sku__name { margin-top: var(--s4); font-size: var(--step-0); line-height: 1.25; letter-spacing: -.01em; }
.sku__meta { margin-top: auto; padding-top: var(--s4); display: grid; gap: var(--s3); }
.sku__meta > div { display: grid; gap: .1rem; padding-top: var(--s3); border-top: 1px solid var(--line-soft); }
.sku__meta dt {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel-400);
}
.sku__meta dd { font-size: var(--step--1); font-weight: 500; }

.skus__empty {
  margin-top: var(--s6);
  padding: var(--s6);
  text-align: center;
  border: 1px dashed rgba(20, 21, 15, .22);
  border-radius: var(--r-md);
  color: var(--fg-muted);
}

/* =========================================================
   04 — Process
   ========================================================= */

.process__body { display: grid; gap: var(--s7); }
@media (min-width: 64rem) {
  .process__body { grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr); gap: var(--s8); align-items: start; }
}

.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: var(--s4);
  padding-block: var(--s5);
  border-top: 1px solid var(--line-dark-soft);
}
.step:first-child { border-top: 0; padding-top: 0; }
.step__num {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: .08em;
  color: var(--amber-400);
  padding-top: .2rem;
}
.step__title { font-size: var(--step-1); color: var(--paper-0); }
.step p { margin-top: var(--s2); color: var(--on-dark-muted); font-size: var(--step--1); line-height: 1.68; text-wrap: pretty; }

.process__aside { display: grid; gap: var(--s5); }
@media (min-width: 40rem) and (max-width: 63.99rem) {
  .process__aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.figure { margin: 0; }
.figure img {
  width: 100%;
  border-radius: var(--r-md);
  object-fit: cover;
  background: linear-gradient(150deg, var(--steel-500), var(--ink-800));
}
.process__aside .figure:first-child img { aspect-ratio: 4 / 3; }
.process__aside .figure:last-child img { aspect-ratio: 3 / 4; }

/* stand-in used when a photograph cannot be fetched */
.ph {
  width: 100%;
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, rgba(239, 233, 220, .07) 0 1px, transparent 1px 14px),
    linear-gradient(155deg, var(--olive-700) 0%, var(--ink-800) 55%, var(--steel-500) 100%);
  border: 1px solid var(--line);
}

.figure figcaption {
  margin-top: var(--s3);
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .06em;
  color: var(--steel-400);
  line-height: 1.5;
}
.section--dark .figure figcaption { color: var(--on-dark-muted); }
.figure--tight img { aspect-ratio: 4 / 3; }
.quality__tests .minor-title, .quality__side .minor-title { margin-bottom: 0; }

/* =========================================================
   05 — The plant
   ========================================================= */

.figures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--s7);
}
@media (min-width: 56rem) { .figures { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.figure-stat {
  background: var(--paper-0);
  padding: var(--s5);
  display: flex;
  flex-direction: column-reverse;
  gap: var(--s2);
}
.figure-stat dt {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel-400);
}
.figure-stat dd { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0 .4rem; }
.figure-stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: clamp(1.95rem, 1.25rem + 3.1vw, 3.75rem);
  line-height: .92;
  letter-spacing: -.035em;
  color: var(--ink-900);
}
.figure-stat__unit {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--amber-700);
}

.plant { display: grid; gap: var(--s7); }
@media (min-width: 62rem) {
  .plant { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: var(--s8); align-items: start; }
}
.plant__media { display: grid; gap: var(--s5); }
.plant__media .figure img { aspect-ratio: 3 / 2; }

.ticks { display: grid; gap: var(--s4); }
.ticks li { display: grid; grid-template-columns: 1.15rem minmax(0, 1fr); gap: var(--s3); align-items: start; }
.ticks svg {
  width: 1.15rem; height: 1.15rem;
  margin-top: .3rem;
  fill: none;
  stroke: var(--amber-600);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.ticks span { font-size: var(--step--1); line-height: 1.62; color: var(--fg-muted); }
.ticks strong { color: var(--fg); font-weight: 600; }
.ticks--light svg { stroke: var(--amber-400); }
.ticks--light span { color: var(--on-dark-muted); }
.ticks--light strong { color: var(--paper-0); }

/* =========================================================
   06 — OEM
   ========================================================= */

.oem { display: grid; gap: var(--s7); }
@media (min-width: 62rem) {
  .oem { grid-template-columns: minmax(0, 22rem) minmax(0, 1fr); gap: var(--s8); align-items: start; }
}
.oem__intro .figure { margin-top: var(--s6); }
.oem__intro .figure img { aspect-ratio: 3 / 2; }

.offers { display: grid; gap: 0; counter-reset: offer; }
.offer {
  padding-block: var(--s5);
  border-top: 1px solid rgba(20, 21, 15, .16);
}
.offer:first-child { border-top: 0; padding-top: 0; }
.offer__time {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-900);
  background: var(--amber-300);
  padding: .2rem .55rem;
  border-radius: var(--r-xs);
  margin-bottom: var(--s3);
}
.offer__title { font-size: var(--step-2); }
.offer__body p { margin-top: var(--s3); color: var(--fg-muted); font-size: var(--step--1); line-height: 1.68; max-width: 44rem; text-wrap: pretty; }

@media (min-width: 46rem) {
  .offer { display: grid; grid-template-columns: 11.5rem minmax(0, 1fr); gap: var(--s6); align-items: start; }
  .offer__time { margin-bottom: 0; justify-self: start; margin-top: .3rem; }
}

/* =========================================================
   07 — Quality
   ========================================================= */

.quality__grid { display: grid; gap: var(--s7); }
@media (min-width: 64rem) {
  .quality__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--s8); align-items: start; }
}
.quality__tests { display: grid; gap: var(--s6); align-content: start; }
.quality__tests .figure { margin: 0; }
.quality__side { display: grid; gap: var(--s5); align-content: start; }

.standards { display: grid; gap: 0; }
.standard {
  display: grid;
  grid-template-columns: 6.75rem minmax(0, 1fr);
  gap: var(--s4);
  align-items: baseline;
  padding-block: .8rem;
  border-top: 1px solid var(--line-dark-soft);
}
.standard:first-child { border-top: 0; }
.standard__code {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--amber-300);
  border: 1px solid rgba(231, 198, 132, .38);
  border-radius: var(--r-xs);
  padding: .2rem .35rem;
  text-align: center;
}
.standard__name { font-size: var(--step--1); line-height: 1.55; color: var(--on-dark-muted); }

.quality__fineprint {
  font-size: var(--step--2);
  line-height: 1.6;
  color: var(--steel-300);
  padding-top: var(--s4);
  border-top: 1px solid var(--line-dark-soft);
}

@media (max-width: 26rem) {
  .standard { grid-template-columns: minmax(0, 1fr); gap: var(--s2); }
  .standard__code { justify-self: start; }
}

/* =========================================================
   08 — Markets
   ========================================================= */

.markets { display: grid; gap: var(--s7); }
@media (min-width: 62rem) {
  .markets { grid-template-columns: minmax(0, 22rem) minmax(0, 1fr); gap: var(--s8); align-items: start; }
}
.markets__intro .figure { margin-top: var(--s6); }
.markets__intro .figure img { aspect-ratio: 4 / 3; }

.bars { display: grid; gap: var(--s6); }
.bar__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s4); }
.bar__head h3 { font-size: var(--step-2); }
.bar__pct {
  font-family: var(--font-mono);
  font-size: var(--step-1);
  font-weight: 500;
  color: var(--amber-700);
}
.bar__track {
  margin-top: var(--s3);
  height: .5rem;
  background: rgba(20, 21, 15, .1);
  border-radius: 1px;
  overflow: hidden;
}
.bar__fill {
  display: block;
  height: 100%;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, var(--olive-600), var(--amber-500));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .9s var(--ease);
}
.bar.is-in .bar__fill { transform: scaleX(1); }
.bar__note { margin-top: var(--s3); font-size: var(--step--1); color: var(--fg-muted); }

/* =========================================================
   09 — FAQ
   ========================================================= */

.faq { display: grid; gap: var(--s7); }
@media (min-width: 62rem) {
  .faq { grid-template-columns: minmax(0, 20rem) minmax(0, 1fr); gap: var(--s8); align-items: start; }
  .faq__intro { position: sticky; top: calc(var(--nav-h) + 2rem); }
}

.accordion { border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc__h { margin: 0; font-size: inherit; }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
  background: none;
  border: 0;
  padding: var(--s5) 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 106%;
  font-size: var(--step-1);
  letter-spacing: -.012em;
  line-height: 1.25;
  color: var(--fg);
  transition: color .2s var(--ease);
}
.acc__btn:hover { color: var(--amber-700); }

.acc__sign { position: relative; width: 1rem; height: 1rem; flex: none; }
.acc__sign::before, .acc__sign::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--amber-600);
  transform: translate(-50%, -50%);
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}
.acc__sign::before { width: 1rem; height: 1.6px; }
.acc__sign::after { width: 1.6px; height: 1rem; }
.acc__btn[aria-expanded="true"] .acc__sign::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.acc__panel { padding-bottom: var(--s5); }
.acc__panel p { max-width: 56ch; color: var(--fg-muted); font-size: var(--step--1); line-height: 1.72; text-wrap: pretty; }

/* =========================================================
   10 — Contact
   ========================================================= */

.section--contact {
  padding-block: clamp(3.5rem, 9vw, 7rem);
  color: var(--on-dark);
  --focus: var(--amber-300);
  background:
    radial-gradient(60% 60% at 92% 8%, rgba(143, 92, 20, .34) 0%, transparent 60%),
    linear-gradient(168deg, var(--ink-800) 0%, var(--ink-900) 68%);
}
.contact { display: grid; gap: var(--s7); }
@media (min-width: 64rem) {
  .contact { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: var(--s8); align-items: start; }
  .contact__aside { position: sticky; top: calc(var(--nav-h) + 2rem); }
}
.contact .sec-head__title { color: var(--paper-0); font-size: var(--step-3); }
.contact__lede {
  margin-top: var(--s4);
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--on-dark-muted);
  max-width: 34rem;
  text-wrap: pretty;
}
.contact__details { margin-top: var(--s6); display: grid; gap: var(--s4); }
.contact__details li { display: grid; grid-template-columns: 1.25rem minmax(0, 1fr); gap: var(--s3); align-items: start; }
.contact__details svg {
  width: 1.25rem; height: 1.25rem;
  margin-top: .25rem;
  fill: none;
  stroke: var(--amber-400);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact__details a { text-decoration: none; font-weight: 500; transition: color .18s var(--ease); }
.contact__details a:hover { color: var(--amber-300); }
.contact__details address { color: var(--on-dark-muted); font-size: var(--step--1); line-height: 1.55; }
.contact__hours {
  margin-top: var(--s6);
  padding-top: var(--s5);
  border-top: 1px solid var(--line-dark-soft);
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .06em;
  color: var(--steel-300);
}

.contact__panel {
  background: var(--paper-0);
  color: var(--fg);
  --focus: #8f5c14;
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  box-shadow: 0 30px 60px -40px rgba(0, 0, 0, .85);
}

.form { display: grid; gap: var(--s5); }
@media (min-width: 34rem) { .form { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.form__intro, .form__foot, .field--full, .form__summary { grid-column: 1 / -1; }
.form__intro { font-size: var(--step--2); color: var(--steel-400); font-family: var(--font-mono); letter-spacing: .04em; }

.field { display: grid; gap: .4rem; align-content: start; }
.field label {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg);
}
.req { color: var(--amber-700); }
.opt { color: var(--steel-400); text-transform: none; letter-spacing: .04em; }

.field input, .field select, .field textarea {
  width: 100%;
  background: var(--paper-50);
  border: 1px solid rgba(20, 21, 15, .2);
  border-radius: var(--r-sm);
  padding: .7rem .8rem;
  font-size: var(--step--1);
  font-family: var(--font-body);
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 8rem; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--steel-400) 50%), linear-gradient(135deg, var(--steel-400) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 1px), calc(100% - 13px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(20, 21, 15, .34); }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--paper-0); border-color: var(--amber-600); }
.field ::placeholder { color: #9a9b8c; }

.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: #9c3111;
  background: #fdf4f0;
}
.hint { font-size: var(--step--2); color: var(--steel-400); }
.error { font-size: var(--step--2); color: #9c3111; font-weight: 500; }
.error[hidden] { display: none; }

.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s4); padding-top: var(--s2); }
.form__note { font-size: var(--step--2); color: var(--steel-400); }
.form__summary {
  padding: .75rem .9rem;
  border: 1px solid #d9a08b;
  background: #fdf4f0;
  border-radius: var(--r-sm);
  color: #7d2a10;
  font-size: var(--step--1);
}
.form__summary[hidden] { display: none; }

.success { display: grid; justify-items: start; gap: var(--s4); padding-block: var(--s5); }
.success[hidden] { display: none; }
.success__mark {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--olive-600);
}
.success__mark svg { width: 1.4rem; height: 1.4rem; fill: none; stroke: var(--paper-0); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.success__title { font-size: var(--step-2); }
.success__body { color: var(--fg-muted); font-size: var(--step--1); line-height: 1.65; max-width: 44ch; }

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background:
    radial-gradient(60% 80% at 4% 0%, rgba(59, 67, 39, .55) 0%, transparent 58%),
    var(--ink-900);
  color: var(--on-dark-muted);
  padding-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid rgba(239, 233, 220, .1);
}
.footer__grid { display: grid; gap: var(--s7); padding-bottom: var(--s7); }
@media (min-width: 44rem) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 68rem) { .footer__grid { grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: var(--s6); } }

.brand--footer .brand__name { color: var(--paper-0); font-size: 1.15rem; }
.footer__about {
  margin-top: var(--s5);
  font-size: var(--step--1);
  line-height: 1.7;
  max-width: 34rem;
  text-wrap: pretty;
}
.footer__title {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--step--2);
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--paper-0);
  margin-bottom: var(--s4);
}
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a { text-decoration: none; font-size: var(--step--1); transition: color .18s var(--ease); }
.footer__col a:hover { color: var(--amber-300); }
.footer__contact address { font-size: var(--step--1); line-height: 1.55; max-width: 18rem; }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s5);
  justify-content: space-between;
  padding-block: var(--s5);
  border-top: 1px solid rgba(239, 233, 220, .1);
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .05em;
  color: var(--steel-400);
}

/* =========================================================
   Motion
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

.cats > .cat:nth-child(2), .grades__list > .grade:nth-child(2) { transition-delay: .07s; }
.cats > .cat:nth-child(3), .grades__list > .grade:nth-child(3) { transition-delay: .14s; }
.cats > .cat:nth-child(5) { transition-delay: .07s; }
.cats > .cat:nth-child(6) { transition-delay: .14s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .bar__fill { transform: scaleX(1); }
  .ticker__track { animation: none; width: 100%; }
  .ticker__list { flex-wrap: wrap; justify-content: center; row-gap: .35rem; }
  .ticker__list[data-ticker-clone] { display: none; }
  .ticker__list li:last-child::after { display: none; }
  .ticker::before, .ticker::after { display: none; }
  .btn:hover, .cat:hover, .sku:hover { transform: none; }
}

@media print {
  .masthead, .utility, .ticker, .filters, .hero__actions, .form, .burger { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1.5rem; }
}
