/* ==========================================================================
   Ozaro Global — site stylesheet
   Dark theme, taken from the imported design (design-source/Ozaro Global.dc.html).
   Sections: tokens · base · layout · buttons · header · hero · cards ·
             stages · marquee · products · drawer · forms · footer · motion
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --bg: #070a08;
  --bg-elevated: #0b2117;
  --bg-deep: #0a1a12;
  --bg-footer: #050807;

  /* Ink */
  --text: #eee9dc;
  --text-muted: #a8aaa2;
  /* Lifted from the design's #6E7A70 by the smallest step that clears WCAG AA
     (4.5:1) on the elevated surface, where these small caps labels sit. */
  --text-dim: #7c887e;

  /* Accents */
  --gold: #c9a52c;
  --gold-bright: #e3c25a;
  --rust: #b33a2b;
  --amber: #c0873a;   /* whole spices */
  --saffron: #d6a81c; /* spices powder */
  --danger: #e0806f;

  /* Hairlines */
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);
  --line-gold: rgba(201, 165, 44, 0.28);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Metrics */
  --header-h: 80px;
  --shell: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
  --pad-y: clamp(64px, 8vw, 120px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.8, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-locked { overflow: hidden; }

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover { color: var(--gold-bright); }

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

input,
textarea,
select { font: inherit; }

::selection { background: rgba(201, 165, 44, 0.3); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

address { font-style: normal; }

/* Screen-reader-only text (used for landmark labels and skip link). */
.u-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 900;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 999px;
  font-size: 13px;
  transform: translateY(-200%);
  transition: transform 0.2s;
}
.skip-link:focus { transform: none; color: var(--bg); }

/* Film-grain overlay from the design. */
.grain {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='120' height='120' filter='url(%23n)'/></svg>");
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: var(--pad-y); }
.section--tight-top { padding-top: 0; }

/* Full-bleed band with its own surface colour. */
.band {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

/* "— SECTION LABEL" eyebrow. */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  flex: none;
  background: var(--gold);
}
.eyebrow > span {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
}


/* Narrow columns: shorten the rule so the label keeps to one line, and if it
   still wraps, keep the rule level with the first line rather than the gap. */
@media (max-width: 480px) {
  .eyebrow { align-items: flex-start; }
  .eyebrow::before { width: 28px; margin-top: 8px; }
}

/* Heading + supporting paragraph side by side, stacking when narrow. */
.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 70px);
  align-items: flex-end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section-head__title {
  flex: 1 1 420px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.08;
}
.section-head__lede {
  flex: 1 1 300px;
  max-width: 50ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}
.section-head__quote { flex: 1 1 300px; }
.section-head--airy { margin-bottom: clamp(44px, 6vw, 80px); }

/* Eyebrow + heading stacked as one column of the section head. */
.section-head__block { flex: 1 1 420px; }
.section-head__block h2 { font-size: clamp(34px, 4.4vw, 62px); line-height: 1.08; }

/* Closing row of a section: a note on the left, a text link on the right. */
.section-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(30px, 4vw, 44px);
}
.section-foot--ruled {
  margin-top: 0;
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

/* Narrow measure for running copy. */
.prose { max-width: 56em; }
.prose > .lede { margin-top: 18px; max-width: 56ch; }
.prose > .lede:first-of-type { margin-top: 32px; }
.prose > .section-foot { justify-content: flex-start; }

.lede {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 60ch;
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.55;
  color: var(--text);
  max-width: 36ch;
}
.pull-quote--lg {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.5;
  max-width: 30ch;
}

/* Oversized statement heading used to open a band. */
.mega {
  max-width: 32ch;
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 1.06;
}

.lede--spaced { margin-top: 20px; }

/* Hairline above a block that opens a new idea. */
.ruled-top {
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.note {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 62ch;
}

.rule-gold {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
}

/* Row of small tracked-out meta labels. */
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(24px, 5vw, 72px);
  align-items: center;
}
.meta-row__item {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--text-muted);
}
.meta-row__item--dim { color: var(--text-dim); }
.meta-row__fade {
  flex: 1;
  min-width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 165, 44, 0.4), rgba(201, 165, 44, 0));
}

/* Simple hairline-separated list with a gold tick mark. */
.tick-list { margin: 0; padding: 0; list-style: none; }
.tick-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--text);
}
.tick-list li::before {
  content: "";
  flex: none;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

/* --------------------------------------------------------------------------
   4. Buttons and text links
   -------------------------------------------------------------------------- */
.arrow {
  display: inline-block;
  transition: transform 0.38s var(--ease);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
}
.btn:hover { color: var(--text); }
.btn:hover .arrow { transform: translateX(5px); }
.btn:active { transform: translateY(1px); }

/* Primary — rust border with a fill that wipes up on hover. */
.btn--primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: var(--rust);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--rust);
  transform: translateY(101%);
  transition: transform 0.42s var(--ease);
}
.btn--primary:hover::before { transform: none; }
.btn--primary:hover { box-shadow: 0 10px 34px -12px rgba(179, 58, 43, 0.65); }

/* Secondary — gold outline. */
.btn--ghost {
  border-color: rgba(201, 165, 44, 0.5);
  transition: border-color 0.35s, color 0.35s, background 0.35s;
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 165, 44, 0.07);
}

.btn--block { width: 100%; }

/* Tracked-out underlined text link. */
.tlink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: none;
  border: 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  transition: color 0.3s;
}
.tlink::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.tlink:hover::after { transform: none; }
.tlink:hover .arrow { transform: translateX(5px); }
.tlink--underlined {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 165, 44, 0.4);
}
.tlink--muted { color: var(--text-muted); }
.tlink--amber { color: var(--amber); }
.tlink--saffron { color: var(--saffron); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Pill filter / choice button. */
.pill {
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  white-space: nowrap;
}
.pill:hover { border-color: rgba(201, 165, 44, 0.6); }
.pill[aria-pressed="true"],
.pill.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

/* Static outlined tag. */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid rgba(201, 165, 44, 0.22);
  padding: 8px 15px;
}
.tag--round {
  border-radius: 999px;
  border-color: var(--line-strong);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 13px;
}
.tag--market {
  border-radius: 999px;
  border-color: var(--line-gold);
  color: var(--text);
  font-size: 13px;
  padding: 10px 20px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* --------------------------------------------------------------------------
   5. Header, brand, navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 400;
  height: var(--header-h);
  background: rgba(7, 10, 8, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand__mark {
  width: 46px;
  height: 46px;
  flex: none;
  object-fit: contain;
}
.brand__text { display: block; min-width: 0; }
.brand__name {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.12em;
  color: var(--text);
  white-space: nowrap;
}
.brand__tagline {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  white-space: nowrap;
}
.brand:hover .brand__name { color: var(--text); }

/* Asset fallback: if mark.png is absent the wordmark stands alone. */
.brand.asset-missing .brand__mark { display: none; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
}
.nav__link {
  position: relative;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.3s;
}
.nav__link::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 6px;
  background: transparent;
  transition: background 0.3s;
}
.nav__link:hover { color: var(--gold); }
.nav__link[aria-current="page"]::after { background: var(--gold); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 48px;
  height: 48px;
  flex: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: border-color 0.3s;
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
}

/* Full-screen mobile menu. */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: none;
  flex-direction: column;
  background: var(--bg);
}
.mobile-menu[data-open] {
  display: flex;
  animation: fadeIn 0.25s ease-out both;
}
.mobile-menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
  flex: none;
  padding-inline: var(--pad-x);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(28px, 7vw, 56px) var(--pad-x) calc(clamp(28px, 7vw, 56px) + env(safe-area-inset-bottom));
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.mobile-menu__link {
  padding: 14px 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 9vw, 46px);
  line-height: 1.1;
  color: var(--text);
  transition: color 0.3s;
}
.mobile-menu__link:hover,
.mobile-menu__link[aria-current="page"] { color: var(--gold); }
.mobile-menu .btn { margin-top: 40px; width: 100%; }
.mobile-menu__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.mobile-menu__meta span {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--text-muted);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  transition: border-color 0.3s, color 0.3s;
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
}

/* --------------------------------------------------------------------------
   6. Page shell / hero
   -------------------------------------------------------------------------- */
.page { padding-top: var(--header-h); }

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: clamp(48px, 8vw, 120px) var(--pad-x) clamp(40px, 5vw, 72px);
  min-height: min(86vh, 760px);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg);
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) brightness(0.6) contrast(1.06);
}
/* The video is layered over the poster still and revealed once it can play. */
.hero__video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.hero__video.is-ready { opacity: 1; }

.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__scrim--side {
  background: linear-gradient(90deg, rgba(7, 10, 8, 0.93) 0%, rgba(7, 10, 8, 0.74) 42%, rgba(7, 10, 8, 0.3) 100%);
}
.hero__scrim--base {
  background: linear-gradient(0deg, rgba(7, 10, 8, 0.92) 0%, rgba(7, 10, 8, 0.1) 52%, rgba(7, 10, 8, 0.35) 100%);
}
.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
}
.hero__title {
  font-size: clamp(44px, 6.4vw, 90px);
  line-height: 1;
  letter-spacing: -0.01em;
}
/* The design sets a different display size per page hero. */
.page-about .hero__title { font-size: clamp(38px, 5.2vw, 76px); line-height: 1.04; }
.page-products .hero__title,
.page-work .hero__title,
.page-contact .hero__title { font-size: clamp(40px, 5.6vw, 82px); line-height: 1.02; }
.hero__lede {
  margin-top: 28px;
  max-width: 600px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  color: var(--text-muted);
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(24px, 5vw, 72px);
  margin-top: clamp(40px, 6vw, 84px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.hero__badges span {
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--text-muted);
}
.hero .btn-row { margin-top: 40px; }

/* Quieter hero for interior pages: hairline instead of photography. */
.hero--plain {
  min-height: min(64vh, 560px);
  padding-block: clamp(56px, 8vw, 120px);
}
.hero--plain::before {
  content: "";
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 165, 44, 0.55), rgba(201, 165, 44, 0));
}
.hero--short { min-height: min(60vh, 520px); }

/* Products hero: image on the left, copy pushed right. */
.hero--split {
  align-items: center;
  min-height: min(72vh, 640px);
  padding-block: clamp(56px, 7vw, 110px) clamp(56px, 6vw, 90px);
}
.hero--split .hero__media img {
  object-position: 20% center;
  filter: saturate(0.78) brightness(0.66);
}
.hero--split .hero__scrim--side {
  background: linear-gradient(90deg, rgba(7, 10, 8, 0.6) 0%, rgba(7, 10, 8, 0.78) 34%, rgba(7, 10, 8, 0.95) 62%);
}
.hero--split .hero__content {
  display: flex;
  justify-content: flex-end;
}
.hero__column { flex: 0 1 640px; }
.hero__eyebrow-quote {
  margin-top: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--text);
}

/* CTA band with a photographic backdrop. */
.cta-band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(70vh, 620px);
  padding: var(--pad-y) var(--pad-x);
  overflow: hidden;
}
.cta-band__media { position: absolute; inset: 0; }
.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) brightness(0.5);
}
.cta-band__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 10, 8, 0.94), rgba(7, 10, 8, 0.62));
}
.cta-band__content {
  position: relative;
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
}
/* Shared by the home CTA band and the How We Work closing CTA. */
.cta-title { font-size: clamp(34px, 4.6vw, 64px); line-height: 1.08; }
.cta-band__title { max-width: 20ch; }
.cta-band__lede { margin-top: 26px; max-width: 52ch; }
.cta-band .btn { margin-top: 36px; }

/* --------------------------------------------------------------------------
   7. Category rows (home)
   -------------------------------------------------------------------------- */
.category-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding-block: clamp(30px, 4vw, 52px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.category-row--last { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.category-row__figure {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-deep);
}
.category-row__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.66) contrast(1.03);
  transition: transform 1s var(--ease), filter 0.6s;
}
.category-row:hover .category-row__figure img {
  transform: scale(1.05);
  filter: saturate(0.9) brightness(0.74) contrast(1.04);
}
.category-row__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 34%;
  background: var(--amber);
  transition: width 0.55s var(--ease);
}
.category-row:hover .category-row__bar { width: 100%; }
.category-row:hover .arrow { transform: translateX(6px); }

.category-row__index {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.category-row__num {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.category-row__kicker {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--amber);
}
.category-row__title {
  margin-top: 16px;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
}
.category-row__body {
  margin-top: 18px;
  max-width: 44ch;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-muted);
}
.category-row__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 26px;
}
.category-row__specs span {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  white-space: nowrap;
}
.category-row__specs span:first-child {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.category-row .tlink { align-self: flex-start; margin-top: 28px; }

/* Powder variant recolours the accent and flips the image to the right. */
.category-row--powder .category-row__num,
.category-row--powder .category-row__kicker { color: var(--saffron); }
.category-row--powder .category-row__bar { background: var(--saffron); }

@media (min-width: 620px) {
  .category-row--reverse > .category-row__figure { order: 2; }
  .category-row--reverse > .category-row__text { order: 1; }
}


/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */
.card-media {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.46) contrast(1.08);
  transition: transform 0.9s var(--ease), filter 0.6s;
}
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 10, 8, 0.3) 0%, rgba(7, 10, 8, 0.75) 100%);
}

/* Featured cards (home) — rounded, elevated. */
.feature-card {
  display: flex;
  flex-wrap: wrap;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.4s;
}
.feature-card:hover { border-color: rgba(201, 165, 44, 0.35); }
.feature-card:hover .card-media img {
  transform: scale(1.055);
  filter: saturate(0.92) brightness(0.62) contrast(1.06);
}
.feature-card:hover .arrow { transform: translateX(5px); }
.feature-card__media {
  flex: 1 1 220px;
  min-height: 240px;
}
.feature-card__body {
  flex: 1.1 1 240px;
  padding: clamp(24px, 2.4vw, 34px);
}
.feature-card__kicker,
.product-card__kicker {
  font-size: 10px;
  letter-spacing: 0.26em;
}
.feature-card__title {
  margin-top: 12px;
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 38px);
}
.feature-card__body p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}
.feature-card .tag-row { margin-top: 20px; }
.feature-card .tlink { margin-top: 26px; }

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 22px;
}
.feature-row > .feature-card { flex: 1 1 420px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-grid .feature-card { flex-direction: column; }
.feature-grid .feature-card__media {
  flex: none;
  width: 100%;
  height: 190px;
  min-height: 0;
}
.feature-grid .feature-card__body { flex: none; width: 100%; padding: 24px; }
.feature-grid .feature-card__title { font-size: 26px; margin-top: 10px; }
.feature-grid .feature-card__body p { font-size: 13.5px; line-height: 1.7; margin-top: 12px; }
.feature-grid .tlink { margin-top: 20px; font-size: 11px; }

@media (max-width: 1080px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .feature-grid { grid-template-columns: 1fr; } }

/* Product cards (products page) — square, category-coded top edge. */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.4s;
}
.product-card:hover { border-color: rgba(201, 165, 44, 0.4); }
.product-card:hover .card-media img {
  transform: scale(1.055);
  filter: saturate(0.92) brightness(0.62) contrast(1.06);
}
.product-card:hover .arrow { transform: translateX(5px); }
.product-card__media { aspect-ratio: 4 / 3; }
.product-card__media img { filter: saturate(0.78) brightness(0.5) contrast(1.06); }
.product-card__hsn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  color: var(--text);
  background: rgba(7, 10, 8, 0.72);
  border: 1px solid var(--line-strong);
  padding: 6px 11px;
  white-space: nowrap;
}
.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(22px, 2.2vw, 28px);
  border-top: 2px solid var(--amber);
}
.product-card__title {
  margin-top: 12px;
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.14;
}
.product-card__desc {
  margin-top: 12px;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}
/* Pinned to the foot of the card so the spec tables of a row line up
   regardless of how long each description runs. */
.product-card__specs {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.product-card__spec {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 7px 0;
}
.product-card__spec dt {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  white-space: nowrap;
}
.product-card__spec dd {
  margin: 0;
  font-size: 12.5px;
  color: var(--text);
  text-align: right;
}
.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  padding-top: 24px;
}
.product-card__actions .tlink { font-size: 11.5px; letter-spacing: 0.18em; }

/* Category colour coding, shared by cards and drawer. */
.is-whole  { color: var(--amber); }
.is-powder { color: var(--saffron); }
.product-card--powder .product-card__body { border-top-color: var(--saffron); }

.product-card[hidden] { display: none; }

.grid-empty {
  padding: clamp(40px, 6vw, 72px) 0;
  text-align: center;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. Stages, pillars, journey
   -------------------------------------------------------------------------- */
.stage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
}
.stage {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 36px) clamp(16px, 1.8vw, 26px) clamp(26px, 3vw, 34px) 0;
  border-top: 1px solid rgba(201, 165, 44, 0.32);
}
.stage::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.stage__n {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stage__title {
  margin-top: 16px;
  font-weight: 400;
  font-size: clamp(21px, 1.9vw, 26px);
  line-height: 1.2;
}
.stage__body {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-muted);
}
.stage__meta {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

.journey-grid { grid-template-columns: repeat(5, 1fr); }
.journey-grid .stage__title { font-size: clamp(21px, 1.9vw, 27px); }
@media (max-width: 1080px) { .journey-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .journey-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .journey-grid { grid-template-columns: 1fr; } }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 0 clamp(28px, 4vw, 64px);
}
.pillar {
  display: flex;
  gap: clamp(16px, 2vw, 26px);
  padding: clamp(24px, 3vw, 34px) clamp(14px, 1.6vw, 22px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: transparent;
  transition: border-color 0.4s, background 0.4s;
}
.pillar:hover {
  border-color: rgba(201, 165, 44, 0.4);
  background: rgba(201, 165, 44, 0.03);
}
.pillar__n {
  flex: none;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.pillar__title {
  font-weight: 400;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.2;
}
.pillar__body {
  margin-top: 12px;
  max-width: 38ch;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Values: stacked variant of the pillar. */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0 clamp(24px, 3vw, 52px);
}
.value {
  padding: clamp(26px, 3vw, 34px) clamp(12px, 1.4vw, 20px);
  border-top: 1px solid var(--line-gold);
  transition: border-color 0.4s, background 0.4s;
}
.value:hover {
  border-color: rgba(201, 165, 44, 0.5);
  background: rgba(201, 165, 44, 0.03);
}
.value__n {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  color: rgba(201, 165, 44, 0.75);
  font-variant-numeric: tabular-nums;
}
.value__title {
  margin-top: 18px;
  font-weight: 400;
  font-size: clamp(22px, 2.1vw, 29px);
  line-height: 1.2;
}
.value__body {
  margin-top: 12px;
  max-width: 30ch;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Multi-column blocks read as a grid only when their body copy starts on a
   shared baseline, so headings reserve two lines once side by side. */
@media (min-width: 620px) {
  .pillar__title,
  .value__title,
  .stage__title { min-height: 2.4em; }
}

/* Statistics strip. */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(20px, 3vw, 40px);
  padding-block: clamp(26px, 3vw, 38px);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--text-muted);
}
.stat-note { margin: 18px 0 clamp(40px, 5vw, 64px); }

/* Numbered process rows (How We Work). */
.work-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 56px);
  padding: clamp(30px, 3.4vw, 46px) 0 clamp(30px, 3.4vw, 46px) clamp(30px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}
.work-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(201, 165, 44, 0.24);
}
.work-row::after {
  content: "";
  position: absolute;
  left: -3.5px;
  top: clamp(34px, 3.6vw, 50px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.work-row__n {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  color: rgba(201, 165, 44, 0.75);
  font-variant-numeric: tabular-nums;
}
.work-row__title {
  margin-top: 16px;
  font-weight: 400;
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.14;
}
.work-row__body {
  max-width: 48ch;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-muted);
}
.work-row__tags { align-content: flex-start; }

/* Mission / vision pair. */
.duo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 90px);
}
.duo-grid--ruled {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line-gold);
  gap: clamp(28px, 5vw, 88px);
}
.duo__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.duo__list { margin-top: 30px; }
.duo__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 26px;
}
.duo__numeral {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1;
  color: var(--gold);
}
.duo__label {
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--gold);
}
.duo__statement {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(25px, 2.7vw, 36px);
  line-height: 1.3;
}
.duo--vision {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  background: var(--bg-elevated);
  border-top: 2px solid var(--gold);
  padding: clamp(30px, 4vw, 56px);
}
.duo--vision .duo__statement { font-size: clamp(28px, 3.4vw, 46px); line-height: 1.22; }
.duo__footnote {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--text-dim);
}

/* Two-column story block. */
.story {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(36px, 6vw, 90px);
}
.story__lead { flex: 0.9 1 340px; }
.story__lead p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
  color: var(--text);
}
.story__body { flex: 1.1 1 360px; padding-top: clamp(0px, 3vw, 52px); }
.story__body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 58ch;
}
.story__body p + p { margin-top: 20px; }
.story__lead .rule-gold { margin-top: 32px; }
.story__meta {
  gap: 12px 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.duo__aside .rule-gold { margin-top: 28px; }

/* Centred closing statement. */
.statement { text-align: center; padding-block: clamp(80px, 10vw, 140px); }
.statement__label {
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--gold);
}
.statement__title {
  margin: 34px auto 0;
  max-width: 22ch;
  font-size: clamp(38px, 6vw, 86px);
  line-height: 1.06;
}
.statement__body { margin: 36px auto 0; max-width: 60ch; }
.statement .btn { margin-top: 40px; }

/* Markets panel. */
.panel {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(30px, 4vw, 68px);
}
.panel__main { flex: 1 1 340px; }
.panel__aside { flex: 1 1 320px; }
.panel__title { font-size: clamp(32px, 3.8vw, 54px); line-height: 1.1; }
.packaging__title { font-size: clamp(32px, 4vw, 58px); line-height: 1.08; }
.panel__quote {
  margin-top: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.6;
  color: var(--text);
  max-width: 42ch;
}
.panel__aside-label {
  display: block;
  margin-bottom: 20px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}
.origin-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.origin-row__dot {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.origin-row__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  white-space: nowrap;
}
.origin-row__fade {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 165, 44, 0.6), rgba(201, 165, 44, 0.05));
}

/* --------------------------------------------------------------------------
   10. Marquee
   -------------------------------------------------------------------------- */
.marquee {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  padding-block: 22px;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 30px);
  color: var(--text);
  white-space: nowrap;
}
.marquee__item::after {
  content: "\2726";
  color: var(--gold);
  font-size: 13px;
  font-style: normal;
}

/* --------------------------------------------------------------------------
   11. Products page — filter bar
   -------------------------------------------------------------------------- */
.filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 60;
  background: rgba(7, 10, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.filter-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-block: 16px;
}
.filter-bar__count {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  white-space: nowrap;
}

/* The bar is sticky under the header, so it has to stay shallow on phones.
   Each pill already carries its own count, making the running total visually
   redundant here — it stays in the DOM for the aria-live announcement. */
@media (max-width: 740px) {
  .filter-bar__inner { gap: 8px; }
  .filter-bar__count {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .pill { padding: 10px 16px; font-size: 12px; }
}

/* Between one and two columns the catalogue would otherwise show a single
   very wide card; two columns reads as a catalogue at these widths. */
@media (min-width: 600px) and (max-width: 767px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

.grid-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.grid-footer[hidden] { display: none; }
.grid-footer .btn { letter-spacing: 0.14em; font-size: 13px; padding-inline: 34px; }
.grid-footer__count { color: var(--gold); font-variant-numeric: tabular-nums; }

.products-section { padding-top: clamp(40px, 5vw, 72px); }

/* Packaging & private label block. */
.packaging {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 80px);
}
.packaging__main { flex: 1 1 340px; }
.packaging__figure { flex: 0.9 1 320px; align-self: flex-start; margin: 0; }
.packaging__lede { margin-top: 26px; max-width: 52ch; font-size: 15.5px; }
.packaging__list { margin-top: 28px; }
.packaging__note {
  margin-top: 22px;
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
}
.packaging__main .btn { margin-top: 32px; }

/* How We Work — section heads and closing note. */
.work-section__head {
  gap: 12px 28px;
  padding-bottom: clamp(28px, 3.4vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.work-section__kicker { color: var(--gold); letter-spacing: 0.3em; }
.work-section__note { margin-top: clamp(28px, 3vw, 40px); }
.shipment-title {
  max-width: 20ch;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.08;
}
.shipment-lede { margin-top: 24px; max-width: 44ch; }
.btn-row--spaced { margin-top: 36px; }

/* Contact page opening block. */
.contact-hero { padding-block: clamp(56px, 7vw, 110px) clamp(36px, 4vw, 60px); }
.contact-hero__lede { margin-top: 26px; max-width: 62ch; }

/* Packing photograph placeholder — becomes a real image when supplied. */
.photo-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px dashed rgba(201, 165, 44, 0.32);
}
.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-frame__placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 34px);
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
}
.photo-frame.asset-missing img { display: none; }
.photo-frame.asset-missing .photo-frame__placeholder { display: flex; }

.figure-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  margin-top: 16px;
}
.figure-meta span {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
}

/* Shipment figure (How We Work). */
.shipment-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  padding-top: clamp(40px, 5vw, 64px);
}
@media (max-width: 860px) { .shipment-grid { grid-template-columns: 1fr; } }

.shipment-figure { margin: 0; }
.shipment-figure__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-deep);
}
.shipment-figure__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.6) contrast(1.05);
  transition: transform 1s var(--ease), filter 0.6s;
}
.shipment-figure:hover .shipment-figure__frame img {
  transform: scale(1.05);
  filter: saturate(0.9) brightness(0.7) contrast(1.04);
}
.shipment-figure__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 38%;
  background: var(--gold);
  transition: width 0.55s var(--ease);
}
.shipment-figure:hover .shipment-figure__bar { width: 100%; }
.shipment-figure figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: baseline;
  margin-top: 16px;
}
.shipment-figure__label {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold);
}
.shipment-figure figcaption p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
}

.step-list { margin-top: clamp(30px, 3.4vw, 44px); }
.step {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  transition: border-color 0.4s;
}
.step:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
.step:hover { border-color: rgba(201, 165, 44, 0.4); }
.step__n {
  flex: none;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.step__label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
}
.step__text {
  display: block;
  margin-top: 7px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   12. Product detail drawer
   -------------------------------------------------------------------------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  justify-content: flex-end;
}
.drawer[hidden] { display: none; }
.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 4, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 0;
  animation: fadeIn 0.3s ease-out both;
}
.drawer__panel {
  position: relative;
  width: min(640px, 94vw);
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  border-left: 1px solid rgba(201, 165, 44, 0.22);
  animation: slideIn 0.36s var(--ease) both;
}
/* The panel itself does not scroll — this inner track does. That keeps the
   close button anchored to the panel instead of scrolling away with the
   specifications, which on a phone is the only way to dismiss the drawer. */
.drawer__scroll {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 42px;
  height: 42px;
  font-size: 17px;
  background: rgba(7, 10, 8, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.drawer__media {
  position: relative;
  height: min(38vh, 300px);
  background: var(--bg-deep);
}
.drawer__media img { filter: saturate(0.82) brightness(0.55) contrast(1.06); }
.drawer__body { padding: clamp(26px, 4vw, 44px); }
.drawer__kicker { font-size: 10px; letter-spacing: 0.3em; }
.drawer__title {
  margin-top: 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}
.drawer__desc {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-muted);
}
.spec-table {
  margin: 36px 0 0;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.spec-table__head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.spec-table__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 15px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.spec-table__row:last-child { border-bottom: 0; }
.spec-table dt {
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.spec-table dd {
  flex: 1 1 140px;
  margin: 0;
  font-size: 14px;
  color: var(--text);
  text-align: right;
}
.drawer .btn { margin-top: 32px; }
.drawer__hint {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-dim);
  text-align: center;
}

/* --------------------------------------------------------------------------
   13. Contact page and form
   -------------------------------------------------------------------------- */
.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 4vw, 64px);
  align-items: flex-start;
}
.contact-info { flex: 0.8 1 300px; }
.contact-form-wrap {
  flex: 1.4 1 420px;
  background: var(--bg-elevated);
  border: 1px solid rgba(201, 165, 44, 0.2);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 48px);
}
.contact-info__title { font-weight: 400; font-size: clamp(28px, 3vw, 42px); }
.contact-info__lede {
  margin-top: 18px;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}
.contact-list { margin-top: 34px; }
.contact-list__item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-list__item:last-child { border-bottom: 1px solid var(--line); }
.contact-list__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.contact-list__value {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  word-break: break-word;
}
.contact-list__value + .contact-list__value { margin-top: 4px; }
.contact-list__sub {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
}
a.contact-list__value:hover { color: var(--gold); }

.checklist-card {
  margin-top: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}
.checklist-card__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
}
.checklist-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.checklist-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text);
}
.checklist-card li::before {
  content: "";
  flex: none;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.field { display: block; min-width: 0; }
.field__label {
  display: block;
  margin-bottom: 9px;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--text-muted);
}
.field__control {
  width: 100%;
  background: rgba(7, 10, 8, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 15px 16px;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.3s;
}
.field__control::placeholder { color: var(--text-dim); }
.field__control:hover { border-color: rgba(255, 255, 255, 0.24); }
.field__control:focus {
  border-color: var(--gold);
  outline: none;
}
textarea.field__control { resize: vertical; min-height: 120px; }
.field__error {
  display: none;
  margin-top: 8px;
  font-size: 12px;
  color: var(--danger);
}
.field.has-error .field__control { border-color: var(--danger); }
.field.has-error .field__error { display: block; }

.field-block { margin-top: 26px; }
.field-block__label {
  display: block;
  margin-bottom: 11px;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--text-muted);
}

/* Honeypot: off-screen rather than display:none, which more bots skip.
   aria-hidden + tabindex=-1 keep it away from people and screen readers. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.chip-row:empty { display: none; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(201, 165, 44, 0.14);
  border: 1px solid rgba(201, 165, 44, 0.45);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--text);
}
.chip span { color: var(--gold); }

.option-list {
  margin-top: 12px;
  max-height: 210px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text);
  text-align: left;
  transition: background 0.2s;
}
.option:last-child { border-bottom: 0; }
.option:hover { background: rgba(201, 165, 44, 0.08); }
.option__mark {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  white-space: nowrap;
}
.option[aria-pressed="true"] .option__mark { color: var(--gold); }
.option-empty {
  padding: 16px;
  font-size: 13px;
  color: var(--text-dim);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.form-error {
  font-size: 13px;
  color: var(--danger);
}
.form-error[hidden] { display: none; }

.form-success {
  padding: clamp(30px, 5vw, 70px) 0;
  text-align: center;
  animation: fadeIn 0.5s ease-out both;
}
.form-success[hidden] { display: none; }
.form-success__label {
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--gold);
}
.form-success__title {
  margin: 26px auto 0;
  max-width: 22ch;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.14;
}
.form-success__body {
  margin: 20px auto 0;
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}
.form-success .btn { margin-top: 32px; }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--line-soft);
}
.site-footer__inner { padding-top: clamp(56px, 7vw, 110px); }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(36px, 6vw, 110px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.footer-brand { flex: 1 1 320px; max-width: 440px; }
.footer-brand__logo {
  width: 190px;
  max-width: 100%;
  height: auto;
}
/* Asset fallback: a typographic lockup replaces the missing logo file. */
.footer-brand__fallback { display: none; }
.footer-brand.asset-missing .footer-brand__logo { display: none; }
.footer-brand.asset-missing .footer-brand__fallback { display: block; }
.footer-brand__fallback-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 0.14em;
  color: var(--text);
}
.footer-brand__fallback-sub {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.footer-brand__statement {
  margin-top: 26px;
  max-width: 26ch;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.45;
  color: var(--text);
}
.footer-brand__meta {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
}

.footer-nav {
  flex: 1 1 380px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(24px, 3vw, 44px);
}
.footer-col__label {
  display: block;
  margin-bottom: 20px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.footer-col--whole .footer-col__label { color: var(--amber); }
.footer-col--powder .footer-col__label { color: var(--saffron); }
.footer-col ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-align: left;
}
.footer-col a:hover { color: var(--gold); }
.footer-col__all {
  font-size: 12px;
  letter-spacing: 0.16em;
}
.footer-col--whole .footer-col__all { color: var(--amber); }
.footer-col--powder .footer-col__all { color: var(--saffron); }

.footer-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(24px, 3vw, 44px);
  padding-block: clamp(34px, 4vw, 52px);
  border-top: 1px solid var(--line);
}
.footer-details__label {
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}
.footer-details__value {
  display: block;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  word-break: break-word;
}
.footer-details__value--muted { font-size: 13px; color: var(--text-muted); }
a.footer-details__value { line-height: 1.9; }
a.footer-details__value:hover { color: var(--gold); }
.footer-details__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
/* `span` covers profiles that have no URL configured yet (see build.py SOCIAL). */
.footer-details__stack a,
.footer-details__stack span { font-size: 14px; color: var(--text-muted); }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-base span,
.footer-base a { font-size: 12px; color: var(--text-dim); }
.footer-base a:hover { color: var(--text-muted); }
.footer-base__links { display: flex; flex-wrap: wrap; gap: 24px; }

/* --------------------------------------------------------------------------
   15. Motion
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideIn {
  from { transform: translateX(100%); }
  to   { transform: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll-in reveal.
   Built from a transition rather than a keyframe animation on purpose: the
   revealed state is an ordinary computed style, so if transitions never run
   (JS blocked, print, an inert or throttled tab) the content is simply there
   rather than stuck on a hidden first keyframe. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
.js [data-reveal].is-revealed:nth-child(2) { transition-delay: 0.07s; }
.js [data-reveal].is-revealed:nth-child(3) { transition-delay: 0.14s; }
.js [data-reveal].is-revealed:nth-child(4) { transition-delay: 0.21s; }
.js [data-reveal].is-revealed:nth-child(5) { transition-delay: 0.28s; }
.js [data-reveal].is-revealed:nth-child(6) { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; transform: none; }
  .hero__video { opacity: 1; }
}

/* --------------------------------------------------------------------------
   16. Responsive refinements
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .feature-row > .feature-card { flex: 1 1 340px; }
}

@media (max-width: 860px) {
  .hero--split .hero__content { justify-content: flex-start; }
  .hero--split .hero__scrim--side {
    background: linear-gradient(90deg, rgba(7, 10, 8, 0.9) 0%, rgba(7, 10, 8, 0.86) 50%, rgba(7, 10, 8, 0.8) 100%);
  }
}

/* Touch widths: keep every link at least 24px tall (WCAG 2.5.8) without
   changing how the same links sit on desktop. */
@media (max-width: 900px) {
  .tlink,
  .footer-col a,
  .footer-details__stack a,
  .footer-base a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
  }
  .footer-col ul { gap: 14px; }
  .footer-details__stack { gap: 12px; }
}

@media (max-width: 700px) {
  :root { --header-h: 72px; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__name { font-size: 17px; letter-spacing: 0.1em; }
  .brand__tagline { font-size: 8.5px; letter-spacing: 0.22em; }
  /* Each hero keeps the height the design gave it — this block must not
     flatten .hero--plain / --short / --split back to a single value. */
  .feature-card__media { min-height: 200px; }
  .work-row { padding-left: 24px; }
  .duo--vision { padding: clamp(24px, 6vw, 40px); }
  .drawer__panel { width: 100%; }
  .product-card__spec { flex-direction: column; gap: 2px; }
  .product-card__spec dd { text-align: left; }
}

/* Authored line breaks in display headings stop helping once the measure is
   narrower than the line they create; below this width the text balances
   itself instead of leaving an orphan. A space precedes each of these in the
   markup so hiding the break never joins two words. */
@media (max-width: 420px) {
  .br-wide { display: none; }
}

@media (max-width: 420px) {
  .brand { gap: 9px; }
  .brand__name { font-size: 15.5px; }
  .btn { padding: 14px 22px; font-size: 13px; }
  .field-grid { grid-template-columns: 1fr; }
  .footer-base { justify-content: flex-start; }
  /* Stacked rows: clear the row-direction flex basis so `dd` does not
     inherit 140px as its *height* once the axis flips. */
  .spec-table__row { flex-direction: column; gap: 4px; }
  .spec-table dt,
  .spec-table dd { flex: 0 0 auto; text-align: left; }
}

@media (max-width: 360px) {
  .brand__tagline { display: none; }
  .contact-form-wrap { padding: 20px; }
  .checklist-card { padding: 22px; }
}

@media print {
  .site-header, .mobile-menu, .drawer, .grain, .marquee, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
}
