/** Shopify CDN: Minification failed

Line 3960:0 Unexpected "}"

**/
:root {
  --bg: #0f0f0a;
  --bg-2: #1a170f;
  --surface: rgba(255, 248, 229, 0.08);
  --surface-strong: rgba(255, 248, 229, 0.14);
  --text: #f8f2e6;
  --muted: #d0c4af;
  --accent: #d9a63a;
  --accent-soft: #ffd27a;
  --line: rgba(255, 227, 169, 0.26);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 8%, #2d261b 0%, transparent 36%),
    radial-gradient(circle at 86% 18%, #252015 0%, transparent 34%),
    linear-gradient(170deg, var(--bg), var(--bg-2));
}

a {
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 11, 8, 0.75);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--accent-soft);
}

.nav-cta {
  border: 1px solid var(--line);
  padding: 0.5rem 0.8rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  padding: 0.42rem 0.8rem;
  font: inherit;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  margin-bottom: 0.45rem;
}

.eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--accent-soft);
  font-weight: 600;
}

.lede {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 96%, rgba(255, 223, 149, 0.07) 96%),
    linear-gradient(90deg, transparent 96%, rgba(255, 223, 149, 0.07) 96%);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.2;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 600;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button {
  background: var(--accent);
  color: #1b1206;
  border-color: var(--accent);
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-soft);
}

.button-ghost {
  color: var(--text);
  background: transparent;
}

.button-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}

.hero-side {
  display: grid;
  gap: 0.7rem;
}

.hero-stat {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 228, 162, 0.14), rgba(255, 228, 162, 0.02));
  padding: 0.9rem;
}

.hero-stat-value {
  margin: 0 0 0.2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  color: var(--accent-soft);
}

.hero-stat-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.signal-strip {
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 227, 169, 0.03);
}

.signal-track {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0.7rem 0;
  animation: ticker 26s linear infinite;
}

.signal-track span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
}

.section {
  padding: clamp(2.8rem, 7vw, 5rem) 0;
}

.section-alt {
  border-block: 1px solid var(--line);
  background: rgba(255, 229, 168, 0.03);
}

.section-head {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.feature-grid,
.catalog-grid,
.program-grid {
  display: grid;
  gap: 0.9rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-grid .surface-card[id] {
  scroll-margin-top: 90px;
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.surface-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 228, 162, 0.13), rgba(255, 228, 162, 0.02));
  padding: 1rem;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.surface-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 231, 186, 0.5);
}

.surface-card p {
  margin: 0;
  color: var(--muted);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.46rem 0.72rem;
  cursor: pointer;
}

.pill.active {
  background: var(--accent);
  color: #1f1507;
  border-color: var(--accent);
}

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

.dash-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.38rem;
  color: var(--muted);
}

.dash-list li::before {
  content: "-";
  color: var(--accent-soft);
  margin-right: 0.45rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1rem;
}

.form-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.87rem;
  color: var(--muted);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(18, 16, 11, 0.8);
  color: var(--text);
  padding: 0.7rem;
  font: inherit;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 2px rgba(255, 211, 122, 0.2);
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-row input {
  width: auto;
  margin: 0;
}

.result-panel {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.result-amount {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent-soft);
}

.result-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.journal-search {
  display: grid;
  gap: 0.35rem;
  min-width: 280px;
  max-width: 370px;
  font-size: 0.82rem;
}

.journal-search input {
  border: 1px solid var(--line);
  background: rgba(18, 16, 11, 0.9);
  color: var(--text);
  padding: 0.65rem;
  font: inherit;
}

.journal-post a {
  display: inline-block;
  margin-top: 0.65rem;
  text-decoration: none;
  color: var(--accent-soft);
  border-bottom: 1px solid rgba(255, 210, 122, 0.4);
  font-size: 0.84rem;
}

.quote-aside {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.contact-line {
  font-size: 0.92rem;
}

.contact-line a {
  text-decoration: none;
  color: var(--accent-soft);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0 1.8rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  to {
    transform: translate3d(calc(-100% - 1.6rem), 0, 0);
  }
}

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

  .split-layout,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .journal-search {
    min-width: 0;
    width: 100%;
    max-width: 460px;
  }
}

@media (max-width: 760px) {
  .feature-grid,
  .program-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 74px;
    width: 100%;
    padding: 1rem 1.25rem;
    border: 0;
    border-top: 1px solid var(--line);
    background: #14110d;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }

  .site-nav.open {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .signal-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .surface-card,
  .button,
  .button-ghost {
    transition: none;
  }
}


/* ═══════════════════════════════════════════
   MULTI-PAGE COMPONENTS
═══════════════════════════════════════════ */

/* ─── NAV ACTIVE STATE ───────────────────── */
.site-nav a.nav-active {
  color: var(--accent-soft);
  border-bottom: 1px solid rgba(255, 210, 122, 0.5);
  padding-bottom: 1px;
}

/* ─── PAGE HERO ──────────────────────────── */
.page-hero {
  padding: clamp(2.8rem, 7vw, 4.5rem) 0 clamp(1.8rem, 4vw, 2.8rem);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 229, 168, 0.02);
}

.page-hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  margin-bottom: 0.6rem;
}

/* ─── BREADCRUMB ─────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--accent-soft);
}

.breadcrumb span:not(:last-child) {
  color: rgba(208, 196, 175, 0.4);
}

/* ─── GATEWAY GRID ───────────────────────── */
.gateway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.gateway-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 228, 162, 0.1), rgba(255, 228, 162, 0.02));
  padding: 1.3rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  position: relative;
  overflow: hidden;
}

.gateway-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 166, 58, 0.45);
  background: linear-gradient(160deg, rgba(255, 228, 162, 0.15), rgba(255, 228, 162, 0.04));
}

.gateway-card h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  margin-bottom: 0;
}

.gateway-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  flex: 1;
}

.gateway-card-sm .gateway-num {
  font-size: 1.5rem;
}

.gateway-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  color: rgba(217, 166, 58, 0.28);
  line-height: 1;
  margin-bottom: 0.1rem;
}

.gateway-cta {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-soft);
  font-weight: 600;
}

/* ─── COMPLIANCE TRUST STRIP ─────────────── */
.compliance-trust-strip {
  display: flex;
  align-items: center;
  gap: 0.8rem 1.5rem;
  flex-wrap: wrap;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 228, 162, 0.04);
  margin-top: 1rem;
}

.compliance-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compliance-trust-link {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 210, 122, 0.4);
  white-space: nowrap;
}

/* ─── RFQ CTA BLOCK ──────────────────────── */
.rfq-cta-block {
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(217, 166, 58, 0.06), rgba(217, 166, 58, 0.01));
}

.rfq-cta-block h2 {
  max-width: 26ch;
}

/* ─── BLOG SEARCH FILTER ─────────────────── */
#blog-article-item.hidden,
.blog-article-item.hidden {
  display: none;
}

/* ═══════════════════════════════════════════
   B2B UPGRADE — NEW SECTIONS
═══════════════════════════════════════════ */

/* ─── CERTIFICATION STATUS ───────────────── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.cert-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 228, 162, 0.10), rgba(255, 228, 162, 0.02));
  padding: 1rem;
}

.cert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  flex-wrap: wrap;
}

.cert-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.cert-body {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.status-pill {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  white-space: nowrap;
}

.status-active {
  background: rgba(22, 163, 74, 0.18);
  color: #4ade80;
  border: 1px solid rgba(22, 163, 74, 0.35);
}

.status-filed {
  background: rgba(217, 166, 58, 0.18);
  color: var(--accent-soft);
  border: 1px solid rgba(217, 166, 58, 0.35);
}

.status-progress {
  background: rgba(96, 165, 250, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

/* ─── PRODUCT SPEC CHIPS ─────────────────── */
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.spec-chip {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  border: 1px solid rgba(255, 227, 169, 0.2);
  padding: 0.22rem 0.52rem;
  background: rgba(255, 228, 162, 0.06);
}

.spec-formats {
  color: var(--accent);
  border-color: rgba(217, 166, 58, 0.3);
  background: rgba(217, 166, 58, 0.07);
}

/* ─── COMMERCIAL TERMS ───────────────────── */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.terms-block h3 {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  margin-bottom: 0.55rem;
  color: var(--text);
}

.terms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.terms-table tr {
  border-bottom: 1px solid rgba(255, 227, 169, 0.1);
}

.terms-table tr:last-child {
  border-bottom: none;
}

.terms-table th {
  text-align: left;
  padding: 0.42rem 0.7rem 0.42rem 0;
  color: var(--accent-soft);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 38%;
  vertical-align: top;
}

.terms-table td {
  padding: 0.42rem 0;
  color: var(--muted);
  vertical-align: top;
  line-height: 1.45;
}

/* ─── VOLUME TIER TABLE ──────────────────── */
.tier-table-wrap {
  overflow-x: auto;
}

.tier-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.tier-table thead tr {
  border-bottom: 1px solid var(--line);
}

.tier-table th {
  text-align: left;
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-soft);
  font-weight: 600;
}

.tier-table td {
  padding: 0.75rem 1rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 227, 169, 0.08);
  vertical-align: middle;
}

.tier-table tbody tr:hover td {
  background: rgba(255, 228, 162, 0.04);
}

.tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
}

.tier-1 { background: rgba(255,255,255,0.08); color: var(--muted); }
.tier-2 { background: rgba(217,166,58,0.14); color: var(--accent-soft); }
.tier-3 { background: rgba(96,165,250,0.14); color: #93c5fd; }
.tier-4 { background: rgba(52,211,153,0.14); color: #6ee7b7; }

/* ─── ORIGIN STEPS ───────────────────────── */
.origin-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.origin-step {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.origin-step-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  color: rgba(217, 166, 58, 0.35);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.4rem;
}

.origin-step-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.origin-step-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ─── MULTI-STEP RFQ ─────────────────────── */
.rfq-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 1.2rem;
  margin-top: 1.4rem;
  align-items: start;
}

.rfq-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.4rem;
  grid-column: 1;
}

.rfq-progress-step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.rfq-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--line);
  background: rgba(255, 228, 162, 0.05);
  color: var(--muted);
  transition: all 0.2s ease;
}

.rfq-step-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color 0.2s ease;
}

.rfq-progress-step.active .rfq-step-num {
  background: var(--accent);
  color: #1b1206;
  border-color: var(--accent);
}

.rfq-progress-step.active .rfq-step-label {
  color: var(--accent-soft);
}

.rfq-progress-step.done .rfq-step-num {
  background: rgba(52, 211, 153, 0.2);
  color: #6ee7b7;
  border-color: rgba(52, 211, 153, 0.4);
}

.rfq-progress-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  min-width: 1.2rem;
  max-width: 3rem;
}

#rfq-form {
  grid-column: 1;
}

.rfq-step {
  display: none;
}

.rfq-step.active {
  display: block;
}

.rfq-nav {
  margin-top: 0.4rem;
}

.rfq-nav-split {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.rfq-success {
  grid-column: 1;
  padding: 1.4rem;
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.06);
}

.rfq-aside {
  grid-row: 1 / 4;
  grid-column: 2;
}

.req {
  color: var(--accent-soft);
}

.form-grid input.error,
.form-grid select.error,
.form-grid textarea.error {
  border-color: rgba(248, 113, 113, 0.7);
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.15);
}

/* ─── FLOATING CTA ───────────────────────── */
.float-rfq {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 50;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.float-rfq.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-rfq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #1b1206;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border: 1px solid var(--accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: background 0.2s ease, transform 0.2s ease;
}

.float-rfq-btn:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

/* ─── FOOTER EXTENDED ────────────────────── */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 2rem;
  align-items: start;
  flex: 1;
  min-width: 0;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav-col-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,210,122,0.35);
  margin: 0 0 0.2rem;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent-soft);
}

/* ─── CERTIFICATIONS PAGE ────────────────── */
.cert-legend-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
  background: rgba(255, 228, 162, 0.03);
}

.cert-legend-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.cert-legend-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.cert-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-active   { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.45); }
.dot-filed    { background: var(--accent-soft); box-shadow: 0 0 6px rgba(255,210,122,0.35); }
.dot-evaluation { background: #93c5fd; box-shadow: 0 0 6px rgba(147,197,253,0.35); }
.dot-planned  { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); }

.cert-authority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.cert-authority-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 228, 162, 0.06), rgba(255, 228, 162, 0.01));
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cert-logo-area {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.cert-logo-placeholder {
  padding: 0.45rem 1.1rem;
  border: 1px dashed rgba(255, 210, 122, 0.22);
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 210, 122, 0.35);
  user-select: none;
}

.cert-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cert-authority-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.cert-authority-body {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.cert-detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.2rem;
}

.cert-detail-item {
  display: flex;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--muted);
  align-items: baseline;
}

.cert-detail-label {
  font-family: "Sora", sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 210, 122, 0.42);
  min-width: 5.5rem;
  flex-shrink: 0;
  padding-top: 0.06em;
}

.cert-card-footer {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.cert-doc-link {
  font-size: 0.8rem;
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 210, 122, 0.3);
  font-family: "Sora", sans-serif;
  letter-spacing: 0.03em;
}

.cert-doc-link:hover {
  border-bottom-color: var(--accent-soft);
}

/* Active licences grid — 3 col, smaller cards */
.cert-active-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.cert-active-card {
  border: 1px solid var(--line);
  background: rgba(74, 222, 128, 0.025);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cert-active-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cert-active-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.cert-active-body {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
  flex: 1;
}

.cert-active-meta {
  display: flex;
  gap: 0.6rem;
  font-size: 0.79rem;
  color: var(--muted);
  align-items: baseline;
}

/* Food safety standards — 3 col compact */
.cert-fsms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.cert-fsms-card {
  border: 1px solid var(--line);
  background: rgba(255, 228, 162, 0.03);
  padding: 1.2rem;
}

.cert-fsms-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
}

.cert-fsms-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.cert-fsms-body {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

/* Roadmap */
.cert-roadmap {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}

.cert-roadmap-node {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}

.cert-roadmap-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 14px;
  padding-top: 0.18rem;
}

.cert-roadmap-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cert-roadmap-line {
  width: 1px;
  flex: 1;
  min-height: 2.4rem;
  background: var(--line);
  margin: 4px 0;
}

.cert-roadmap-content {
  padding-bottom: 2rem;
  flex: 1;
}

.cert-roadmap-date {
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 210, 122, 0.45);
  margin: 0 0 0.2rem;
}

.cert-roadmap-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.4rem;
}

.cert-roadmap-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Documents two-col */
.cert-docs-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.cert-docs-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cert-doc-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.cert-doc-mark {
  font-size: 0.88rem;
  flex-shrink: 0;
  width: 1.1rem;
  text-align: center;
  padding-top: 0.05em;
}

.cert-doc-ready  .cert-doc-mark { color: #4ade80; }
.cert-doc-pending .cert-doc-mark { color: rgba(255,255,255,0.2); }

.cert-doc-name {
  font-size: 0.86rem;
  color: var(--text);
  margin: 0 0 0.1rem;
}

.cert-doc-meta {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 0;
}

/* ─── RESPONSIVE ADDITIONS ───────────────── */
@media (max-width: 1080px) {
  .cert-grid,
  .cert-authority-grid,
  .cert-active-grid,
  .cert-fsms-grid,
  .cert-docs-two-col,
  .terms-grid,
  .origin-steps,
  .rfq-shell,
  .gateway-grid {
    grid-template-columns: 1fr;
  }

  .rfq-aside,
  #rfq-form,
  .rfq-progress {
    grid-column: auto;
    grid-row: auto;
  }

  .compliance-trust-link {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .rfq-step-label {
    display: none;
  }

  .tier-table th,
  .tier-table td {
    padding: 0.5rem 0.5rem;
    font-size: 0.82rem;
  }

  .gateway-grid {
    grid-template-columns: 1fr;
  }

  .compliance-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-rfq {
    transition: none;
  }
}

/* ═══════════════════════════════════════════
   MOBILE — TOUCH & ACCESSIBILITY FIXES
═══════════════════════════════════════════ */

/* Nav dropdown: fills viewport below header */
.site-nav.open {
  z-index: 250;
  min-height: calc(100vh - 74px);
}

/* Hide floating CTAs when mobile nav is open (stacking context prevents z-index fix) */
body.nav-open .float-rfq,
body.nav-open .float-whatsapp {
  visibility: hidden;
  pointer-events: none;
}

/* ── 760px: nav open state — bigger touch targets ── */
@media (max-width: 760px) {
  .site-nav a {
    padding: 0.75rem 0.6rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .menu-toggle {
    min-height: 44px;
    padding: 0.6rem 1.1rem;
    font-size: 0.9rem;
  }
}

/* ── 640px: primary mobile viewport (iPhone SE and up) ── */
@media (max-width: 640px) {

  /* --- Buttons --- */
  .button,
  .button-ghost {
    padding: 0.85rem 1.2rem;
    min-height: 44px;
  }

  /* Form submit + RFQ nav buttons: full width on small screens */
  .rfq-nav .button,
  .rfq-nav .button-ghost,
  form .button[type="submit"] {
    width: 100%;
    justify-content: center;
  }

  /* Back + Next buttons stack vertically */
  .rfq-nav-split {
    flex-direction: column;
  }

  /* --- Form inputs: 1rem prevents iOS Safari auto-zoom --- */
  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    font-size: 1rem;
    padding: 0.75rem;
    min-height: 44px;
  }

  .form-grid label {
    font-size: 0.9rem;
  }

  /* --- Filter pills: bigger touch target --- */
  .pill {
    padding: 0.65rem 0.9rem;
    font-size: 0.8rem;
    min-height: 36px;
  }

  /* --- Floating CTA: 44px touch target --- */
  .float-rfq-btn {
    padding: 0.9rem 1.4rem;
    min-height: 44px;
  }

  /* --- Small text: bump up for readability --- */
  .eyebrow {
    font-size: 0.76rem;
  }

  .breadcrumb {
    font-size: 0.82rem;
  }

  .spec-chip {
    font-size: 0.74rem;
    padding: 0.3rem 0.6rem;
  }

  /* --- Journal search: don't constrain width --- */
  .journal-search {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  /* --- Page hero: tighter heading scale --- */
  .page-hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  /* --- Footer: stack brand + nav vertically --- */
  .footer-main {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer-nav-col {
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }

  .footer-nav-col:first-child {
    border-top: none;
    padding-top: 0;
  }

  /* --- Compliance trust strip: stack on small mobile --- */
  .compliance-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .compliance-trust-link {
    width: 100%;
    margin-left: 0;
    margin-top: 0.3rem;
  }

  /* --- RFQ progress: tighten connector lines --- */
  .rfq-progress-line {
    min-width: 0.6rem;
    max-width: 1.2rem;
  }

  /* --- Terms table: allow horizontal scroll --- */
  .terms-block {
    overflow-x: auto;
  }

  /* --- Gateway cards: reduce oversized number --- */
  .gateway-num {
    font-size: 1.8rem;
  }

  /* --- Hero side stats: tighten --- */
  .hero-side {
    gap: 0.5rem;
  }

  .hero-stat {
    padding: 0.7rem;
  }

  /* --- Surface card: reduce padding on mobile --- */
  .surface-card {
    padding: 0.85rem;
  }
}


.blog-list {
  display: grid;
  gap: 0.9rem;
}

.blog-list .surface-card h3 a {
  text-decoration: none;
}

.blog-meta {
  margin: 0 0 0.45rem;
}

/* ─── INSIGHTS REDESIGN ──────────────────── */
.insights-tab-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 228, 162, 0.02);
  position: sticky;
  top: 74px;
  z-index: 20;
}

.insights-tab-bar .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.insights-tab-bar .container::-webkit-scrollbar { display: none; }

.insights-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.18s ease, border-bottom-color 0.18s ease;
  margin-bottom: -1px;
}

.insights-tab:hover {
  color: var(--text);
}

.insights-tab.active {
  color: var(--accent-soft);
  border-bottom-color: var(--accent-soft);
}

.insights-tab-count {
  font-size: 0.65rem;
  background: rgba(255, 210, 122, 0.1);
  border: 1px solid rgba(255, 210, 122, 0.18);
  color: rgba(255, 210, 122, 0.55);
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.insights-tab.active .insights-tab-count {
  background: rgba(255, 210, 122, 0.15);
  border-color: rgba(255, 210, 122, 0.35);
  color: var(--accent-soft);
}

/* Card grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.insights-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.insights-card:hover {
  border-color: rgba(255, 210, 122, 0.22);
  background: rgba(255, 228, 162, 0.03);
}

.insights-card-inner {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  height: 100%;
}

/* Category chip */
.insights-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Sora", sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  width: fit-content;
}

.insights-cat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Per-category colours */
.cat-spice-sourcing {
  background: rgba(217, 166, 58, 0.12);
  color: rgba(217, 166, 58, 0.85);
  border: 1px solid rgba(217, 166, 58, 0.2);
}
.cat-spice-sourcing .insights-cat-dot { background: rgba(217, 166, 58, 0.9); }

.cat-compliance {
  background: rgba(147, 197, 253, 0.1);
  color: rgba(147, 197, 253, 0.85);
  border: 1px solid rgba(147, 197, 253, 0.2);
}
.cat-compliance .insights-cat-dot { background: rgba(147, 197, 253, 0.9); }

.cat-programme-planning {
  background: rgba(134, 239, 172, 0.1);
  color: rgba(134, 239, 172, 0.8);
  border: 1px solid rgba(134, 239, 172, 0.2);
}
.cat-programme-planning .insights-cat-dot { background: rgba(134, 239, 172, 0.9); }

.cat-commercial-ops {
  background: rgba(196, 181, 253, 0.1);
  color: rgba(196, 181, 253, 0.8);
  border: 1px solid rgba(196, 181, 253, 0.2);
}
.cat-commercial-ops .insights-cat-dot { background: rgba(196, 181, 253, 0.9); }

.insights-card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}

.insights-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.18s ease;
}

.insights-card-title a:hover { color: var(--accent-soft); }

.insights-card-excerpt {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.insights-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.insights-card-date {
  font-family: "Sora", sans-serif;
  font-size: 0.71rem;
  color: rgba(208, 196, 175, 0.45);
  letter-spacing: 0.05em;
}

.insights-card-link {
  font-size: 0.78rem;
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 210, 122, 0.3);
  white-space: nowrap;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.03em;
  transition: border-bottom-color 0.18s ease;
}

.insights-card-link:hover { border-bottom-color: var(--accent-soft); }

.insights-empty {
  text-align: center;
  color: var(--muted);
  padding: 3rem 0;
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .insights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .insights-grid { grid-template-columns: 1fr; }

  /* Replace horizontal scroll with a visible 2-col card grid */
  .insights-tab-bar {
    position: static;
    border-bottom: 0;
    background: transparent;
    padding: 0.5rem 0 1rem;
  }

  .insights-tab-bar .container {
    flex-wrap: wrap;
    gap: 0.5rem;
    overflow-x: visible;
  }

  /* "All" button spans full width */
  .insights-tab[data-cat="all"] {
    flex: 1 1 100%;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    padding: 0.65rem 0.9rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
  }

  /* Category tabs: 2-up grid */
  .insights-tab:not([data-cat="all"]) {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    padding: 0.65rem 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
    font-size: 0.72rem;
    height: auto;
    white-space: normal;
  }

  .insights-tab.active {
    border-color: rgba(255, 210, 122, 0.5);
    background: rgba(255, 210, 122, 0.06);
    border-bottom-color: rgba(255, 210, 122, 0.5);
  }

  .insights-tab-count {
    font-size: 0.68rem;
  }
}

.article-shell {
  max-width: 900px;
  margin: 0 auto;
}

.article-content {
  color: var(--muted);
  line-height: 1.75;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.2;
  margin-top: 1.2rem;
}

.article-content a {
  color: var(--accent-soft);
}

.article-nav {
  margin-bottom: 1rem;
}

.article-nav a {
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 210, 122, 0.4);
}

/* ═══════════════════════════════════════════
   WORLD-CLASS B2B UPGRADES
═══════════════════════════════════════════ */

/* ── 1. Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  z-index: 1000;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── 2. Gradient headline ── */
.gradient-headline {
  background: linear-gradient(135deg, var(--text) 0%, var(--accent-soft) 45%, var(--text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 3. Stat counter (JS-driven, no extra CSS needed beyond existing stat styles) ── */
.hero-stat-value {
  font-variant-numeric: tabular-nums;
}

/* ── 4. Trust grid (social proof) ── */
.trust-section {
  border-block: 1px solid var(--line);
  padding-block: 1.6rem;
  background: rgba(255, 228, 162, 0.018);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem 1.2rem;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.7rem 0;
}

.trust-stat-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-soft);
  line-height: 1;
}

.trust-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  line-height: 1.3;
}

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

/* ── 5. Differentiator section ── */
.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.differentiator-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(145deg, var(--surface), transparent);
  position: relative;
}

.differentiator-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.18;
  position: absolute;
  top: 0.5rem;
  right: 0.9rem;
  line-height: 1;
  user-select: none;
}

.differentiator-card h3 {
  font-size: 1rem;
  margin: 0 0 0.3rem;
  padding-right: 2.5rem;
}

.differentiator-card p {
  font-size: 0.87rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .differentiator-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 6. FAQ accordion ── */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text);
}

.faq-q h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
  line-height: 1;
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  border-color: var(--accent-soft);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a p {
  padding-bottom: 1rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.88rem;
  margin: 0;
}

/* ── 7. Origin + availability chips ── */
.origin-chip {
  display: inline-block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.16rem 0.48rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 122, 0.22);
  color: var(--accent);
  background: rgba(217, 166, 58, 0.07);
  margin-bottom: 0.25rem;
  margin-right: 0.3rem;
}

.avail-chip {
  display: inline-block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.16rem 0.48rem;
  border-radius: 999px;
  margin-bottom: 0.25rem;
}

.avail-available {
  background: rgba(22, 163, 74, 0.12);
  color: #4ade80;
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.avail-seasonal {
  background: rgba(217, 166, 58, 0.12);
  color: var(--accent-soft);
  border: 1px solid rgba(217, 166, 58, 0.25);
}

.card-chip-row {
  margin-bottom: 0.4rem;
}

/* ── 8. Sample request link per product card ── */
.card-sample-link {
  display: block;
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--accent-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

@media (hover: hover) {
  .card-sample-link:hover {
    color: var(--text);
  }
}

.card-trace-link {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.73rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

@media (hover: hover) {
  .card-trace-link:hover {
    color: var(--accent-soft);
  }
}

/* ── 9. Program comparison table ── */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.compare-table thead th {
  text-align: left;
  padding: 0.6rem 1rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-soft);
  border-bottom: 1px solid var(--line);
}

.compare-table thead th:first-child {
  color: var(--muted);
}

.compare-table tbody td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
  vertical-align: top;
}

.compare-table tbody td:first-child {
  color: var(--text);
  font-weight: 500;
  font-size: 0.8rem;
  white-space: nowrap;
}

.compare-check {
  color: #4ade80;
  font-size: 0.9rem;
}

.compare-dash {
  color: var(--line);
}

/* ── 10. Touch-safe hover elevation upgrade ── */
@media (hover: hover) {
  .surface-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  }

  .gateway-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  }

  .product-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  }
}

/* ── FEATURE 1: Sourcing Timeline Simulator ── */
.timeline-tool {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.4rem;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 26px;
  bottom: -2px;
  width: 1px;
  background: var(--line);
}

.timeline-step:last-child::before {
  display: none;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--bg);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.timeline-dot.tl-past    { border-color: rgba(239,68,68,0.5);  background: rgba(239,68,68,0.08); }
.timeline-dot.tl-tight   { border-color: rgba(234,179,8,0.6);  background: rgba(234,179,8,0.08); }
.timeline-dot.tl-today   { border-color: var(--accent-soft);   background: rgba(255,210,122,0.12); }
.timeline-dot.tl-ok      { border-color: rgba(22,163,74,0.45); background: rgba(22,163,74,0.07); }
.timeline-dot.tl-target  { border-color: var(--accent);        background: rgba(217,166,58,0.12); }

.timeline-step-body {
  padding-bottom: 1.2rem;
  flex: 1;
  min-width: 0;
}

.timeline-step-label {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
}

.timeline-step-date {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.timeline-step-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.15rem;
  opacity: 0.8;
}

.tl-alert {
  padding: 0.65rem 0.9rem;
  border-radius: 4px;
  font-size: 0.83rem;
  margin-bottom: 1.1rem;
  line-height: 1.5;
}

.tl-alert.tl-danger  { background: rgba(239,68,68,0.08);  border: 1px solid rgba(239,68,68,0.28);  color: #fca5a5; }
.tl-alert.tl-warning { background: rgba(234,179,8,0.08);  border: 1px solid rgba(234,179,8,0.28);  color: #fde047; }
.tl-alert.tl-success { background: rgba(22,163,74,0.08);  border: 1px solid rgba(22,163,74,0.28);  color: #4ade80; }

/* ── FEATURE 2: Harvest Availability Heatmap ── */
.harvest-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.harvest-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hc-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.harvest-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.harvest-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.harvest-table th {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0.5rem 0.3rem;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.harvest-product-col {
  text-align: left !important;
  min-width: 170px;
  padding: 0.55rem 0.8rem 0.55rem 0 !important;
}

.harvest-product-col strong {
  display: block;
  font-size: 0.84rem;
  color: var(--text);
  font-weight: 500;
}

.harvest-origin {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.1rem;
  font-style: italic;
}

.harvest-table tbody tr:hover td {
  background: rgba(255, 228, 162, 0.03);
}

.harvest-table td {
  padding: 0.4rem 0.3rem;
  border-bottom: 1px solid rgba(255, 227, 169, 0.1);
  text-align: center;
}

/* Harvest cell */
.hc {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  margin: 0 auto;
  cursor: default;
  transition: transform 0.15s ease, opacity 0.15s ease;
  position: relative;
}

@media (hover: hover) {
  .hc:hover {
    transform: scale(1.25);
    opacity: 0.9;
    z-index: 2;
  }
}

/* Cell states */
.hc-full     { background: rgba(22, 163, 74, 0.6);  border: 1px solid rgba(22, 163, 74, 0.3); }
.hc-seasonal { background: rgba(234, 179, 8, 0.65); border: 1px solid rgba(234, 179, 8, 0.3); }
.hc-limited  { background: rgba(239, 68, 68, 0.45); border: 1px solid rgba(239, 68, 68, 0.25); }
.hc-off      { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255,255,255,0.08); }

/* Legend dots match cell colours */
.hc-dot.hc-full     { background: rgba(22, 163, 74, 0.6); }
.hc-dot.hc-seasonal { background: rgba(234, 179, 8, 0.65); }
.hc-dot.hc-limited  { background: rgba(239, 68, 68, 0.45); }
.hc-dot.hc-off      { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255,255,255,0.15); }

/* Current month column highlight — added via JS */
.harvest-table th.hc-current-month {
  background: rgba(255, 210, 122, 0.16);
  color: var(--accent-soft);
  border-bottom: 2px solid rgba(255, 210, 122, 0.55);
}
.harvest-table td.hc-current-month {
  background: rgba(255, 210, 122, 0.09);
}

/* Reduced motion: skip counter, progress, accordion transitions */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    transition: none;
  }

  .faq-a {
    transition: none;
  }

  .faq-q-icon {
    transition: none;
  }

  .gradient-headline {
    background: none;
    -webkit-text-fill-color: var(--text);
    color: var(--text);
  }
}

/* ── Feature 3: Compliance Readiness Checker ─────────────────────────────── */
.market-tabs {
  display: flex;
  gap: 0;
  margin: 2rem 0 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
  background: rgba(255, 228, 162, 0.02);
  overflow-x: auto;
}

.market-tabs::-webkit-scrollbar { display: none; }

.market-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.1rem;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.market-tab:hover {
  color: var(--text);
}

.market-tab.active {
  color: var(--accent-soft);
  border-bottom-color: var(--accent-soft);
}

.market-panel {
  display: none;
  margin-top: 1.4rem;
}

.market-panel.active {
  display: block;
}

.market-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.market-panel-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.15rem;
}

.market-panel-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.04em;
}

.readiness-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.badge-ready {
  background: rgba(74, 222, 128, 0.15);
  color: #86efac;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.badge-progress {
  background: rgba(217, 166, 58, 0.15);
  color: var(--accent-soft);
  border: 1px solid rgba(217, 166, 58, 0.3);
}

.badge-pending {
  background: rgba(148, 163, 184, 0.1);
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.readiness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

@media (max-width: 700px) {
  .readiness-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .market-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 0.5rem;
    background: transparent;
    border-bottom: 0;
    padding: 0.5rem 0 1rem;
    margin-top: 1rem;
  }
  .market-tab {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    border: 1px solid var(--line) !important;
    border-bottom-width: 1px !important;
    margin-bottom: 0;
    border-radius: 0.5rem;
    padding: 0.65rem 0.75rem;
    justify-content: center;
    font-size: 0.72rem;
    white-space: normal;
  }
  .market-tab.active {
    border-color: rgba(255, 210, 122, 0.5) !important;
    background: rgba(255, 210, 122, 0.06);
  }
}

.readiness-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
}

.readiness-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 0.8rem;
}

.readiness-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.readiness-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--muted);
}

.readiness-list li strong {
  color: var(--text);
}

.r-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin-top: 0.15rem;
  display: inline-block;
}

.r-ready .r-icon {
  background: rgba(74, 222, 128, 0.7);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.15);
}

.r-ready {
  color: var(--text);
}

.r-progress .r-icon {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 166, 58, 0.18);
}

.r-pending .r-icon {
  background: rgba(148, 163, 184, 0.35);
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.1);
}

.market-note {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 210, 122, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ── Feature 5: Batch Traceability Lookup ────────────────────────────────── */
.trace-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.trace-table td {
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5;
}

.trace-table tr:last-child td {
  border-bottom: none;
}

.trace-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 140px;
}

/* ── Feature 4: Grade Specification Comparison ───────────────────────────── */
.product-card {
  position: relative;
}

.compare-toggle {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  transition: color 0.15s;
}

.compare-toggle:hover {
  color: var(--accent-soft);
}

.compare-toggle input[type="checkbox"] {
  accent-color: var(--accent);
  width: 13px;
  height: 13px;
  cursor: pointer;
}

.product-card.compare-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(217, 166, 58, 0.3);
}

/* Compare bar */
.compare-bar {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 0.85rem 1rem;
  transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.compare-bar.visible {
  bottom: 0;
}

.compare-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.compare-bar-items {
  display: flex;
  gap: 0.6rem;
  flex: 1;
  flex-wrap: wrap;
}

.compare-bar-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  color: var(--text);
}

.compare-clear {
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  transition: color 0.15s, border-color 0.15s;
}

.compare-clear:hover {
  color: var(--text);
  border-color: var(--accent);
}

/* Compare overlay */
.compare-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(10, 9, 5, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.compare-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.compare-overlay-inner {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  max-width: 900px;
  width: calc(100% - 2rem);
  max-height: 88vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.compare-overlay-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, border-color 0.15s;
}

.compare-overlay-close:hover {
  color: var(--text);
  border-color: var(--accent);
}

.compare-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.88rem;
}

.compare-spec-table th,
.compare-spec-table td {
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-spec-table th {
  font-weight: 700;
  color: var(--accent-soft);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-spec-table th:first-child,
.compare-spec-table td:first-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: 120px;
}

.compare-spec-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 560px) {
  .compare-overlay-inner {
    padding: 1.2rem;
  }

  .compare-spec-table th:first-child,
  .compare-spec-table td:first-child {
    width: 80px;
    font-size: 0.7rem;
  }
}

/* ═══════════════════════════════════════════════════════
   CHAITEA.LIFE BRAND IDENTITY
   Personality: Contemplative · Refined · Ceremonial
   Type: Cormorant italic · light weight · centered
═══════════════════════════════════════════════════════ */

.chai-hero {
  background: radial-gradient(ellipse 65% 55% at 50% 40%, rgba(255,210,122,0.08) 0%, transparent 70%);
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 2rem clamp(3rem, 7vw, 5rem);
}

.chai-brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.2rem);
  color: #ffd27a;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

.chai-atmospheric {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: rgba(255,210,122,0.65);
  max-width: 560px;
  margin: 1.6rem auto 0;
  line-height: 1.65;
}

.chai-cert-badges {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.chai-cert-badge {
  font-family: "Sora", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,210,122,0.5);
  border: 1px solid rgba(255,210,122,0.2);
  padding: 0.3rem 0.8rem;
}

.chai-rule {
  width: 50px;
  height: 1px;
  background: rgba(255,210,122,0.3);
  border: none;
  margin: 2.5rem auto;
}

.chai-tint-section {
  background-color: rgba(217,166,58,0.04);
}

.chai-origin-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.chai-pull-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  color: #ffd27a;
  line-height: 1.5;
  border-left: 1px solid rgba(255,210,122,0.25);
  padding-left: 1.5rem;
  margin: 0;
}

.chai-origin-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}

.chai-origin-body p { margin-top: 0.9rem; }
.chai-origin-body p:first-child { margin-top: 0; }

.chai-origin-sub {
  margin-top: 1.6rem;
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,210,122,0.4);
}

.chai-section-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: #ffd27a;
  text-align: center;
  margin: 0 0 2.5rem;
}

.chai-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.chai-card {
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255,210,122,0.08);
  border-bottom: 2px solid transparent;
  text-align: center;
  transition: border-bottom-color 0.3s ease, background-color 0.3s ease;
}

@media (hover: hover) {
  .chai-card:hover {
    border-bottom-color: rgba(255,210,122,0.5);
    background-color: rgba(255,210,122,0.02);
  }
}

.chai-tea-type {
  font-family: "Sora", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,210,122,0.4);
  margin-bottom: 0.5rem;
}

.chai-product-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  color: #ffd27a;
  margin: 0 0 0.2rem;
}

.chai-botanical {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  margin: 0 0 0.9rem;
}

.chai-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.chai-blend-note {
  margin-top: 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(255,210,122,0.4);
}

.chai-origin-tag {
  margin-top: 1.2rem;
  font-family: "Sora", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(255,210,122,0.3);
}

.chai-avail-row {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chai-cert-strip {
  border-top: 1px solid rgba(255,210,122,0.1);
  padding: 1.6rem 2rem;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,210,122,0.35);
}

@media (max-width: 760px) {
  .chai-product-grid { grid-template-columns: 1fr; }
  .chai-origin-layout { grid-template-columns: 1fr; gap: 2rem; }
  .chai-pull-quote { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,210,122,0.25); padding-top: 1rem; }
}


/* ═══════════════════════════════════════════════════════
   SPICE.LIFE BRAND IDENTITY
   Personality: Assertive · Terroir-driven · Precise
   Type: Cormorant semibold · upright · left-aligned
═══════════════════════════════════════════════════════ */

.spice-hero {
  background-image: radial-gradient(circle, rgba(217,166,58,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  background-color: var(--bg);
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}

.spice-brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 5.2rem);
  color: #d9a63a;
  letter-spacing: -0.01em;
  line-height: 1.0;
  margin: 0.4rem 0 0;
}

.spice-geography-row {
  font-family: "Sora", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(217,166,58,0.45);
  margin: 0 0 0.5rem;
}

.spice-atmospheric {
  font-family: "Sora", sans-serif;
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  color: rgba(217,166,58,0.55);
  max-width: 520px;
  margin: 1.4rem 0 0;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.spice-cert-badges {
  display: flex;
  gap: 0.9rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.spice-cert-badge {
  font-family: "Sora", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(217,166,58,0.5);
  border: 1px solid rgba(217,166,58,0.2);
  padding: 0.28rem 0.7rem;
}

.spice-tint-section {
  background-color: rgba(180,90,30,0.05);
}

.spice-provenance-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.spice-ledger {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  line-height: 2.4;
  color: rgba(217,166,58,0.6);
}

.spice-ledger-row {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.spice-ledger-region {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d9a63a;
  white-space: nowrap;
  min-width: 110px;
}

.spice-ledger-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(217,166,58,0.2);
  margin: 0 0.6rem;
  position: relative;
  top: -3px;
}

.spice-ledger-products {
  font-size: 0.72rem;
  color: rgba(217,166,58,0.5);
  white-space: nowrap;
}

.spice-provenance-body {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.85;
}

.spice-provenance-body p { margin-top: 0.9rem; }
.spice-provenance-body p:first-child { margin-top: 0; }

.spice-section-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #d9a63a;
  margin: 0 0 2rem;
}

.spice-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.spice-botanical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  max-width: 700px;
}

.spice-card {
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(217,166,58,0.08);
  text-align: left;
  transition: background-color 0.25s ease;
}

@media (hover: hover) {
  .spice-card:hover {
    background-color: rgba(217,166,58,0.04);
  }
}

.spice-origin-chip {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(217,166,58,0.65);
  background: rgba(180,90,30,0.14);
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.7rem;
}

.spice-product-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: #d9a63a;
  margin: 0 0 0.4rem;
}

.spice-descriptor {
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.55;
  margin: 0;
}

.spice-avail-row {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.spice-cert-strip {
  border-top: 1px solid rgba(217,166,58,0.1);
  padding: 1.6rem 0;
  font-family: "Sora", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(217,166,58,0.35);
}

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

@media (max-width: 760px) {
  .spice-product-grid { grid-template-columns: 1fr; }
  .spice-botanical-grid { grid-template-columns: 1fr; max-width: none; }
  .spice-provenance-layout { grid-template-columns: 1fr; gap: 2rem; }
  .spice-hero { padding-left: 1.5rem; padding-right: 1.5rem; }
}


/* ═══════════════════════════════════════════════════════
   OUR BRANDS HUB
   The vertical divider IS the concept: one parent, two faces
═══════════════════════════════════════════════════════ */

.brands-hub-intro {
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 2rem clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.brands-hub-headline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #ffd27a;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

.brands-hub-sub {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}

.brands-split-canvas {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  min-height: 500px;
}

.brands-split-divider {
  background: linear-gradient(to bottom, transparent 5%, rgba(217,166,58,0.35) 25%, rgba(217,166,58,0.35) 75%, transparent 95%);
  width: 1px;
}

.brands-chai-half {
  background: radial-gradient(ellipse 75% 65% at 50% 50%, rgba(255,210,122,0.07) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
  text-align: center;
}

.brands-spice-half {
  background-image: radial-gradient(circle, rgba(217,166,58,0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem) clamp(4rem, 8vw, 7rem);
  text-align: left;
}

.brands-half-name-chai {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #ffd27a;
  margin: 0;
  line-height: 1.1;
}

.brands-half-name-spice {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #d9a63a;
  margin: 0;
  line-height: 1.05;
}

.brands-half-descriptor {
  font-family: "Sora", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin: 0.9rem 0 0.5rem;
}

.brands-half-personality-chai {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: rgba(255,210,122,0.5);
  line-height: 1.6;
  margin: 0.3rem 0 2rem;
  max-width: 30ch;
}

.brands-half-personality-spice {
  font-family: "Sora", sans-serif;
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  color: rgba(217,166,58,0.45);
  line-height: 1.7;
  margin: 0.3rem 0 2rem;
  max-width: 32ch;
  letter-spacing: 0.01em;
}

.brands-half-link {
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.brands-chai-half .brands-half-link {
  color: rgba(255,210,122,0.55);
  border-bottom: 1px solid rgba(255,210,122,0.2);
}

.brands-spice-half .brands-half-link {
  color: rgba(217,166,58,0.55);
  border-bottom: 1px solid rgba(217,166,58,0.2);
}

.brands-chai-half .brands-half-link:hover { color: #ffd27a; border-bottom-color: #ffd27a; }
.brands-spice-half .brands-half-link:hover { color: #d9a63a; border-bottom-color: #d9a63a; }

.brands-vsv-foundation {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 2rem;
}

.brands-vsv-eyebrow {
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(217,166,58,0.5);
  margin: 0 0 0.6rem;
}

.brands-vsv-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--text);
  margin: 0 0 0.9rem;
}

.brands-vsv-body {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.brands-vsv-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  font-family: "Sora", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(217,166,58,0.42);
}

@media (max-width: 760px) {
  .brands-split-canvas {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1px auto;
  }
  .brands-split-divider {
    background: linear-gradient(to right, transparent 5%, rgba(217,166,58,0.3) 25%, rgba(217,166,58,0.3) 75%, transparent 95%);
    width: 100%;
    height: 1px;
  }
  .brands-spice-half {
    align-items: center;
    text-align: center;
  }
  .brands-half-personality-spice {
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ═══════════════════════════════════════════════════════
   SHARED BRAND COMPONENT: PROCUREMENT BRIDGE
   Used on both ChaiTea.Life and Spice.Life pages
═══════════════════════════════════════════════════════ */

.procurement-bridge {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: rgba(217,166,58,0.02);
  border-top: 1px solid rgba(217,166,58,0.08);
  border-bottom: 1px solid rgba(217,166,58,0.08);
}

.procurement-bridge-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: rgba(255,210,122,0.65);
  margin: 0 0 0.8rem;
}

.procurement-bridge-body {
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  max-width: 52ch;
  margin: 0 auto 1.6rem;
  line-height: 1.75;
}

.procurement-bridge-links {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.procurement-bridge-links a {
  color: rgba(255,210,122,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,210,122,0.18);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.procurement-bridge-links a:hover {
  color: #ffd27a;
  border-bottom-color: #ffd27a;
}

/* ── FOOTER SUBSCRIBE (Shopify Email) ──────────────────── */
.footer-subscribe {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.footer-subscribe-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,210,122,0.42);
  margin: 0 0 0.75rem;
}
.footer-subscribe-row {
  display: flex;
  gap: 0.6rem;
  max-width: 360px;
  flex-wrap: wrap;
}
.footer-subscribe-row input[type="email"] {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.55rem 0.85rem;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
}
.footer-subscribe-row input[type="email"]:focus {
  border-color: rgba(255,210,122,0.4);
}
.footer-subscribe-row input[type="email"]::placeholder {
  color: rgba(255,255,255,0.25);
}
.footer-subscribe-row button {
  background: transparent;
  border: 1px solid rgba(255,210,122,0.28);
  color: var(--accent-soft);
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.footer-subscribe-row button:hover {
  background: rgba(255,210,122,0.08);
  border-color: rgba(255,210,122,0.5);
}
.footer-subscribe-success {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,210,122,0.65);
  margin: 0;
}

/* ── SPEC DOCS SECTION (Easify Attachments) ────────────── */
.spec-docs-section {
  padding: 2.8rem 0;
  border-top: 1px solid rgba(255,210,122,0.06);
}
.spec-docs-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 560px;
  margin-bottom: 1rem;
}
.spec-doc-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,210,122,0.08);
  border-radius: 6px;
  transition: border-color 0.2s;
}
.spec-doc-card:hover {
  border-color: rgba(255,210,122,0.2);
}
.spec-doc-icon {
  width: 34px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(255,210,122,0.06);
  border: 1px solid rgba(255,210,122,0.14);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  letter-spacing: 0.04em;
  color: rgba(255,210,122,0.5);
  text-transform: uppercase;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.spec-doc-body {
  flex: 1;
  min-width: 0;
}
.spec-doc-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.84rem;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}
.spec-doc-meta {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0.15rem 0 0;
}
.spec-doc-link {
  font-family: 'Sora', sans-serif;
  font-size: 0.74rem;
  color: var(--accent-soft);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255,210,122,0.2);
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.spec-doc-link:hover {
  background: rgba(255,210,122,0.07);
  border-color: rgba(255,210,122,0.4);
}
@media (max-width: 500px) {
  .spec-doc-card { flex-wrap: wrap; }
  .spec-doc-link { margin-left: calc(34px + 1rem); }
}

/* ── SCREEN READER ONLY (aria-live) ────────────────────── */
.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;
}

/* ── WHATSAPP FLOATING BUTTON ───────────────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(8px);
}
.float-whatsapp.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.float-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.1rem 0.65rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(37,211,102,0.3);
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.float-whatsapp-btn:hover {
  background: #20ba5a;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
}
.float-whatsapp-btn svg {
  flex-shrink: 0;
}

/* end append */

/* ── Mobile Homepage Compression ─────────────────── */
@media (max-width: 480px) {
  .section       { padding: 1.8rem 0; }
  .hero          { padding: 3rem 0 1.8rem; }
  .rfq-cta-block { padding: 1.8rem 0; }
}

@media (max-width: 640px) {
  /* Hero stat cards → compact horizontal strip */
  .hero-side {
    display: flex;
    flex-direction: row;
    gap: 0;
    border-top: 1px solid var(--line);
    margin-top: 1.5rem;
  }
  .hero-stat {
    flex: 1;
    border: none;
    border-right: 1px solid var(--line);
    padding: 0.65rem 0.5rem;
    background: none;
    text-align: center;
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-value { font-size: 1.25rem; margin-bottom: 0.1rem; }
  .hero-stat-label { font-size: 0.65rem; line-height: 1.3; }

  /* Compliance trust strip hidden — content duplicated by signal strip */
  #cert-strip-section { display: none; }

  /* Journal preview — show only first article */
  #journal-preview .surface-card:nth-child(n+2) { display: none; }
}
}
