/*
Theme Name: The Finest Session
Theme URI: https://thefinestsession.com
Author: Ray Cochrane
Author URI: https://thefinestsession.com
Description: Dark Luxury — a premium cannabis review theme with warm dark mode, light mode toggle, editorial design, and immersive scroll reveals.
Version: 1.4.1
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tfs
*/

/* ========================================
   CSS CUSTOM PROPERTIES — DARK LUXURY DESIGN SYSTEM
   Design direction: Warm dark luxury meets editorial cannabis
   Color story: Near-black surfaces, warm golds, cream paper tones
   ======================================== */
:root {
  /* core palette — warm dark luxury */
  --forest-deep:    #0e0e0e;
  --forest-mid:     #1a1a1a;
  --forest-soft:    #252525;
  --forest-muted:   #3a3a3a;

  /* accent greens — deliberate use only */
  --accent-green:     #2A4430;
  --accent-green-dim: #1A2E1E;

  /* accent — warm gold (luxury signifier) */
  --gold:           #C4A35A;
  --gold-bright:    #D4B86A;
  --gold-dim:       #8E7A42;
  --gold-glow:      rgba(196, 163, 90, 0.15);

  /* cream/paper tones */
  --cream:          #F5F0E8;
  --cream-warm:     #EDE6DA;
  --cream-soft:     #E8E0D0;
  --paper:          #FAF7F2;

  /* text */
  --text-light:     #F5F0E8;
  --text-light-dim: rgba(245, 240, 232, 0.55);
  --text-dark:      #1A2E1E;
  --text-dark-dim:  rgba(26, 26, 26, 0.5);

  /* typography */
  --font-display:   'Cormorant Garamond', 'Georgia', serif;
  --font-body:      'Outfit', 'Helvetica Neue', sans-serif;
  --font-editorial: 'Libre Baskerville', 'Georgia', serif;

  /* transitions — everything is slow, deliberate, luxurious */
  --t-glacial:      2.4s;
  --t-slow:         1.6s;
  --t-medium:       1.0s;
  --t-gentle:       0.7s;
  --t-subtle:       0.45s;

  /* easing — custom cubic-beziers for that "taking its time" feel */
  --ease-luxury:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-drift:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-reveal:    cubic-bezier(0.77, 0, 0.175, 1);

  /* taxonomy accent colors */
  --accent-green-text:  #6DBF7B;   /* cultivator/farm */
  --accent-blue-text:   #7BA3C9;   /* brand */
  --accent-amber-text:  #C9A37B;   /* store/shop */

  /* layout */
  --max-width:      1280px;
  --gutter:         clamp(1.5rem, 4vw, 4rem);
  --section-gap:    clamp(6rem, 12vh, 14rem);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--forest-deep);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--t-subtle) var(--ease-drift);
}

a:hover {
  color: var(--gold-bright);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   AGE GATE — luxury entry experience
   first impression sets the entire luxury tone
   ======================================== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--forest-deep);
  transition: opacity var(--t-glacial) var(--ease-luxury),
              visibility 0s linear 0s;
}

.age-gate.dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-glacial) var(--ease-luxury),
              visibility 0s linear var(--t-glacial);
}

.age-gate__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
}

.age-gate__content {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: gate-reveal 2s var(--ease-luxury) 0.5s forwards;
}

@keyframes gate-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.age-gate__logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.age-gate__logo span {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.age-gate__divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: 0;
  animation: divider-grow 1.6s var(--ease-luxury) 1.2s forwards;
}

@keyframes divider-grow {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 0.7; }
}

.age-gate__question {
  font-family: var(--font-editorial);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-light-dim);
  font-style: italic;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.age-gate__actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.age-gate__btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.8rem;
  border: 1px solid;
  background: transparent;
  cursor: pointer;
  transition: all var(--t-gentle) var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.age-gate__btn--yes {
  border-color: var(--gold);
  color: var(--gold);
}

.age-gate__btn--yes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-gentle) var(--ease-luxury);
  z-index: -1;
}

.age-gate__btn--yes:hover::before {
  transform: scaleX(1);
}

.age-gate__btn--yes:hover {
  color: var(--forest-deep);
}

.age-gate__btn--no {
  border-color: rgba(245, 240, 232, 0.2);
  color: var(--text-light-dim);
}

.age-gate__btn--no:hover {
  border-color: rgba(245, 240, 232, 0.4);
  color: var(--text-light);
}

.age-gate__legal {
  font-size: 0.7rem;
  color: var(--text-light-dim);
  margin-top: 3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  animation: gate-reveal 1.6s var(--ease-luxury) 1.8s forwards;
}

/* ========================================
   ADMIN BAR — offset fixed nav when WP toolbar is visible
   ======================================== */
body.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .nav { top: 46px; }
}

/* ========================================
   NAVIGATION — minimal, fades in on scroll
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity var(--t-slow) var(--ease-luxury),
              transform var(--t-slow) var(--ease-luxury),
              background var(--t-medium) var(--ease-drift);
  pointer-events: none;
}

.nav.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  background: rgba(14, 14, 14, 0.4);
  border-bottom: 1px solid rgba(196, 163, 90, 0.06);
}

.nav.scrolled {
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(196, 163, 90, 0.08);
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color var(--t-subtle) var(--ease-drift);
}

.nav__brand em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  text-decoration: none;
  position: relative;
  transition: color var(--t-gentle) var(--ease-drift);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-gentle) var(--ease-luxury);
}

.nav__link:hover {
  color: var(--cream);
}

.nav__link:hover::after {
  width: 100%;
}

/* ========================================
   HERO — cinematic slow reveal
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: var(--gutter);
  overflow: hidden;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__atmosphere::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%,
      rgba(37, 37, 37, 0.4) 0%,
      rgba(14, 14, 14, 0) 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%,
      rgba(196, 163, 90, 0.06) 0%,
      transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%,
      rgba(196, 163, 90, 0.04) 0%,
      transparent 60%);
  animation: atmosphere-drift 20s ease-in-out infinite alternate;
}

@keyframes atmosphere-drift {
  0%   { opacity: 0.7; transform: scale(1) translateY(0); }
  50%  { opacity: 1;   transform: scale(1.05) translateY(-10px); }
  100% { opacity: 0.8; transform: scale(1.02) translateY(5px); }
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.7' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: text-rise var(--t-glacial) var(--ease-luxury) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  animation: text-rise var(--t-glacial) var(--ease-luxury) 0.8s forwards;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
}

.hero__subtitle {
  font-family: var(--font-editorial);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-light-dim);
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: text-rise var(--t-glacial) var(--ease-luxury) 1.3s forwards;
}

.hero__scroll-hint {
  opacity: 0;
  animation: text-rise var(--t-glacial) var(--ease-luxury) 2s forwards;
}

.hero__scroll-hint span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  margin-bottom: 1rem;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scroll-pulse 3s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 0.8; transform: scaleY(1); }
}

@keyframes text-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   SCROLL REVEAL SYSTEM
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity var(--t-slow) var(--ease-luxury),
              transform var(--t-slow) var(--ease-luxury);
}

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

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }
.reveal-delay-4 { transition-delay: 0.8s; }

.reveal-fade {
  opacity: 0;
  transition: opacity var(--t-glacial) var(--ease-drift);
}
.reveal-fade.visible { opacity: 1; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--t-slow) var(--ease-luxury),
              transform var(--t-slow) var(--ease-luxury);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ========================================
   SECTION LAYOUT
   ======================================== */
.section {
  padding: var(--section-gap) var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section--full {
  max-width: none;
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.section__heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
}

.section__description {
  font-family: var(--font-editorial);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--text-light-dim);
  max-width: 600px;
  line-height: 1.9;
  font-style: italic;
}

/* ========================================
   GOLD LINE DIVIDER
   ======================================== */
.gold-line {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.gold-line__inner {
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    var(--gold-dim),
    transparent);
  opacity: 0.3;
}

/* ========================================
   FEATURED REVIEWS — editorial card layout
   ======================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

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

.review-card {
  position: relative;
  border: 1px solid rgba(196, 163, 90, 0.1);
  background: rgba(26, 26, 26, 0.3);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--t-gentle) var(--ease-drift),
              background var(--t-gentle) var(--ease-drift);
}

/* stretched link covers the entire card */
.review-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.review-card:hover {
  border-color: rgba(196, 163, 90, 0.25);
  background: rgba(26, 26, 26, 0.5);
}

.review-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

@media (max-width: 768px) {
  .review-card--featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.review-card__image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: var(--forest-mid);
}

.review-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-luxury),
              filter var(--t-slow) var(--ease-drift);
  filter: saturate(0.8) brightness(0.9);
}

.review-card:hover .review-card__image img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}

.review-card__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(145deg,
    var(--forest-mid) 0%,
    var(--forest-soft) 50%,
    var(--forest-mid) 100%);
  position: relative;
}

.review-card__image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 60%, rgba(196,163,90,0.08), transparent 60%);
}

.review-card__body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-card__tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.review-card__tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold-dim);
}

/* badge variants — review is default gold, dev is steel blue, post is neutral */
.review-card__tag--review { color: var(--gold); }
.review-card__tag--review::before { background: var(--gold-dim); }

.review-card__tag--dev { color: #7BA3C9; }
.review-card__tag--dev::before { background: #5A829E; }

.review-card__tag--post { color: var(--text-light-dim); }
.review-card__tag--post::before { background: var(--forest-muted); }

.review-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1rem;
  transition: color var(--t-gentle) var(--ease-drift);
}

.review-card__title a {
  color: inherit;
  text-decoration: none;
}

.review-card:hover .review-card__title {
  color: var(--gold-bright);
}

.review-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-light-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  margin-top: auto;
}

.review-card__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-dim);
}

.review-card__cta {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  transition: gap var(--t-gentle) var(--ease-luxury);
}

.review-card:hover .review-card__cta,
.review-card__cta:hover {
  gap: 1.2rem;
}

.review-card__cta-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-gentle) var(--ease-luxury);
}

.review-card:hover .review-card__cta-line,
.review-card__cta:hover .review-card__cta-line {
  width: 50px;
}

/* ========================================
   PHILOSOPHY / QUOTE SECTION
   ======================================== */
.philosophy {
  padding: var(--section-gap) var(--gutter);
  text-align: center;
  position: relative;
}

.philosophy__quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--cream);
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

.philosophy__quote .gold {
  color: var(--gold-bright);
  font-weight: 400;
}

.philosophy__attribution {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 2.5rem;
}

.philosophy__line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto 0;
  opacity: 0.5;
}

/* ========================================
   STRAINS SHOWCASE
   ======================================== */
.strains-scroll {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-bottom: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.strains-scroll::-webkit-scrollbar { display: none; }

.strain-pill {
  flex-shrink: 0;
  padding: 1rem 2rem;
  border: 1px solid rgba(196, 163, 90, 0.15);
  background: rgba(37, 37, 37, 0.2);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--t-gentle) var(--ease-luxury);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.strain-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-glow);
  opacity: 0;
  transition: opacity var(--t-gentle) var(--ease-drift);
}

.strain-pill:hover::before { opacity: 1; }

.strain-pill:hover {
  border-color: rgba(196, 163, 90, 0.4);
  color: var(--gold-bright);
}

.strain-pill__type {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
  margin-top: 0.3rem;
}

/* ========================================
   PODCAST SECTION
   ======================================== */
.podcast-section {
  position: relative;
  padding: var(--section-gap) 0;
  overflow: hidden;
}

.podcast-section__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      var(--forest-deep) 0%,
      rgba(26, 26, 26, 0.6) 50%,
      var(--forest-deep) 100%);
  z-index: 0;
}

.podcast-section__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 70% 50%,
    rgba(196, 163, 90, 0.05) 0%,
    transparent 70%);
}

.podcast-section__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .podcast-section__inner { grid-template-columns: 1fr; }
}

.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 120px;
  justify-content: center;
}

.waveform__bar {
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.4;
  animation: wave-idle 3s ease-in-out infinite;
}

@keyframes wave-idle {
  0%, 100% { transform: scaleY(0.3); opacity: 0.25; }
  50%      { transform: scaleY(1);   opacity: 0.5; }
}

/* ========================================
   ASSISTANT PROMO SECTION
   ======================================== */
.assistant-promo {
  position: relative;
  padding: var(--section-gap) var(--gutter);
  overflow: hidden;
}

.assistant-promo__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(196, 163, 90, 0.03) 0%,
    transparent 50%,
    rgba(37, 37, 37, 0.1) 100%);
  border-top: 1px solid rgba(196, 163, 90, 0.06);
  border-bottom: 1px solid rgba(196, 163, 90, 0.06);
}

.assistant-promo__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .assistant-promo__inner { grid-template-columns: 1fr; }
}

.assistant-promo__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(196, 163, 90, 0.2);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.assistant-promo__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

.assistant-promo__features {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.assistant-promo__feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.assistant-promo__feature-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(196, 163, 90, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.assistant-promo__feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.assistant-promo__feature-text p {
  font-size: 0.85rem;
  color: var(--text-light-dim);
  line-height: 1.6;
}

.assistant-promo__mockup {
  border: 1px solid rgba(196, 163, 90, 0.1);
  background: rgba(26, 26, 26, 0.4);
  position: relative;
  overflow: hidden;
}

.assistant-promo__mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%,
    rgba(196, 163, 90, 0.05) 0%,
    transparent 60%);
  pointer-events: none;
}

/* FAUX DASHBOARD */
.assistant-promo__dashboard {
  position: relative;
  z-index: 1;
  padding: 0;
  font-family: var(--font-body);
}

.dash__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid rgba(196, 163, 90, 0.08);
}

.dash__topbar-brand {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.dash__topbar-dots {
  display: flex;
  gap: 4px;
}

.dash__topbar-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest-muted);
}

.dash__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(196, 163, 90, 0.06);
  border-bottom: 1px solid rgba(196, 163, 90, 0.08);
}

.dash__metric {
  padding: 1rem 1.2rem;
  background: rgba(26, 26, 26, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dash__metric-label {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-dim);
}

.dash__metric-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
}

.dash__metric-change {
  font-size: 0.6rem;
  color: var(--text-light-dim);
}

.dash__metric-change--up {
  color: #6DBF7B;
}

.dash__activity {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(196, 163, 90, 0.08);
}

.dash__activity-header {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.8rem;
}

.dash__activity-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: var(--text-light-dim);
  padding: 0.4rem 0;
}

.dash__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dash__dot--green { background: #6DBF7B; }
.dash__dot--gold { background: var(--gold); }
.dash__dot--blue { background: #7BA3C9; }

.dash__video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.2rem;
  color: var(--gold-dim);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--t-subtle) var(--ease-drift);
}

.dash__video-placeholder:hover {
  color: var(--gold);
}

.dash__video-placeholder svg {
  opacity: 0.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 4rem var(--gutter) 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(196, 163, 90, 0.08);
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer__brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.footer__tagline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-light-dim);
  margin-top: 0.5rem;
}

.footer__nav {
  display: flex;
  gap: 2rem;
}

.footer__nav-col h5 {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.footer__nav-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light-dim);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color var(--t-subtle) var(--ease-drift);
}

.footer__nav-col a:hover {
  color: var(--cream);
}

.footer__bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__legal {
  font-size: 0.68rem;
  color: var(--text-light-dim);
  letter-spacing: 0.05em;
}

.footer__legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(196, 163, 90, 0.15);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ========================================
   SINGLE POST
   ======================================== */
.single-header {
  padding: 8rem var(--gutter) 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.single-header__tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.single-header__tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold-dim);
}

.single-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.single-header__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-dim);
}

.entry-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-gap);
}

.entry-content p {
  font-family: var(--font-editorial);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--cream-warm);
  margin-bottom: 1.8rem;
}

.entry-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  margin: 3rem 0 1.5rem;
}

.entry-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  margin: 2.5rem 0 1rem;
}

.entry-content img {
  margin: 2rem 0;
  border: 1px solid rgba(196, 163, 90, 0.1);
}

.entry-content blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-light-dim);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.8rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  color: var(--cream-warm);
}

.entry-content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(196, 163, 90, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--t-subtle) var(--ease-drift);
}

.entry-content a:hover {
  text-decoration-color: var(--gold);
}

/* post navigation */
.post-nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) 4rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.post-nav__link {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: gap var(--t-gentle) var(--ease-luxury);
}

.post-nav__link:hover {
  gap: 1.2rem;
}

/* ========================================
   PAGE TEMPLATE
   ======================================== */
.page-header {
  padding: 8rem var(--gutter) 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-gap);
}

/* ========================================
   404 PAGE
   ======================================== */
.error-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--gutter);
}

.error-404__code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  color: var(--gold-dim);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.error-404__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.error-404__text {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--text-light-dim);
  margin-bottom: 3rem;
  max-width: 400px;
}

.error-404__link {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 2.8rem;
  border: 1px solid var(--gold);
  transition: all var(--t-gentle) var(--ease-luxury);
}

.error-404__link:hover {
  background: var(--gold);
  color: var(--forest-deep);
}

/* ========================================
   BLOG INDEX — post listing
   ======================================== */
.blog-header {
  padding: 8rem var(--gutter) 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.blog-header__description {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--text-light-dim);
  max-width: 500px;
}

/* pagination */
.pagination {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem var(--gutter);
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.pagination a,
.pagination span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(196, 163, 90, 0.15);
  color: var(--text-light-dim);
  text-decoration: none;
  transition: all var(--t-subtle) var(--ease-drift);
}

.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination .current {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

/* ========================================
   WORDPRESS ALIGNMENT CLASSES
   ======================================== */
.alignwide {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* wp generated classes */
.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.8rem;
  color: var(--text-light-dim);
  text-align: center;
  padding-top: 0.5rem;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* ========================================
   LIGHT MODE — paper-white theme
   ======================================== */
[data-theme="light"] {
  --forest-deep:    #FAF7F2;
  --forest-mid:     #F0EBE3;
  --forest-soft:    #E5DFD5;
  --forest-muted:   #D5CFC5;

  --gold:           #9E8340;
  --gold-bright:    #8A7035;
  --gold-dim:       #6E5A2E;
  --gold-glow:      rgba(158, 131, 64, 0.1);

  --cream:          #1a1a1a;
  --cream-warm:     #2d2d2d;
  --cream-soft:     #3a3a3a;
  --paper:          #FAF7F2;

  --text-light:     #1a1a1a;
  --text-light-dim: rgba(26, 26, 26, 0.55);
  --text-dark:      #1a1a1a;
  --text-dark-dim:  rgba(26, 26, 26, 0.5);
}

[data-theme="light"] .nav.visible {
  background: rgba(250, 247, 242, 0.6);
  border-bottom: 1px solid rgba(158, 131, 64, 0.12);
}

[data-theme="light"] .nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  border-bottom: 1px solid rgba(158, 131, 64, 0.15);
}

[data-theme="light"] .review-card {
  border-color: rgba(158, 131, 64, 0.12);
  background: rgba(240, 235, 227, 0.5);
}

[data-theme="light"] .review-card:hover {
  border-color: rgba(158, 131, 64, 0.25);
  background: rgba(240, 235, 227, 0.8);
}

[data-theme="light"] .strain-pill {
  border-color: rgba(158, 131, 64, 0.15);
  background: rgba(229, 223, 213, 0.4);
}

[data-theme="light"] .strain-pill:hover {
  border-color: rgba(158, 131, 64, 0.4);
}

[data-theme="light"] .footer__top {
  border-bottom-color: rgba(158, 131, 64, 0.12);
}

[data-theme="light"] .footer__legal-badge {
  border-color: rgba(158, 131, 64, 0.2);
}

[data-theme="light"] .age-gate__btn--no {
  border-color: rgba(26, 26, 26, 0.2);
  color: rgba(26, 26, 26, 0.55);
}

[data-theme="light"] .age-gate__btn--no:hover {
  border-color: rgba(26, 26, 26, 0.4);
  color: var(--text-light);
}

[data-theme="light"] .assistant-promo__bg {
  background: linear-gradient(135deg,
    rgba(158, 131, 64, 0.05) 0%,
    transparent 50%,
    rgba(229, 223, 213, 0.3) 100%);
  border-color: rgba(158, 131, 64, 0.08);
}

[data-theme="light"] .assistant-promo__mockup {
  border-color: rgba(158, 131, 64, 0.12);
  background: rgba(240, 235, 227, 0.6);
}

[data-theme="light"] .dash__metric {
  background: rgba(240, 235, 227, 0.8);
}

[data-theme="light"] .dash__metric-change--up {
  color: #3D8B4D;
}

[data-theme="light"] .pagination a,
[data-theme="light"] .pagination span {
  border-color: rgba(158, 131, 64, 0.15);
}

[data-theme="light"] .entry-content img {
  border-color: rgba(158, 131, 64, 0.12);
}

[data-theme="light"] .plug-tier {
  border-color: rgba(158, 131, 64, 0.12);
  background: rgba(240, 235, 227, 0.5);
}

[data-theme="light"] .plug-tier--featured {
  border-color: rgba(158, 131, 64, 0.3);
}

[data-theme="light"] .podcast-section__bg {
  background: linear-gradient(180deg,
    var(--forest-deep) 0%,
    rgba(229, 223, 213, 0.6) 50%,
    var(--forest-deep) 100%);
}

[data-theme="light"] .podcast-section__bg::before {
  background: radial-gradient(ellipse 60% 40% at 70% 50%,
    rgba(158, 131, 64, 0.06) 0%,
    transparent 70%);
}

[data-theme="light"] .strain-card {
  border-color: rgba(158, 131, 64, 0.1);
  background: rgba(240, 235, 227, 0.5);
}

[data-theme="light"] .strain-card:hover {
  border-color: rgba(158, 131, 64, 0.25);
  background: rgba(240, 235, 227, 0.8);
}

[data-theme="light"] .strain-filter-pill {
  border-color: rgba(158, 131, 64, 0.15);
  background: rgba(229, 223, 213, 0.3);
}

[data-theme="light"] .strain-filter-pill.active,
[data-theme="light"] .strain-filter-pill:hover {
  border-color: var(--gold);
}

/* ========================================
   AGE GATE — verified state (no flash)
   ======================================== */
html.tfs-verified .age-gate { display: none; }
html.tfs-verified .nav { opacity: 1; transform: translateY(0); pointer-events: all; }

/* ========================================
   THEME TOGGLE BUTTON
   ======================================== */
.nav__theme-toggle {
  background: none;
  border: 1px solid rgba(196, 163, 90, 0.15);
  color: var(--text-light-dim);
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: border-color var(--t-subtle) var(--ease-drift),
              color var(--t-subtle) var(--ease-drift);
  flex-shrink: 0;
}

.nav__theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav__theme-toggle svg {
  width: 16px;
  height: 16px;
}

.nav__toggle-sun { display: none; }
.nav__toggle-moon { display: block; }

[data-theme="light"] .nav__toggle-sun { display: block; }
[data-theme="light"] .nav__toggle-moon { display: none; }

/* ========================================
   STRAIN ARCHIVE — search + discovery
   ======================================== */
.strain-archive {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-gap);
}

.strain-search {
  margin-bottom: 2rem;
}

.strain-search__input {
  width: 100%;
  max-width: 500px;
  padding: 0.9rem 1.5rem;
  background: var(--forest-mid);
  border: 1px solid rgba(196, 163, 90, 0.15);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t-subtle) var(--ease-drift);
}

.strain-search__input::placeholder {
  color: var(--text-light-dim);
}

.strain-search__input:focus {
  border-color: var(--gold);
}

.strain-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.strain-filter-pill {
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(196, 163, 90, 0.15);
  background: rgba(37, 37, 37, 0.2);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-subtle) var(--ease-drift);
}

.strain-filter-pill:hover,
.strain-filter-pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.strain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.strain-card {
  border: 1px solid rgba(196, 163, 90, 0.1);
  background: rgba(26, 26, 26, 0.3);
  overflow: hidden;
  transition: border-color var(--t-gentle) var(--ease-drift),
              background var(--t-gentle) var(--ease-drift);
  text-decoration: none;
  display: block;
  color: inherit;
}

.strain-card:hover {
  border-color: rgba(196, 163, 90, 0.25);
  background: rgba(26, 26, 26, 0.5);
}

.strain-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--forest-mid);
}

.strain-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-luxury);
  filter: saturate(0.85) brightness(0.95);
}

.strain-card:hover .strain-card__image img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}

.strain-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg,
    var(--forest-mid) 0%,
    var(--forest-soft) 50%,
    var(--forest-mid) 100%);
}

.strain-card__body {
  padding: 1.2rem 1.5rem 1.5rem;
}

.strain-card__type {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.strain-card__type::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold-dim);
}

.strain-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.4rem;
  transition: color var(--t-subtle) var(--ease-drift);
}

.strain-card:hover .strain-card__title {
  color: var(--gold-bright);
}

.strain-card__cultivator {
  font-size: 0.75rem;
  color: var(--text-light-dim);
  margin-bottom: 0.8rem;
}

.strain-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-light-dim);
  line-height: 1.7;
}

.strain-archive__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
}

/* ========================================
   THE PLUG — supporter tiers
   ======================================== */
.plug-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.plug-tier {
  border: 1px solid rgba(196, 163, 90, 0.1);
  background: rgba(26, 26, 26, 0.3);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color var(--t-gentle) var(--ease-drift),
              background var(--t-gentle) var(--ease-drift);
}

.plug-tier:hover {
  border-color: rgba(196, 163, 90, 0.25);
  background: rgba(26, 26, 26, 0.5);
}

.plug-tier--featured {
  border-color: rgba(196, 163, 90, 0.25);
  position: relative;
}

.plug-tier--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 1rem;
}

.plug-tier__price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.plug-tier__price span {
  font-size: 0.4em;
  color: var(--text-light-dim);
  vertical-align: baseline;
}

.plug-tier__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.plug-tier__description {
  font-size: 0.88rem;
  color: var(--text-light-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.plug-tier__cta {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 0.8rem 2rem;
  border: 1px solid var(--gold);
  transition: all var(--t-gentle) var(--ease-luxury);
}

.plug-tier__cta:hover {
  background: var(--gold);
  color: var(--forest-deep);
}

.plug-tier__paypal {
  margin-top: 1.5rem;
  min-height: 40px;
}

/* PLUG BUSINESS CTA */
.plug-business {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  border: 1px solid var(--forest-muted);
  border-radius: 6px;
}

.plug-business__heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.plug-business__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light-dim);
  margin-bottom: 1.5rem;
}

.plug-business__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-deep);
  background: var(--gold);
  padding: 0.8rem 2rem;
  text-decoration: none;
  transition: background var(--t-subtle) var(--ease-drift);
}

.plug-business__cta:hover {
  background: var(--gold-bright);
}

.plug-business__note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light-dim);
  margin-top: 1rem;
  opacity: 0.7;
}

/* PLUG REASONS */
.plug-reasons {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.plug-reasons__heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.plug-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.plug-reason {
  padding: 1.5rem;
  border: 1px solid var(--forest-muted);
  border-radius: 6px;
}

.plug-reason__title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.plug-reason__text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light-dim);
  line-height: 1.6;
}

/* light mode plug sections */
[data-theme="light"] .plug-business {
  border-color: var(--cream-soft);
}

[data-theme="light"] .plug-business__text,
[data-theme="light"] .plug-business__note { color: var(--text-dark-dim); }

[data-theme="light"] .plug-reasons__heading { color: var(--text-dark); }

[data-theme="light"] .plug-reason {
  border-color: var(--cream-soft);
}

[data-theme="light"] .plug-reason__text { color: var(--text-dark-dim); }

/* PLUG TESTIMONIAL CAROUSEL */
.plug-social {
  margin-top: 4rem;
  text-align: center;
}

.plug-social__eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.plug-carousel {
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.plug-carousel__track {
  display: flex;
  transition: transform var(--t-medium) var(--ease-luxury);
}

.plug-testimonial {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 1rem;
}

.plug-testimonial__quote {
  font-family: var(--font-editorial);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.plug-testimonial__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.plug-testimonial__name {
  color: var(--cream);
  font-weight: 500;
}

.plug-testimonial__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-dim);
}

.plug-testimonial__tier {
  color: var(--gold);
}

.plug-testimonial__since {
  color: var(--text-light-dim);
}

.plug-carousel__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.plug-carousel__btn {
  background: none;
  border: 1px solid rgba(196, 163, 90, 0.15);
  color: var(--text-light-dim);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t-subtle) var(--ease-drift),
              color var(--t-subtle) var(--ease-drift);
}

.plug-carousel__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ========================================
   CONTACT — single email block
   ======================================== */
.contact-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 2rem;
  border: 1px solid rgba(196, 163, 90, 0.1);
  background: rgba(26, 26, 26, 0.3);
}

.contact-block__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin: 0 auto 2rem;
}

.contact-block__icon svg {
  width: 100%;
  height: 100%;
}

.contact-block__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.contact-block__text {
  font-size: 0.9rem;
  color: var(--text-light-dim);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-block__email {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color var(--t-subtle) var(--ease-drift);
}

.contact-block__email:hover {
  color: var(--gold-bright);
}

[data-theme="light"] .contact-block {
  border-color: rgba(158, 131, 64, 0.12);
  background: rgba(240, 235, 227, 0.5);
}

/* ========================================
   PODCASTS — landing page
   ======================================== */
.podcast-landing {
  text-align: center;
}

.podcast-landing__waveform {
  max-width: 500px;
  margin: 0 auto 4rem;
}

.podcast-landing__subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.podcast-landing__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.podcast-platform {
  display: block;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(196, 163, 90, 0.12);
  background: rgba(26, 26, 26, 0.3);
  text-decoration: none;
  text-align: center;
  transition: border-color var(--t-gentle) var(--ease-drift),
              background var(--t-gentle) var(--ease-drift);
}

.podcast-platform:hover {
  border-color: rgba(196, 163, 90, 0.3);
  background: rgba(26, 26, 26, 0.5);
}

.podcast-platform__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.3rem;
  transition: color var(--t-subtle) var(--ease-drift);
}

.podcast-platform:hover .podcast-platform__name {
  color: var(--gold-bright);
}

.podcast-platform__desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light-dim);
}

.podcast-landing__about {
  padding-top: 2rem;
}

[data-theme="light"] .podcast-platform {
  border-color: rgba(158, 131, 64, 0.12);
  background: rgba(240, 235, 227, 0.5);
}

[data-theme="light"] .podcast-platform:hover {
  border-color: rgba(158, 131, 64, 0.25);
  background: rgba(240, 235, 227, 0.8);
}

/* ========================================
   PRIVACY — footer note
   ======================================== */
.privacy-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) 4rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light-dim);
}

.privacy-footer a {
  color: var(--gold);
}

/* ========================================
   SINGLE POST — badge variants
   ======================================== */
.single-header__tag--review { color: var(--gold); }
.single-header__tag--review::before { background: var(--gold-dim); }

.single-header__tag--dev { color: #7BA3C9; }
.single-header__tag--dev::before { background: #5A829E; }

.single-header__tag--post { color: var(--text-light-dim); }
.single-header__tag--post::before { background: var(--forest-muted); }

/* ========================================
   COMMENTS — dark luxury styled
   ======================================== */
.single-comments {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-gap);
}

.comments-area__heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(196, 163, 90, 0.1);
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  margin-bottom: 2rem;
}

.comment .children {
  list-style: none;
  padding-left: 2rem;
  margin-top: 1.5rem;
  border-left: 1px solid rgba(196, 163, 90, 0.1);
}

.comment__article {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.comment__avatar img {
  border-radius: 50%;
  border: 1px solid rgba(196, 163, 90, 0.15);
  width: 48px;
  height: 48px;
}

.comment__content {
  flex: 1;
  min-width: 0;
}

.comment__meta {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.comment__author,
.comment__author a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
}

.comment__date {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-dim);
}

.comment__pending {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.15rem 0.6rem;
  border: 1px solid rgba(196, 163, 90, 0.2);
}

.comment__body {
  font-size: 0.92rem;
  color: var(--cream-warm);
  line-height: 1.8;
}

.comment__body p {
  margin-bottom: 0.8rem;
}

.comment__actions {
  margin-top: 0.6rem;
  display: flex;
  gap: 1.2rem;
}

.comment__reply a,
.comment__edit a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  transition: color var(--t-subtle) var(--ease-drift);
}

.comment__reply a:hover,
.comment__edit a:hover {
  color: var(--gold);
}

/* COMMENT FORM */
.comment-respond {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 163, 90, 0.1);
}

.comment-respond .comment-reply-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.comment-respond .comment-reply-title small a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-left: 1rem;
}

.comment-form label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  margin-bottom: 0.4rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--forest-mid);
  border: 1px solid rgba(196, 163, 90, 0.12);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t-subtle) var(--ease-drift);
  margin-bottom: 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--gold);
}

.comment-form p {
  margin-bottom: 0;
}

.comment-form__submit,
.comment-form .submit {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  transition: all var(--t-gentle) var(--ease-luxury);
  margin-top: 0.5rem;
}

.comment-form__submit:hover,
.comment-form .submit:hover {
  background: var(--gold);
  color: var(--forest-deep);
}

.comments-area__closed {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-light-dim);
}

.comment-navigation {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}

.comment-navigation a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

/* ========================================
   REVIEW SINGLE — three-column layout
   ======================================== */
.review-single .single-header {
  padding: 8rem var(--gutter) 3rem;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.review-single__layout {
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  gap: 2.5rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.review-single__content {
  min-width: 0;
}

.review-single__content .entry-content {
  padding: 0 0 2rem;
}

.review-single__content .entry-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream);
}

.review-single__content .post-nav {
  padding: 0 0 3rem;
}

.review-single__content .single-comments {
  max-width: none;
  padding: 0 0 var(--section-gap);
}

.review-single__featured-image {
  margin-bottom: 2rem;
}

.review-single__featured-image img {
  border: 1px solid rgba(196, 163, 90, 0.1);
}

/* SIDEBAR (shared for left + right) */
.review-single__sidebar {
  position: relative;
}

.review-single__sidebar-sticky {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

body.admin-bar .review-single__sidebar-sticky {
  top: calc(6rem + 32px);
}

.review-single__sidebar-card {
  border: 1px solid rgba(196, 163, 90, 0.12);
  background: rgba(26, 26, 26, 0.3);
  padding: 1.5rem;
}

.review-single__sidebar-heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

/* lineage inside sidebar card */
.review-single__lineage-parents--stacked {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.review-single__lineage-parents--stacked .review-single__lineage-cross {
  text-align: center;
}

.review-single__lineage-parents--stacked .review-single__lineage-link {
  text-align: center;
}

/* pair with inside sidebar card */
.review-single__sidebar-card .review-single__pair-with-text {
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
}

/* PROVENANCE CARD */
.review-single__provenance-list {
  margin: 0;
}

.review-single__provenance-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(196, 163, 90, 0.06);
}

.review-single__provenance-row:last-child {
  border-bottom: none;
}

.review-single__provenance-row dt {
  font-size: 0.75rem;
  color: var(--text-light-dim);
  letter-spacing: 0.05em;
}

.review-single__provenance-row dd {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--cream);
  margin: 0;
  text-align: right;
}

.review-single__provenance-row dd a {
  color: var(--gold);
  text-decoration: none;
}

.review-single__provenance-row dd a:hover {
  color: var(--gold-bright);
}

/* RELATED REVIEWS */
.review-single__related {
  border-top: 1px solid rgba(196, 163, 90, 0.08);
  margin-top: 2rem;
}

.review-single__related-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--section-gap) var(--gutter);
}

/* VERDICT CALLOUT */
.review-single__verdict {
  margin-bottom: 1.5rem;
}

.review-single__verdict-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  padding: 1rem 1.25rem;
  margin: 0;
  border-left: 3px solid var(--gold);
  background: rgba(196, 163, 90, 0.05);
  border-radius: 0 4px 4px 0;
}

/* SECTION HEADINGS (content column) */
.review-single__section-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem 0;
}

/* REVIEW BODY */
.review-single__body {
  margin-bottom: 2rem;
}

/* BATCH CONTEXT */
.review-single__batch-context {
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(196, 163, 90, 0.03);
  border-radius: 4px;
  border: 1px solid rgba(196, 163, 90, 0.08);
}

.review-single__batch-context p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.7;
}

/* ENTITY SECTIONS (about farm, about brand, where to buy) */
.review-single__entity-section {
  margin-bottom: 2rem;
}

.review-single__entity-card {
  padding: 1rem 1.25rem;
  background: rgba(196, 163, 90, 0.03);
  border-radius: 4px;
  border: 1px solid rgba(196, 163, 90, 0.08);
}

.review-single__entity-card p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.review-single__entity-card p:last-child {
  margin-bottom: 0;
}

.review-single__entity-name {
  font-weight: 700;
  color: var(--cream);
}

.review-single__entity-detail {
  font-size: 0.85rem;
  color: var(--silver);
}

.review-single__entity-detail a {
  color: var(--gold);
}

.review-single__entity-link {
  margin-top: 0.5rem;
}

.review-single__entity-link a {
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.review-single__entity-link a:hover {
  border-bottom-color: var(--gold);
}

/* LINEAGE */
.review-single__lineage {
  margin-bottom: 2rem;
}

.review-single__lineage-parents {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-single__lineage-link {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(196, 163, 90, 0.08);
  border: 1px solid rgba(196, 163, 90, 0.15);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--cream);
  text-decoration: none;
  transition: background 0.2s;
}

.review-single__lineage-link:hover {
  background: rgba(196, 163, 90, 0.15);
}

.review-single__lineage-cross {
  color: var(--silver);
  font-size: 0.9rem;
}

.review-single__lineage-unknown {
  font-size: 0.85rem;
  color: var(--silver);
  font-style: italic;
}

/* PAIR WITH */
.review-single__pair-with {
  margin-bottom: 2rem;
}

.review-single__pair-with-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--silver);
  padding: 0.75rem 1rem;
  background: rgba(196, 163, 90, 0.03);
  border-radius: 4px;
}

/* GALLERY GRID */
.review-single__gallery {
  margin-bottom: 2rem;
}

.review-single__gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.review-single__gallery-item {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(196, 163, 90, 0.1);
  aspect-ratio: 1;
}

.review-single__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.review-single__gallery-item:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE — collapse three columns progressively */
@media (max-width: 1200px) {
  .review-single__layout {
    grid-template-columns: 1fr 280px;
    gap: 2rem;
  }

  /* left sidebar folds above content */
  .review-single__sidebar--left {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .review-single__sidebar--left .review-single__sidebar-sticky {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
  }

  .review-single__content {
    grid-row: 2;
  }

  .review-single__sidebar--right {
    grid-row: 2;
  }
}

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

  .review-single__sidebar--left .review-single__sidebar-sticky,
  .review-single__sidebar--right .review-single__sidebar-sticky {
    position: static;
  }

  .review-single__sidebar--left {
    grid-column: 1;
  }

  .review-single__sidebar--right {
    grid-row: auto;
  }

  .review-single__content {
    grid-row: auto;
  }

  .review-single .single-header {
    padding-top: 6rem;
  }
}

/* ========================================
   TFS SCORE BADGE — plugin rendered, theme styled
   ======================================== */
.tfs-score-badge {
  text-align: center;
  padding: 1.5rem 1rem;
}

.tfs-score-badge__number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.tfs-score-badge__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light-dim);
}

/* score color accents */
.tfs-score-badge--transcendent .tfs-score-badge__number { color: var(--gold-bright); }
.tfs-score-badge--transcendent .tfs-score-badge__label { color: var(--gold); }

.tfs-score-badge--exceptional .tfs-score-badge__number { color: var(--gold); }
.tfs-score-badge--exceptional .tfs-score-badge__label { color: var(--gold-dim); }

.tfs-score-badge--excellent .tfs-score-badge__number { color: #6DBF7B; }
.tfs-score-badge--excellent .tfs-score-badge__label { color: rgba(109, 191, 123, 0.7); }

.tfs-score-badge--very-good .tfs-score-badge__number { color: var(--cream); }

.tfs-score-badge--good .tfs-score-badge__number { color: var(--cream-warm); }

.tfs-score-badge--average .tfs-score-badge__number { color: var(--text-light-dim); }

.tfs-score-badge--below-average .tfs-score-badge__number { color: #C97B7B; }

.tfs-score-badge--poor .tfs-score-badge__number { color: #9E5454; }

/* compact badge variant (for review cards) */
.review-card .tfs-score-badge {
  padding: 0;
  text-align: left;
  margin-bottom: 0.5rem;
}

.review-card .tfs-score-badge__number {
  font-size: 1.8rem;
  display: inline;
  margin-right: 0.4rem;
}

.review-card .tfs-score-badge__label {
  display: inline;
  font-size: 0.6rem;
}

/* ========================================
   TFS SCORE BREAKDOWN — progress bars
   ======================================== */
.tfs-score-breakdown__category {
  margin-bottom: 0.8rem;
}

.tfs-score-breakdown__category:last-child {
  margin-bottom: 0;
}

.tfs-score-breakdown__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}

.tfs-score-breakdown__label {
  font-size: 0.75rem;
  color: var(--cream-warm);
  letter-spacing: 0.02em;
}

.tfs-score-breakdown__value {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light-dim);
}

.tfs-score-breakdown__track {
  height: 4px;
  background: var(--forest-soft);
  border-radius: 2px;
  overflow: hidden;
}

.tfs-score-breakdown__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 2px;
  transition: width var(--t-medium) var(--ease-luxury);
}

.tfs-score-breakdown__sentiment {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-light-dim);
  margin: 0.3rem 0 0;
  line-height: 1.4;
}

/* ========================================
   TFS TERPENE PROFILE — primary + tags
   ======================================== */
.tfs-terpene-profile__primary {
  margin-bottom: 1rem;
}

.tfs-terpene-profile__heading {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  margin-bottom: 0.4rem;
}

.tfs-terpene-profile__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
}

.tfs-terpene-profile__secondary,
.tfs-terpene-profile__aromas {
  margin-bottom: 0.8rem;
}

.tfs-terpene-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.tfs-terpene-tag {
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(196, 163, 90, 0.15);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--cream-warm);
  background: rgba(37, 37, 37, 0.3);
}

.tfs-aroma-tag {
  padding: 0.25rem 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-light-dim);
  background: rgba(37, 37, 37, 0.2);
  border: 1px solid rgba(196, 163, 90, 0.08);
}

/* ========================================
   TFS EFFECT PROFILE — body/mind scales + tags
   ======================================== */
.tfs-effect-profile__scale {
  margin-bottom: 1rem;
}

.tfs-effect-profile__scale-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  margin-bottom: 0.3rem;
}

.tfs-effect-profile__scale-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tfs-effect-profile__scale-end {
  font-size: 0.6rem;
  color: var(--text-light-dim);
  white-space: nowrap;
  flex-shrink: 0;
}

.tfs-effect-profile__scale-track {
  flex: 1;
  height: 4px;
  background: var(--forest-soft);
  border-radius: 2px;
  position: relative;
}

.tfs-effect-profile__scale-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--forest-deep);
  box-shadow: 0 0 0 1px rgba(196, 163, 90, 0.3);
}

.tfs-effect-profile__heading {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  margin-bottom: 0.4rem;
  margin-top: 0.5rem;
}

.tfs-effect-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.tfs-effect-tag {
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(196, 163, 90, 0.15);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--cream-warm);
  background: rgba(37, 37, 37, 0.3);
}

.tfs-medical-tag {
  padding: 0.25rem 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-light-dim);
  background: rgba(37, 37, 37, 0.15);
  border: 1px solid rgba(196, 163, 90, 0.06);
  font-style: italic;
}

.tfs-effect-profile__medical {
  margin-top: 0.5rem;
}

/* ========================================
   STRAINS — lineage tab switcher
   ======================================== */
.strain-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
}

.strain-tab {
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(196, 163, 90, 0.15);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  cursor: pointer;
  transition: all var(--t-subtle) var(--ease-drift);
}

.strain-tab:first-child {
  border-right: none;
}

.strain-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.strain-tab:hover:not(.active) {
  color: var(--cream);
  border-color: rgba(196, 163, 90, 0.3);
}

/* lineage container */
.strain-lineage {
  display: none;
  min-height: 500px;
  border: 1px solid rgba(196, 163, 90, 0.1);
  background: rgba(26, 26, 26, 0.2);
  position: relative;
  overflow: hidden;
}

.strain-lineage.active {
  display: block;
}

.strain-lineage__empty {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-light-dim);
  font-style: italic;
}

/* ========================================
   LIGHT MODE — comments, review single, plugin templates
   ======================================== */
[data-theme="light"] .comment__avatar img {
  border-color: rgba(158, 131, 64, 0.15);
}

[data-theme="light"] .comment .children {
  border-left-color: rgba(158, 131, 64, 0.12);
}

[data-theme="light"] .comments-area__heading {
  border-bottom-color: rgba(158, 131, 64, 0.12);
}

[data-theme="light"] .comment-respond {
  border-top-color: rgba(158, 131, 64, 0.12);
}

[data-theme="light"] .comment-form input[type="text"],
[data-theme="light"] .comment-form input[type="email"],
[data-theme="light"] .comment-form input[type="url"],
[data-theme="light"] .comment-form textarea {
  background: var(--forest-mid);
  border-color: rgba(158, 131, 64, 0.12);
}

[data-theme="light"] .review-single__sidebar-card {
  border-color: rgba(120, 100, 50, 0.18);
  background: #f0ebe3;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .review-single__sidebar-heading {
  color: #6E5A2E;
}

[data-theme="light"] .review-single__provenance-row {
  border-bottom-color: rgba(120, 100, 50, 0.12);
}

[data-theme="light"] .review-single__provenance-row dt {
  color: rgba(26, 26, 26, 0.6);
}

[data-theme="light"] .review-single__provenance-row dd {
  color: #1a1a1a;
}

[data-theme="light"] .review-single__related {
  border-top-color: rgba(120, 100, 50, 0.15);
}

[data-theme="light"] .review-single__verdict-text {
  background: rgba(158, 131, 64, 0.08);
  border-left-color: #9E8340;
  color: #1a1a1a;
}

[data-theme="light"] .review-single__section-heading {
  color: #6E5A2E;
}

[data-theme="light"] .review-single__body p,
[data-theme="light"] .review-single__content .entry-content p {
  color: #2a2a2a;
}

[data-theme="light"] .review-single__batch-context,
[data-theme="light"] .review-single__entity-card {
  background: #f0ebe3;
  border-color: rgba(120, 100, 50, 0.15);
}

[data-theme="light"] .review-single__batch-context p {
  color: #3a3a3a;
}

[data-theme="light"] .review-single__lineage-link {
  background: #f0ebe3;
  border-color: rgba(120, 100, 50, 0.2);
  color: #1a1a1a;
}

[data-theme="light"] .review-single__lineage-link:hover {
  background: #e5dfd5;
}

[data-theme="light"] .review-single__pair-with-text {
  color: #3a3a3a;
}

[data-theme="light"] .review-single__gallery-item {
  border-color: rgba(120, 100, 50, 0.15);
}

[data-theme="light"] .review-single__lineage-unknown {
  color: rgba(26, 26, 26, 0.5);
}

[data-theme="light"] .tfs-score-breakdown__track {
  background: var(--forest-soft);
}

[data-theme="light"] .tfs-score-breakdown__fill {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
}

[data-theme="light"] .tfs-score-breakdown__sentiment {
  color: var(--text-muted);
}

[data-theme="light"] .tfs-effect-profile__scale-marker {
  border-color: var(--forest-deep);
  box-shadow: 0 0 0 1px rgba(158, 131, 64, 0.3);
}

[data-theme="light"] .tfs-terpene-tag {
  border-color: rgba(158, 131, 64, 0.15);
  background: rgba(229, 223, 213, 0.4);
}

[data-theme="light"] .tfs-aroma-tag {
  border-color: rgba(158, 131, 64, 0.1);
  background: rgba(229, 223, 213, 0.3);
}

[data-theme="light"] .tfs-effect-tag {
  border-color: rgba(158, 131, 64, 0.15);
  background: rgba(229, 223, 213, 0.4);
}

[data-theme="light"] .tfs-medical-tag {
  border-color: rgba(158, 131, 64, 0.08);
  background: rgba(229, 223, 213, 0.2);
}

[data-theme="light"] .tfs-score-badge--excellent .tfs-score-badge__number { color: #3D8B4D; }
[data-theme="light"] .tfs-score-badge--excellent .tfs-score-badge__label { color: rgba(61, 139, 77, 0.7); }
[data-theme="light"] .tfs-score-badge--below-average .tfs-score-badge__number { color: #A05252; }
[data-theme="light"] .tfs-score-badge--poor .tfs-score-badge__number { color: #7A3E3E; }

[data-theme="light"] .strain-tab {
  border-color: rgba(158, 131, 64, 0.15);
}

[data-theme="light"] .strain-tab.active {
  border-color: var(--gold);
}

[data-theme="light"] .strain-lineage {
  border-color: rgba(158, 131, 64, 0.12);
  background: rgba(240, 235, 227, 0.3);
}

[data-theme="light"] .review-single__featured-image img {
  border-color: rgba(158, 131, 64, 0.12);
}

/* ========================================
   ENTITY HEADER — two-column profile layout
   ======================================== */

/* tighten spacing between entity header and content below */
.blog-header[class*="entity-header--"] + .section {
  padding-top: 2rem;
}

.blog-header[class*="entity-header--"] {
  padding-bottom: 2rem;
}

/* two-column profile grid */
.entity-profile {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.entity-profile__intro .blog-header__description {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-light);
  opacity: 0.75;
}

[data-theme="light"] .entity-profile__intro .blog-header__description {
  color: var(--text-dark);
  opacity: 0.7;
}

/* META CARD — right column */
.entity-card {
  background: var(--forest-soft);
  border: 1px solid var(--forest-muted);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.entity-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.entity-card__row:last-child {
  border-bottom: none;
}

.entity-card__row--tags {
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.entity-card__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  flex-shrink: 0;
}

.entity-card__value {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: right;
}

.entity-card__link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 163, 90, 0.25);
  transition: border-color var(--t-subtle) var(--ease-drift);
}

.entity-card__link:hover {
  border-bottom-color: var(--gold-bright);
}

/* tag pills inside the card */
.entity-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.entity-card__tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid;
  transition: all var(--t-subtle) var(--ease-drift);
}

.entity-card__tag--farm {
  color: var(--accent-green-text);
  border-color: rgba(109, 191, 123, 0.3);
  background: rgba(109, 191, 123, 0.06);
}

.entity-card__tag--farm:hover {
  background: rgba(109, 191, 123, 0.15);
  border-color: var(--accent-green-text);
}

.entity-card__tag--brand {
  color: var(--accent-blue-text);
  border-color: rgba(123, 163, 201, 0.3);
  background: rgba(123, 163, 201, 0.06);
}

.entity-card__tag--brand:hover {
  background: rgba(123, 163, 201, 0.15);
  border-color: var(--accent-blue-text);
}

.entity-card__tag--cultivation {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-green-text);
  border-color: rgba(109, 191, 123, 0.3);
  background: transparent;
  border-radius: 2px;
}

/* CTA */
.entity-header__cta,
.blog-header__cta {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light-dim);
}

.entity-header__cta a,
.blog-header__cta a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 163, 90, 0.3);
  transition: border-color var(--t-subtle) var(--ease-drift);
}

.entity-header__cta a:hover,
.blog-header__cta a:hover {
  border-bottom-color: var(--gold-bright);
}

/* light mode — blog header shared */
[data-theme="light"] .blog-header__title {
  color: var(--text-dark);
}

[data-theme="light"] .blog-header__description {
  color: var(--text-dark-dim);
}

[data-theme="light"] .entity-header__cta,
[data-theme="light"] .blog-header__cta { color: var(--text-dark-dim); }

[data-theme="light"] .entity-header__cta a,
[data-theme="light"] .blog-header__cta a { color: var(--text-dark); }

/* light mode — entity card */
[data-theme="light"] .entity-card {
  background: var(--paper);
  border-color: var(--cream-soft);
}

[data-theme="light"] .entity-card__row {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .entity-card__label { color: var(--text-dark-dim); }
[data-theme="light"] .entity-card__value { color: var(--text-dark); }
[data-theme="light"] .entity-card__link { color: var(--text-dark); border-bottom-color: rgba(26, 26, 26, 0.2); }

[data-theme="light"] .entity-card__tag--farm {
  color: #3A8A4A;
  border-color: rgba(58, 138, 74, 0.3);
  background: rgba(58, 138, 74, 0.06);
}
[data-theme="light"] .entity-card__tag--farm:hover {
  background: rgba(58, 138, 74, 0.15);
  border-color: #3A8A4A;
}
[data-theme="light"] .entity-card__tag--brand {
  color: #4A7FA5;
  border-color: rgba(74, 127, 165, 0.3);
  background: rgba(74, 127, 165, 0.06);
}
[data-theme="light"] .entity-card__tag--brand:hover {
  background: rgba(74, 127, 165, 0.15);
  border-color: #4A7FA5;
}
[data-theme="light"] .entity-card__tag--cultivation {
  color: #3A8A4A;
  border-color: rgba(58, 138, 74, 0.3);
}

/* TAXONOMY ACCENT MODIFIER CLASSES */
.entity-header--cultivator .section__eyebrow { color: var(--accent-green-text); }
.entity-header--brand .section__eyebrow { color: var(--accent-blue-text); }
.entity-header--purchase-location .section__eyebrow { color: var(--accent-amber-text); }

.entity-header--cultivator .entity-card__link { color: var(--accent-green-text); border-bottom-color: rgba(109, 191, 123, 0.25); }
.entity-header--brand .entity-card__link { color: var(--accent-blue-text); border-bottom-color: rgba(123, 163, 201, 0.25); }
.entity-header--purchase-location .entity-card__link { color: var(--accent-amber-text); border-bottom-color: rgba(201, 163, 123, 0.25); }

/* light mode accent overrides */
[data-theme="light"] .entity-header--cultivator .section__eyebrow { color: #3A8A4A; }
[data-theme="light"] .entity-header--brand .section__eyebrow { color: #4A7FA5; }
[data-theme="light"] .entity-header--purchase-location .section__eyebrow { color: #A57F4A; }

[data-theme="light"] .entity-header--cultivator .entity-card__link { color: #3A8A4A; border-bottom-color: rgba(58, 138, 74, 0.3); }
[data-theme="light"] .entity-header--brand .entity-card__link { color: #4A7FA5; border-bottom-color: rgba(74, 127, 165, 0.3); }
[data-theme="light"] .entity-header--purchase-location .entity-card__link { color: #A57F4A; border-bottom-color: rgba(165, 127, 74, 0.3); }

/* dev blog eyebrow accent */
.section__eyebrow--dev { color: var(--accent-blue-text); }
[data-theme="light"] .section__eyebrow--dev { color: #4A7FA5; }

/* ========================================
   NAV DROPDOWN — pure CSS hover reveal
   ======================================== */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  min-width: 140px;
  padding: 0.6rem 0;
  margin-top: 0.5rem;
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(196, 163, 90, 0.08);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-subtle) var(--ease-drift),
              visibility 0s linear var(--t-subtle);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--t-subtle) var(--ease-drift),
              visibility 0s linear 0s;
}

.nav__dropdown-menu li {
  padding: 0;
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.4rem 1.2rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  text-decoration: none;
  transition: color var(--t-subtle) var(--ease-drift),
              background var(--t-subtle) var(--ease-drift);
}

.nav__dropdown-menu a:hover {
  color: var(--cream);
  background: rgba(196, 163, 90, 0.06);
}

[data-theme="light"] .nav__dropdown-menu {
  background: rgba(250, 247, 242, 0.95);
  border-color: rgba(158, 131, 64, 0.1);
}

[data-theme="light"] .nav__dropdown-menu a {
  color: var(--text-dark-dim);
}

[data-theme="light"] .nav__dropdown-menu a:hover {
  color: var(--text-dark);
  background: rgba(158, 131, 64, 0.06);
}

/* ========================================
   ENTITY BROWSE CARDS — taxonomy listing pages
   ======================================== */
.entity-browse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.entity-browse-card {
  display: block;
  padding: 1.5rem;
  background: var(--forest-mid);
  border: 1px solid var(--forest-muted);
  border-top: 2px solid var(--gold-dim);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color var(--t-subtle) var(--ease-drift),
              transform var(--t-subtle) var(--ease-drift);
}

.entity-browse-card:hover {
  transform: translateY(-2px);
  border-color: var(--forest-soft);
}

.entity-browse-card--cultivator { border-top-color: var(--accent-green-text); }
.entity-browse-card--brand { border-top-color: var(--accent-blue-text); }
.entity-browse-card--purchase-location { border-top-color: var(--accent-amber-text); }

.entity-browse-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.entity-browse-card--cultivator .entity-browse-card__name { color: var(--accent-green-text); }
.entity-browse-card--brand .entity-browse-card__name { color: var(--accent-blue-text); }
.entity-browse-card--purchase-location .entity-browse-card__name { color: var(--accent-amber-text); }

.entity-browse-card__detail {
  font-size: 0.75rem;
  color: var(--text-light-dim);
  margin-bottom: 0.3rem;
}

.entity-browse-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.6rem 0;
}

.entity-browse-card__count {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  margin-top: 0.8rem;
}

/* light mode browse cards */
[data-theme="light"] .entity-browse-card {
  background: var(--paper);
  border-color: var(--cream-soft);
}

[data-theme="light"] .entity-browse-card:hover {
  border-color: var(--cream-warm);
}

[data-theme="light"] .entity-browse-card--cultivator { border-top-color: #3A8A4A; }
[data-theme="light"] .entity-browse-card--brand { border-top-color: #4A7FA5; }
[data-theme="light"] .entity-browse-card--purchase-location { border-top-color: #A57F4A; }

[data-theme="light"] .entity-browse-card__name { color: var(--text-dark); }
[data-theme="light"] .entity-browse-card--cultivator .entity-browse-card__name { color: #3A8A4A; }
[data-theme="light"] .entity-browse-card--brand .entity-browse-card__name { color: #4A7FA5; }
[data-theme="light"] .entity-browse-card--purchase-location .entity-browse-card__name { color: #A57F4A; }

[data-theme="light"] .entity-browse-card__detail { color: var(--text-dark-dim); }
[data-theme="light"] .entity-browse-card__count { color: var(--text-dark-dim); }

/* ----------------------------------------
   STRAIN SINGLE — profile page
   ---------------------------------------- */
.strain-single__badges {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.strain-single__type {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--accent-green-text);
  color: var(--accent-green-text);
}

.strain-single__lineage {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light-dim);
  margin-top: 0.4rem;
}

.strain-single__lineage a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-subtle) var(--ease-drift);
}

.strain-single__lineage a:hover {
  border-bottom-color: var(--gold);
}

.strain-single__lineage-x {
  display: inline-block;
  margin: 0 0.4rem;
  color: var(--text-light-dim);
  opacity: 0.5;
}

.strain-single__farm-header {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(196, 163, 90, 0.1);
}

.strain-single__farm-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-light);
}

.strain-single__farm-name a {
  color: var(--accent-green-text);
  text-decoration: none;
  transition: opacity var(--t-subtle) var(--ease-drift);
}

.strain-single__farm-name a:hover {
  opacity: 0.8;
}

.strain-single__farm-location {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light-dim);
}

/* light mode */
[data-theme="light"] .strain-single__type {
  border-color: #3A8A4A;
  color: #3A8A4A;
}

[data-theme="light"] .strain-single__lineage { color: var(--text-dark-dim); }
[data-theme="light"] .strain-single__lineage a { color: var(--text-dark); }
[data-theme="light"] .strain-single__lineage-x { color: var(--text-dark-dim); }

[data-theme="light"] .strain-single__farm-header {
  border-bottom-color: rgba(26, 26, 26, 0.1);
}

[data-theme="light"] .strain-single__farm-name { color: var(--text-dark); }
[data-theme="light"] .strain-single__farm-name a { color: #3A8A4A; }
[data-theme="light"] .strain-single__farm-location { color: var(--text-dark-dim); }

/* ----------------------------------------
   STORE CARRIES — farms/brands at a location
   ---------------------------------------- */
.store-carries {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.store-carries__group {
  flex: 1;
  min-width: 200px;
}

.store-carries__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-dim);
  margin-bottom: 0.6rem;
}

.store-carries__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.store-carries__tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all var(--t-subtle) var(--ease-drift);
  border: 1px solid;
}

.store-carries__tag--farm {
  color: var(--accent-green-text);
  border-color: rgba(109, 191, 123, 0.3);
  background: rgba(109, 191, 123, 0.06);
}

.store-carries__tag--farm:hover {
  background: rgba(109, 191, 123, 0.15);
  border-color: var(--accent-green-text);
}

.store-carries__tag--brand {
  color: var(--accent-blue-text);
  border-color: rgba(123, 163, 201, 0.3);
  background: rgba(123, 163, 201, 0.06);
}

.store-carries__tag--brand:hover {
  background: rgba(123, 163, 201, 0.15);
  border-color: var(--accent-blue-text);
}

/* light mode */
[data-theme="light"] .store-carries__label { color: var(--text-dark-dim); }

[data-theme="light"] .store-carries__tag--farm {
  color: #3A8A4A;
  border-color: rgba(58, 138, 74, 0.3);
  background: rgba(58, 138, 74, 0.06);
}

[data-theme="light"] .store-carries__tag--farm:hover {
  background: rgba(58, 138, 74, 0.15);
  border-color: #3A8A4A;
}

[data-theme="light"] .store-carries__tag--brand {
  color: #4A7FA5;
  border-color: rgba(74, 127, 165, 0.3);
  background: rgba(74, 127, 165, 0.06);
}

[data-theme="light"] .store-carries__tag--brand:hover {
  background: rgba(74, 127, 165, 0.15);
  border-color: #4A7FA5;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 860px) {
  .entity-profile {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .entity-card {
    max-width: 400px;
  }
}

@media (max-width: 640px) {
  .age-gate__actions { flex-direction: column; gap: 1rem; }
  .nav__links { display: none; }
  .footer__nav { flex-direction: column; gap: 1.5rem; }
  .dash__metrics { grid-template-columns: 1fr; }
  .dash__metric-value { font-size: 1.1rem; }

  .comment__article {
    flex-direction: column;
    gap: 0.8rem;
  }

  .strain-single__farm-header {
    flex-direction: column;
    gap: 0.2rem;
  }

  .store-carries {
    flex-direction: column;
    gap: 1.2rem;
  }

  .entity-card {
    max-width: none;
  }

  .plug-reasons__grid {
    grid-template-columns: 1fr;
  }
}

/* parallax layer */
.parallax-layer {
  will-change: transform;
}
