/* ============================================================
   GLOBAL JOBY — Cinematic Warmth design system
   A honey atelier as photo essay. Warm-graded imagery carries
   the brand; type is set into image like an art director did
   it by hand. Every scroll feels like turning a monograph.
   ============================================================ */

/* ----- Tokens ----- */
:root {
  /* Palette — locked, max 5 + a single cream-tint helper */
  --bg:           #FAF6EF;
  --ink:          #211A12;
  --amber:        #C98A2D;
  --amber-light:  #E8B45A;
  --moss:         #3E4A35;

  /* Soft ink steps for low-contrast hairlines (alpha on ink) */
  --ink-90:       rgba(33, 26, 18, 0.90);
  --ink-80:       rgba(33, 26, 18, 0.80);
  --ink-70:       rgba(33, 26, 18, 0.70);
  --ink-55:       rgba(33, 26, 18, 0.55);
  --ink-30:       rgba(33, 26, 18, 0.30);
  --ink-15:       rgba(33, 26, 18, 0.15);
  --ink-10:       rgba(33, 26, 18, 0.10);
  --ink-06:       rgba(33, 26, 18, 0.06);

  --cream-90:     rgba(250, 246, 239, 0.90);
  --cream-80:     rgba(250, 246, 239, 0.80);
  --cream-65:     rgba(250, 246, 239, 0.65);
  --cream-30:     rgba(250, 246, 239, 0.30);
  --cream-15:     rgba(250, 246, 239, 0.15);

  /* Type — locked: Fraunces (display) + Manrope (body) */
  --font-display: 'Fraunces', ui-serif, 'Iowan Old Style', Georgia, serif;
  --font-body:    'Manrope', ui-sans-serif, system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;

  /* Spacing — 8pt grid only. Anything else is a bug. */
  --s-4:    0.25rem;
  --s-8:    0.5rem;
  --s-12:   0.75rem;
  --s-16:   1rem;
  --s-20:   1.25rem;
  --s-24:   1.5rem;
  --s-32:   2rem;
  --s-40:   2.5rem;
  --s-48:   3rem;
  --s-56:   3.5rem;
  --s-64:   4rem;
  --s-80:   5rem;
  --s-96:   6rem;
  --s-120:  7.5rem;
  --s-128:  8rem;
  --s-160:  10rem;
  --s-192:  12rem;

  /* Container widths */
  --w-narrow:   880px;
  --w-default:  1280px;
  --w-wide:     1440px;
  --w-pull:     1100px;

  /* Radii — sharp editorial. 4px is the ceiling. */
  --r-0: 0;
  --r-2: 2px;
  --r-4: 4px;

  /* Motion */
  --t-fast:   180ms;
  --t-base:   240ms;
  --t-slow:   320ms;
  --t-xslow:  600ms;
  --ease:     cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layers */
  --z-base:    1;
  --z-overlay: 10;
  --z-nav:     90;
  --z-modal:   200;
  --z-skip:    300;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
}
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: var(--r-2);
}
/* On dark surfaces, amber dips toward ~3:1 — use amber-light for a clear ring. */
.nav--over-hero :focus-visible,
.journey :focus-visible,
.hero :focus-visible,
.pl-hero__type :focus-visible,
.final-cta :focus-visible,
.mob-nav :focus-visible {
  outline-color: var(--amber-light);
}
@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;
    scroll-behavior: auto !important;
  }
}

/* ----- Skip link ----- */
.skip {
  position: absolute;
  top: -100px;
  left: var(--s-16);
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-12) var(--s-20);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: var(--z-skip);
  transition: top var(--t-base) var(--ease);
}
.skip:focus-visible { top: var(--s-16); }

/* ----- Typography ----- */
.display, .h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 100;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: -0.022em;
  font-weight: 400;
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 96, 'wght' 400;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.014em;
  font-weight: 400;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 48, 'wght' 500;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.008em;
  font-weight: 500;
  text-wrap: balance;
}
.h4 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  font-weight: 500;
}
.lead {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  line-height: 1.55;
  letter-spacing: 0.0025em;
  font-weight: 400;
  color: var(--ink-80);
  max-width: 56ch;
}
.body { font-family: var(--font-body); font-size: 1rem; line-height: 1.65; color: var(--ink-80); max-width: 64ch; }
.small { font-size: 0.875rem; line-height: 1.55; }
.label-ui {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  line-height: 1.4;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-block;
}
.eyebrow--mark::before {
  content: '— ';
  color: var(--ink-30);
  font-style: normal;
  margin-right: 0.4em;
}
.eyebrow--cream { color: var(--amber-light); }
.italic { font-style: italic; }
.serif { font-family: var(--font-display); }

/* Body link */
.link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: text-underline-offset var(--t-base) var(--ease);
}
.link:hover { text-underline-offset: 6px; }

/* ----- Containers & sections ----- */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.container--narrow { max-width: var(--w-narrow); }
.container--default { max-width: var(--w-default); }
.container--wide { max-width: var(--w-wide); }
.container--pull { max-width: var(--w-pull); }

section { padding-block: var(--s-80); }
@media (min-width: 768px) { section { padding-block: var(--s-120); } }
@media (min-width: 1024px) {
  section { padding-block: clamp(120px, 14vh, 160px); }
}

/* ----- Buttons ----- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
  height: 48px;
  padding: 0 var(--s-24);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-2);
  border: 1px solid transparent;
  transition: background-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.98); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover { background: var(--amber); color: var(--bg); }

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--secondary:hover { background: var(--ink); color: var(--bg); }

.btn--amber {
  background: var(--amber);
  color: var(--bg);
}
.btn--amber:hover { background: var(--amber-light); color: var(--ink); }

.btn--ink-on-cream {
  background: var(--ink);
  color: var(--bg);
}
.btn--ink-on-cream:hover { background: var(--amber); }

.btn--cream-outline {
  background: transparent;
  color: var(--bg);
  border-color: var(--cream-30);
}
.btn--cream-outline:hover {
  background: var(--cream-15);
  border-color: var(--bg);
}

.btn--amber-light {
  background: var(--amber-light);
  color: var(--ink);
}
.btn--amber-light:hover { background: var(--amber); color: var(--bg); }

.btn--lg { height: 52px; padding: 0 var(--s-32); font-size: 1rem; }
.btn--sm { height: 40px; padding: 0 var(--s-16); font-size: 0.875rem; }

/* ----- Nav ----- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  height: 64px;
  display: flex;
  align-items: center;
  transition: background-color var(--t-base) var(--ease),
              backdrop-filter var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease);
  border-bottom: 1px solid transparent;
}
@media (min-width: 768px) { .nav { height: 72px; } }

.nav__inner {
  width: 100%;
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-24);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
  height: 36px;
  flex-shrink: 0;
}
.nav__logo img { height: 36px; width: auto; transition: filter var(--t-base) var(--ease); }
.nav__wordmark {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.nav__wordmark small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-top: 3px;
}
@media (max-width: 380px) {
  .nav .nav__wordmark { display: none; }   /* header only: mark-only on very small screens */
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--s-32);
}
/* Full inline nav appears at 1200px — below that the hamburger sheet is used,
   so the (now 5–6 item) nav never wraps against the WhatsApp + Book actions. */
@media (min-width: 1200px) { .nav__links { display: flex; } }

.nav__link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: var(--s-8) 0;
  white-space: nowrap;
  transition: color var(--t-base) var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--s-12);
}
.nav__wa {
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: var(--s-8) 0;
  transition: color var(--t-base) var(--ease);
}
.nav__wa svg { width: 16px; height: 16px; }
.nav__cta { display: none; }
@media (min-width: 768px) { .nav__cta { display: inline-flex; } }

.nav__menu-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: -8px;
}
@media (min-width: 1200px) { .nav__menu-btn { display: none; } }
.nav__menu-btn span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease), top var(--t-base) var(--ease);
}
.nav__menu-btn span:nth-child(1) { top: calc(50% - 6px); transform: translateX(-50%); }
.nav__menu-btn span:nth-child(2) { top: 50%; transform: translateX(-50%) translateY(-50%); }
.nav__menu-btn span:nth-child(3) { top: calc(50% + 6px); transform: translateX(-50%); }
.nav__menu-btn[aria-expanded="true"] span:nth-child(1) { top: 50%; transform: translateX(-50%) translateY(-50%) rotate(45deg); }
.nav__menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__menu-btn[aria-expanded="true"] span:nth-child(3) { top: 50%; transform: translateX(-50%) translateY(-50%) rotate(-45deg); }

/* Nav states — cream hero (home) uses default ink text, no inversion needed */
.nav--over-hero { color: var(--ink); }
.nav--over-hero .nav__logo img { filter: none; }
/* Dark hero (Private Label): cream nav text until the user scrolls onto the cream bar */
.nav--dark-hero:not(.nav--scrolled) { color: var(--bg); }
.nav--dark-hero:not(.nav--scrolled) .nav__wordmark { color: var(--bg); }
.nav--dark-hero:not(.nav--scrolled) .nav__wordmark small { color: var(--cream-65); }
.nav--scrolled {
  background: rgba(250, 246, 239, 0.92);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
  border-bottom-color: var(--ink-10);
  color: var(--ink);
}
.nav--scrolled .nav__logo img { filter: none; }

/* ----- Mobile nav sheet ----- */
.mob-nav {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: var(--z-modal);
  width: min(100vw, 420px);
  background: var(--bg);
  color: var(--ink);
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  display: flex;
  flex-direction: column;
  padding: var(--s-24);
  overflow-y: auto;
  visibility: hidden;
}
.mob-nav[aria-hidden="false"] { transform: translateX(0); visibility: visible; }
.mob-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-40);
}
.mob-nav__close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mob-nav__close svg { width: 20px; height: 20px; }
.mob-nav__links {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
  margin-bottom: var(--s-32);
}
.mob-nav__link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  padding: var(--s-12) 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ink-10);
}
.mob-nav__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  padding-top: var(--s-24);
}
.mob-nav__ctas .btn { width: 100%; justify-content: center; height: 52px; }
.mob-nav__contact {
  margin-top: var(--s-32);
  padding-top: var(--s-24);
  border-top: 1px solid var(--ink-10);
  font-size: 0.8125rem;
  color: var(--ink-70);
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}

.mob-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(33, 26, 18, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base) var(--ease), visibility var(--t-base);
}
.mob-nav__backdrop[aria-hidden="false"] { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ----- Hero (Home) — cream editorial, floating jars ----- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--bg);                 /* was var(--ink) — dark editorial ground */
  background:
    radial-gradient(120% 95% at 84% -8%, rgba(224, 168, 46, 0.26) 0%, rgba(224, 168, 46, 0.04) 38%, transparent 62%),
    radial-gradient(90% 120% at 92% 60%, rgba(201, 138, 45, 0.16) 0%, transparent 55%),
    #1c150d;                        /* warm near-black, matches the mockup */
}
.hero__comb {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../PHOTOS/Honey comb zoomed.jpg") center / cover no-repeat;
  opacity: 0.10;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__inner {
  position: relative;               /* keep content above the texture */
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--s-32);
  padding: calc(72px + var(--s-24)) clamp(20px, 5vw, 80px) var(--s-48);
  /* cap the centred area so tall screens don't open a big gap under the nav */
  min-height: min(100svh, 820px);
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 9fr 11fr;   /* 45% text / 55% jars */
    align-items: center;
    gap: var(--s-40);
    padding-bottom: 0;
  }
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1; /* jar first on mobile */
}
.hero__halo {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 620px;
  height: 620px;
  max-width: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 180, 90, 0.30) 0%, rgba(201, 138, 45, 0.10) 42%, transparent 68%);
  filter: blur(4px);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .hero__visual {
    order: unset;
    justify-content: center;
    align-self: stretch;      /* fill the full hero height */
  }
}
/* Floating jar — transparent cutout (Nectaroma Float Jar.png), drifts like water */
.hero__jars {
  position: relative;   /* above the halo */
  z-index: 1;
  display: block;
  width: auto;
  max-width: min(100%, 300px);
  height: auto;
  max-height: 56svh;
  margin: 0 auto;
  /* silhouette shadow (follows the jar, not a box) grounds the float */
  filter: drop-shadow(0 26px 30px rgba(33, 26, 18, 0.22));
  will-change: transform;
  animation: hero-float 7s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .hero__jars {
    max-width: 100%;
    height: 100%;
    max-height: 646px;        /* ~15% smaller — floats, no longer fills/clips */
    object-fit: contain;
    align-self: center;       /* true vertical center in the hero */
    filter: drop-shadow(0 30px 38px rgba(33, 26, 18, 0.24));
  }
}
/* Gentle fluid drift — slow bob + faint sway and tilt, like floating on water */
@keyframes hero-float {
  0%   { transform: translateY(0)      translateX(0)    rotate(0deg); }
  25%  { transform: translateY(-10px)  translateX(3px)  rotate(0.6deg); }
  50%  { transform: translateY(-15px)  translateX(0)    rotate(0deg); }
  75%  { transform: translateY(-7px)   translateX(-3px) rotate(-0.6deg); }
  100% { transform: translateY(0)      translateX(0)    rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__jars,
  .pl-hero__image img,
  .sample-pack__visual img { animation: none; }
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  will-change: transform;
}
.hero__scrim-bottom {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Strong diagonal dark — bottom-left quadrant where type sits */
    linear-gradient(
      125deg,
      rgba(33, 26, 18, 0.85) 0%,
      rgba(33, 26, 18, 0.72) 28%,
      rgba(33, 26, 18, 0.42) 52%,
      rgba(33, 26, 18, 0.15) 78%,
      rgba(33, 26, 18, 0.05) 100%
    ),
    /* Bottom darken — deep fade to create seamless section break into stats band */
    linear-gradient(
      180deg,
      rgba(33, 26, 18, 0.15) 0%,
      rgba(33, 26, 18, 0.08) 48%,
      rgba(33, 26, 18, 0.60) 82%,
      rgba(33, 26, 18, 0.78) 100%
    );
  pointer-events: none;
}
@media (min-width: 1024px) {
  .hero__scrim-bottom {
    background:
      linear-gradient(
        110deg,
        rgba(33, 26, 18, 0.82) 0%,
        rgba(33, 26, 18, 0.65) 32%,
        rgba(33, 26, 18, 0.22) 58%,
        rgba(33, 26, 18, 0.0) 78%
      ),
      linear-gradient(
        180deg,
        rgba(33, 26, 18, 0.05) 0%,
        rgba(33, 26, 18, 0.08) 55%,
        rgba(33, 26, 18, 0.58) 84%,
        rgba(33, 26, 18, 0.78) 100%
      );
  }
}
.hero__scrim-amber {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(201, 138, 45, 0.05);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--bg);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--s-24);
  color: var(--amber-light);
}
.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--amber);
}
.hero__h1 {
  color: var(--bg);
  max-width: 16ch;
  margin-bottom: var(--s-32);
}
.hero__h1 em { color: var(--amber-light); }
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  max-width: 48ch;
  color: rgba(250, 246, 239, 0.74);
  margin-bottom: var(--s-32);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-12);
  margin-bottom: var(--s-40);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-8) var(--s-24);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.60);
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
}
.hero__trust-item + .hero__trust-item::before {
  content: '·';
  color: var(--amber);
}
.hero__scroll {
  position: absolute;
  bottom: var(--s-32);
  right: clamp(20px, 5vw, 80px);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--s-12);
  color: rgba(250, 246, 239, 0.50);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media (min-width: 1024px) { .hero__scroll { display: flex; } }
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(250, 246, 239, 0.5) 0%, transparent 100%);
}
/* WhatsApp / secondary button → cream outline on the dark hero (mirrors .btn--cream-outline) */
.hero .btn--secondary {
  background: transparent;
  border-color: rgba(250, 246, 239, 0.34);
  color: var(--bg);
}
.hero .btn--secondary:hover { background: rgba(250, 246, 239, 0.10); }

/* ----- Photo band (reusable warm-graded full-bleed band) ----- */
.band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
}
.band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}
.band__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(33, 26, 18, 0.55) 0%,
    rgba(33, 26, 18, 0.42) 50%,
    rgba(33, 26, 18, 0.60) 100%
  );
  pointer-events: none;
}
.band__amber {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(201, 138, 45, 0.04);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.band__content {
  position: relative;
  z-index: 2;
}

/* ----- Stats band ----- */
.stats-band {
  margin-top: -1px; /* eliminate any sub-pixel rendering gap with hero */
  min-height: clamp(360px, 50vh, 480px);
  display: flex;
  align-items: center;
  padding-block: var(--s-96);
  background: var(--moss);   /* moss green; overrides .band's --ink brown. Fixes index + quality. */
}
.stats-grid {
  width: 100%;
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-48) var(--s-32);
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-32); }
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-variation-settings: 'opsz' 144, 'wght' 400;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--bg);
}
.stat__num span {
  font-style: italic;
  color: var(--amber-light);
  font-size: 0.6em;
  vertical-align: 0.18em;
  margin-left: 0.04em;
  font-variation-settings: 'opsz' 144, 'wght' 400, 'soft' 100;
}
.stat__rule {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber-light);
  margin-top: var(--s-16);
  margin-bottom: var(--s-12);
  margin-inline: auto;
}
.stat__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-80);
  line-height: 1.4;
}

/* ----- CTA rail (single line: amber rule + headline + dual buttons) ----- */
.cta-rail {
  border-top: 1px solid var(--amber);
  padding-block: var(--s-32);
}
.cta-rail__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-20);
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
@media (min-width: 768px) {
  .cta-rail__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-32);
  }
}
.cta-rail__text {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.3;
  color: var(--ink);
  font-weight: 500;
  max-width: 36ch;
}
.cta-rail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-12);
  flex-shrink: 0;
}
.cta-rail--on-ink { border-top-color: var(--amber-light); }
.cta-rail--on-ink .cta-rail__text { color: var(--bg); }

/* ----- Section headers ----- */
.section-head {
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  margin-bottom: var(--s-48);
}
@media (min-width: 768px) { .section-head { margin-bottom: var(--s-64); } }
.section-head .eyebrow { margin-bottom: var(--s-16); }
.section-head .h2 { max-width: 18ch; }
.section-head__sub {
  margin-top: var(--s-24);
  max-width: 60ch;
  color: var(--ink-70);
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* ----- Verticals (What we do) ----- */
.verticals-grid {
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-24);
}
@media (min-width: 768px) {
  .verticals-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-24); align-items: stretch; }
}
.vcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--ink-15);
  padding: var(--s-32);
  min-height: 380px;
  transition: border-color var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}
@media (min-width: 768px) { .vcard { padding: var(--s-40); min-height: 460px; } }
@media (min-width: 1024px) { .vcard { min-height: 500px; } }
.vcard:hover { border-color: var(--ink); }
.vcard__icon {
  width: 32px;
  height: 32px;
  margin-bottom: var(--s-32);
  color: var(--ink);
  transition: color var(--t-base) var(--ease);
}
.vcard__icon svg { width: 100%; height: 100%; }
.vcard:hover .vcard__icon { color: var(--amber); }
.vcard__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s-16);
}
.vcard__tag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--amber);
}
.vcard__title { margin-bottom: var(--s-16); }
.vcard__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-70);
  margin-bottom: var(--s-24);
  flex: 1;
}
.vcard__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  transition: gap var(--t-base) var(--ease);
}
.vcard__link:hover { gap: var(--s-16); }
.vcard__link svg { width: 1.1em; height: 1.1em; flex: none; }   /* small inline chevron — not an oversized arrow */

/* PL emphasis card (inverted, raised on desktop) */
.vcard--pl {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  position: relative;
}
.vcard--pl .vcard__icon { color: var(--amber-light); }
.vcard--pl .vcard__title { color: var(--bg); }
.vcard--pl .vcard__body { color: var(--cream-80); }
.vcard--pl .vcard__link { color: var(--amber-light); }
.vcard--pl .vcard__tag { color: var(--amber-light); }
.vcard--pl .vcard__tag::before { background: var(--amber-light); }
.vcard--pl:hover { border-color: var(--amber); }
.vcard--pl:hover .vcard__icon { color: var(--amber); }
@media (min-width: 1024px) {
  .vcard--pl { transform: translateY(-16px); }
}

/* ----- Journey (dark mossy chapter) ----- */
.journey {
  background: var(--moss);
  color: var(--bg);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.journey::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(33, 26, 18, 0.0) 0%, rgba(33, 26, 18, 0.35) 70%);
  pointer-events: none;
  z-index: 0;
}
.journey > .container,
.journey .section-head { position: relative; z-index: 2; }

.journey .section-head .eyebrow { color: var(--amber-light); }
.journey .section-head .h2 { color: var(--bg); }
.journey .section-head__sub { color: var(--cream-80); }

.journey-grid {
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-40);
}
@media (min-width: 1024px) {
  .journey-grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--s-96);
    align-items: stretch;
  }
}
.journey__steps {
  display: flex;
  flex-direction: column;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s-16);
  padding: var(--s-24) 0;
  border-top: 1px solid var(--cream-15);
  cursor: pointer;
  transition: background-color var(--t-base) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.step:last-child { border-bottom: 1px solid var(--cream-15); }
.step:hover { background: rgba(250, 246, 239, 0.03); }
.step__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-variation-settings: 'opsz' 96, 'wght' 400;
  line-height: 1;
  color: var(--cream-30);
  letter-spacing: -0.02em;
  transition: color var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.step__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--cream-65);
  transition: color var(--t-slow) var(--ease);
}
.step__brief {
  font-size: 0.875rem;
  color: var(--cream-65);
  line-height: 1.55;
  opacity: 0.7;
}
.step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-8);
  margin-top: var(--s-8);
}
.step__tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-light);
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
}
.step__tag::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--amber-light);
}
.step--active .step__num { color: var(--amber-light); }
.step--active .step__title { color: var(--bg); }
.step--active .step__brief { opacity: 1; }
.step--active::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--amber);
}

.journey__detail {
  position: relative;
  background: rgba(33, 26, 18, 0.35);
  border: 1px solid var(--cream-15);
  min-height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .journey__detail {
    /* stretches to match the steps column height (align-items: stretch) — no more short top-pinned box */
    min-height: 560px;
  }
}
.journey__detail-figure {
  position: relative;
  flex: 1;
  background:
    radial-gradient(130% 90% at 72% 18%, rgba(201, 138, 45, 0.22) 0%, transparent 58%),
    linear-gradient(158deg, var(--moss) 0%, rgba(33, 26, 18, 0.97) 100%);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* show the per-step photo as the figure; number becomes a corner stamp */
.journey__detail-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
}
.journey__detail-figure img.is-active { opacity: 1; }   /* JS already toggles .is-active per step */
.journey__detail-figure::before {                        /* legibility scrim over the photo */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(158deg, rgba(62, 74, 53, 0.50) 0%, rgba(33, 26, 18, 0.55) 100%);
  pointer-events: none;
}
.journey__detail-num {
  position: absolute;
  top: var(--s-32);
  right: var(--s-40);
  z-index: 2;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-size: clamp(3.5rem, 6vw, 5.5rem);   /* was clamp(8rem,20vw,15rem) — a corner stamp now */
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(250, 246, 239, 0.42);
  user-select: none;
  transition: opacity var(--t-slow) var(--ease);
}
/* Bee mark as a faint brand stamp, top-left */
.journey__detail-figure::after {
  content: '';
  position: absolute;
  top: var(--s-32);
  left: var(--s-32);
  width: 44px;
  height: 44px;
  background: url("../PHOTOS/GlobalJobyLogo.svg") center / contain no-repeat;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.journey__detail-text {
  position: relative;
  z-index: 3;
  padding: var(--s-32);
  background: linear-gradient(to top, rgba(33, 26, 18, 0.92) 0%, rgba(33, 26, 18, 0.78) 100%);
  margin-top: auto;
}
@media (min-width: 768px) { .journey__detail-text { padding: var(--s-40); } }
.journey__detail-step {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  font-weight: 600;
  margin-bottom: var(--s-16);
}
.journey__detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  color: var(--bg);
  margin-bottom: var(--s-16);
  font-weight: 500;
}
.journey__detail-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream-80);
  margin-bottom: var(--s-24);
}
.journey__detail-cta { display: inline-flex; align-items: center; gap: var(--s-8); }

/* ----- Proof strip (verifiable & compliant) ----- */
.proof {
  background: var(--bg);
}
.proof__inner {
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  text-align: center;
}
.proof__eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--amber);
  padding-bottom: var(--s-24);
  border-bottom: 1px solid var(--ink-15);
  width: 100%;
  margin-bottom: var(--s-40);
}
.cert-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-20);
  margin-bottom: var(--s-32);
}
@media (min-width: 640px) { .cert-row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cert-row { grid-template-columns: repeat(6, 1fr); gap: var(--s-16); } }
.cert-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: var(--s-16) var(--s-20);
  border-left: 2px solid var(--moss);
  background: var(--bg);
  color: var(--ink);
  transition: border-color var(--t-base) var(--ease),
              background-color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease);
  min-height: 88px;
  justify-content: center;
  border-radius: 0;
}
.cert-chip:hover {
  border-left-color: var(--amber);
  border-left-width: 4px;
  background: rgba(201, 138, 45, 0.04);
}
.cert-chip:active { transform: scale(0.99); }
.cert-chip__name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}
.cert-chip__value {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--moss);
  margin-top: var(--s-4);
}
.proof__line {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--ink-70);
  padding-top: var(--s-24);
  border-top: 1px solid var(--ink-15);
}
.proof__line a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-underline-offset: 4px;
}
.proof__line a:hover { color: var(--amber); }

/* ----- Cases (client stories) ----- */
.cases-grid {
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-24);
}
@media (min-width: 768px) {
  .cases-grid { grid-template-columns: 1fr 1fr; gap: var(--s-32); }
}
@media (min-width: 1024px) {
  .cases-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--s-32);
  }
  /* equal thirds; the trailing two cards centre on the last row */
  .cases-grid > .case-card { grid-column: span 2; }
  .cases-grid > .case-card:nth-child(4) { grid-column: 2 / span 2; }
  .cases-grid > .case-card:nth-child(5) { grid-column: 4 / span 2; }
}
/* single featured case — one centred, comfortably-sized card (e.g. bulk page) */
.cases-grid--single { max-width: var(--w-pull); }
@media (min-width: 1024px) {
  .cases-grid--single { grid-template-columns: 1fr; max-width: 640px; }
  .cases-grid--single > .case-card,
  .cases-grid--single > .case-card:nth-child(4),
  .cases-grid--single > .case-card:nth-child(5) { grid-column: auto; }
}
/* testimonial trio (bulk page) — moss top accent for the trust moment */
.cases-grid--trio > .case-card { border-top-color: var(--moss); }
.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(201, 138, 45, 0.05);   /* warm wash — distinct from the cream page */
  border: 1px solid var(--ink-15);
  border-top: 3px solid var(--amber);      /* testimonial identity accent */
  min-height: 360px;
  box-shadow: 0 12px 32px -20px rgba(33, 26, 18, 0.20);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 56px -24px rgba(33, 26, 18, 0.24);
}
.case-card__stat {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-variation-settings: 'opsz' 144, 'wght' 400;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--amber);
  padding: var(--s-32) var(--s-32) 0;
}
.case-card__head {
  padding: var(--s-16) var(--s-32) var(--s-24);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink-10);
}
.case-card__quote {
  flex: 1;
  padding: var(--s-24) var(--s-32);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-70);
  position: relative;
}
.case-card__quote::before {
  content: '\201C';                 /* opening quotation mark — testimonial cue */
  position: absolute;
  left: var(--s-24);
  top: 0;
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: 1;
  color: rgba(201, 138, 45, 0.32);
}
.case-card__quote p { padding-left: var(--s-40); padding-top: var(--s-12); }
.case-card__attr {
  padding: 0 var(--s-32) var(--s-24);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-55);
}

/* ----- FAQ ----- */
.faq-list {
  max-width: var(--w-narrow);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--ink-15);
}
.faq-item { border-bottom: 1px solid var(--ink-15); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-24);
  padding: var(--s-24) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.6vw, 1.375rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  transition: color var(--t-base) var(--ease);
}
.faq-item__q:hover { color: var(--amber); }
.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  color: var(--ink);
  transition: color var(--t-base) var(--ease), transform var(--t-slow) var(--ease);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.faq-item__icon::before {
  top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%);
}
.faq-item__icon::after {
  left: 50%; top: 0; bottom: 0; width: 1.5px;
  transform: translateX(-50%);
  transition: transform var(--t-slow) var(--ease), opacity var(--t-slow) var(--ease);
}
.faq-item[open] .faq-item__q { color: var(--amber); }
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }
.faq-item[open] .faq-item__icon::after { opacity: 0; }
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow) var(--ease);
}
.faq-item[open] .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-item__a-inner p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-80);
  max-width: 64ch;
  padding: 0 0 var(--s-32);
}
.faq-item__a-inner p::first-letter {
  font-family: var(--font-display);
  font-size: 1.6em;
  line-height: 0.8;
  color: var(--ink);
  font-weight: 500;
  margin-right: 0.05em;
  float: left;
  padding-top: 0.18em;
}

/* ----- Final CTA (founder band) ----- */
.final-cta {
  position: relative;
  min-height: clamp(620px, 82vh, 760px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}
.final-cta__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;   /* was center → lifts framing to the founder's face */
  z-index: 0;
  will-change: transform;
}
.final-cta__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      120deg,
      rgba(33, 26, 18, 0.78) 0%,
      rgba(33, 26, 18, 0.62) 32%,
      rgba(33, 26, 18, 0.32) 58%,
      rgba(33, 26, 18, 0.10) 80%
    ),
    linear-gradient(
      180deg,
      rgba(33, 26, 18, 0.15) 0%,
      rgba(33, 26, 18, 0.20) 50%,
      rgba(33, 26, 18, 0.60) 100%
    );
  pointer-events: none;
}
.final-cta__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--w-wide);
  margin-inline: auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 80px);
  color: var(--bg);
}
.final-cta__inner { max-width: 720px; }
.final-cta__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--amber-light);
  margin-bottom: var(--s-24);
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
}
.final-cta__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--amber-light);
}
.final-cta h2 {
  color: var(--bg);
  margin-bottom: var(--s-24);
  max-width: 18ch;
}
.final-cta__sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.6;
  color: var(--cream-90);
  max-width: 52ch;
  margin-bottom: var(--s-40);
}
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-12);
  margin-bottom: var(--s-24);
}
/* Guarantee the cream-outline button clears contrast over the photo scrim. */
.final-cta .btn--cream-outline {
  background: var(--ink-55);
  border-color: var(--cream-65);
}
.final-cta .btn--cream-outline:hover {
  background: rgba(33, 26, 18, 0.78);
  border-color: var(--bg);
}
.final-cta__micro {
  font-size: 0.8125rem;
  color: var(--cream-65);
  letter-spacing: 0.02em;
}

/* ----- Footer ----- */
.footer {
  background: var(--bg);
  color: var(--ink);
  padding-block: var(--s-96) var(--s-40);
  border-top: 1px solid var(--ink-15);
}
.footer__inner {
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-48);
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-64); }
}
.footer__logo { height: 36px; margin-bottom: var(--s-20); }
/* Footer brand lockup — mark + wordmark, matches the header identity */
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
  margin-bottom: var(--s-24);
  color: var(--ink);
}
.footer__brand img { height: 40px; width: auto; }
.footer__brand .nav__wordmark { font-size: 1.25rem; }
.footer__tagline {
  font-size: 0.9375rem;
  color: var(--ink-70);
  max-width: 30ch;
  line-height: 1.55;
}
.footer__reg {
  margin-top: var(--s-24);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--ink-55);
  line-height: 1.8;
}
.footer__col-title {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-55);
  margin-bottom: var(--s-16);
}
.footer__links { display: flex; flex-direction: column; gap: var(--s-12); }
.footer__links a {
  font-size: 0.9375rem;
  color: var(--ink-70);
  transition: color var(--t-base) var(--ease);
}
.footer__links a:hover { color: var(--ink); }
.footer__bottom {
  max-width: var(--w-wide);
  margin: var(--s-64) auto 0;
  padding: var(--s-24) clamp(20px, 5vw, 56px) 0;
  border-top: 1px solid var(--ink-10);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-12);
  font-size: 0.75rem;
  color: var(--ink-55);
  letter-spacing: 0.04em;
}

/* ============================================================
   PRIVATE LABEL PAGE
   ============================================================ */

/* ----- PL hero (diptych) ----- */
.pl-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
  padding-block: 0;   /* override the generic `section` block padding so the diptych is edge-to-edge */
  background: var(--ink);
}
@media (min-width: 1024px) {
  .pl-hero { grid-template-columns: 6fr 4fr; grid-template-rows: 1fr; }   /* row fills 100svh; cream column stretches to the bottom edge */
}
.pl-hero__type {
  background: var(--ink);
  color: var(--bg);
  padding: calc(64px + var(--s-64)) clamp(20px, 5vw, 80px) var(--s-64);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  isolation: isolate;
  min-height: 60vh;
}
@media (min-width: 768px) { .pl-hero__type { padding: calc(72px + var(--s-96)) clamp(40px, 5vw, 96px) var(--s-96); } }
.pl-hero__type::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--amber);
  opacity: 0.4;
}
@media (min-width: 1024px) {
  .pl-hero__type::after {
    top: 0; bottom: 0; right: 0; left: auto;
    width: 1px; height: 100%;
  }
}
.pl-hero__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--amber-light);
  margin-bottom: var(--s-24);
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
}
.pl-hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--amber-light);
}
.pl-hero h1 { color: var(--bg); margin-bottom: var(--s-32); max-width: 14ch; }
.pl-hero__sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--cream-90);
  max-width: 50ch;
  margin-bottom: var(--s-40);
}
.pl-hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-12); }
.pl-hero__image {
  position: relative;
  /* warm the cream so the panel has depth, not a flat box */
  background: linear-gradient(180deg, #FAF6EF 0%, #F1E8D6 100%);
  min-height: 50vh;
  display: flex;
  align-items: flex-end;            /* jar stands on the base */
  justify-content: center;
  padding: var(--s-48);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .pl-hero__image { min-height: 100%; align-self: stretch; }
}
.pl-hero__image::before {           /* halo behind the jar */
  content: '';
  position: absolute;
  z-index: 0;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 180, 90, 0.5) 0%, rgba(232, 180, 90, 0) 68%);
  pointer-events: none;
}
.pl-hero__image::after {            /* plinth shadow at the base */
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  z-index: 0;
  background: linear-gradient(180deg, rgba(33, 26, 18, 0) 0%, rgba(33, 26, 18, 0.07) 100%);
  pointer-events: none;
}
.pl-hero__image img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 92%;                  /* let it nearly fill, standing on the base */
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(33, 26, 18, 0.22));
  animation: hero-float 7s ease-in-out infinite;
}

/* ----- PL Philosophy (pullquote + body) ----- */
.pl-philosophy {
  padding-block: clamp(var(--s-96), 16vh, var(--s-160));
  background: var(--bg);
}
.pl-philosophy__pull {
  max-width: var(--w-pull);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-variation-settings: 'opsz' 120, 'wght' 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  position: relative;
  margin-bottom: var(--s-64);
}
.pl-philosophy__pull::before {
  content: '¶';
  position: absolute;
  left: clamp(0px, 2vw, -32px);
  top: -0.1em;
  color: var(--amber);
  font-size: 0.5em;
  font-style: italic;
  opacity: 0.7;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .pl-philosophy__pull::before {
    left: -40px;
    font-size: 0.6em;
  }
}
.pl-philosophy__attr {
  max-width: var(--w-pull);
  margin: var(--s-24) auto var(--s-80);
  padding-inline: clamp(20px, 5vw, 56px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-55);
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--s-16);
}
.pl-philosophy__attr::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--amber);
}
.pl-philosophy__body {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.pl-philosophy__body p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-80);
  margin-bottom: var(--s-24);
  max-width: 64ch;
}
.pl-philosophy__body p:last-child { margin-bottom: 0; }

/* ============================================================
   JAR DECK — interactive "Explore the range"
   Baseline = scroll-snap carousel (works everywhere, no JS).
   Enhancement = 3D cursor-reactive deck, added by JS only when
   the device has a fine pointer and motion is allowed.
   ============================================================ */
.jardeck {
  position: relative;
  max-width: var(--w-wide);
  margin-inline: auto;
}

/* --- 3D stage (hidden until JS upgrades to live mode) --- */
.jardeck__stage-wrap {
  display: none;
  position: relative;
  width: 100%;
  height: clamp(440px, 56vh, 600px);
  perspective: 1600px;
  perspective-origin: 50% 42%;
  cursor: crosshair;
  touch-action: pan-y;
  /* clean dark-editorial stage so the cutouts read as floating jars */
  background: radial-gradient(120% 95% at 50% 32%, #322619 0%, #1d160e 58%, #14100a 100%);
  border-radius: var(--r-4);
}
.jardeck--live .jardeck__stage-wrap { display: block; }
.jardeck--live .jardeck__carousel { display: none; }

.jardeck__stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
.jarpanel {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  transform-origin: center center;
}
/* Transparent cutout floats on the dark stage — sized by HEIGHT, width auto.
   The landscape canvas (1264×848, jar centred in transparent padding) overflows
   the panel width; neighbouring jars overlap and hide the side padding. */
.jarpanel__img {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: auto;
  max-width: none;
  transform: translateX(-50%);
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.55));
  transition: opacity var(--t-slow) var(--ease), filter var(--t-slow) var(--ease);
}
/* non-focused jars recede: dimmed via brightness, not transparency, so labels never bleed through */
.jarpanel--dim .jarpanel__img {
  opacity: 0.92;
  filter: saturate(0.55) brightness(0.6) drop-shadow(0 16px 24px rgba(0, 0, 0, 0.5));
}
/* the inspected jar: full colour + a soft amber glow */
.jarpanel--active .jarpanel__img {
  opacity: 1;
  filter: drop-shadow(0 0 44px rgba(232, 180, 90, 0.55)) drop-shadow(0 26px 36px rgba(0, 0, 0, 0.6));
}

/* --- Live caption (its own row BELOW the deck — never over the jars) --- */
.jardeck__caption {
  display: none;
  max-width: 56ch;
  margin: var(--s-32) auto 0;
  padding-inline: clamp(20px, 5vw, 56px);
  text-align: center;
  min-height: 108px;   /* reserve space so changing varietals doesn't shift layout */
}
.jardeck--live .jardeck__caption { display: block; }
.jardeck__caption-tier {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s-8);
}
.jardeck__caption-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
}
.jardeck__caption-profile {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-70);
  margin-top: var(--s-8);
  font-style: italic;
  max-width: 50ch;
  margin-inline: auto;
}
.jardeck__hint {
  display: none;
  margin-top: var(--s-16);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.jardeck--live .jardeck__hint { display: block; }
.jardeck__stage-wrap:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; }

/* --- Carousel baseline (mobile + no-JS + reduced-motion) --- */
.jardeck__carousel {
  display: flex;
  gap: var(--s-20);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--s-8) clamp(20px, 5vw, 56px) var(--s-24);
  scrollbar-width: thin;
}
.jarcard {
  position: relative;
  flex: 0 0 auto;
  width: min(78vw, 300px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--ink-15);
  padding: var(--s-24);
  isolation: isolate;
}
.jarcard--base { border-top: 1px solid var(--ink-30); }
.jarcard--mono { border-top: 1px solid var(--moss); }
.jarcard--premium { border-top: 1px solid var(--amber); }
.jarcard__tier {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-left: var(--s-12);
  border-left: 1px solid currentColor;
}
.jarcard--base .jarcard__tier { color: var(--ink); }
.jarcard--mono .jarcard__tier { color: var(--moss); }
.jarcard--premium .jarcard__tier { color: var(--amber); }
.jarcard__img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-20) 0;
  min-height: 200px;
  overflow: hidden;   /* clip the transparent side padding of the landscape cutout */
}
.jarcard__img img {
  height: 220px;      /* size by height so the cutout jar stays prominent */
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(33, 26, 18, 0.16));
}
.jarcard__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
}
.jarcard__profile {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-70);
  margin-top: var(--s-8);
  font-style: italic;
}
.jarcard--explore {
  border: 1px dashed var(--amber);
  background: rgba(201, 138, 45, 0.04);
  align-items: flex-start;
  justify-content: center;
  gap: var(--s-12);
}
.jarcard--explore__plus {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
}
.jarcard--explore__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
}
.jarcard--explore__link {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ----- PL Proof (asymmetric image + text) ----- */
.pl-proof {
  background: var(--bg);
  padding-block: 0;
  position: relative;
}
.pl-proof__inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(480px, 80vh, 720px);
}
@media (min-width: 1024px) {
  .pl-proof__inner { grid-template-columns: 7fr 5fr; }
}
.pl-proof__img {
  position: relative;
  background: var(--ink);
  min-height: 360px;
  overflow: hidden;
  isolation: isolate;
}
.pl-proof__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.pl-proof__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(33, 26, 18, 0.2) 100%);
  z-index: 2;
}
.pl-proof__text {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pl-proof__text .eyebrow { margin-bottom: var(--s-16); }
.pl-proof__text h3 { margin-bottom: var(--s-24); }
.pl-proof__text p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-80);
  margin-bottom: var(--s-32);
  max-width: 50ch;
}
.pl-proof__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-24) var(--s-32);
  padding: var(--s-24) 0;
  border-top: 1px solid var(--ink-15);
  border-bottom: 1px solid var(--ink-15);
  margin-bottom: var(--s-32);
}
.pl-proof__stat {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.pl-proof__stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
}
.pl-proof__stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-55);
}

/* ----- Collage band (Item 4 — near-full-bleed image + ink scrim + copy/stats) ----- */
.coll {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.coll__img { position: absolute; inset: 0; }
.coll__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.coll__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(20, 16, 10, 0.92) 0%,
    rgba(20, 16, 10, 0.78) 38%,
    rgba(20, 16, 10, 0.28) 70%,
    rgba(20, 16, 10, 0.10) 100%);
  pointer-events: none;
}
.coll__inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  width: 100%;
  padding: clamp(48px, 7vw, 72px) clamp(20px, 5vw, 64px);
  color: var(--bg);
}
.coll__inner .eyebrow { margin-bottom: var(--s-16); }
.coll__inner h3 { color: var(--bg); margin-bottom: var(--s-24); }
.coll__inner p { color: var(--cream-90); line-height: 1.7; max-width: 48ch; margin-bottom: var(--s-32); }
/* stats reused from .pl-proof, recoloured for the dark ground */
.coll .pl-proof__stats { border-color: rgba(250, 246, 239, 0.20); }
.coll .pl-proof__stat-num { color: var(--bg); }
.coll .pl-proof__stat-label { color: var(--cream-65); }
/* mobile: a heavier vertical scrim keeps the overlaid copy legible across the full width */
@media (max-width: 767px) {
  .coll__scrim {
    background: linear-gradient(180deg, rgba(20, 16, 10, 0.74) 0%, rgba(20, 16, 10, 0.86) 100%);
  }
}

/* ----- Sample pack ----- */
.sample-pack {
  background: var(--bg);
  padding-block: var(--s-80);
}
@media (min-width: 768px) { .sample-pack { padding-block: var(--s-120); } }
.sample-pack__card {
  max-width: var(--w-pull);
  margin-inline: auto;
  background: var(--bg);
  border: 2px solid var(--amber);
  padding: clamp(32px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-32);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(201, 138, 45, 0.2);
}
@media (min-width: 768px) {
  .sample-pack__card { grid-template-columns: 3fr 2fr; gap: var(--s-48); }
}
.sample-pack__num {
  position: absolute;
  top: var(--s-24);
  right: var(--s-32);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--amber);
  opacity: 0.6;
}
.sample-pack__text .eyebrow { margin-bottom: var(--s-16); }
.sample-pack__text h3 {
  margin-bottom: var(--s-16);
  position: relative;
  display: inline-block;
}
.sample-pack__text h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 32px;
  height: 2px;
  background: var(--amber);
}
.sample-pack__text p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-80);
  margin-top: var(--s-20);
  margin-bottom: var(--s-32);
  max-width: 48ch;
}
.sample-pack__chip {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: var(--s-20);
}
.sample-pack__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-12);
}
.sample-pack__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.sample-pack__visual img {
  max-height: 360px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(33, 26, 18, 0.20));
  animation: hero-float 7s ease-in-out infinite;
}

/* ----- WhatsApp icon helper ----- */
.wa-icon { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ----- Scroll reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ----- TODO voice marker (visible in dev only) ----- */
[data-voice-todo] { position: relative; }
[data-voice-todo]::before {
  content: '⚑ voice: Anoop rewrite pending';
  display: none;
  position: absolute;
  top: -22px;
  left: 0;
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 3px 8px;
  z-index: 5;
}
html.dev [data-voice-todo]::before { display: block; }

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

/* ============================================================
   PRODUCT CATALOGUE (catalog.html)
   Varietal-first engagement surface. Reuses the locked system:
   5 colours, 8pt spacing, sharp corners, whisper motion.
   ============================================================ */

/* ----- Catalogue page header (cream editorial, not a photo hero) ----- */
.cat-header {
  background: var(--bg);
  border-bottom: 1px solid var(--amber);
  padding-block: calc(64px + var(--s-48)) var(--s-56);
}
@media (min-width: 768px) {
  .cat-header { padding-block: calc(72px + var(--s-80)) var(--s-80); }
}
.cat-header__inner {
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.cat-header__title { margin: var(--s-24) 0; max-width: 13ch; }
.cat-header__lead { max-width: 62ch; }
.cat-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-8) 0;
  margin-top: var(--s-32);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.cat-header__meta li { display: inline-flex; align-items: center; }
.cat-header__meta li:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 12px;
  background: var(--ink-15);
  margin-inline: var(--s-16);
}

/* ----- Filter / lens bar (sticky under nav) ----- */
.cat-filter {
  position: sticky;
  top: 64px;
  z-index: calc(var(--z-nav) - 10);
  background: rgba(250, 246, 239, 0.92);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid var(--ink-10);
}
@media (min-width: 768px) { .cat-filter { top: 72px; } }
.cat-filter__inner {
  max-width: var(--w-wide);
  margin-inline: auto;
  padding: var(--s-16) clamp(20px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-12) var(--s-32);
}
.cat-filter__groups {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-12) var(--s-24);
}
.cat-filter__group { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-8); }
.cat-filter__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-right: var(--s-4);
}
.cat-filter__chip {
  height: 34px;
  padding: 0 var(--s-16);
  border: 1px solid var(--ink-15);
  border-radius: var(--r-2);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-70);
  background: transparent;
  transition: border-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              background-color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease);
}
.cat-filter__chip:hover { border-color: var(--ink); color: var(--ink); }
.cat-filter__chip:active { transform: scale(0.97); }
.cat-filter__chip[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cat-filter__chip--signature[aria-pressed="true"],
.cat-filter__chip--wellness[aria-pressed="true"] { background: var(--moss); border-color: var(--moss); color: var(--bg); }
.cat-filter__chip--premium[aria-pressed="true"] { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.cat-filter__status { display: flex; align-items: center; gap: var(--s-16); }
.cat-filter__count { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-55); }
.cat-filter__clear {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-underline-offset: 3px;
}
.cat-filter__clear:hover { color: var(--ink); }
.cat-filter__clear[hidden] { display: none; }

/* ----- Catalogue grid ----- */
.catalog { padding-block: var(--s-56) var(--s-80); }
@media (min-width: 768px) { .catalog { padding-block: var(--s-80) var(--s-120); } }
.cat-group { margin-top: var(--s-64); }
.cat-group:first-child { margin-top: 0; }
.cat-group.is-empty { display: none; }
.cat-group__head {
  display: flex;
  align-items: baseline;
  gap: var(--s-16);
  margin-bottom: var(--s-32);
  padding-bottom: var(--s-16);
  border-bottom: 1px solid var(--ink-15);
}
.cat-group__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cat-group__count {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-24);
}
@media (min-width: 640px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1440px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
/* a category with a single varietal centres cleanly instead of stranding one card on the left */
@media (min-width: 640px) {
  .cat-grid--solo { grid-template-columns: minmax(0, 360px); justify-content: center; }
}

/* ----- Varietal card ----- */
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--ink-15);
  border-top: 3px solid var(--ink-30);
  transition: border-color var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              transform var(--t-base) var(--ease);
}
.cat-card:hover {
  border-color: var(--ink);
  box-shadow: 0 30px 56px -28px rgba(33, 26, 18, 0.22);
  transform: translateY(-3px);
}
.cat-card.is-hidden { display: none; }
.cat-card--base      { border-top-color: var(--ink); }
.cat-card--signature { border-top-color: var(--moss); }
.cat-card--premium   { border-top-color: var(--amber); }
.cat-card--wellness  { border-top-color: var(--moss); }

.cat-card__head {
  display: flex;
  align-items: center;
  gap: var(--s-12);
  flex-wrap: wrap;
  padding: var(--s-20) var(--s-24) 0;
}
.cat-card__tier {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-left: var(--s-12);
  border-left: 1px solid currentColor;
}
.cat-card--base .cat-card__tier      { color: var(--ink); }
.cat-card--signature .cat-card__tier { color: var(--moss); }
.cat-card--premium .cat-card__tier   { color: var(--amber); }
.cat-card--wellness .cat-card__tier  { color: var(--moss); }
.cat-card__type {
  margin-left: auto;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-55);
  padding: 3px var(--s-8);
  border: 1px solid var(--ink-15);
  border-radius: var(--r-2);
}

.cat-card__media {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-16) var(--s-24) 0;
  overflow: hidden;
}
.cat-card__media--swatch { padding: var(--s-16) 0 0; }
.cat-card__media img {
  max-height: 200px;
  max-width: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(33, 26, 18, 0.10));
}

.cat-card__name {
  padding: var(--s-16) var(--s-24) 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}
.cat-card__profile {
  padding: var(--s-8) var(--s-24) var(--s-16);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-70);
}

/* opportunity row — the commercial heart */
.cat-card__opportunity {
  margin: 0 var(--s-24) var(--s-16);
  padding: var(--s-16) 0;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
}
.cat-opp { display: flex; flex-direction: column; gap: var(--s-8); }
.cat-opp--retail { grid-column: 1 / -1; }
.cat-opp__label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.cat-opp__value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
}
.cat-opp__value small {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-55);
  margin-left: var(--s-4);
}
.cat-opp__value--quote {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--amber);
  font-style: normal;
}
.cat-meter { display: flex; gap: 4px; align-items: center; height: 1rem; }
.cat-meter__dot { width: 9px; height: 9px; background: var(--ink-15); }
.cat-meter--demand .cat-meter__dot.is-on { background: var(--moss); }
.cat-meter--margin .cat-meter__dot.is-on { background: var(--amber); }

/* use-case chips */
.cat-card__chips { display: flex; flex-wrap: wrap; gap: var(--s-8); padding: 0 var(--s-24) var(--s-16); }
.cat-chip {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-70);
  background: var(--ink-06);
  padding: 4px var(--s-12);
  border-radius: var(--r-2);
}

/* actions */
.cat-card__actions {
  margin-top: auto;
  display: flex;
  align-items: stretch;
  gap: var(--s-8);
  padding: var(--s-16) var(--s-24);
  border-top: 1px solid var(--ink-10);
}
.cat-card__add {
  flex: 1;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-8);
  border: 1px solid var(--ink);
  border-radius: var(--r-2);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: transparent;
  transition: background-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease);
}
.cat-card__add:hover { background: var(--ink); color: var(--bg); }
.cat-card__add:active { transform: scale(0.98); }
.cat-card__add[aria-pressed="true"] { background: var(--amber); border-color: var(--amber); color: var(--bg); }
.cat-card__add[aria-pressed="true"]:hover { background: var(--amber-light); border-color: var(--amber-light); color: var(--ink); }
.cat-card__add-ico { width: 16px; height: 16px; flex-shrink: 0; }

/* expand / detail — native <details>, smooth-open via grid-rows (mirrors .faq-item) */
.cat-card__detail { border-top: 1px solid var(--ink-10); }
.cat-card__expand {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 46px;
  margin: var(--s-16) var(--s-24) var(--s-24);
  padding: 0 var(--s-16);
  border: 1px solid var(--ink-30, rgba(33, 26, 18, 0.28));
  border-radius: var(--r-2);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;                       /* sentence case reads as an action */
  color: var(--ink);
  background: transparent;
  transition: border-color var(--t-base) var(--ease),
              background var(--t-base) var(--ease),
              color var(--t-base) var(--ease);
}
.cat-card__expand::-webkit-details-marker { display: none; }
.cat-card__expand:hover { border-color: var(--ink); background: rgba(33, 26, 18, 0.04); }
.cat-card__chev { width: 15px; height: 15px; flex-shrink: 0; transition: transform var(--t-slow) var(--ease); }
.cat-card__detail[open] .cat-card__expand { border-color: var(--amber); color: var(--amber); }
.cat-card__detail[open] .cat-card__chev { transform: rotate(180deg); }
.cat-card__detail-inner {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow) var(--ease);
}
.cat-card__detail[open] .cat-card__detail-inner { grid-template-rows: 1fr; }
.cat-card__detail-clip { overflow: hidden; min-height: 0; }
.cat-card__dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: var(--s-8) var(--s-16);
  padding: 0 var(--s-24) var(--s-24);
  font-size: 0.8125rem;
}
.cat-card__dl dt {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.5625rem;
  color: var(--ink-55);
  padding-top: 3px;
}
.cat-card__dl dd { color: var(--ink-80); line-height: 1.5; }
.cat-card__dl dd.cat-card__tasting { font-style: italic; }

/* ----- Branded swatch tile (varietals without a jar render) ----- */
.cat-swatch {
  position: relative;
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(130% 90% at 72% 18%, rgba(201, 138, 45, 0.22) 0%, transparent 58%),
    linear-gradient(158deg, var(--moss) 0%, rgba(33, 26, 18, 0.97) 100%);
}
.cat-swatch--base {
  background:
    radial-gradient(130% 90% at 72% 18%, rgba(201, 138, 45, 0.30) 0%, transparent 60%),
    linear-gradient(158deg, rgba(201, 138, 45, 0.16) 0%, rgba(33, 26, 18, 0.05) 100%);
}
.cat-swatch--premium {
  background:
    radial-gradient(130% 90% at 72% 18%, rgba(201, 138, 45, 0.34) 0%, transparent 62%),
    linear-gradient(158deg, var(--ink) 0%, rgba(201, 138, 45, 0.30) 100%);
}
.cat-swatch__initial {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'wght' 400;
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(250, 246, 239, 0.42);   /* confident monogram — reads as an intentional tile, not a placeholder */
  user-select: none;
}
.cat-swatch--base .cat-swatch__initial { color: rgba(33, 26, 18, 0.32); }
.cat-swatch::after {
  content: '';
  position: absolute;
  top: var(--s-16);
  left: var(--s-16);
  width: 34px;
  height: 34px;
  background: url("../PHOTOS/GlobalJobyLogo.svg") center / contain no-repeat;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.cat-swatch--base::after { opacity: 0.6; }

/* ----- Empty state ----- */
.catalog__empty { text-align: center; padding: var(--s-64) clamp(20px, 5vw, 56px); }
.catalog__empty[hidden] { display: none; }
.catalog__empty-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-bottom: var(--s-12); }
.catalog__empty-sub { color: var(--ink-70); max-width: 48ch; margin: 0 auto var(--s-32); }
.catalog__empty-actions { display: flex; flex-wrap: wrap; gap: var(--s-12); justify-content: center; }

/* ----- Made-to-order infusion band ----- */
.cat-custom { background: var(--bg); padding-block: var(--s-64); padding-inline: clamp(20px, 5vw, 56px); }
@media (min-width: 768px) { .cat-custom { padding-block: var(--s-96); } }
.cat-custom__card {
  max-width: var(--w-pull);
  margin-inline: auto;
  border: 2px solid var(--amber);
  box-shadow: inset 0 0 0 1px rgba(201, 138, 45, 0.20);
  padding: clamp(28px, 5vw, 56px);
}
.cat-custom__text .eyebrow { margin-bottom: var(--s-16); }
.cat-custom__text h2 { margin-bottom: var(--s-16); }
.cat-custom__text p { font-size: 1.0625rem; line-height: 1.65; color: var(--ink-80); max-width: 60ch; margin-bottom: var(--s-32); }
.cat-custom__actions { display: flex; flex-wrap: wrap; gap: var(--s-12); }

/* ----- Formats block (vcard-derived) ----- */
.cat-formats { background: var(--bg); }
.cat-formats__grid {
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-24);
}
@media (min-width: 640px)  { .cat-formats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cat-formats__grid { grid-template-columns: repeat(4, 1fr); } }
.cat-format {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--ink-15);
  padding: var(--s-32);
  transition: border-color var(--t-base) var(--ease);
}
.cat-format:hover { border-color: var(--ink); }
.cat-format__icon { width: 32px; height: 32px; color: var(--ink); margin-bottom: var(--s-24); transition: color var(--t-base) var(--ease); }
.cat-format:hover .cat-format__icon { color: var(--amber); }
.cat-format__icon svg { width: 100%; height: 100%; }
.cat-format__tag { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-bottom: var(--s-12); }
.cat-format__title { margin-bottom: var(--s-12); }
.cat-format__spec { font-size: 0.875rem; line-height: 1.6; color: var(--ink-70); margin-bottom: var(--s-16); flex: 1; }
.cat-format__use { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-55); }

/* ----- Build-your-range tray (fixed dock) ----- */
.cat-tray {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-overlay);
  background: rgba(250, 246, 239, 0.94);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border-top: 1px solid var(--amber);
  box-shadow: 0 -14px 36px -22px rgba(33, 26, 18, 0.28);
  padding-bottom: env(safe-area-inset-bottom);
}
.cat-tray[hidden] { display: none; }
.cat-tray__inner {
  max-width: var(--w-wide);
  margin-inline: auto;
  padding: var(--s-12) clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-12) var(--s-24);
}
.cat-tray__toggle {
  order: 1;
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
}
.cat-tray__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 var(--s-8);
  background: var(--amber);
  color: var(--bg);
  border-radius: var(--r-2);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
}
.cat-tray__chev { width: 18px; height: 18px; transition: transform var(--t-base) var(--ease); }
.cat-tray.is-open .cat-tray__chev { transform: rotate(180deg); }
.cat-tray__actions { order: 2; margin-left: auto; display: flex; gap: var(--s-12); flex-shrink: 0; }
.cat-tray__actions .btn { height: 44px; }
.cat-tray__body { order: 3; flex-basis: 100%; display: none; }
.cat-tray.is-open .cat-tray__body { display: block; padding-top: var(--s-4); }
.cat-tray__summary { font-size: 0.8125rem; color: var(--ink-70); margin-bottom: var(--s-12); }
.cat-tray__summary strong { color: var(--ink); font-weight: 600; }
.cat-tray__chips { display: flex; flex-wrap: wrap; gap: var(--s-8); }
.cat-tray__chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-4);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--ink-06);
  border: 1px solid var(--ink-15);
  padding: 4px var(--s-4) 4px var(--s-12);
  border-radius: var(--r-2);
}
.cat-tray__chip-tier { width: 8px; height: 8px; flex-shrink: 0; }
.cat-tray__chip-tier--base      { background: var(--ink); }
.cat-tray__chip-tier--signature { background: var(--moss); }
.cat-tray__chip-tier--premium   { background: var(--amber); }
.cat-tray__chip-tier--wellness  { background: var(--moss); }
.cat-tray__chip-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--ink-55);
  transition: color var(--t-base) var(--ease);
}
.cat-tray__chip-remove:hover { color: var(--amber); }
.cat-tray__chip-remove svg { width: 12px; height: 12px; }
@media (min-width: 900px) {
  .cat-tray__toggle { order: 0; }
  .cat-tray__chev { display: none; }
  .cat-tray__body { order: 0; display: block; flex: 1; flex-basis: auto; padding-top: 0; }
  .cat-tray__summary { margin-bottom: var(--s-8); }
}
/* keep page content clear of the fixed tray */
body.has-tray { padding-bottom: 76px; }
@media (max-width: 899px) { body.has-tray { padding-bottom: 64px; } }

/* ----- Catalogue no-JS fallback ----- */
.catalog__noscript {
  padding-block: var(--s-48);
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.catalog__noscript ul { margin-top: var(--s-24); display: grid; gap: var(--s-12); }
.catalog__noscript li { font-size: 0.9375rem; line-height: 1.5; color: var(--ink-80); }
.catalog__noscript a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--amber); text-underline-offset: 3px; }

/* ============================================================
   SHARED PAGE HEADER (cream editorial — catalogue, quality, …)
   ============================================================ */
.page-header {
  background: var(--bg);
  border-bottom: 1px solid var(--amber);
  padding-block: calc(64px + var(--s-48)) var(--s-56);
}
@media (min-width: 768px) {
  .page-header { padding-block: calc(72px + var(--s-80)) var(--s-80); }
}
.page-header__inner {
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.page-header__title { margin: var(--s-24) 0; max-width: 15ch; }
.page-header__lead { max-width: 62ch; }
.page-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-8) 0;
  margin-top: var(--s-32);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.page-header__meta li { display: inline-flex; align-items: center; }
.page-header__meta li:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 12px;
  background: var(--ink-15);
  margin-inline: var(--s-16);
}

/* ============================================================
   QUALITY & CERTIFICATIONS (quality.html)
   ============================================================ */

/* ----- Trust context (moss band — the design system's trust colour) ----- */
.q-context {
  background: var(--moss);
  color: var(--bg);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.q-context::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(33, 26, 18, 0) 0%, rgba(33, 26, 18, 0.35) 75%);
  pointer-events: none;
  z-index: 0;
}
.q-context__inner {
  position: relative;
  z-index: 1;
  max-width: var(--w-pull);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.q-context__statement {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--bg);
  margin: var(--s-16) 0 var(--s-24);
  max-width: 20ch;
  text-wrap: balance;
}
.q-context__body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--cream-80);
  max-width: 64ch;
}

/* ----- Quality sections ----- */
.q-section { background: var(--bg); }
.q-section--alt { background: rgba(201, 138, 45, 0.035); }

/* ----- Proof ladder (numbered testing hierarchy) ----- */
.proof-ladder {
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.proof-rung {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--s-8) var(--s-20);
  padding: var(--s-32) 0;
  border-top: 1px solid var(--ink-15);
  align-items: start;
}
.proof-rung:last-child { border-bottom: 1px solid var(--ink-15); }
@media (min-width: 768px) {
  .proof-rung {
    grid-template-columns: 64px 1fr auto;
    gap: var(--s-16) var(--s-32);
  }
}
.proof-rung__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-variation-settings: 'opsz' 96, 'wght' 400;
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .proof-rung__num { font-size: 2.25rem; } }
.proof-rung__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--s-8);
}
.proof-rung__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-70);
  max-width: 64ch;
}
.proof-rung__tag {
  grid-column: 2;
  justify-self: start;
  margin-top: var(--s-8);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  padding-left: var(--s-12);
  border-left: 2px solid var(--moss);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .proof-rung__tag { grid-column: auto; justify-self: end; align-self: start; margin-top: 0; }
}
.proof-rung__tag--request { color: var(--amber); border-left-color: var(--amber); }

/* ----- Credentials grid (static info badges — NOT request/download buttons) ----- */
.cred-grid {
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
}
@media (min-width: 768px)  { .cred-grid { grid-template-columns: repeat(3, 1fr); } }
.cred {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  justify-content: center;
  min-height: 88px;
  padding: var(--s-20) var(--s-24);
  background: var(--bg);
  border-left: 2px solid var(--moss);
}
.cred__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.cred__value {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--moss);
}
.q-note {
  max-width: var(--w-default);
  margin: var(--s-40) auto 0;
  padding-inline: clamp(20px, 5vw, 56px);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-70);
  max-width: 72ch;
}

/* ----- Reports chips ----- */
.reports {
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-12);
}
.report-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--ink-06);
  border: 1px solid var(--ink-15);
  padding: var(--s-12) var(--s-20);
  border-radius: var(--r-2);
}
.report-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--moss);
  flex-shrink: 0;
}

/* ============================================================
   QUOTE BUILDER (quote-builder.html) — the site's form layer
   ============================================================ */

/* ----- Step indicator (sticky under nav) ----- */
.qb-steps-wrap {
  position: sticky;
  top: 64px;
  z-index: calc(var(--z-nav) - 10);
  background: rgba(250, 246, 239, 0.92);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid var(--ink-10);
}
@media (min-width: 768px) { .qb-steps-wrap { top: 72px; } }
.qb-steps {
  display: flex;
  gap: var(--s-4);
  max-width: var(--w-default);
  margin-inline: auto;
  padding: 0 clamp(20px, 5vw, 56px);
  overflow-x: auto;
  scrollbar-width: none;
}
.qb-steps::-webkit-scrollbar { display: none; }
.qb-step-tab {
  flex: 1 0 auto;
  min-width: 92px;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-16) 0 var(--s-12);
  border-top: 2px solid var(--ink-15);
  color: var(--ink-55);
  transition: border-color var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.qb-step-tab[role="button"] { cursor: pointer; }
.qb-step-tab[aria-disabled="true"] { cursor: default; }
.qb-step-tab__n { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--ink-30); line-height: 1; }
.qb-step-tab__label { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.qb-step-tab.is-done { border-top-color: var(--moss); color: var(--ink-70); }
.qb-step-tab.is-done .qb-step-tab__n { color: var(--moss); }
.qb-step-tab.is-current { border-top-color: var(--amber); color: var(--ink); }
.qb-step-tab.is-current .qb-step-tab__n { color: var(--amber); }

/* ----- Form shell + steps ----- */
.qb { background: var(--bg); }
.qb__inner {
  max-width: var(--w-default);
  margin-inline: auto;
  padding: var(--s-64) clamp(20px, 5vw, 56px) var(--s-80);
}
.qb-step__title { margin-bottom: var(--s-12); outline: none; }
.qb-step__intro { font-size: 1.0625rem; line-height: 1.6; color: var(--ink-70); max-width: 60ch; margin-bottom: var(--s-40); }
.qb-fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.qb-step__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-16);
  margin-top: var(--s-48);
  padding-top: var(--s-24);
  border-top: 1px solid var(--ink-15);
}

/* ----- Chosen chips (step 1) ----- */
.qb-chosen { margin-bottom: var(--s-24); }
.qb-chosen__empty { font-size: 0.9375rem; color: var(--ink-55); font-style: italic; }
.qb-chosen__list { display: flex; flex-wrap: wrap; gap: var(--s-8); }

/* ----- Varietal picker grid (step 1) ----- */
.qb-pick-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-16); }
@media (min-width: 640px)  { .qb-pick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .qb-pick-grid { grid-template-columns: repeat(3, 1fr); } }
.qb-pick-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--ink-15);
  border-top: 3px solid var(--ink-30);
  padding: var(--s-20) var(--s-24);
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.qb-pick-card:hover { border-color: var(--ink); box-shadow: 0 20px 40px -28px rgba(33,26,18,0.20); }
.qb-pick-card.cat-card--base      { border-top-color: var(--ink); }
.qb-pick-card.cat-card--signature { border-top-color: var(--moss); }
.qb-pick-card.cat-card--premium   { border-top-color: var(--amber); }
.qb-pick-card.cat-card--wellness  { border-top-color: var(--moss); }
.qb-pick-card__tier { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-55); }
.qb-pick-card__name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 500; color: var(--ink); margin: var(--s-8) 0; }
.qb-pick-card__profile { font-size: 0.8125rem; line-height: 1.5; color: var(--ink-70); margin-bottom: var(--s-16); flex: 1; }
.qb-pick-card__add {
  align-self: flex-start;
  height: 38px; padding: 0 var(--s-16);
  border: 1px solid var(--ink); border-radius: var(--r-2);
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 600; color: var(--ink); background: transparent;
  transition: background-color var(--t-base) var(--ease), color var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.qb-pick-card__add:hover { background: var(--ink); color: var(--bg); }
.qb-pick-card__add[aria-pressed="true"] { background: var(--amber); border-color: var(--amber); color: var(--bg); }

/* ----- Per-variant config rows (steps 2 & 4) ----- */
.qb-config-row {
  display: grid; grid-template-columns: 1fr; gap: var(--s-16);
  padding: var(--s-24) 0; border-top: 1px solid var(--ink-15);
}
.qb-config-row:last-child { border-bottom: 1px solid var(--ink-15); }
@media (min-width: 768px) { .qb-config-row { grid-template-columns: 220px 1fr; gap: var(--s-32); align-items: start; } }
.qb-config-row__id { display: flex; align-items: center; flex-wrap: wrap; gap: var(--s-8); }
.qb-config-row__name { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 500; color: var(--ink); }
.qb-config-row__sub { width: 100%; font-size: 0.75rem; color: var(--ink-55); }
.qb-config-row__controls { display: grid; gap: var(--s-16); }

/* ----- Generic field ----- */
.qb-field { display: flex; flex-direction: column; gap: var(--s-8); }
.qb-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-55); }
.qb-help-inline { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--ink-55); }
.qb-input {
  height: 48px; padding: 0 var(--s-16);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--ink-30); border-radius: var(--r-2);
  transition: border-color var(--t-base) var(--ease);
}
.qb-input::placeholder { color: var(--ink-30); }
.qb-input:hover { border-color: var(--ink-55); }
.qb-input:focus-visible { border-color: var(--amber); }

/* ----- Segmented material control + size buttons (button role=radio, JS-driven) ----- */
.qb-seg { display: inline-flex; border: 1px solid var(--ink-30); border-radius: var(--r-2); overflow: hidden; }
.qb-seg__btn {
  min-height: 44px; padding: 0 var(--s-24);
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; color: var(--ink); background: transparent;
  transition: background-color var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.qb-seg__btn + .qb-seg__btn { border-left: 1px solid var(--ink-30); }
.qb-seg__btn:hover { background: var(--ink-06); }
.qb-seg__btn[aria-checked="true"] { background: var(--ink); color: var(--bg); }
.qb-size { display: flex; flex-wrap: wrap; gap: var(--s-8); }
.qb-size__btn {
  position: relative;
  min-height: 44px; padding: var(--s-8) var(--s-16);
  display: inline-flex; flex-direction: column; align-items: flex-start; justify-content: center;
  border: 1px solid var(--ink-15); border-radius: var(--r-2);
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; color: var(--ink); background: var(--bg);
  transition: border-color var(--t-base) var(--ease), background-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.qb-size__btn:hover { border-color: var(--ink); }
.qb-size__btn[aria-checked="true"] { border-color: var(--amber); background: rgba(201,138,45,0.06); box-shadow: inset 0 0 0 1px var(--amber); }
.qb-size__rec { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-top: 2px; }

/* ----- Label-tier selectable cards (step 3 — native radio in a label) ----- */
.qb-options { display: grid; gap: var(--s-12); }
.qb-options--tiers { grid-template-columns: 1fr; }
@media (min-width: 700px) { .qb-options--tiers { grid-template-columns: repeat(3, 1fr); } }
.qb-opt {
  position: relative; display: flex; flex-direction: column; gap: var(--s-8);
  padding: var(--s-20) var(--s-24); min-height: 120px;
  background: var(--bg); border: 1px solid var(--ink-15); border-top: 3px solid var(--ink-30);
  border-radius: var(--r-2); cursor: pointer;
  transition: border-color var(--t-base) var(--ease), background-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.qb-opt--economy { border-top-color: var(--ink); }
.qb-opt--mid { border-top-color: var(--moss); }
.qb-opt--premium { border-top-color: var(--amber); }
.qb-opt__input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.qb-opt:hover { border-color: var(--ink); }
.qb-opt:has(.qb-opt__input:checked) { border-color: var(--amber); background: rgba(201,138,45,0.05); box-shadow: inset 0 0 0 1px var(--amber); }
.qb-opt:has(.qb-opt__input:focus-visible) { outline: 2px solid var(--amber); outline-offset: 2px; }
.qb-opt__title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 500; color: var(--ink); }
.qb-opt__meta { font-size: 0.8125rem; line-height: 1.5; color: var(--ink-70); flex: 1; }
.qb-opt__note { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-55); }

/* ----- Quantity stepper ----- */
.qb-stepper { display: inline-flex; align-items: stretch; border: 1px solid var(--ink-30); border-radius: var(--r-2); width: max-content; }
.qb-stepper:focus-within { border-color: var(--amber); }
.qb-stepper__btn {
  width: 46px; min-height: 46px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--ink); transition: background-color var(--t-base) var(--ease);
}
.qb-stepper__btn:hover { background: var(--ink-06); }
.qb-stepper__input {
  width: 84px; text-align: center; border: 0; border-inline: 1px solid var(--ink-15);
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 500; color: var(--ink); background: transparent;
  -moz-appearance: textfield;
}
.qb-stepper__input::-webkit-outer-spin-button, .qb-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qb-stepper__unit { display: inline-flex; align-items: center; padding-inline: var(--s-12); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-55); }
.qb-moq-note { margin-top: var(--s-12); font-size: 0.8125rem; line-height: 1.5; color: var(--ink-70); border-left: 2px solid var(--moss); padding-left: var(--s-12); max-width: 52ch; }
.qb-moq-note[hidden] { display: none; }

/* ----- Validation ----- */
.qb-error { font-size: 0.8125rem; font-weight: 600; color: var(--amber); display: flex; align-items: center; gap: var(--s-8); margin-top: var(--s-16); }
.qb-error[hidden] { display: none; }
.qb-error::before { content: '!'; display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border: 1.5px solid var(--amber); border-radius: 50%; font-size: 0.6875rem; font-weight: 700; flex-shrink: 0; }

/* ----- Estimate panel (step 5) ----- */
.qb-estimate {
  max-width: var(--w-pull); margin-inline: auto;
  border: 2px solid var(--amber); box-shadow: inset 0 0 0 1px rgba(201,138,45,0.20);
  padding: clamp(24px, 4vw, 48px);
  min-height: 180px;
}
.qb-est-head { margin-bottom: var(--s-16); }
.qb-est-row { display: grid; grid-template-columns: 1fr auto; gap: var(--s-8) var(--s-24); align-items: baseline; padding: var(--s-16) 0; border-top: 1px solid var(--ink-10); }
.qb-est-row:first-of-type { border-top: 0; }
.qb-est-row__name { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 500; color: var(--ink); }
.qb-est-row__spec { font-size: 0.75rem; color: var(--ink-55); margin-top: 2px; }
.qb-est-row__jar { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--ink); text-align: right; white-space: nowrap; }
.qb-est-row__jar small { display: block; font-family: var(--font-body); font-size: 0.625rem; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-55); }
.qb-est-row__jar--enquire { color: var(--amber); font-size: 1rem; }
.qb-est-flag { display: inline-block; font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); border: 1px solid var(--moss); border-radius: var(--r-2); padding: 1px 6px; margin-left: var(--s-4); }
.qb-est-total { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s-16); margin-top: var(--s-16); padding-top: var(--s-20); border-top: 2px solid var(--amber); }
.qb-est-total__label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-55); }
.qb-est-total__val { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 400; color: var(--ink); white-space: nowrap; }
.qb-est__moq, .qb-est__disclaimer, .qb-est__spec { font-size: 0.8125rem; line-height: 1.6; color: var(--ink-70); margin-top: var(--s-16); }
.qb-est__spec { font-size: 1rem; color: var(--ink); }
.qb-est__actions { display: flex; flex-wrap: wrap; gap: var(--s-12); margin-top: var(--s-24); }

/* loading skeleton */
.qb-skel { height: 44px; margin-bottom: var(--s-12); border-radius: var(--r-2); background: var(--ink-06); position: relative; overflow: hidden; }
@media (prefers-reduced-motion: no-preference) {
  .qb-skel::after { content: ''; position: absolute; inset: 0; transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(201,138,45,0.10), transparent); animation: qb-shimmer 1.3s infinite; }
  @keyframes qb-shimmer { 100% { transform: translateX(100%); } }
}

/* ----- Lead step ----- */
.qb-lead { display: grid; grid-template-columns: 1fr; gap: var(--s-24); max-width: 520px; }
@media (min-width: 640px) { .qb-lead { grid-template-columns: 1fr 1fr; } }
.qb-lead__actions { display: flex; flex-wrap: wrap; gap: var(--s-12); margin-top: var(--s-32); }

/* ----- Sticky summary (extends .cat-tray) ----- */
.qb-summary__spec { font-size: 0.8125rem; color: var(--ink-70); }

/* ----- No-JS fallback ----- */
.qb-noscript { padding-block: var(--s-48); }
.qb-noscript p { max-width: 70ch; margin-bottom: var(--s-16); line-height: 1.6; color: var(--ink-80); }
.qb-noscript__actions { display: flex; flex-wrap: wrap; gap: var(--s-12); }

/* ============================================================
   LEGAL PAGES (terms / privacy / refunds / shipping / disclaimer)
   Long-form readable prose on the locked system.
   ============================================================ */
.legal { background: var(--bg); }
.legal__inner {
  max-width: var(--w-narrow);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-block: var(--s-48) var(--s-96);
}
.legal__meta {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--ink-55);
  margin-bottom: var(--s-24);
}
/* draft-pending-review banner */
.legal-note {
  border: 1px solid var(--amber);
  background: rgba(201, 138, 45, 0.06);
  border-radius: var(--r-2);
  padding: var(--s-16) var(--s-20);
  margin-bottom: var(--s-40);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-80);
}
.legal-note strong { color: var(--ink); font-weight: 600; }
/* highlighted blanks the owner / lawyer must fill */
.legal-confirm {
  background: rgba(201, 138, 45, 0.20);
  color: var(--ink);
  font-weight: 600;
  padding: 0 4px;
  border-radius: 2px;
}
.legal__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: var(--s-48) 0 var(--s-16);
}
.legal__inner h2:first-of-type { margin-top: var(--s-8); }
.legal__inner h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
  margin: var(--s-24) 0 var(--s-8);
}
.legal__inner p { font-size: 1rem; line-height: 1.7; color: var(--ink-80); margin-bottom: var(--s-16); max-width: 72ch; }
.legal__inner ul, .legal__inner ol { margin: 0 0 var(--s-16); padding-left: var(--s-24); max-width: 72ch; }
.legal__inner ul { list-style: disc; }
.legal__inner ol { list-style: decimal; }
.legal__inner li { font-size: 1rem; line-height: 1.7; color: var(--ink-80); margin-bottom: var(--s-8); }
.legal__inner strong { color: var(--ink); font-weight: 600; }
.legal__inner a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-underline-offset: 3px;
}
.legal__inner a:hover { color: var(--amber); }
.legal__inner dl { margin: 0 0 var(--s-16); }
.legal__inner dt { font-weight: 600; color: var(--ink); margin-top: var(--s-12); }
.legal__inner dd { margin: 0 0 var(--s-8); color: var(--ink-80); line-height: 1.7; }

/* ----- Footer legal links row ----- */
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--s-8) var(--s-16); }
.footer__legal a { font-size: 0.75rem; color: var(--ink-55); transition: color var(--t-base) var(--ease); }
.footer__legal a:hover { color: var(--ink); }
