/* =====================================================================
   HON I'M HOME, DESIGN SYSTEM
   ---------------------------------------------------------------------
   The brief: a small-batch, family-run honey operation. The trap:
   defaulting to "wellness brown + warm gold on cream paper" because
   that's what every honey-adjacent brand looks like. We rejected that
   on purpose. Instead, this site borrows the confidence of brands like
   Activist Manuka and Grillo's: high-contrast inky ground, ONE
   exclamation-mark accent (saturated yellow), heavy display type
   (Archivo Black), and editorial layout moves you'd never get from a
   shopify theme.

   TOKENS
   - Color: near-black ink ground (#0E0E0E), saturated honey-yellow
     accent (#FFD400), bone-white type, muted greys for hierarchy.
     The yellow is the exclamation point: hero accent word, badges,
     callouts. Buttons use ink-on-yellow to clear AA contrast.
   - Type: Archivo Black for display (chunky, opinionated, anti-precious),
     Inter for body. Negative tracking on display, tabular nums in
     prices/stats.
   - Spacing: 8-step scale on base-8.
   - Radius: 'soft' language locked: 4 / 8 / 14 / 20px. Pills only for
     genuinely pill UI (filter chips).
   - Motion: out-quint for entrances, out-expo-like for hover.
   ===================================================================== */

:root {
  /* color */
  --color-bg:        var(--theme-background, #0E0E0E);
  --color-bg-2:      #161616;  /* slightly raised dark surface */
  --color-bg-3:      #1F1F1F;  /* card surface on dark */
  --color-ink:       var(--theme-text, #F5F5F5);
  --color-ink-2:     #E8E8E8;
  --color-muted:     var(--theme-muted, #A0A0A0);
  --color-muted-2:   #707070;
  --color-border:    var(--theme-border, #2A2A2A);
  --color-border-2:  #3A3A3A;
  --color-accent:    var(--theme-accent, #FFD400);
  --color-accent-2:  #FFE45A;
  --color-paper:     #F7F4EC;  /* off-white used for inverted bands */
  --color-paper-2:   #EFEAD9;

  /* radius (soft) */
  --radius-sm:    4px;
  --radius-base:  var(--theme-radius, 8px);
  --radius-lg:    14px;
  --radius-xl:    20px;
  --radius-full:  9999px;

  /* spacing */
  --space-1:  calc(4px * var(--theme-density, 1));
  --space-2:  calc(8px * var(--theme-density, 1));
  --space-3:  calc(12px * var(--theme-density, 1));
  --space-4:  calc(16px * var(--theme-density, 1));
  --space-5:  calc(24px * var(--theme-density, 1));
  --space-6:  calc(32px * var(--theme-density, 1));
  --space-7:  calc(48px * var(--theme-density, 1));
  --space-8:  calc(64px * var(--theme-density, 1));
  --space-9:  calc(96px * var(--theme-density, 1));
  --space-10: calc(128px * var(--theme-density, 1));
  --space-11: calc(160px * var(--theme-density, 1));

  /* type */
  --font-display: var(--theme-heading-font, 'Archivo Black', 'Inter Display', system-ui, sans-serif);
  --font-body:    var(--theme-body-font, 'Inter', system-ui, -apple-system, sans-serif);

  --fs-eyebrow: 0.75rem;
  --fs-body:    1rem;
  --fs-lede:    clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  --fs-h4:      clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  --fs-h3:      clamp(1.35rem, 1.15rem + 0.8vw, 1.85rem);
  --fs-h2:      clamp(1.85rem, 1.4rem + 2vw, 3rem);
  --fs-h1:      clamp(2.25rem, 1.4rem + 4vw, 3.75rem);
  --fs-display: clamp(2.75rem, 1.6rem + 5vw, 5rem);

  /* motion */
  --ease-out-quint: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo:  cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-in-quint:  cubic-bezier(0.7, 0, 0.84, 0);

  --dur-snap: calc(120ms * var(--theme-motion, 1));
  --dur-hover: calc(200ms * var(--theme-motion, 1));
  --dur-reveal: calc(500ms * var(--theme-motion, 1));
  --dur-scene: calc(400ms * var(--theme-motion, 1));

  /* shadow */
  --shadow-1: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-2: 0 10px 30px -10px rgba(0,0,0,0.6);
  --shadow-3: 0 30px 60px -20px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 0 4px rgba(255, 212, 0, 0.22);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400; /* Archivo Black is single-weight; do not stack synthetic bold */
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
main :is(p, blockquote, li) { max-width: none; }

/* tabular numbers in price/stat contexts */
.tnum, .shelf__price, .jar__price, .hero__stats dd, .page-hero__stats dd,
.story__creds, .ledger__num, .step__num, .shelf__num, .values__num,
.jar__meta, .hero__card-meta, .page-hero__list {
  font-variant-numeric: tabular-nums lining-nums;
}

/* ---------- a11y ---------- */
.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;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--color-accent); color: var(--color-bg);
  font-weight: 600; border-radius: var(--radius-base);
  outline: 2px solid var(--color-ink); outline-offset: 2px;
}
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- container ---------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 56px);
  padding-right: clamp(20px, 5vw, 56px);
}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-ink);
}
.brand__mark {
  color: var(--color-accent);
  display: inline-flex;
  transition: transform 300ms var(--ease-out-expo);
}
.brand:hover .brand__mark { transform: rotate(8deg); }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  text-decoration: none;
  color: var(--color-ink-2);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color var(--dur-hover) var(--ease-out-expo);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--color-accent);
  transition: right 220ms var(--ease-out-expo);
}
.primary-nav a:hover { color: var(--color-ink); }
.primary-nav a:hover::after { right: 0; }
.primary-nav a[aria-current="page"] { color: var(--color-accent); }
.primary-nav a[aria-current="page"]::after { right: 0; }

.nav-cta {
  background: var(--color-accent);
  color: var(--color-bg) !important;
  padding: 10px 18px;
  border-radius: var(--radius-base);
  font-weight: 600;
  transition: transform var(--dur-hover) var(--ease-out-expo),
              box-shadow var(--dur-hover) var(--ease-out-expo);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-base);
  width: 44px; height: 44px;
  padding: 10px 9px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--color-ink);
  transition: transform 220ms var(--ease-out-expo),
              opacity 220ms var(--ease-out-expo);
}

/* mobile nav */
@media (max-width: 800px) {
  .primary-nav { position: relative; }
  .nav-toggle { display: flex; }
  .primary-nav ul {
    position: absolute;
    right: 0;
    top: calc(100% + 14px);
    min-width: 240px;
    background: var(--color-bg-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-2);
    display: flex;
    flex-direction: column;
    gap: 2px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 220ms var(--ease-out-quint),
                transform 220ms var(--ease-out-quint),
                visibility 0ms 220ms;
  }
  .primary-nav ul.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 220ms var(--ease-out-quint),
                transform 220ms var(--ease-out-quint),
                visibility 0ms 0ms;
  }
  .primary-nav li { padding: 0; }
  .primary-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: var(--radius-base);
  }
  .primary-nav a::after { display: none; }
  .primary-nav a:hover { background: var(--color-bg-3); }
  .nav-cta {
    text-align: center;
    padding: 12px 14px;
    margin-top: 4px;
  }
}
@media (min-width: 801px) {
  .primary-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 32px);
  }
}

/* =====================================================================
   BUTTONS / LINKS / ATOMS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-base);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform var(--dur-hover) var(--ease-out-expo),
              background var(--dur-hover) var(--ease-out-expo),
              border-color var(--dur-hover) var(--ease-out-expo),
              box-shadow var(--dur-hover) var(--ease-out-expo),
              color var(--dur-hover) var(--ease-out-expo);
  white-space: nowrap;
}
.btn .arrow {
  display: inline-block;
  transition: transform 200ms var(--ease-out-expo);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);  /* ink on yellow, passes AAA */
  border-color: var(--color-accent);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
  background: var(--color-accent-2);
  border-color: var(--color-accent-2);
}
.btn-primary:active { transform: translateY(0); }

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

.btn-dark {
  background: var(--color-bg);
  color: var(--color-ink);
  border-color: var(--color-bg);
}
.btn-dark:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-1px);
}

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

.btn-block { width: 100%; justify-content: center; }

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--dur-hover) var(--ease-out-expo);
}
.cta-link .arrow {
  display: inline-block;
  transition: transform 200ms var(--ease-out-expo);
}
.cta-link:hover { border-color: var(--color-accent); }
.cta-link:hover .arrow { transform: translateX(4px); }
.cta-link--lg { font-size: 1.05rem; margin-top: var(--space-6); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--color-muted);
  margin: 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto var(--space-7);
  text-align: center;
}
.section-head--left {
  margin-left: 0; margin-right: 0;
  text-align: left;
  max-width: none;
}
.section-head .eyebrow { margin-bottom: var(--space-3); }
.section-title {
  font-size: var(--fs-h2);
}
.section-lede {
  color: var(--color-muted);
  font-size: var(--fs-lede);
  margin-top: var(--space-4);
}

/* =====================================================================
   HERO (HOME)
   ===================================================================== */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 56px) clamp(64px, 8vw, 120px);
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}
.hero::before {
  /* honeycomb texture in the deep background */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255, 212, 0, 0.06), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(255, 212, 0, 0.04), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(380px, 1fr);
    gap: clamp(48px, 5vw, 80px);
    align-items: center;
  }
}
.hero__content {
  max-width: 760px;
}
.hero__title {
  font-size: clamp(2.5rem, 1.5rem + 4.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-top: var(--space-5);
  margin-bottom: var(--space-5);
}
.hero__title-word {
  display: inline-block;
  margin-right: 0.18em;
}
.hero__title-word--accent {
  color: var(--color-accent);
  font-style: italic;
  position: relative;
}
.hero__sub {
  font-size: var(--fs-lede);
  color: var(--color-ink-2);
  max-width: 56ch;
  margin-bottom: var(--space-6);
}
.hero__ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--space-6);
  margin: 0;
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
  width: fit-content;
}
.hero__stats div { display: flex; flex-direction: column; gap: 4px; }
.hero__stats dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  margin: 0;
}
.hero__stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem);
  color: var(--color-accent);
  line-height: 1;
}

/* hero card */
.hero__card {
  position: relative;
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  overflow: hidden;
}
.hero__card-tag {
  position: absolute;
  top: 0; right: 0;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-bottom-left-radius: var(--radius-lg);
}
.hero__card-body { display: flex; flex-direction: column; gap: 14px; }
.hero__card-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-weight: 600;
}
.hero__card-title {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem);
  line-height: 1.1;
}
.hero__card-desc {
  color: var(--color-ink-2);
  font-size: 0.98rem;
  line-height: 1.55;
}
.hero__card-meta {
  list-style: none;
  margin: 0;
  padding: var(--space-4) 0;
  border-top: 1px dashed var(--color-border-2);
  border-bottom: 1px dashed var(--color-border-2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__card-meta li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  gap: var(--space-3);
}
.hero__card-meta li span:first-child {
  color: var(--color-muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.hero__card-meta li span:last-child { color: var(--color-ink); font-weight: 500; }
.hero__card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 14px 18px;
  border-radius: var(--radius-base);
  text-decoration: none;
  font-weight: 700;
  transition: transform var(--dur-hover) var(--ease-out-expo),
              box-shadow var(--dur-hover) var(--ease-out-expo);
}
.hero__card-cta .arrow {
  display: inline-block;
  transition: transform 200ms var(--ease-out-expo);
}
.hero__card-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.hero__card-cta:hover .arrow { transform: translateX(4px); }
.hero__hex {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  color: var(--color-accent);
  opacity: 0.12;
  pointer-events: none;
  animation: hex-spin 60s linear infinite;
}
@keyframes hex-spin {
  to { transform: rotate(360deg); }
}

/* =====================================================================
   MARQUEE BAND
   ===================================================================== */
.marquee {
  background: var(--color-accent);
  color: var(--color-bg);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--color-bg);
  border-bottom: 1px solid var(--color-bg);
}
.marquee__track {
  display: flex;
  gap: var(--space-7);
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.9rem + 0.5vw, 1.4rem);
  letter-spacing: -0.01em;
}
.marquee__track span { flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================================
   SHELF (numbered ledger of jars)
   ===================================================================== */
.shelf {
  padding: var(--space-10) clamp(20px, 5vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}
.shelf__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
}
.shelf__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(16px, 3vw, 40px);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--dur-hover) ease;
  position: relative;
}
.shelf__item:hover { background: rgba(255, 212, 0, 0.03); }
.shelf__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
  color: var(--color-muted-2);
  line-height: 1;
}
.shelf__item--feature .shelf__num { color: var(--color-accent); }
.shelf__body { display: flex; flex-direction: column; gap: 10px; }
.shelf__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.shelf__head h3 {
  font-size: var(--fs-h3);
  letter-spacing: -0.02em;
}
.shelf__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-ink);
  white-space: nowrap;
}
.shelf__badge {
  display: inline-block;
  margin-left: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  vertical-align: middle;
}
.shelf__body p {
  color: var(--color-muted);
  max-width: 68ch;
  font-size: 1rem;
}
.shelf__body .cta-link { margin-top: 4px; align-self: flex-start; }

@media (max-width: 600px) {
  .shelf__item { grid-template-columns: 60px 1fr; padding: var(--space-5) 0; }
  .shelf__num { font-size: 1.5rem; }
}

/* =====================================================================
   PULLQUOTE (full-bleed contrast moment)
   ===================================================================== */
.pullquote {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: clamp(72px, 10vw, 140px) clamp(24px, 6vw, 96px);
  text-align: center;
  position: relative;
}
.pullquote::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  opacity: 0.18;
}
.pullquote__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: var(--space-5);
}
.pullquote blockquote {
  margin: 0;
  max-width: 22ch;
  margin-inline: auto;
}
.pullquote--alt blockquote { max-width: 28ch; }
.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1.3rem + 2.2vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.pullquote em { font-style: italic; }
.pullquote cite {
  display: block;
  margin-top: var(--space-5);
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

/* =====================================================================
   PROCESS STRIP (homepage steps)
   ===================================================================== */
.process-strip {
  padding: var(--space-10) clamp(20px, 5vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.steps li {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--dur-hover) var(--ease-out-expo),
              border-color var(--dur-hover) var(--ease-out-expo);
}
.steps li:hover {
  border-color: var(--color-accent);
  box-shadow: inset 0 0 0 1px var(--color-accent);
}
.step__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-accent);
  line-height: 1;
}
.step__text { display: flex; flex-direction: column; gap: 8px; }
.step__text h3 {
  font-size: var(--fs-h4);
  line-height: 1.15;
}
.step__text p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
}

/* =====================================================================
   KIND WORDS (testimonials)
   ===================================================================== */
.kind-words {
  padding: var(--space-10) clamp(20px, 5vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}
.kind-words__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.kw-card {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: border-color var(--dur-hover) var(--ease-out-expo),
              box-shadow var(--dur-hover) var(--ease-out-expo);
}
.kw-card:hover {
  border-color: var(--color-border-2);
  box-shadow: inset 0 0 0 1px var(--color-border-2);
}
.kw-card blockquote { margin: 0; flex: 1; }
.kw-card blockquote p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-ink-2);
}
.kw-card figcaption {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: var(--space-3);
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.kw-card__mono {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--color-bg-3);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  border-radius: 50%;
  transition: background var(--dur-hover) var(--ease-out-expo),
              color var(--dur-hover) var(--ease-out-expo);
}
.kw-card:hover .kw-card__mono {
  background: var(--color-accent);
  color: var(--color-bg);
}
.kw-card__name {
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.kw-card__role {
  color: var(--color-muted);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .kind-words__grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   CTA BAND (light/paper, contrast against dark page)
   ===================================================================== */
.cta-band {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 56px);
}
.cta-band__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: center;
}
.cta-band h2 {
  font-size: clamp(2rem, 1.3rem + 2.5vw, 3.5rem);
  line-height: 1.02;
}
.cta-band p {
  max-width: 56ch;
  margin-inline: auto;
  font-size: var(--fs-lede);
  line-height: 1.5;
}
.cta-band__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-4);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  background: #060606;
  color: var(--color-ink);
  padding: var(--space-9) 0 var(--space-6);
  border-top: 1px solid var(--color-border);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
.site-footer__brand { display: flex; flex-direction: column; gap: var(--space-3); }
.site-footer__brand .brand__mark { color: var(--color-accent); }
.site-footer__tagline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.site-footer__address {
  color: var(--color-muted);
  font-size: 0.9rem;
}
.site-footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer nav a {
  text-decoration: none;
  color: var(--color-ink-2);
  font-size: 0.95rem;
  transition: color var(--dur-hover) var(--ease-out-expo);
}
.site-footer nav a:hover { color: var(--color-accent); }
.site-footer__col-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--color-muted);
  margin-bottom: var(--space-4);
}
.site-footer__meta {
  grid-column: 1 / -1;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-5);
  margin-top: var(--space-6);
  font-size: 0.85rem;
  color: var(--color-muted);
}

@media (max-width: 800px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .site-footer__brand { grid-column: 1 / -1; }
}

/* =====================================================================
   PAGE HERO (interior pages, consistent with home)
   ===================================================================== */
.page-hero {
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 56px) clamp(56px, 7vw, 96px);
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: end;
}
@media (min-width: 960px) {
  .page-hero__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
    gap: clamp(32px, 5vw, 80px);
  }
}
.page-hero__content { max-width: 760px; }
.page-hero__title {
  font-size: clamp(2.25rem, 1.4rem + 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-top: var(--space-5);
}
.page-hero__sub {
  margin-top: var(--space-5);
  color: var(--color-ink-2);
  font-size: var(--fs-lede);
  max-width: 60ch;
}
.page-hero__aside {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.page-hero__aside-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-weight: 700;
}
.page-hero__aside-date {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent);
  line-height: 1;
  margin: 0;
}
.page-hero__aside-note { color: var(--color-muted); font-size: 0.9rem; }

.page-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin: 0;
}
.page-hero__stats div { display: flex; flex-direction: column; gap: 4px; }
.page-hero__stats dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin: 0;
}
.page-hero__stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-accent);
  line-height: 1;
}
.page-hero__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-hero__list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px dashed var(--color-border-2);
}
.page-hero__list li:last-child { border-bottom: none; }
.page-hero__list li span:first-child {
  color: var(--color-muted);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.page-hero__list--contact a { color: var(--color-accent); text-decoration: none; }
.page-hero__list--contact a:hover { text-decoration: underline; }

/* =====================================================================
   SHOP PAGE
   ===================================================================== */
.filter-bar {
  background: var(--color-bg-2);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) clamp(20px, 5vw, 56px);
  position: sticky;
  top: 72px;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.filter-bar__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.filter-bar__group {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.filter-bar__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--color-muted);
}
.filter-bar__chip {
  background: transparent;
  border: 1px solid var(--color-border-2);
  color: var(--color-ink-2);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--dur-hover) var(--ease-out-expo),
              color var(--dur-hover) var(--ease-out-expo),
              border-color var(--dur-hover) var(--ease-out-expo);
}
.filter-bar__chip span { opacity: 0.6; }
.filter-bar__chip:hover {
  border-color: var(--color-ink);
  color: var(--color-ink);
}
.filter-bar__chip.is-active {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}
.filter-bar__chip.is-active span { opacity: 0.85; }

.catalog {
  padding: var(--space-9) clamp(20px, 5vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}
.catalog__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 1100px) {
  .catalog__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .catalog__grid { grid-template-columns: 1fr; }
}

.jar {
  position: relative;
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-hover) var(--ease-out-expo),
              box-shadow var(--dur-hover) var(--ease-out-expo);
}
.jar:hover {
  border-color: var(--color-accent);
  box-shadow: inset 0 0 0 1px var(--color-accent);
}
.jar--feature {
  border-color: var(--color-accent);
  box-shadow: inset 0 0 0 1px var(--color-accent);
}
.jar__ribbon {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}
.jar__media {
  background: linear-gradient(160deg, #1A1A1A 0%, #0A0A0A 100%);
  padding: var(--space-6) var(--space-5);
  position: relative;
  border-bottom: 1px solid var(--color-border);
  aspect-ratio: 5 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jar__num {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.06em;
}
.jar__svg {
  width: 90px;
  height: auto;
  color: var(--color-accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 400ms var(--ease-out-expo);
}
.jar:hover .jar__svg { transform: translateY(-4px); }
.jar__svg-label {
  font-family: var(--font-display);
  font-size: 28px;
  fill: var(--color-accent);
  stroke: none;
}
.jar__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.jar__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
}
.jar__head h3 {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.jar__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-ink);
  white-space: nowrap;
}
.jar__desc {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.jar__meta {
  list-style: none;
  margin: 0;
  padding: var(--space-3) 0;
  border-top: 1px dashed var(--color-border-2);
  border-bottom: 1px dashed var(--color-border-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
}
.jar__meta li { display: flex; justify-content: space-between; gap: var(--space-2); }
.jar__meta li span:first-child {
  color: var(--color-muted);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.jar__stock { color: var(--color-accent); font-weight: 600; }
.jar__body .btn { margin-top: auto; }

.ship-band {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  padding: var(--space-9) clamp(20px, 5vw, 56px);
}
.ship-band__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ship-band h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-6);
}
.ship-band__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.ship-band__list li {
  padding: var(--space-5);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-ink-2);
  font-size: 0.98rem;
  line-height: 1.5;
}
.ship-band__list strong { color: var(--color-accent); font-weight: 700; }
@media (max-width: 700px) {
  .ship-band__list { grid-template-columns: 1fr; }
}

/* =====================================================================
   ABOUT PAGE
   ===================================================================== */
.story {
  padding: var(--space-10) clamp(20px, 5vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 960px) {
  .story__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
    gap: var(--space-9);
    align-items: start;
  }
}
.story__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.story__lede {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2.25rem);
  line-height: 1.15;
  color: var(--color-ink);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.story__body p {
  color: var(--color-ink-2);
  font-size: 1.05rem;
  line-height: 1.7;
}
.story__body strong { color: var(--color-accent); font-weight: 700; }

.story__side { position: sticky; top: 100px; }
.story__card {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.story__card-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.story__mono {
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-display);
  font-size: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: var(--space-3);
  line-height: 1;
}
.story__card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.story__card-role {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-3);
}
.story__card-bio {
  color: var(--color-ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}
.story__creds {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
}
.story__creds li { display: flex; justify-content: space-between; gap: var(--space-2); }
.story__creds li span:first-child {
  color: var(--color-muted);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.story__creds li span:last-child { color: var(--color-ink); text-align: right; }

.values {
  padding: var(--space-10) clamp(20px, 5vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.values__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.values__list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--dur-hover) var(--ease-out-expo);
}
.values__list li:hover { border-color: var(--color-accent); }
.values__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-accent);
  line-height: 1;
}
.values__list h3 {
  font-size: var(--fs-h4);
  margin-bottom: 8px;
}
.values__list p {
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
@media (max-width: 800px) {
  .values__list { grid-template-columns: 1fr; }
  .values__list li { grid-template-columns: 48px 1fr; padding: var(--space-5); }
}

.press {
  padding: var(--space-8) clamp(20px, 5vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}
.press__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding: var(--space-5) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.press__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  font-weight: 700;
  margin: 0;
}
.press__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-7);
  flex-wrap: wrap;
}
.press__list li {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-ink-2);
  letter-spacing: -0.01em;
}

/* =====================================================================
   PROCESS PAGE (ledger)
   ===================================================================== */
.ledger {
  padding: var(--space-10) clamp(20px, 5vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}
.ledger__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--color-accent);
}
.ledger__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-areas:
    "num head"
    "num body";
  column-gap: clamp(16px, 3vw, 40px);
  row-gap: var(--space-3);
  padding: var(--space-7) 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  transition: background var(--dur-hover) ease;
}
.ledger__row:hover { background: rgba(255, 212, 0, 0.03); }
.ledger__num {
  grid-area: num;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  color: var(--color-accent);
  line-height: 1;
}
.ledger__head {
  grid-area: head;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.ledger__head h3 {
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  line-height: 1.05;
}
.ledger__tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--color-muted);
  background: var(--color-bg-2);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-2);
  white-space: nowrap;
}
.ledger__body {
  grid-area: body;
  color: var(--color-ink-2);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 72ch;
}

@media (max-width: 700px) {
  .ledger__row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "head"
      "body";
    padding: var(--space-6) 0;
  }
  .ledger__num { font-size: 2rem; }
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq {
  padding: var(--space-9) clamp(20px, 5vw, 56px);
  max-width: 1100px;
  margin: 0 auto;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border);
}
.faq__item {
  border-bottom: 1px solid var(--color-border);
}
.faq__question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
  color: var(--color-ink);
  letter-spacing: -0.01em;
  transition: color var(--dur-hover) var(--ease-out-expo);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--color-accent); }
.faq__chev {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 400;
  line-height: 1;
  transition: transform 300ms var(--ease-out-expo);
}
.faq__item[open] .faq__chev { transform: rotate(45deg); }
.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease-out-quint);
}
.faq__body > div { overflow: hidden; }
.faq__item[open] .faq__body { grid-template-rows: 1fr; }
.faq__answer {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.65;
  padding-bottom: var(--space-5);
  max-width: 72ch;
}

/* =====================================================================
   CONTACT FORM
   ===================================================================== */
.contact-form-section {
  padding: var(--space-9) clamp(20px, 5vw, 56px);
  max-width: 1100px;
  margin: 0 auto;
}
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-muted);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-ink);
  border: 1.5px solid var(--color-border-2);
  border-radius: var(--radius-base);
  padding: 14px 16px;
  transition: border-color var(--dur-hover) var(--ease-out-expo),
              box-shadow var(--dur-hover) var(--ease-out-expo);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #FF5C4A; }
.field input[aria-invalid="true"]:focus,
.field textarea[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 4px rgba(255, 92, 74, 0.22);
}
.error {
  color: #FF8C7A;
  font-size: 0.85rem;
  margin: 0;
}
.form__submit {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-4);
  border-top: 1px dashed var(--color-border-2);
}
.form-status { margin: 0; font-size: 0.9rem; color: var(--color-muted); }
.form-status--success { color: var(--color-accent); font-weight: 600; }
.form-status--error { color: #FF8C7A; font-weight: 600; }

.contact-meta {
  padding: var(--space-9) clamp(20px, 5vw, 56px) var(--space-10);
  max-width: 1440px;
  margin: 0 auto;
}
.contact-meta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.meta-card {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color var(--dur-hover) var(--ease-out-expo);
}
.meta-card:hover { border-color: var(--color-accent); }
.meta-card__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  font-weight: 700;
}
.meta-card h3 {
  font-size: var(--fs-h4);
  line-height: 1.15;
}
.meta-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}
.meta-card .cta-link { align-self: flex-start; margin-top: auto; }
@media (max-width: 900px) {
  .contact-meta__grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   LEGAL PAGES
   ===================================================================== */
.legal {
  max-width: 880px;
  margin: 0 auto;
  padding: var(--space-9) clamp(20px, 5vw, 56px);
}
.legal h1 {
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3rem);
  margin-bottom: var(--space-3);
}
.legal__updated {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-7);
}
.legal section { margin-bottom: var(--space-7); }
.legal h2 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-3);
  color: var(--color-accent);
}
.legal p, .legal ul {
  color: var(--color-ink-2);
  line-height: 1.7;
  font-size: 1rem;
}
.legal ul {
  margin: var(--space-3) 0;
  padding-left: 1.25em;
}
.legal ul li { margin-bottom: 8px; }

/* =====================================================================
   COOKIE BANNER
   ===================================================================== */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 100;
  padding: 1rem 1.25rem;
  background: var(--color-bg-2);
  color: var(--color-ink);
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cookie-banner {
    left: auto; right: 1.5rem; bottom: 1.5rem;
    max-width: 32rem;
  }
  .cookie-banner__content { flex-direction: row; align-items: center; }
}
.cookie-banner__text { margin: 0; font-size: 0.9rem; line-height: 1.5; color: var(--color-ink-2); }
.cookie-banner__text a { color: var(--color-accent); }
.cookie-banner__actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-banner__actions .btn { padding: 10px 16px; font-size: 0.88rem; }

/* =====================================================================
   REVEALS (gated behind html.js, visible by default for crawlers)
   ===================================================================== */
html.js .reveal-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-reveal) var(--ease-out-quint),
              transform var(--dur-reveal) var(--ease-out-quint);
}
html.js .reveal-fade.is-visible {
  opacity: 1;
  transform: none;
}
html.js .reveal-clip {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity 600ms var(--ease-out-quint),
              clip-path 800ms var(--ease-out-quint);
}
html.js .reveal-clip.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
html.js .reveal-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-reveal) var(--ease-out-quint),
              transform var(--dur-reveal) var(--ease-out-quint);
}
html.js .reveal-card.is-visible {
  opacity: 1;
  transform: none;
}

/* disable reveals at mobile widths, content shows immediately */
@media (max-width: 600px) {
  html.js .reveal-fade,
  html.js .reveal-clip,
  html.js .reveal-card {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html.js .reveal-fade,
  html.js .reveal-clip,
  html.js .reveal-card {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .hero__hex, .marquee__track { animation: none !important; }
}
