/* ==========================================================================
   Adamant Laboratories — Homepage v2 styles
   Inherits all design tokens from tokens.css
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--ink-body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; cursor: pointer; }
ul, ol { list-style: none; }
em { font-style: normal; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: var(--leading-tight); font-weight: var(--weight-bold); overflow-wrap: break-word; }
p { overflow-wrap: break-word; text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2); padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm); font-weight: var(--weight-semibold); line-height: 1;
  border-radius: var(--radius-md); border: 2px solid transparent;
  transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap; cursor: pointer;
}
.btn--primary { background: var(--forest); color: #fff; }
.btn--primary:hover { background: var(--forest-light); box-shadow: var(--shadow-lift); transform: translateY(-1px); }
.btn--accent { background: var(--lab-green); color: #fff; }
.btn--accent:hover { background: var(--forest-light); box-shadow: var(--shadow-lift); transform: translateY(-1px); }
.btn--outline { background: #fff; color: var(--forest); border-color: var(--forest); }
.btn--outline:hover { background: var(--forest); color: #fff; }
.btn--lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
.btn--sm { padding: var(--space-2) var(--space-4); font-size: var(--text-xs); }

/* ----- Top advisory strip (forest green, full bleed) ----- */
.advisory {
  background: var(--forest);
  color: rgba(255,255,255,0.95);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  padding: var(--space-3) var(--space-4);
}
.advisory__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: var(--space-8);
  flex-wrap: wrap;
}
.advisory__chunk { display: inline-flex; align-items: center; gap: var(--space-2); }
.advisory__chunk strong { color: #fff; font-weight: var(--weight-bold); letter-spacing: 0.08em; }
.advisory__chunk span { color: rgba(255,255,255,0.65); }
.advisory__icon { color: var(--sprout); flex-shrink: 0; }
.advisory__sep { width: 1px; height: 14px; background: rgba(255,255,255,0.18); }
.advisory__close {
  margin-left: auto;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast);
  flex-shrink: 0;
}
.advisory__close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ----- Header (white) ----- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: var(--z-sticky);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
  gap: var(--space-8);
}
.logo {
  display: flex; align-items: center; gap: var(--space-3);
  flex-shrink: 0; color: var(--ink);
}
.logo__icon { width: 44px; height: 44px; }
.logo__text {
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
}
.logo__tagline {
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}
.main-nav {
  display: flex; align-items: center; gap: 4px;
  flex: 1;
  justify-content: center;
}
.main-nav__link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: var(--space-3) var(--space-5);
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-md);
  transition: all var(--dur-fast);
}
.main-nav__link:hover { color: var(--forest); background: var(--surface-alt); }
.main-nav__link--active { color: var(--forest); background: var(--surface-alt); }
.main-nav__link svg { opacity: 0.55; }
.header-actions { display: flex; align-items: center; gap: var(--space-2); flex-shrink: 0; }
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  border-radius: var(--radius-full);
  transition: background var(--dur-fast), color var(--dur-fast);
  position: relative;
}
.icon-btn:hover { background: var(--surface-alt); color: var(--forest); }
.icon-btn__count {
  position: absolute; top: -2px; right: -2px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--lab-green); color: #fff;
  font-size: 11px; font-weight: var(--weight-bold);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

/* ==========================================================================
   HERO — split layout (default)
   ========================================================================== */
.hero {
  background: var(--surface);
  padding: var(--space-12) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}
.hero__molecules {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.55;
  color: var(--moss);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: var(--space-12);
  align-items: center;
  min-height: 540px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-5);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: var(--weight-extrabold);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: var(--space-6);
}
.hero__title em { color: var(--forest); }
.hero__title-line2 { color: var(--forest); display: block; }
.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: var(--space-8);
  max-width: 540px;
}
.hero__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-10); }
.hero__trust {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: var(--space-8);
  justify-content: start;
}
.hero-trust-item {
  display: flex; align-items: center; gap: var(--space-3);
}
.hero-trust-item__icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  background: var(--surface-alt);
  border: 1px solid var(--mint);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.hero-trust-item__text { font-size: var(--text-xs); line-height: 1.3; }
.hero-trust-item__top {
  font-weight: var(--weight-bold);
  color: var(--ink);
  letter-spacing: 0.01em;
}
.hero-trust-item__sub { color: var(--ink-muted); margin-top: 2px; }

/* Hero image area */
.hero__visual {
  position: relative;
  aspect-ratio: 1447 / 1087;
  display: flex; align-items: center; justify-content: center;
}
.hero__visual::before {
  content: ''; position: absolute;
  inset: -10% -10% -10% -10%;
  background: var(--grad-glow);
  pointer-events: none;
  z-index: 0;
}
.hero__slot {
  position: relative; z-index: 1;
  width: 116%;
  height: 100%;
  margin-left: -8%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  border-radius: var(--radius-xl);
}
/* Feather hero image edges asymmetric — top/left/right 10%, bottom 3%
   so the traceability card at image bottom keeps most of its detail. */
.hero__visual > img {
  position: relative;
  z-index: 1;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 10%, #000 97%, transparent 100%);
          mask-image:
    linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 10%, #000 97%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}

/* Hero — centered variant */
.hero--centered .hero__inner {
  grid-template-columns: 1fr;
  text-align: center;
  min-height: 0;
}
.hero--centered .hero__subtitle { margin-left: auto; margin-right: auto; }
.hero--centered .hero__actions { justify-content: center; }
.hero--centered .hero__trust { justify-content: center; grid-template-columns: repeat(4, auto); }
.hero--centered .hero__visual {
  margin-top: var(--space-10);
  aspect-ratio: 21/9;
  max-height: 460px;
}
.hero--centered .hero__title { font-size: clamp(3.5rem, 7vw, 6.5rem); }

/* Hero — full-bleed variant */
.hero--full {
  padding: 0;
  background: var(--ink);
  color: #fff;
  min-height: 680px;
}
.hero--full .hero__inner {
  grid-template-columns: 1fr;
  min-height: 680px;
  padding: var(--space-16) 0;
  position: relative;
  z-index: 3;
}
.hero--full .hero__bg {
  position: absolute; inset: 0;
  z-index: 0; overflow: hidden;
  border-radius: 0;
}
.hero--full .hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(13,59,18,0.92) 0%, rgba(13,59,18,0.78) 38%, rgba(13,59,18,0.35) 70%, rgba(13,59,18,0.15) 100%);
}
.hero--full .hero__bg image-slot {
  width: 100%; height: 100%;
}
.hero--full .hero__visual { display: none; }
.hero--full .hero__eyebrow { color: var(--sprout); }
.hero--full .hero__title { color: #fff; max-width: 920px; }
.hero--full .hero__title em, .hero--full .hero__title-line2 { color: var(--sprout); }
.hero--full .hero__subtitle { color: rgba(255,255,255,0.78); max-width: 580px; }
.hero--full .hero-trust-item__icon {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--sprout);
}
.hero--full .hero-trust-item__top { color: #fff; }
.hero--full .hero-trust-item__sub { color: rgba(255,255,255,0.55); }
.hero--full .btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.hero--full .btn--outline:hover { background: #fff; color: var(--forest); }

/* ==========================================================================
   EVERY ORDER INCLUDES — strip
   ========================================================================== */
.every-order {
  margin: 0 auto;
  max-width: calc(var(--container-max) - var(--space-12));
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 30px rgba(13,59,18,0.06);
  position: relative;
  z-index: 5;
  margin-top: -56px;
}
.every-order__row {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  align-items: stretch;
  padding: var(--space-2) var(--space-4);
}
.every-order__lead {
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--space-6) var(--space-6) var(--space-6) var(--space-8);
  gap: 4px;
}
.every-order__eyebrow {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1.4;
}
.every-order__lead-title {
  font-size: var(--text-sm);
  color: var(--ink-muted);
}
.every-order__cell {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-6) var(--space-4);
  position: relative;
}
.every-order__cell + .every-order__cell::before,
.every-order__lead + .every-order__cell::before {
  content: '→';
  position: absolute;
  left: -8px; top: 50%; transform: translateY(-50%);
  color: var(--mint);
  font-size: 16px;
  font-weight: 300;
}
.every-order__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.every-order__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.every-order__title {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--ink);
}
.every-order__sub {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  line-height: 1.4;
}

/* ==========================================================================
   FEATURED PRODUCTS
   ========================================================================== */
.featured {
  padding: var(--space-16) 0 var(--space-12);
  background: var(--surface);
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}
.featured__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}
.featured__head-left { display: flex; flex-direction: column; gap: var(--space-2); }
.featured__head h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-extrabold);
  letter-spacing: -0.025em;
  color: var(--ink);
}
.featured__head h2 em { color: var(--forest); }
.featured__head-right {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--forest);
}
.featured__head-right:hover { color: var(--forest-light); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

/* Card-link wrapper — makes the whole pcard clickable, no layout cost (display:contents).
   Inherits color so the article inside still uses its own text colors. */
.pcard-link {
  display: contents;
  color: inherit;
  text-decoration: none;
}
.pcard-link:focus-visible > .pcard {
  outline: 2px solid var(--forest, #1B5E20);
  outline-offset: 2px;
}

/* Merged product card — image + data-forward */
.pcard {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
  position: relative;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--moss);
}
.pcard__top {
  position: relative;
  background: linear-gradient(180deg, var(--surface-cool) 0%, #fff 100%);
  padding: var(--space-5) var(--space-5) var(--space-3);
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: var(--space-3);
  min-height: 132px;
}
.pcard__badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--forest);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  width: fit-content;
}
.pcard__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-extrabold);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.pcard__sub {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  line-height: 1.35;
}
.pcard__img {
  align-self: start;
  width: 92px; height: 92px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.pcard__img img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(13,59,18,0.12));
}
.pcard__mol {
  position: absolute; top: 4px; right: 4px;
  width: 76px; height: 76px;
  color: var(--mint);
  opacity: 0.85;
}
.pcard__stats {
  padding: 0 var(--space-5) var(--space-4);
  display: flex; flex-direction: column; gap: 6px;
  border-bottom: 1px solid var(--hairline);
}
.pcard__stat-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-3);
  font-size: var(--text-xs);
  align-items: center;
}
.pcard__stat-label {
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-size: 10px;
}
.pcard__stat-value {
  font-family: var(--font-mono);
  color: var(--ink);
  font-size: var(--text-xs);
}
.pcard__stat-value--accent { color: var(--forest); font-weight: var(--weight-semibold); }
.pcard__desc {
  padding: var(--space-4) var(--space-5) 0;
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--ink-muted);
  /* Line-clamp safety so very long descriptions don't blow up the card height */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard__foot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4) var(--space-3) var(--space-5);
  background: #fff;
}
.pcard__variant {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-muted);
  font-weight: var(--weight-medium);
}
.pcard__price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-extrabold);
  color: var(--ink);
  letter-spacing: -0.02em;
  text-align: right;
}
.pcard__add {
  width: 40px; height: 40px;
  background: var(--forest);
  color: #fff;
  border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.pcard__add:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}

/* ----- Shop variant: kind badge, no size, price range, View → ----- */
.pcard--shop {
  cursor: default;
}
.pcard__badge--kind {
  background: transparent;
  color: var(--forest);
  border: 1px solid color-mix(in oklab, var(--forest) 30%, transparent);
  padding: 3px 8px;
  letter-spacing: 0.06em;
}
.pcard__foot--shop {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
}
.pcard__price-range {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}
.pcard__price-min {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--forest);
  letter-spacing: -0.01em;
}
.pcard__price-max {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--ink-muted);
  font-weight: var(--weight-medium);
}
.pcard__view {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--dur-fast) var(--ease-out);
}
.pcard__view:hover {
  color: var(--ink);
}

/* ==========================================================================
   ABOUT STRIP — image left, text right
   ========================================================================== */
.about-strip {
  padding: var(--space-12) 0;
  background: var(--surface);
}
.about-strip__inner {
  display: grid;
  grid-template-columns: 2fr 1.1fr 0.85fr 0.85fr;
  gap: var(--space-8);
  align-items: stretch;
}
.about-strip__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-alt);
  align-self: start;
  aspect-ratio: 1774 / 887;
}
.about-strip__image image-slot {
  width: 100%; height: 100%;
}
.about-strip__copy { padding: 0; }
.about-strip__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: var(--space-3);
}
.about-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: var(--weight-extrabold);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--space-4);
}
.about-strip__title em { color: var(--forest); }
.about-strip__body {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 460px;
}
.about-pillar { display: flex; flex-direction: column; gap: var(--space-2); padding-top: 2px; }
.about-pillar__icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  margin-bottom: var(--space-2);
}
.about-pillar__title {
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}
.about-pillar__body {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ==========================================================================
   DUAL FEATURE CARDS (kept from current site)
   ========================================================================== */
.dual-features {
  padding: var(--space-8) 0 var(--space-16);
  background: var(--surface);
}
.dual-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.feature-card {
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  min-height: 280px;
  background: #fff;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--ink);
}
.feature-card::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(45,90,61,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.feature-card__eyebrow {
  position: relative; z-index: 1;
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: var(--space-3);
}
.feature-card__title {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-extrabold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--space-4);
}
.feature-card__title em { color: var(--forest); }
.feature-card__desc {
  position: relative; z-index: 1;
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin-bottom: var(--space-6);
  max-width: 380px;
  line-height: 1.6;
}
.feature-card__cta {
  position: relative; z-index: 1;
  display: inline-flex; gap: var(--space-2); align-items: center;
  font-size: var(--text-xs); font-weight: var(--weight-bold);
  color: var(--forest);
  border: 1.5px solid var(--forest);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  width: fit-content;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--dur-fast);
}
.feature-card__cta:hover {
  background: var(--forest);
  color: #fff;
}
.feature-card__num {
  position: absolute; top: var(--space-8); right: var(--space-8);
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: var(--weight-extrabold);
  line-height: 1;
  color: rgba(45,90,61,0.07);
  letter-spacing: -0.04em;
}

/* ==========================================================================
   COMPLIANCE BLOCK
   ========================================================================== */
.compliance {
  background: var(--surface-cool);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--space-10) 0;
}
.compliance__grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 200px;
  gap: var(--space-10);
  align-items: start;
}
.compliance__head {
  display: flex; align-items: center; gap: var(--space-3);
  color: var(--ink);
}
.compliance__head-icon {
  width: 36px; height: 36px;
  color: var(--forest);
  flex-shrink: 0;
}
.compliance__head-text {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
}
.compliance__body {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  line-height: 1.65;
}
.compliance__chip {
  border: 2px solid var(--mint);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  text-align: center;
  background: #fff;
}
.compliance__chip-top {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-extrabold);
  color: var(--forest);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.compliance__chip-line {
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--surface-alt);
  color: var(--ink-muted);
  padding: var(--space-16) 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}
.footer-brand .logo__text { color: var(--ink); }
.footer-brand .logo__tagline { color: var(--ink-muted); }
.footer-brand__desc {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--ink-muted);
  margin-top: var(--space-4);
  max-width: 340px;
}
.footer-col__title {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: var(--space-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  transition: color var(--dur-fast);
}
.footer-links a:hover { color: var(--forest); }
.footer-newsletter__desc {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin-bottom: var(--space-4);
  line-height: 1.55;
}
.footer-newsletter__form { display: flex; gap: var(--space-2); }
.footer-newsletter__input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink);
  font-size: var(--text-sm);
  font-family: inherit;
}
.footer-newsletter__input::placeholder { color: var(--ink-quiet); }
.footer-newsletter__input:focus { outline: none; border-color: var(--forest); }
.footer-newsletter__btn {
  padding: var(--space-3) var(--space-5);
  background: var(--forest);
  color: #fff;
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  transition: background var(--dur-fast);
  white-space: nowrap;
}
.footer-newsletter__btn:hover { background: var(--forest-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: var(--ink-quiet);
}
.footer-bottom__links { display: flex; gap: var(--space-5); }

/* ==========================================================================
   CART SIDEBAR + TOAST
   ========================================================================== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(13,59,18,0.4);
  z-index: var(--z-overlay);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base);
}
.cart-overlay--open { opacity: 1; pointer-events: auto; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 440px; max-width: 92vw;
  background: #fff;
  z-index: var(--z-modal);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.cart-sidebar--open { transform: translateX(0); }
.cart-sidebar__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-6);
  border-bottom: 1px solid var(--hairline);
}
.cart-sidebar__header h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-extrabold);
  color: var(--ink);
}
.cart-close { font-size: 26px; line-height: 1; color: var(--ink-muted); padding: var(--space-2); }
.cart-sidebar__body { flex: 1; overflow-y: auto; padding: 0 var(--space-6); }
.cart-item {
  display: flex; gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--hairline);
}
.cart-item__img {
  width: 64px; height: 64px;
  background: var(--surface-alt); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  padding: 6px; flex-shrink: 0;
}
.cart-item__img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-item__body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-item__name { font-weight: var(--weight-semibold); font-size: var(--text-sm); color: var(--ink); }
.cart-item__variant { font-size: var(--text-xs); color: var(--ink-muted); font-family: var(--font-mono); }
.cart-item__price { font-weight: var(--weight-bold); color: var(--forest); font-size: var(--text-sm); margin-top: auto; }
.cart-item__remove {
  font-size: var(--text-xs); color: var(--ink-quiet);
  cursor: pointer; align-self: flex-start;
  background: none; border: none; padding: 0;
}
.cart-item__remove:hover { color: var(--danger); }
.cart-empty { text-align: center; color: var(--ink-muted); padding: var(--space-12) 0; font-size: var(--text-sm); }
.cart-sidebar__footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--hairline);
  background: var(--surface-cool);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-weight: var(--weight-bold); font-size: var(--text-base);
  color: var(--ink); margin-bottom: var(--space-4);
}
.cart-disclaimer { font-size: var(--text-xs); color: var(--ink-quiet); text-align: center; margin-top: var(--space-3); }

.toast {
  position: fixed; bottom: var(--space-6); right: var(--space-6);
  background: var(--forest); color: #fff;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  z-index: var(--z-modal);
  transform: translateY(120px); opacity: 0;
  transition: all var(--dur-base) var(--ease-out);
  font-size: var(--text-sm); font-weight: var(--weight-semibold);
  display: flex; align-items: center; gap: var(--space-3);
}
.toast--visible { transform: translateY(0); opacity: 1; }
.toast__icon { color: var(--sprout); }

/* ==========================================================================
   Image-slot empty state
   ========================================================================== */
image-slot {
  --is-bg: var(--surface-alt);
  --is-border: var(--mint);
  --is-color: var(--ink-muted);
  display: block;
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .every-order__row { grid-template-columns: 1fr; gap: 0; }
  .every-order__cell + .every-order__cell::before,
  .every-order__lead + .every-order__cell::before { display: none; }
  .compliance__grid { grid-template-columns: 1fr; gap: var(--space-6); }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; aspect-ratio: 4/3; }
  .hero__trust { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .about-strip__inner { grid-template-columns: 1fr 1fr; }
  .about-strip__image { grid-column: span 2; }
  .dual-features__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .header-inner { gap: var(--space-3); }
  .advisory__inner { gap: var(--space-3); font-size: 11px; }
  .advisory__sep { display: none; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .featured__head { flex-direction: column; align-items: flex-start; }
}


/* ==========================================================================
   Shared sub-page hero (Shop, About, FAQ, Contact)
   ========================================================================== */
.page-hero {
  background: var(--surface);
  padding: var(--space-12) 0 var(--space-10);
  border-bottom: 1px solid var(--hairline);
}
.page-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: var(--space-4);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: var(--weight-bold);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: var(--space-5);
  text-wrap: balance;
}
.page-hero__title-em { color: var(--forest); font-style: normal; }
.page-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 720px;
  text-wrap: pretty;
}
.page-hero__subtitle a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: var(--space-4);
}

/* ==========================================================================
   Shop page
   ========================================================================== */
.shop { padding: var(--space-10) 0 var(--space-16); background: var(--surface); }
.shop__toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-6); flex-wrap: wrap;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--hairline);
}
.shop__filters { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.shop-filter {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-full);
  color: var(--ink-muted);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.shop-filter:hover { border-color: var(--forest); color: var(--forest); }
.shop-filter--active {
  background: var(--forest); border-color: var(--forest); color: #fff;
}
.shop-filter__count {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.75;
  padding-left: 4px;
  border-left: 1px solid currentColor;
  margin-left: 2px;
}
.shop-filter--active .shop-filter__count { opacity: 0.9; border-left-color: rgba(255,255,255,0.3); }

.shop__sort {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--ink-muted);
  font-weight: var(--weight-semibold);
}
.shop__sort label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
}
.shop__sort select {
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: #fff;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--ink);
  cursor: pointer;
}
.shop__sort select:focus { outline: none; border-color: var(--forest); }

.shop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.shop__empty {
  padding: var(--space-16) 0;
  text-align: center;
  color: var(--ink-muted);
}

/* ==========================================================================
   About page
   ========================================================================== */
.about-story { padding: var(--space-16) 0; background: var(--surface); }
.about-story__grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.about-story__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}
.about-story__col--copy { display: flex; flex-direction: column; gap: var(--space-5); }
.about-story__col--copy p {
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 540px;
}

.values { padding: var(--space-16) 0; background: var(--surface-alt); }
.values__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--space-10);
  max-width: 720px;
  text-wrap: balance;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.value-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column;
  gap: var(--space-3);
  min-height: 220px;
}
.value-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  color: var(--forest);
  margin-bottom: var(--space-2);
}
.value-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.value-card__body {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.6;
}

.about-numbers { padding: var(--space-12) 0; background: var(--surface); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.about-numbers__stat {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding-right: var(--space-6);
  border-right: 1px solid var(--hairline);
}
.about-numbers__stat:last-child { border-right: none; }
.about-numbers__value {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: var(--weight-bold);
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.04em;
}
.about-numbers__value span { color: var(--ink-quiet); font-size: 0.55em; }
.about-numbers__label {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.5;
}

.about-process { padding: var(--space-16) 0; background: var(--surface); }
.about-process__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--space-10);
  max-width: 720px;
  text-wrap: balance;
}
.about-process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  padding: 0; margin: 0;
}
.about-process__step {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column;
  gap: var(--space-4);
}
.about-process__num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  color: var(--forest);
  padding: 4px 10px;
  background: var(--surface-alt);
  border-radius: var(--radius-full);
  width: fit-content;
}
.about-process__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}
.about-process__body {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FAQ page
   ========================================================================== */
.faq { padding: var(--space-12) 0 var(--space-16); background: var(--surface); }
.faq__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-12);
  align-items: start;
}
.faq__nav {
  position: sticky;
  top: calc(var(--space-6));
  background: var(--surface-alt);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.faq__nav-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-quiet);
  margin-bottom: var(--space-4);
}
.faq__nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.faq__nav a {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding: var(--space-2) 0;
  border-left: 2px solid transparent;
  padding-left: var(--space-3);
  transition: all var(--dur-fast);
}
.faq__nav a:hover { color: var(--forest); border-left-color: var(--forest); }
.faq__nav-cta {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--hairline);
}
.faq__nav-cta-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.faq__nav-cta p {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: var(--space-3);
}

.faq__body { display: flex; flex-direction: column; gap: var(--space-12); }
.faq-section__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--hairline);
}
.faq-section__list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-fast);
}
.faq-item--open { border-color: var(--forest); }
.faq-item__q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--ink);
  cursor: pointer;
}
.faq-item__q:hover { color: var(--forest); }
.faq-item__chevron {
  flex-shrink: 0;
  color: var(--ink-muted);
  transition: transform var(--dur-fast);
}
.faq-item--open .faq-item__chevron { transform: rotate(180deg); color: var(--forest); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease-out), padding var(--dur-base) var(--ease-out);
  padding: 0 var(--space-6);
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.65;
}
.faq-item--open .faq-item__a {
  max-height: 400px;
  padding: 0 var(--space-6) var(--space-5);
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact { padding: var(--space-12) 0 var(--space-16); background: var(--surface); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex; flex-direction: column;
  gap: var(--space-5);
}
.contact-form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.contact-form__field { display: flex; flex-direction: column; gap: var(--space-2); }
.contact-form__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: var(--weight-semibold);
}
.contact-form__optional { color: var(--ink-quiet); text-transform: none; letter-spacing: 0; }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--surface);
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--ink);
  width: 100%;
  transition: border-color var(--dur-fast);
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: #fff;
}
.contact-form__field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.contact-form__footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
  padding-top: var(--space-5);
}
.contact-form__disclaimer {
  font-size: var(--text-xs);
  color: var(--ink-quiet);
  line-height: 1.5;
  max-width: 400px;
}
.contact__success {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-12) var(--space-8);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-4);
}
.contact__success-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-full);
  background: var(--surface-alt);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
}
.contact__success h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.contact__success p {
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: var(--space-4);
}
.contact__side { display: flex; flex-direction: column; gap: var(--space-3); }
.contact-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.contact-card__icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
}
.contact-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-card__body {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.5;
}
.contact-card__link {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--forest);
  text-decoration: none;
  margin-top: var(--space-1);
}
.contact-card__link:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-card--hours { background: var(--surface-alt); border-color: var(--hairline); }
.contact-hours { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-2); }
.contact-hours__row {
  display: flex; justify-content: space-between;
  font-size: var(--text-sm);
  font-family: var(--font-mono);
  color: var(--ink-muted);
  padding: var(--space-1) 0;
  border-bottom: 1px dashed var(--hairline);
}
.contact-hours__row:last-child { border-bottom: none; }
.contact-hours__row span:first-child { color: var(--ink); font-weight: var(--weight-semibold); }
.contact-card__note {
  font-size: var(--text-xs);
  color: var(--ink-quiet);
  line-height: 1.5;
  margin-top: var(--space-3);
  font-style: italic;
}

/* ==========================================================================
   Responsive (sub-pages)
   ========================================================================== */
@media (max-width: 1100px) {
  .shop__grid { grid-template-columns: repeat(3, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .about-process__steps { grid-template-columns: repeat(2, 1fr); }
  .about-numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .about-numbers__stat:nth-child(2) { border-right: none; }
  .about-story__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .faq__layout { grid-template-columns: 1fr; gap: var(--space-8); }
  .faq__nav { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: 1fr; }
  .about-process__steps { grid-template-columns: 1fr; }
  .about-numbers__grid { grid-template-columns: 1fr; }
  .contact-form__row--split { grid-template-columns: 1fr; }
  .shop__toolbar { flex-direction: column; align-items: stretch; }
}
