/* ==========================================================================
   Kratom Factory — Static B2B site

   THEME SYSTEM
   ------------
   Default is "brick" — brick-red nav + sage green accents (matches the
   kratom-powder.eu direction in the reference screenshots).
   To switch: add data-theme="forest" or "clay" to <body>.

   Available themes:
     (default)      brick red + sage green     — warm, nav uses brick
     data-theme="forest"   forest green + orange terracotta  — original
     data-theme="clay"     burnt sienna + mossy green        — deeper, earthy
     data-theme="night"    deep green + cream + gold         — dark/dramatic
   ========================================================================== */

:root,
[data-theme="brick"] {
  /* Primary accent: brick red — nav bar, icons, CTAs */
  --terracotta: #9b4a3d;
  --terracotta-dark: #7d3a2f;

  /* Dark green remains dark — for section backgrounds (sustain, footer, etc) */
  --green-darkest: #1d3318;
  --green-dark: #2c4a2a;
  --green: #3b5d35;
  --green-mid: #5a7a4e;
  --green-soft: #e8ecdc;

  /* Sage — light-accent green for logos / eyebrows / small details */
  --sage: #6b8e5a;
  --sage-dark: #4d6b3f;

  --cream: #faf6eb;
  --cream-light: #fdfbf4;
  --paper: #fefdf8;

  --gold: #b58a4e;
  --gold-soft: #d6b584;

  --ink: #2a221e;
  --ink-soft: #4a3f38;
  --mute: #7a6d64;
  --hair: #e0d7c6;

  /* Semantic roles — change per theme */
  --nav-bg: var(--terracotta);
  --nav-bg-hover: var(--terracotta-dark);
  --icon-bg: var(--terracotta);
  --icon-fg: var(--cream-light);
  --heading-accent: var(--terracotta);
}

[data-theme="forest"] {
  /* Original: forest green dominant, orange terracotta accent */
  --green-darkest: #1d3318;
  --green-dark: #2c4a2a;
  --green: #3b5d35;
  --green-mid: #5a7a4e;
  --green-soft: #e9ecdc;
  --sage: #6b8e5a;
  --sage-dark: #4d6b3f;

  --cream: #f5f1e8;
  --cream-light: #faf8f1;
  --paper: #fdfcf7;

  --terracotta: #c76b4a;
  --terracotta-dark: #b05738;
  --gold: #c4a968;
  --gold-soft: #d9bf80;

  --ink: #1f2a1c;
  --ink-soft: #3e4a3b;
  --mute: #6b7567;
  --hair: #d7d1c1;

  --nav-bg: var(--green-dark);
  --nav-bg-hover: var(--green-darkest);
  --icon-bg: var(--cream);
  --icon-fg: var(--ink);
  --heading-accent: var(--terracotta);
}

[data-theme="clay"] {
  /* Deeper burnt sienna + mossy green — earthy, warm */
  --terracotta: #a8553c;
  --terracotta-dark: #8a3f2a;

  --green-darkest: #1e2d15;
  --green-dark: #2f4223;
  --green: #445732;
  --green-mid: #62724b;
  --green-soft: #e4e6d4;
  --sage: #7d8c64;
  --sage-dark: #5f7148;

  --cream: #f4ecd8;
  --cream-light: #f9f3e3;
  --paper: #fdfaf0;

  --gold: #c28c4a;
  --gold-soft: #dcb478;

  --ink: #2d241c;
  --ink-soft: #4b3e32;
  --mute: #77685a;
  --hair: #d9cdb3;

  --nav-bg: var(--terracotta);
  --nav-bg-hover: var(--terracotta-dark);
  --icon-bg: var(--terracotta);
  --icon-fg: var(--cream-light);
  --heading-accent: var(--green-dark);
}

[data-theme="night"] {
  /* Deep forest + warm cream + gold — dramatic, luxury */
  --terracotta: #b55a3d;
  --terracotta-dark: #8f3f28;

  --green-darkest: #0f1d0c;
  --green-dark: #182a14;
  --green: #24401d;
  --green-mid: #3e5a34;
  --green-soft: #dce2cd;
  --sage: #6b8e5a;
  --sage-dark: #4d6b3f;

  --cream: #eee6d0;
  --cream-light: #f6efd9;
  --paper: #fcf6e4;

  --gold: #d4b76a;
  --gold-soft: #e8d199;

  --ink: #1a1612;
  --ink-soft: #3a342b;
  --mute: #6b6254;
  --hair: #d1c8b1;

  --nav-bg: var(--green-darkest);
  --nav-bg-hover: #000;
  --icon-bg: var(--gold);
  --icon-fg: var(--green-darkest);
  --heading-accent: var(--gold);
}

/* Theme-agnostic design tokens (shared across all themes) */
:root {
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-xl: 44px;

  --shadow-sm: 0 1px 2px rgba(29,51,24,0.06);
  --shadow: 0 10px 30px -15px rgba(29,51,24,0.25);
  --shadow-lg: 0 25px 50px -20px rgba(29,51,24,0.35);

  --max: 1240px;
  --gutter: clamp(16px, 4vw, 48px);

  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --- Reset -------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.01em; margin: 0; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* --- Utilities ---------------------------------------------------------- */

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wide { max-width: 1400px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.italic-serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* --- Announcement bar --------------------------------------------------- */

.announce {
  background: var(--green-soft);
  color: var(--green-darkest);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(29,51,24,0.06);
  overflow: hidden;
}
.announce-track {
  display: flex;
  justify-content: center;
  width: 100%;
}
.announce-group {
  display: inline-flex;
  gap: 36px;
  align-items: center;
  font-weight: 500;
  padding: 0 var(--gutter);
}
.announce-group[aria-hidden="true"] { display: none; } /* hide duplicate on desktop */
.announce span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.announce .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green); opacity: 0.5; flex-shrink: 0; }

/* --- Header ------------------------------------------------------------- */

.site-header {
  background: var(--paper);
  padding: 4px 0 0 0;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.header-left { display: flex; gap: 28px; align-items: center; }
.header-right { display: flex; gap: 16px; align-items: center; justify-content: flex-end; }

.top-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .2s;
}
.top-link:hover { color: var(--terracotta); }

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.brand-logo {
  display: block;
  height: 104px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  transition: opacity .2s;
}
.brand:hover .brand-logo { opacity: 0.85; }
@media (max-width: 1100px) {
  .brand-logo { height: 88px; max-width: 240px; }
}
@media (max-width: 780px) {
  .brand-logo { height: 64px; max-width: 180px; }
}

.lang-flag {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 38px;
  max-height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: transparent;
  border: 7px solid #9b4b3d;
  padding: 0;
  box-sizing: border-box;
  transition: transform .2s, box-shadow .2s;
}
.lang-flag:hover { transform: scale(1.08); box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.quote-cta {
  background: var(--green-dark);
  color: var(--cream-light);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.quote-cta:hover { background: var(--green-darkest); transform: translateY(-1px); }
.quote-cta svg { width: 14px; height: 14px; }

/* --- Main nav (brick bar in default, themable) -------------------------- */

.main-nav {
  background: var(--nav-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.main-nav ul {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}
.main-nav a {
  display: block;
  padding: 18px 24px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
  transition: background .2s;
  flex: 1;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { background: rgba(0,0,0,0.18); }
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 30px; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
}

/* --- Hero --------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-darkest);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(29,51,24,.15) 0%, rgba(29,51,24,.45) 100%),
                    url("../img/hero-kratom-field.jpg");
  background-size: cover;
  background-position: center 35%;
}
.hero-card {
  position: relative;
  align-self: center;
  justify-self: end;
  background: rgba(29,51,24,0.72);
  backdrop-filter: blur(4px);
  color: var(--cream);
  padding: 36px 42px;
  border-radius: var(--radius);
  max-width: 520px;
  margin: 0 var(--gutter);
}
.hero-card h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--cream-light);
}
.hero-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245,241,232,0.9);
  margin: 0;
}
.hero-card strong { color: var(--gold-soft); font-weight: 600; }

.hero-btn {
  position: absolute;
  bottom: 40px; left: var(--gutter);
  background: transparent;
  border: 1.5px solid var(--cream-light);
  color: var(--cream-light);
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-serif);
  font-style: italic;
  transition: all .25s;
}
.hero-btn:hover { background: var(--cream-light); color: var(--green-darkest); }

/* --- Intro block (green leaf card) -------------------------------------- */

.intro {
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  background: var(--green-dark);
  color: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  position: relative;
}
.intro-text { padding: 44px 48px; }
.intro-text h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--cream-light);
  margin-bottom: 16px;
}
.intro-text p {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(245,241,232,0.85);
  margin-bottom: 14px;
}
.intro-text h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-soft);
  margin: 22px 0 10px;
  letter-spacing: 0.02em;
}
.intro-leaf {
  position: relative;
  overflow: hidden;
  background: var(--green);
  display: grid;
  place-items: center;
}
.intro-leaf::before {
  content: "";
  position: absolute;
  inset: -10% -20% -10% 20%;
  background: radial-gradient(circle at center, rgba(196,169,104,0.2) 0%, transparent 60%);
}
.intro-leaf img {
  width: 90%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  position: relative;
}
.intro-links {
  padding: 36px 32px;
  background: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.intro-links h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.intro-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,241,232,0.12);
  color: var(--cream);
  font-size: 15px;
  transition: color .2s, padding-left .2s;
}
.intro-links a:last-child { border-bottom: 0; }
.intro-links a:hover { color: var(--gold-soft); padding-left: 6px; }
.intro-links a::after { content: "›"; font-size: 20px; color: var(--gold); opacity: 0.8; }

/* --- Section heading line ----------------------------------------------- */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}
.section-head h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.view-all {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: color .2s;
}
.view-all:hover { color: var(--terracotta); }
.view-all::after { content: "↗"; }

/* --- Strain grid -------------------------------------------------------- */

.strains {
  margin: 80px auto 100px;
}
.strain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.strain-card {
  background: #ffffff;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.strain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-mid);
}
.strain-card .img-wrap {
  background: #ffffff;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  margin-bottom: 16px;
  overflow: hidden;
}
.strain-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.strain-card h3 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.strain-card .vein-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.vein-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--green-soft);
  color: var(--green-darkest);
  letter-spacing: 0.02em;
}
.vein-tag.accent { background: var(--green-dark); color: var(--cream); }
.strain-card .strain-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--hair);
  padding-top: 12px;
}
.strain-card .spec { font-size: 12px; color: var(--mute); }
.strain-card .spec strong { color: var(--ink); font-weight: 600; }
.strain-card .inquire {
  width: 34px; height: 34px;
  background: var(--terracotta);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream-light);
  font-size: 15px;
  transition: background .2s, transform .2s;
}
.strain-card:hover .inquire { background: var(--terracotta-dark); transform: rotate(-8deg); }

/* --- Sustainability / Growing section ---------------------------------- */

.sustain {
  background: var(--green-dark);
  color: var(--cream);
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}
.sustain::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 40px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,169,104,0.12), transparent 65%);
  pointer-events: none;
}
.sustain-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}
.sustain-hero h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--cream-light);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.sustain-hero h2 .accent { color: var(--gold); font-style: italic; font-weight: 400; }
.sustain-hero p {
  color: rgba(245,241,232,0.82);
  font-size: 15px;
  line-height: 1.75;
  max-width: 52ch;
}
.sustain-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--green);
}
.sustain-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.sustain-stats { display: flex; gap: 60px; margin-top: 26px; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.65);
  margin-top: 8px;
}

.sustain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}
.sustain-card {
  background: var(--cream-light);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.sustain-card.dark {
  background: var(--green);
  color: var(--cream);
}
.sustain-card h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--green-darkest);
}
.sustain-card.dark h3 { color: var(--cream-light); }
.sustain-card p { font-size: 14px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 22px; }
.sustain-card.dark p { color: rgba(245,241,232,0.85); }
.sustain-card .card-img {
  border-radius: var(--radius-sm);
  aspect-ratio: 16/9;
  background: var(--green-soft);
  overflow: hidden;
  margin-top: auto;
}
.sustain-card .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.sustain-card .card-img.tall img { object-position: center 30%; }

.sustain-cta { text-align: center; }
.btn-lg {
  display: inline-block;
  background: var(--terracotta);
  color: var(--cream-light);
  padding: 18px 42px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.btn-lg:hover { background: var(--terracotta-dark); transform: translateY(-2px); }

/* --- Blog preview ------------------------------------------------------- */

.blog-preview {
  padding: 80px 0 100px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.blog-card {
  display: block;
  transition: transform .25s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card .img {
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--green-soft);
  margin-bottom: 16px;
}
.blog-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s;
}
.blog-card:hover .img img { transform: scale(1.04); }
.blog-card h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--mute);
  margin-bottom: 14px;
}
.read-more {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.read-more::after { content: "↗"; }

/* --- Footer ------------------------------------------------------------- */

.site-footer {
  background: var(--green-dark);
  color: rgba(245,241,232,0.82);
  padding: 60px 0 30px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding-bottom: 36px;
}
.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream-light);
  margin-bottom: 18px;
}
.footer-grid a {
  display: block;
  padding: 5px 0;
  color: rgba(245,241,232,0.75);
  font-size: 13.5px;
  transition: color .2s, padding-left .2s;
}
.footer-grid a:hover { color: var(--gold-soft); padding-left: 4px; }

.footer-contact p { margin: 4px 0; color: rgba(245,241,232,0.75); font-size: 13.5px; }
.footer-contact .c-line { display: flex; gap: 10px; align-items: center; padding: 5px 0; }
.footer-contact .c-line::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: .7; }

.socials { display: flex; gap: 10px; margin-bottom: 20px; }
.socials a {
  width: 36px; height: 36px;
  background: rgba(245,241,232,0.1);
  border-radius: 50%;
  display: grid; place-items: center;
  padding: 0;
  transition: background .2s;
}
.socials a:hover { background: var(--gold); color: var(--green-darkest); padding: 0; }
.socials svg { width: 14px; height: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(245,241,232,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(245,241,232,0.55);
}
.help-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--cream-light);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background .2s;
}
.help-chip:hover { background: var(--terracotta); padding-left: 18px; }

/* --- Page header (inner pages) ----------------------------------------- */

.page-head {
  background-color: var(--green-dark);
  background-size: cover;
  background-position: center;
  color: var(--cream);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Dark overlay for readability when a background image is set */
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(29,51,24,0.78) 0%,
    rgba(29,51,24,0.62) 50%,
    rgba(29,51,24,0.82) 100%);
  z-index: -1;
}
/* Gold radial glow on top */
.page-head::before {
  content: "";
  position: absolute;
  right: -200px; top: -50px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,169,104,0.18), transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.page-head > .container { position: relative; z-index: 1; }

/* Optional background video — sits below the overlay, above the bg image */
.page-head-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  pointer-events: none;
}
/* Skip video on very small screens to save bandwidth (poster / bg-image shows instead) */
@media (max-width: 480px) {
  .page-head-video { display: none; }
}
.page-head .eyebrow { color: var(--gold-soft); }
.page-head h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  margin: 14px 0 18px;
  max-width: 20ch;
}
.page-head p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245,241,232,0.82);
  max-width: 60ch;
  margin: 0;
}
.crumbs {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.55);
  margin-bottom: 8px;
}
.crumbs a:hover { color: var(--gold-soft); }
.crumbs span { margin: 0 8px; }

/* --- Prose / article ---------------------------------------------------- */

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 0;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.prose h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin: 44px 0 16px;
}
.prose h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-darkest);
  margin: 32px 0 10px;
}
.prose figure { margin: 30px 0; }
.prose figure img { border-radius: var(--radius-sm); }
.prose figcaption { font-size: 13px; color: var(--mute); margin-top: 8px; text-align: center; font-style: italic; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  margin: 24px 0;
  padding: 4px 0 4px 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}
.prose ul { padding-left: 20px; margin-bottom: 1em; }
.prose ul li { list-style: disc; margin-bottom: 6px; }

/* --- About / story blocks ---------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.split.reverse > :first-child { order: 2; }
.split h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 22px;
  line-height: 1.1;
}
.split h2 em { color: var(--terracotta); font-weight: 400; }
.split img { border-radius: var(--radius); width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center; }

.fact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 50px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.fact .num { font-family: var(--font-serif); font-size: 40px; color: var(--green-dark); line-height: 1; }
.fact .lbl { font-size: 12.5px; color: var(--mute); margin-top: 8px; letter-spacing: 0.06em; text-transform: uppercase; }

/* --- Wholesale page ----------------------------------------------------- */

.wholesale-how { padding-top: 50px; padding-bottom: 20px; }
.wholesale-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: start;
}
.wh-image-col { position: sticky; top: 32px; }
.wh-intro { margin-bottom: 32px; }
.wh-intro .eyebrow { margin-bottom: 10px; }
.wh-intro h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 16px;
  line-height: 1.08;
}
.wh-intro h2 em { color: var(--terracotta); font-weight: 400; font-style: italic; }
.wh-intro-lede {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 40ch;
  margin: 0;
}
.wh-figure {
  margin: 0;
  background: var(--cream-light);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
}
.wh-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.wh-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wh-list li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--hair);
  align-items: baseline;
}
.wh-list li:first-child { padding-top: 0; border-top: none; }
.wh-list li:last-child { padding-bottom: 0; }
.wh-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 46px;
  color: var(--terracotta);
  line-height: 1;
}
.wh-body h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.wh-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* --- Form --------------------------------------------------------------- */

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 70px 0;
}
.form-wrap h2 { font-size: 32px; margin-bottom: 18px; }
.form-wrap p.lead { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.form-wrap .facts li {
  padding: 14px 0;
  border-bottom: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.form-wrap .facts li span:first-child { color: var(--mute); font-size: 13.5px; letter-spacing: 0.04em; text-transform: uppercase; }
.form-wrap .facts li span:last-child { color: var(--ink); font-weight: 600; text-align: right; }

form.inquiry {
  background: var(--cream-light);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--hair);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--hair);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(59,93,53,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form button[type="submit"] {
  background: var(--terracotta);
  color: var(--cream-light);
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: 100%;
  transition: background .2s;
}
form button[type="submit"]:hover { background: var(--terracotta-dark); }

/* --- Product detail ----------------------------------------------------- */

.pd-hero { padding: 60px 0; background: var(--cream-light); }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pd-img {
  background: #ffffff;
  border-radius: var(--radius);
  aspect-ratio: 1;
  overflow: hidden;
}
.pd-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pd-info .eyebrow { color: var(--terracotta); }
.pd-info h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 12px 0 18px;
  line-height: 1.05;
}
.pd-info .tagline { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 26px; }
.pd-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  padding: 22px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  margin-bottom: 28px;
}
.pd-specs dt { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.pd-specs dd { margin: 0 0 10px; font-weight: 600; color: var(--ink); font-size: 14.5px; }

.pd-sections { padding: 60px 0; }
.pd-sections .block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 14px;
}
.pd-sections .block > div {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.pd-sections .block.dark > div { background: var(--green-dark); color: var(--cream); }
.pd-sections .block h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--green-darkest);
}
.pd-sections .block.dark h2 { color: var(--cream-light); }
.pd-sections .block p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.pd-sections .block.dark p { color: rgba(245,241,232,0.85); }

/* --- Responsive --------------------------------------------------------- */

@media (max-width: 1100px) {
  .strain-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .intro { grid-template-columns: 1fr 1fr; }
  .intro-leaf { display: none; }
}
@media (max-width: 780px) {
  /* Announce bar — horizontal marquee */
  .announce { padding: 9px 0; font-size: 12px; }
  .announce-track {
    width: max-content;
    justify-content: flex-start;
    animation: announce-scroll 32s linear infinite;
  }
  .announce-group { gap: 22px; padding: 0 22px; }
  .announce-group[aria-hidden="true"] { display: inline-flex; } /* show duplicate */

  /* Header — logo left (with inset), flag + CTA right */
  .site-header { padding: 4px 0 0 0; }
  .header-grid {
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
  }
  .header-left { display: none; }
  .brand {
    justify-self: start;
    padding-left: 20px;
  }
  .header-right { gap: 10px; padding-right: 4px; }
  .brand-logo { height: 112px; max-width: 260px; }

  /* Request Quote CTA — compact on mobile */
  .quote-cta {
    padding: 10px 16px;
    font-size: 11.5px;
    letter-spacing: 0.04em;
  }
  .quote-cta svg { width: 12px; height: 12px; }
  .lang-flag {
    width: 34px; height: 34px;
    min-width: 34px; min-height: 34px;
    max-width: 34px; max-height: 34px;
  }

  /* Main nav — horizontal scroll, no wrapping, hide scrollbar */
  .main-nav ul {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .main-nav ul::-webkit-scrollbar { display: none; }
  .main-nav a {
    flex: 0 0 auto;
    padding: 14px 16px;
    white-space: nowrap;
    font-size: 13.5px;
  }

  /* Content blocks */
  .intro, .split, .pd-grid, .form-wrap, .sustain-hero, .pd-sections .block { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: initial; }
  .intro-text, .intro-links { padding: 32px; }
  .strain-grid { grid-template-columns: repeat(2, 1fr); }
  .sustain-cards { grid-template-columns: 1fr; }
  .wholesale-layout { grid-template-columns: 1fr; gap: 44px; }
  .wh-image-col { position: static; }
  .wh-figure { aspect-ratio: 16 / 11; padding: 28px; }
  .wh-list li { grid-template-columns: 62px 1fr; gap: 18px; padding: 22px 0; }
  .wh-num { font-size: 36px; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fact-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-card { margin: 0 16px 80px; padding: 28px; max-width: none; }
  .hero-btn { left: 16px; bottom: 24px; }
}

@keyframes announce-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Very small screens — tighter logo + hide flag */
@media (max-width: 420px) {
  .brand-logo { height: 96px; max-width: 220px; }
  .brand { padding-left: 14px; }
  .lang-flag { display: none; }
  .quote-cta { padding: 9px 13px; font-size: 11px; }
  .quote-cta svg { display: none; }
}

/* ==========================================================================
   Hero slider
   ========================================================================== */

.slider {
  position: relative;
  overflow: hidden;
  background: var(--green-darkest);
  height: 560px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(29,51,24,0.25) 0%, rgba(29,51,24,0.55) 100%);
}
.slide.active { opacity: 1; z-index: 1; }

/* Video slide — fills the slide like a bg-image does */
.slide-video { background-color: var(--green-darkest); }
.slide-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-video::before {
  /* Flat darkening overlay — hides compression artifacts, improves text contrast */
  content: "";
  position: absolute; inset: 0;
  background: rgba(29,51,24,0.35);
  z-index: 1;
}

.slide-content {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 0 var(--gutter);
  z-index: 2;
  color: var(--cream-light);
  pointer-events: none;
}
.slide-content .inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.slide-card {
  max-width: 560px;
  background: rgba(29,51,24,0.7);
  backdrop-filter: blur(4px);
  padding: 38px 44px;
  border-radius: var(--radius);
  pointer-events: auto;
}
.slide-card .eyebrow { color: var(--gold-soft); margin-bottom: 12px; }
.slide-card h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream-light);
  margin-bottom: 14px;
}
.slide-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,241,232,0.9);
  margin: 0 0 22px;
}
.slide-card strong { color: var(--gold-soft); font-weight: 600; }
.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--cream-light);
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.slide-btn:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.slide-btn::after { content: "→"; font-size: 16px; }

/* Slider controls */
.slider-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  z-index: 3;
  pointer-events: none;
}
.slider-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(253,252,247,0.15);
  border: 1px solid rgba(253,252,247,0.35);
  color: var(--cream-light);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  font-size: 18px;
  pointer-events: auto;
  transition: background .2s, transform .2s;
}
.slider-arrow:hover { background: rgba(253,252,247,0.3); transform: scale(1.05); }

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(253,252,247,0.4);
  cursor: pointer;
  transition: background .2s, transform .2s, width .3s;
}
.slider-dot.active {
  background: var(--gold-soft);
  width: 28px;
  border-radius: 6px;
}
.slider-dot:hover:not(.active) { background: rgba(253,252,247,0.7); }

/* ==========================================================================
   USP (Unique Selling Points) section
   ========================================================================== */

.usps {
  padding: 90px 0 100px;
  background: var(--cream-light);
}
.usp-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.usp-header h2 {
  font-size: clamp(30px, 4vw, 42px);
  color: var(--ink);
  margin: 12px 0 14px;
  line-height: 1.1;
}
.usp-header h2 em { color: var(--terracotta); font-weight: 400; }
.usp-header p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.usp-card {
  background: #ffffff;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--green-mid);
}
.usp-img {
  aspect-ratio: 5/4;
  overflow: hidden;
  position: relative;
}
.usp-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s;
}
.usp-card:hover .usp-img img { transform: scale(1.06); }
.usp-img::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(29,51,24,0.25));
}
.usp-body {
  padding: 24px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.usp-num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 8px;
}
.usp-body h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.usp-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
  flex: 1;
}
.usp-link {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.usp-link::after { content: "→"; transition: transform .2s; }
.usp-card:hover .usp-link::after { transform: translateX(4px); }

/* ==========================================================================
   Category tiles
   ========================================================================== */

.categories-section {
  padding: 90px 0 100px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-tile {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-darkest);
  isolation: isolate;
}
.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s;
  z-index: -1;
}
.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(29,51,24,0.15) 0%,
    rgba(29,51,24,0.35) 45%,
    rgba(29,51,24,0.92) 100%);
  z-index: 0;
  transition: background .3s;
}
.category-tile:hover img { transform: scale(1.08); }
.category-tile:hover::after {
  background: linear-gradient(180deg,
    rgba(29,51,24,0.25) 0%,
    rgba(29,51,24,0.55) 45%,
    rgba(29,51,24,0.95) 100%);
}
.category-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 28px 28px;
  color: var(--cream-light);
  z-index: 1;
}
.category-content .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.category-content h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  color: var(--cream-light);
  margin: 0 0 8px;
  line-height: 1.1;
}
.category-content p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(245,241,232,0.85);
  margin: 0 0 16px;
}
.category-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  transition: gap .2s, color .2s;
}
.category-cta::after { content: "→"; transition: transform .2s; }
.category-tile:hover .category-cta { color: var(--cream-light); }
.category-tile:hover .category-cta::after { transform: translateX(5px); }

/* Colour pill per category */
.category-tile[data-vein="green"] .category-content .eyebrow { color: #a3c48a; }
.category-tile[data-vein="red"] .category-content .eyebrow { color: #e8a68e; }
.category-tile[data-vein="white"] .category-content .eyebrow { color: #e9e4cf; }
.category-tile[data-vein="yellow"] .category-content .eyebrow { color: var(--gold-soft); }

/* ==========================================================================
   Responsive additions
   ========================================================================== */

@media (max-width: 1100px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 780px) {
  .slider { height: 480px; }
  .slide-card { padding: 28px 24px; max-width: none; margin-right: 20px; }
  .slider-arrows { padding: 0 12px; }
  .slider-arrow { width: 40px; height: 40px; }
  .usp-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .category-tile { aspect-ratio: 3/2; }
}

/* ==========================================================================
   Product filter (products.html)
   ========================================================================== */

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hair);
  flex-wrap: wrap;
}
.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--hair);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-sans);
}
.filter-btn:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
}
.filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--cream-light);
}
.filter-btn[data-filter="green"].active  { background: #3b5d35; border-color: #3b5d35; }
.filter-btn[data-filter="red"].active    { background: #884a3a; border-color: #884a3a; }
.filter-btn[data-filter="white"].active  { background: #7d7a6b; border-color: #7d7a6b; }
.filter-btn[data-filter="yellow"].active { background: #b58a4e; border-color: #b58a4e; }

.filter-count {
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.04em;
}
.filter-count strong { color: var(--ink); font-weight: 600; }

.strain-card[hidden] { display: none !important; }

@media (max-width: 780px) {
  .filter-bar { flex-direction: column; align-items: flex-start; }
  .filter-pills { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
  .filter-pills::-webkit-scrollbar { display: none; }
  .filter-btn { flex: 0 0 auto; padding: 9px 18px; }
}
