/* ============================================================
   PlantMyBalcony.com — Shared Design System
   styles.css: Tokens · Reset · Nav · Footer · Utilities
   ============================================================ */

/* ── 1. DESIGN TOKENS ── */
:root {
  /* Colours */
  --bg:          #fafaf7;
  --white:       #ffffff;
  --dark:        #1a2818;
  --forest:      #1e5c36;
  --sage:        #3d7a54;
  --sage-lt:     #e4f0e8;
  --lime:        #78c040;
  --lime-pale:   #f0f8e4;
  --amber:       #e08c0a;
  --amber-pale:  #fef3dc;
  --red:         #d13030;
  --sky:         #1565c0;
  --sky-pale:    #e3f2fd;
  --ink:         #2a2a28;
  --mid:         #5a6858;
  --subtle:      #8a9888;
  --border:      rgba(0, 0, 0, 0.08);
  --bord-md:     rgba(0, 0, 0, 0.15);

  /* Typography */
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'Lora', Georgia, serif;
  --fu: 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;

  /* Radii */
  --r:    8px;
  --r-md: 14px;
  --r-lg: 22px;
  --pill: 999px;

  /* Shadows */
  --sh1: 0 1px 4px rgba(0, 0, 0, 0.06);
  --sh2: 0 4px 18px rgba(0, 0, 0, 0.08);
  --sh3: 0 14px 48px rgba(0, 0, 0, 0.11);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  250ms;
}

/* ── 2. RESET ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--fu);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a    { text-decoration: none; color: inherit; }
img  { display: block; max-width: 100%; }
ul   { list-style: none; }
button { font-family: var(--fu); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--fu); }

/* ── 3. LAYOUT UTILITIES ── */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.wrap-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}

.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ── 4. NAVIGATION ── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: var(--sh1);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-ico {
  width: 32px;
  height: 32px;
  background: var(--forest);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.logo-name {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.logo-name span { color: var(--sage); }

.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-a {
  padding: 7px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mid);
  border-radius: 6px;
  transition: all var(--dur) var(--ease);
}

.nav-a:hover,
.nav-a.active {
  color: var(--dark);
  background: var(--sage-lt);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.hdr-search-inp {
  padding: 7px 14px;
  border: 1.5px solid var(--bord-md);
  border-radius: var(--pill);
  font-size: 13px;
  font-family: var(--fu);
  outline: none;
  width: 200px;
  color: var(--ink);
  background: var(--bg);
  transition: width 0.2s var(--ease), border-color 0.15s, background 0.15s;
}

.hdr-search-inp:focus {
  border-color: var(--sage);
  width: 240px;
  background: var(--white);
}

.hdr-search-inp::placeholder { color: var(--subtle); }

/* ── 5. BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--subtle);
  margin-left: 16px;
}

.breadcrumb a { color: var(--sage); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb .sep { color: var(--border); }

/* ── 6. FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 0;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo-ico {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.footer-logo-name {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  transition: color 0.15s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal { display: flex; gap: 16px; }

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.15s;
}

.footer-legal a:hover { color: rgba(255, 255, 255, 0.6); }

/* ── 7. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--fu);
  cursor: pointer;
  border: none;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  padding: 13px 28px;
  background: var(--forest);
  color: #fff;
}

.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30, 92, 54, 0.3);
}

.btn-outline {
  padding: 12px 26px;
  background: transparent;
  color: var(--mid);
  border: 1.5px solid var(--bord-md);
}

.btn-outline:hover {
  border-color: var(--forest);
  color: var(--forest);
  background: var(--sage-lt);
}

.btn-lime {
  padding: 13px 28px;
  background: var(--lime);
  color: var(--dark);
  font-weight: 700;
}

.btn-lime:hover { background: #6db034; }

/* ── 8. SECTION HEADERS ── */
.sh-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.sh-eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--sage);
  flex-shrink: 0;
}

.sh-eyebrow.center { justify-content: center; }
.sh-eyebrow.center::before { display: none; }

.sh-title {
  font-family: var(--fd);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.sh-title em { font-style: italic; color: var(--sage); }
.sh-title.white { color: #fff; }

.sh-sub {
  font-size: 15px;
  color: var(--mid);
  margin-top: 8px;
  max-width: 560px;
}

.lnk-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sage);
  padding: 9px 18px;
  border: 1.5px solid rgba(62, 122, 84, 0.3);
  border-radius: var(--pill);
  transition: all var(--dur) var(--ease);
  flex-shrink: 0;
}

.lnk-all:hover {
  color: var(--forest);
  border-color: var(--forest);
  background: var(--sage-lt);
}

/* ── 9. SHARED CALLOUT BOXES ── */
.callout {
  padding: 18px 22px;
  border-radius: var(--r-md);
  margin: 24px 0;
  border-left: 4px solid;
}

.callout p { margin-bottom: 0; font-size: 15.5px; }

.callout-title {
  font-family: var(--fu);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.callout-tip  { background: var(--lime-pale);  border-color: var(--lime); }
.callout-warn { background: var(--amber-pale); border-color: var(--amber); }
.callout-note { background: var(--sage-lt);    border-color: var(--sage); }
.callout-alert{ background: var(--sky-pale);   border-color: var(--sky); }
.callout-danger{ background: #fff5f5;          border-color: var(--red); }

.callout-tip .callout-title   { color: var(--forest); }
.callout-warn .callout-title  { color: var(--amber); }
.callout-note .callout-title  { color: var(--sage); }
.callout-alert .callout-title { color: var(--sky); }
.callout-danger .callout-title{ color: var(--red); }

/* ── 10. SHARED DATA TABLES ── */
.tbl-wrap { overflow-x: auto; margin: 22px 0; }

.data-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.data-tbl th {
  background: var(--dark);
  color: #fff;
  padding: 11px 14px;
  text-align: left;
  font-family: var(--fu);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.data-tbl td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--fb);
  color: var(--ink);
  line-height: 1.55;
  vertical-align: top;
}

.data-tbl tr:nth-child(even) td { background: rgba(0, 0, 0, 0.02); }
.data-tbl tr:hover td            { background: var(--sage-lt); }
.data-tbl tr:last-child td       { border-bottom: none; }

.data-tbl .col-good { color: var(--forest); font-weight: 600; }
.data-tbl .col-warn { color: var(--amber);  font-weight: 600; }
.data-tbl .col-bad  { color: var(--red);    font-weight: 600; }

/* ── 11. NEWSLETTER (shared across pages) ── */
.nl-section {
  background: linear-gradient(135deg, var(--forest), #2d6040);
  padding: 64px 0;
}

.nl-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.nl-heading {
  font-family: var(--fd);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.nl-heading em { font-style: italic; color: var(--lime); }

.nl-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  line-height: 1.7;
}

.nl-form {
  display: flex;
  gap: 10px;
}

.nl-email {
  flex: 1;
  padding: 13px 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--pill);
  font-size: 15px;
  font-family: var(--fu);
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.2s;
}

.nl-email:focus {
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.15);
}

.nl-email::placeholder { color: rgba(255, 255, 255, 0.45); }

.nl-submit {
  padding: 13px 24px;
  background: var(--lime);
  color: var(--dark);
  border-radius: var(--pill);
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--fu);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}

.nl-submit:hover { background: #6db034; }

.nl-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
}

/* ── 12. ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-up   { animation: fadeUp 0.6s var(--ease) both; }
.delay-1   { animation-delay: 0.1s; }
.delay-2   { animation-delay: 0.2s; }
.delay-3   { animation-delay: 0.3s; }

/* ── 13. BADGES (shared across all pages) ── */
.badge {
  padding: 3px 9px;
  border-radius: var(--pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
  display: inline-block;
}

.badge-easy   { background: rgba(120, 192, 64, 0.9); color: #fff; }
.badge-medium { background: rgba(224, 140, 10, 0.9); color: #fff; }
.badge-hard   { background: rgba(209, 48, 48, 0.9);  color: #fff; }
.badge-season { background: rgba(255, 255, 255, 0.88); color: var(--dark); }
.badge-type   { background: rgba(30, 92, 54, 0.85); color: #fff; }

/* ── 14. FILTER CHECKBOX (shared JS hook + visual) ── */
.filter-cb {
  width: 14px;
  height: 14px;
  accent-color: var(--sage);
  cursor: pointer;
}

/* ── 15. SECTION HEADER WRAPPER ── */
.sh { margin-bottom: 36px; }
/* ============================================================
   home.css — Homepage Styles Only
   ============================================================ */

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--dark) 0%, #1c3a24 45%, #2d5e3c 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '🌿';
  position: absolute;
  font-size: 320px;
  right: -40px;
  top: -40px;
  opacity: 0.06;
  user-select: none;
  pointer-events: none;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-kicker::before { content: ''; width: 24px; height: 2px; background: var(--lime); }

.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.hero-h1 em { font-style: italic; color: var(--lime); }

.hero-lead {
  font-family: var(--fb);
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-search-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-lg);
  padding: 8px 8px 8px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-search-inp {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: var(--fu);
  color: #fff;
  min-width: 0;
}

.hero-search-inp::placeholder { color: rgba(255, 255, 255, 0.5); }

.hero-search-btn {
  padding: 11px 24px;
  background: var(--lime);
  color: var(--dark);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}

.hero-search-btn:hover { background: #6db034; }

.hero-popular {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-popular-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.pop-tag {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--pill);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: all 0.15s;
}

.pop-tag:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }

.hero-stats { display: flex; flex-direction: column; gap: 14px; }

.h-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.h-stat:hover { background: rgba(255, 255, 255, 0.14); }

.h-stat-ico { font-size: 28px; flex-shrink: 0; }
.h-stat-num { font-family: var(--fd); font-size: 28px; font-weight: 700; color: var(--lime); line-height: 1; }
.h-stat-label { font-size: 12.5px; color: rgba(255, 255, 255, 0.6); margin-top: 3px; }

/* ── BROWSE BY CATEGORY ── */
.browse-by {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.browse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.browse-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  background: var(--bg);
}

.browse-card:hover {
  border-color: var(--lime);
  background: var(--white);
  box-shadow: var(--sh2);
  transform: translateY(-3px);
}

.browse-card-ico { font-size: 40px; margin-bottom: 14px; }
.browse-card-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.browse-card-desc { font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 14px; }
.browse-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.browse-tag {
  padding: 4px 10px;
  background: var(--sage-lt);
  border-radius: var(--pill);
  font-size: 11.5px;
  color: var(--sage);
  font-weight: 500;
}

/* ── SEASONS ── */
.seasons-section { background: var(--dark); padding: 64px 0; }

.seasons-heading {
  text-align: center;
  margin-bottom: 40px;
}

.seasons-heading h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.seasons-heading h2 em { font-style: italic; color: var(--lime); }
.seasons-heading p { font-size: 15px; color: rgba(255, 255, 255, 0.6); margin-top: 10px; }

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.season-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.season-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sc-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  opacity: 0.2;
}

.sc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.sc-body {
  position: relative;
  z-index: 2;
  padding: 22px 20px;
}

.sc-emoji   { font-size: 36px; margin-bottom: 10px; }
.sc-months  { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lime); margin-bottom: 6px; }
.sc-title   { font-family: var(--fd); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sc-sub     { font-size: 12.5px; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.sc-count   { font-size: 12px; font-weight: 600; color: var(--lime); }

/* ── REGIONS ── */
.regions-section { padding: 64px 0; }

.regions-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.region-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.region-card:hover {
  border-color: var(--sage);
  box-shadow: var(--sh2);
  transform: translateY(-2px);
}

.region-flag   { font-size: 32px; margin-bottom: 10px; }
.region-name   { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.region-states { font-size: 11.5px; color: var(--subtle); line-height: 1.5; margin-bottom: 8px; }
.region-count  { font-size: 11px; font-weight: 600; color: var(--sage); }

/* ── DIFFICULTY ── */
.difficulty-section {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.difficulty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.diff-card {
  border-radius: var(--r-lg);
  padding: 32px 28px;
  cursor: pointer;
  transition: all 0.2s;
}

.diff-card:hover { transform: translateY(-3px); box-shadow: var(--sh2); }

.diff-level-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.diff-title { font-family: var(--fd); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.diff-desc  { font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.diff-examples { font-size: 13px; font-weight: 500; }

/* ── FEATURED ARTICLE ── */
.featured-article {
  background: var(--dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 36px;
  min-height: 420px;
  cursor: pointer;
  transition: box-shadow 0.25s;
}

.featured-article:hover { box-shadow: var(--sh3); }

.fa-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1a4028, #2d6040);
}

.fa-image-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 160px;
  opacity: 0.25;
}

.fa-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.fa-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fa-kicker { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lime); margin-bottom: 16px; }

.fa-tags { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }

.fa-tag {
  padding: 4px 12px;
  background: rgba(120, 192, 64, 0.2);
  border: 1px solid rgba(120, 192, 64, 0.3);
  border-radius: var(--pill);
  font-size: 11.5px;
  color: var(--lime);
}

.fa-title {
  font-family: var(--fd);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.fa-excerpt {
  font-family: var(--fb);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 24px;
}

.fa-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--lime);
  color: var(--dark);
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
  transition: background 0.15s;
}

.fa-cta:hover { background: #6db034; }

/* ── PLANT CARD GRID (homepage preview) ── */
.plant-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.plant-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}

.plant-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh3);
  border-color: transparent;
}

.plant-card:hover .plant-thumb-inner { transform: scale(1.04); }

.plant-thumb {
  height: 200px;
  overflow: hidden;
  background: var(--sage-lt);
  position: relative;
}

.plant-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  transition: transform 0.4s var(--ease);
}

.plant-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.plant-card:hover .plant-thumb img { transform: scale(1.04); }

.plant-thumb-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 5px;
  z-index: 2;
  flex-wrap: wrap;
}



.plant-card-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plant-card-type  { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--sage); margin-bottom: 4px; }
.plant-card-name  { font-family: var(--fd); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 3px; line-height: 1.2; }
.plant-card-sci   { font-family: var(--fb); font-style: italic; font-size: 12px; color: var(--subtle); margin-bottom: 8px; }
.plant-card-desc  { font-size: 12.5px; color: var(--mid); line-height: 1.6; flex: 1; margin-bottom: 10px; }

.plant-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.plant-card-states { font-size: 11px; color: var(--subtle); }

.plant-card-read {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}

.plant-card-read:hover { color: var(--forest); }

/* ── GUIDES SECTION ── */
.guides-section { padding: 64px 0; background: var(--sage-lt); }

.guides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.guide-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.guide-card:hover { box-shadow: var(--sh2); transform: translateY(-2px); }

.guide-card-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.guide-card-title { font-family: var(--fd); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.guide-card-desc  { font-size: 13.5px; color: var(--mid); line-height: 1.65; margin-bottom: 10px; }

.guide-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── MISSION SECTION ── */
.mission-section {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.mission-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.mission-heading {
  font-family: var(--fd);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.mission-heading em { font-style: italic; color: var(--sage); }

.mission-body {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.mission-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.mission-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--r-lg);
}

.mission-stat-num   { font-family: var(--fd); font-size: 34px; font-weight: 700; color: var(--forest); }
.mission-stat-label { font-size: 12px; color: var(--subtle); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.06em; }
.mission-stat-div   { width: 1px; background: var(--border); align-self: stretch; }
/* ============================================================
   plants.css — Plant Directory Page Styles
   ============================================================ */

/* ── PAGE HERO ── */
.dir-hero {
  background: linear-gradient(160deg, var(--dark) 0%, #1c3a24 100%);
  padding: 44px 0;
}

.dir-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.dir-hero-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dir-hero-eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--lime); }

.dir-hero-h1 {
  font-family: var(--fd);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.dir-hero-h1 em { font-style: italic; color: var(--lime); }

.dir-hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--fb);
}

/* Search Box */
.dir-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-lg);
  padding: 6px 6px 6px 18px;
  margin-bottom: 16px;
}

.dir-search-inp {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: var(--fu);
  color: #fff;
  min-width: 0;
}

.dir-search-inp::placeholder { color: rgba(255, 255, 255, 0.45); }

.dir-search-btn {
  padding: 11px 22px;
  background: var(--lime);
  color: var(--dark);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.dir-search-btn:hover { background: #6db034; }

/* A–Z Buttons */
.az-row { display: flex; flex-wrap: wrap; gap: 4px; }

.az-btn {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.az-btn:hover,
.az-btn.active {
  background: var(--lime);
  color: var(--dark);
  border-color: var(--lime);
}

/* ── MAIN LAYOUT ── */
.directory-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 40px 80px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

/* ── FILTER SIDEBAR ── */
.filter-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: 72px;
}

.filter-panel-head {
  padding: 16px 18px;
  background: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-panel-head h3 { font-size: 13.5px; font-weight: 700; color: #fff; }

.filter-clear {
  font-size: 12px;
  color: var(--lime);
  cursor: pointer;
  font-weight: 600;
  font-family: var(--fu);
  background: none;
  border: none;
}

.filter-clear:hover { text-decoration: underline; }

.filter-group {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.filter-group:last-of-type { border-bottom: none; }

.filter-group-title {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--subtle);
  margin-bottom: 11px;
}

.filter-check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  cursor: pointer;
}

.filter-check-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-check-row input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--sage);
  cursor: pointer;
}

.filter-check-label { font-size: 13.5px; color: var(--body); }
.filter-count { font-size: 11px; color: var(--subtle); background: var(--bg); padding: 2px 6px; border-radius: var(--pill); }

.filter-pills { display: flex; flex-wrap: wrap; gap: 6px; }

.filter-pill {
  padding: 5px 11px;
  border: 1.5px solid var(--border);
  border-radius: var(--pill);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s;
  background: transparent;
  color: var(--mid);
  font-family: var(--fu);
}

.filter-pill:hover,
.filter-pill.active {
  border-color: var(--sage);
  background: var(--sage-lt);
  color: var(--forest);
}

.filter-apply-btn {
  width: calc(100% - 36px);
  margin: 14px 18px;
  padding: 11px;
  background: var(--forest);
  color: #fff;
  border-radius: var(--r);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--fu);
  transition: background 0.15s;
}

.filter-apply-btn:hover { background: var(--sage); }

/* ── ACTIVE FILTERS BAR ── */
.active-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  min-height: 32px;
}

.active-filters-label { font-size: 12.5px; font-weight: 600; color: var(--subtle); }

.filter-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: var(--sage-lt);
  border: 1px solid rgba(62, 122, 84, 0.25);
  border-radius: var(--pill);
  font-size: 12.5px;
  color: var(--sage);
  font-weight: 500;
}

.filter-chip button {
  background: none;
  border: none;
  font-size: 13px;
  color: var(--sage);
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.clear-all-chips {
  padding: 5px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--pill);
  font-size: 12.5px;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.15s;
  background: none;
  font-family: var(--fu);
}

.clear-all-chips:hover { color: var(--red); border-color: var(--red); }

/* ── TOOLBAR ── */
.dir-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 18px;
}

.dir-result-info { font-size: 13.5px; color: var(--mid); }
.dir-result-info strong { color: var(--ink); font-weight: 600; }

.dir-toolbar-right { display: flex; align-items: center; gap: 10px; }

.dir-sort {
  padding: 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--body);
  background: var(--bg);
  outline: none;
  font-family: var(--fu);
  cursor: pointer;
}

.view-toggle { display: flex; gap: 3px; }

.view-btn {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  color: var(--mid);
  transition: all 0.14s;
}

.view-btn.active,
.view-btn:hover {
  border-color: var(--sage);
  background: var(--sage-lt);
  color: var(--forest);
}

/* ── PLANT CARDS ── */
.plant-dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plant-dir-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.plant-dir-card[data-hidden] { display: none; }

.plant-dir-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh3);
  border-color: transparent;
}

.plant-dir-card:hover .dir-card-photo { transform: scale(1.06); }

.dir-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.dir-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}

.dir-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
  z-index: 2;
  flex-wrap: wrap;
}

.dir-card-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dir-card-type    { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--sage); margin-bottom: 4px; }
.dir-card-name    { font-family: var(--fd); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 3px; line-height: 1.2; }
.dir-card-sci     { font-family: var(--fb); font-style: italic; font-size: 12px; color: var(--subtle); margin-bottom: 8px; }
.dir-card-desc    { font-size: 12.5px; color: var(--mid); line-height: 1.6; flex: 1; margin-bottom: 10px; }

.dir-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.dir-card-states { font-size: 11px; color: var(--subtle); }

.dir-card-read {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}

.dir-card-read:hover { color: var(--forest); }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 40px;
}

.pg-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.14s;
  background: var(--white);
  font-family: var(--fu);
}

.pg-btn:hover { border-color: var(--sage); color: var(--sage); background: var(--sage-lt); }
.pg-btn.active { background: var(--forest); color: #fff; border-color: var(--forest); }
.pg-btn.wide { width: auto; padding: 0 16px; font-size: 13px; }
.pg-dots { color: var(--subtle); padding: 0 4px; }

/* ── NO RESULTS ── */
.no-results {
  text-align: center;
  padding: 64px 20px;
  display: none;
}

.no-results.visible { display: block; }
.no-results-icon  { font-size: 48px; margin-bottom: 16px; }
.no-results-title { font-family: var(--fd); font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.no-results-sub   { font-size: 15px; color: var(--mid); }
.no-results-sub a { color: var(--sage); }
/* ============================================================
   article.css — Plant Article Page Styles
   ============================================================ */

/* ── LAYOUT ── */
.article-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
}

.article-sidebar { position: sticky; top: 72px; }

/* ── ARTICLE HERO ── */
.plant-hero-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: linear-gradient(160deg, #c8ddd0, #7fa896);
  position: relative;
  margin-bottom: 28px;
}

.plant-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plant-hero-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  opacity: 0.3;
}

.plant-hero-credit {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
}

.plant-type-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--sage);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plant-type-label::before { content: ''; width: 18px; height: 2px; background: var(--sage); }

.article-h1 {
  font-family: var(--fd);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.plant-sci-name {
  font-family: var(--fb);
  font-style: italic;
  font-size: 17px;
  color: var(--subtle);
  margin-bottom: 18px;
}

.article-lead {
  font-family: var(--fb);
  font-size: 18px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

/* Quick Tags */
.quick-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }

.quick-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: var(--pill);
  font-size: 12.5px;
  font-weight: 600;
  border: 1.5px solid;
}

.qt-easy   { background: var(--lime-pale);  color: #3d7020; border-color: rgba(120,192,64,.3); }
.qt-heat   { background: #fff8e6;           color: #8a5a00; border-color: rgba(224,140,10,.25); }
.qt-med    { background: #e8f6fd;           color: #0a5a8a; border-color: rgba(10,114,176,.2); }
.qt-region { background: var(--sage-lt);    color: var(--sage); border-color: rgba(62,122,84,.2); }

/* Article Meta */
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.article-meta-item { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--subtle); }
.article-meta-item strong { color: var(--mid); font-weight: 600; }

/* ── ARTICLE BODY TYPOGRAPHY ── */
.article-body h2 {
  font-family: var(--fd);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin: 48px 0 16px;
  letter-spacing: -0.015em;
}

.article-body h2:first-child { margin-top: 0; }

.article-body h3 {
  font-family: var(--fu);
  font-size: 17.5px;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 10px;
}

.article-body h4 {
  font-family: var(--fu);
  font-size: 14px;
  font-weight: 700;
  color: var(--mid);
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-body p {
  font-family: var(--fb);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.85;
  margin-bottom: 18px;
}

.article-body strong { font-weight: 600; color: var(--dark); }
.article-body em     { font-style: italic; }

.article-body a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover { color: var(--sage); }

.article-body ul,
.article-body ol {
  margin: 0 0 20px;
  padding: 0;
}

.article-body li {
  font-family: var(--fb);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.article-body ul li::before {
  content: '•';
  color: var(--lime);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -1px;
}

.article-body ol { counter-reset: ol-cnt; }
.article-body ol li { counter-increment: ol-cnt; }

.article-body ol li::before {
  content: counter(ol-cnt) '.';
  color: var(--forest);
  font-weight: 700;
  font-family: var(--fu);
  position: absolute;
  left: 0;
  top: 0;
}

.article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* ── SEASONAL CALENDAR ── */
.season-cal {
  margin: 28px 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.season-cal-title {
  padding: 14px 20px;
  background: var(--dark);
  color: #fff;
  font-family: var(--fu);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.cal-month {
  padding: 10px 6px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.cal-month:last-child { border-right: none; }

.cal-month-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--subtle);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-family: var(--fu);
}

.cal-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.dot-great  { background: var(--lime);         color: #fff; }
.dot-good   { background: var(--sage-lt);       color: var(--sage); }
.dot-ok     { background: var(--amber-pale);    color: var(--amber); }
.dot-avoid  { background: #fee;                 color: var(--red); }

.cal-legend {
  display: flex;
  gap: 14px;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 11.5px;
  color: var(--mid);
  flex-wrap: wrap;
}

.cal-legend-item { display: flex; align-items: center; gap: 5px; }
.cal-legend-dot  { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }

/* ── STATE GUIDE ── */
.state-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.state-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 13.5px;
}

.state-row-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.state-region-name { font-weight: 700; color: var(--dark); margin-bottom: 3px; font-family: var(--fu); font-size: 13.5px; }
.state-region-detail { color: var(--mid); font-size: 13px; line-height: 1.5; }

.state-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  margin-top: 4px;
}

.state-tag-best { background: var(--lime-pale); color: var(--forest); }
.state-tag-good { background: var(--sage-lt);   color: var(--sage); }
.state-tag-mod  { background: var(--amber-pale); color: var(--amber); }

/* ── STEP-BY-STEP GUIDE ── */
.step-guide { margin: 24px 0; }

.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  margin-bottom: 20px;
  align-items: start;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-title { font-family: var(--fu); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.step-desc  { font-family: var(--fb); font-size: 15px; color: var(--mid); line-height: 1.7; }

/* ── COMPANION PLANTS ── */
.companion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.companion-card {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}

.companion-card:hover {
  border-color: var(--sage);
  box-shadow: var(--sh1);
  transform: translateY(-2px);
}

.companion-icon   { font-size: 32px; margin-bottom: 7px; }
.companion-name   { font-size: 13.5px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.companion-reason { font-size: 11.5px; color: var(--mid); line-height: 1.5; }

.companion-label {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}

.comp-good { background: var(--lime-pale); color: var(--forest); }
.comp-bad  { background: #fff5f5; color: var(--red); }

/* ── AFFILIATE SECTION ── */
.affiliate-box {
  background: var(--amber-pale);
  border: 1px solid rgba(224, 140, 10, 0.2);
  border-radius: var(--r-lg);
  padding: 24px;
  margin: 32px 0;
}

.affiliate-title { font-family: var(--fu); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.affiliate-note  { font-size: 13px; color: var(--mid); margin-bottom: 16px; }
.affiliate-links { display: flex; flex-direction: column; gap: 10px; }

.affiliate-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all 0.15s;
  cursor: pointer;
}

.affiliate-link:hover { border-color: var(--amber); box-shadow: var(--sh1); }

.aff-ico  { font-size: 22px; flex-shrink: 0; }
.aff-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.aff-sub  { font-size: 12px; color: var(--mid); margin-top: 2px; }
.aff-arrow{ margin-left: auto; font-size: 18px; color: var(--subtle); }

.affiliate-disclaimer {
  font-size: 11px;
  color: var(--subtle);
  margin-top: 12px;
  line-height: 1.6;
}

/* ── FAQ ACCORDION ── */
.faq-list { margin: 20px 0; }

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  font-family: var(--fu);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-toggle {
  font-size: 20px;
  color: var(--sage);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-answer {
  display: none;
  padding: 0 0 16px;
  font-family: var(--fb);
  font-size: 15.5px;
  color: var(--mid);
  line-height: 1.8;
}

.faq-item.open .faq-answer  { display: block; }
.faq-item.open .faq-toggle  { transform: rotate(45deg); }

/* ── RELATED PLANTS ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  border-color: var(--sage);
  box-shadow: var(--sh2);
  transform: translateY(-2px);
}

.related-card:hover .related-photo { transform: scale(1.05); }

.related-thumb {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  background: var(--sage-lt);
  position: relative;
  overflow: hidden;
}

.related-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.related-body { padding: 12px; flex: 1; }
.related-type { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--sage); margin-bottom: 3px; }
.related-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.related-desc { font-size: 12px; color: var(--mid); line-height: 1.5; }

/* ── SIDEBAR: TABLE OF CONTENTS ── */
.sidebar-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 20px;
}

.toc-heading { font-family: var(--fu); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--subtle); margin-bottom: 14px; }

.toc-link {
  display: block;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 13.5px;
  color: var(--mid);
  transition: all 0.15s;
  line-height: 1.4;
}

.toc-link:hover,
.toc-link.active {
  color: var(--forest);
  background: var(--sage-lt);
  font-weight: 500;
}

/* ── SIDEBAR: QUICK FACTS ── */
.sidebar-facts {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 20px;
}

.sidebar-facts-head {
  background: var(--dark);
  color: #fff;
  padding: 14px 20px;
  font-family: var(--fu);
  font-size: 14px;
  font-weight: 700;
}

.facts-list { padding: 16px 20px; }

.fact-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

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

.fact-label { color: var(--subtle); font-weight: 500; flex-shrink: 0; margin-right: 8px; }
.fact-value { color: var(--dark); font-weight: 600; text-align: right; }

/* ── SIDEBAR: NEWSLETTER CTA ── */
.sidebar-cta {
  background: linear-gradient(135deg, var(--forest), #2d6040);
  border-radius: var(--r-lg);
  padding: 22px;
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-cta-heading { font-family: var(--fd); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sidebar-cta-sub     { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 16px; line-height: 1.6; }

.sidebar-cta-email {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--pill);
  border: none;
  outline: none;
  font-size: 13.5px;
  font-family: var(--fu);
  margin-bottom: 10px;
}

.sidebar-cta-btn {
  width: 100%;
  padding: 11px;
  background: var(--lime);
  color: var(--dark);
  border-radius: var(--pill);
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--fu);
  transition: background 0.15s;
}

.sidebar-cta-btn:hover { background: #6db034; }

/* ── SIDEBAR: SHARE ── */
.sidebar-share {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
}

.share-heading { font-family: var(--fu); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--subtle); margin-bottom: 12px; }

.share-buttons { display: flex; gap: 8px; }

.share-btn {
  flex: 1;
  padding: 9px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--mid);
  transition: all 0.15s;
  text-align: center;
  font-family: var(--fu);
}

.share-btn:hover {
  border-color: var(--sage);
  color: var(--forest);
  background: var(--sage-lt);
}

/* ── SIDEBAR CTA FORM ── */
.sidebar-cta-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* ============================================================
   guide.css — Seasonal / Editorial Guide Page Styles
   ============================================================ */

/* ── LAYOUT ── */
.guide-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 52px;
  align-items: start;
}

.guide-sidebar { position: sticky; top: 72px; }

/* ── GUIDE HERO ── */
.guide-hero {
  background: linear-gradient(160deg, #0d2b1a, #1a4a2a, #0a2010);
  border-radius: var(--r-lg);
  padding: 52px 52px 44px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.guide-hero-deco {
  position: absolute;
  font-size: 220px;
  right: -30px;
  top: -20px;
  opacity: 0.1;
  user-select: none;
  pointer-events: none;
}

.guide-type {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.guide-type::before { content: ''; width: 18px; height: 2px; background: var(--lime); }

.guide-h1 {
  font-family: var(--fd);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.guide-h1 em { font-style: italic; color: var(--lime); }

.guide-lead {
  font-family: var(--fb);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 28px;
}

.guide-meta-row { display: flex; gap: 20px; flex-wrap: wrap; }

.guide-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--fu);
}

/* ── GUIDE BODY TYPOGRAPHY ── */
.guide-body h2 {
  font-family: var(--fd);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin: 52px 0 16px;
  letter-spacing: -0.015em;
}

.guide-body h2:first-child { margin-top: 0; }

.guide-body h3 {
  font-family: var(--fu);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 10px;
}

.guide-body h4 {
  font-family: var(--fu);
  font-size: 14px;
  font-weight: 700;
  color: var(--mid);
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guide-body p {
  font-family: var(--fb);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.85;
  margin-bottom: 18px;
}

.guide-body strong { font-weight: 600; color: var(--dark); }
.guide-body em     { font-style: italic; }

.guide-body a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guide-body a:hover { color: var(--sage); }

.guide-body ul,
.guide-body ol { margin: 0 0 20px; padding: 0; }

.guide-body li {
  font-family: var(--fb);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.guide-body ul li::before {
  content: '▸';
  color: var(--lime);
  font-size: 14px;
  position: absolute;
  left: 2px;
  top: 4px;
}

.guide-body ol { counter-reset: guide-cnt; }
.guide-body ol li { counter-increment: guide-cnt; }

.guide-body ol li::before {
  content: counter(guide-cnt) '.';
  color: var(--forest);
  font-weight: 700;
  font-family: var(--fu);
  position: absolute;
  left: 0;
  top: 1px;
}

.guide-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 44px 0;
}

/* ── MONTH-BY-MONTH GUIDE ── */
.month-guide { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }

.month-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 80px 1fr;
}

.month-label {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
}

.month-emoji { font-size: 26px; }
.month-name  { font-size: 12.5px; font-weight: 700; color: #fff; text-align: center; }

.month-body { padding: 14px 18px; }
.month-activity { font-family: var(--fu); font-size: 14.5px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.month-detail   { font-family: var(--fb); font-size: 13.5px; color: var(--mid); line-height: 1.65; }

/* ── STATE BOXES ── */
.state-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}

.state-box {
  padding: 16px;
  border-radius: var(--r-md);
  border: 1px solid;
}

.state-box-head {
  font-family: var(--fu);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.state-box-body {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
}

.state-box-easy   { background: var(--lime-pale);  border-color: rgba(120,192,64,.25); }
.state-box-easy .state-box-head { color: var(--forest); }

.state-box-medium { background: var(--sage-lt);    border-color: rgba(62,122,84,.2); }
.state-box-medium .state-box-head { color: var(--sage); }

.state-box-care   { background: var(--amber-pale); border-color: rgba(224,140,10,.2); }
.state-box-care .state-box-head { color: var(--amber); }

.state-box-hard   { background: #fff5f5;           border-color: rgba(209,48,48,.15); }
.state-box-hard .state-box-head { color: var(--red); }

/* ── MINI PLANT CARDS (guide context) ── */
.mini-plant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.mini-plant-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.2s var(--ease);
}

.mini-plant-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh3);
  border-color: transparent;
}

.mini-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 58px;
  position: relative;
  overflow: hidden;
}

.mini-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-card-body { padding: 13px 14px; }
.mini-card-type { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--sage); margin-bottom: 3px; }
.mini-card-name { font-family: var(--fd); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.mini-card-sci  { font-family: var(--fb); font-style: italic; font-size: 11px; color: var(--subtle); margin-bottom: 7px; }
.mini-card-note { font-size: 12px; color: var(--mid); line-height: 1.5; }

/* ── SIDEBAR COMPONENTS ── */
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 18px;
}

.sidebar-box-head {
  padding: 14px 18px;
  background: var(--dark);
  font-family: var(--fu);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}

.sidebar-box-body { padding: 16px 18px; }

.sidebar-toc-link {
  display: block;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 13.5px;
  color: var(--mid);
  transition: all 0.15s;
  line-height: 1.4;
}

.sidebar-toc-link:hover {
  color: var(--forest);
  background: var(--sage-lt);
}

.sidebar-mini-plant {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 9px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.15s;
}

.sidebar-mini-plant:hover {
  border-color: var(--sage);
  background: var(--sage-lt);
}

.sidebar-mini-plant:last-of-type { margin-bottom: 0; }

.smp-icon { font-size: 24px; flex-shrink: 0; }
.smp-name { font-family: var(--fu); font-size: 13px; font-weight: 700; color: var(--dark); }
.smp-note { font-size: 11px; color: var(--subtle); }

.sidebar-related-link {
  display: block;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  margin-bottom: 8px;
  font-size: 13.5px;
  color: var(--dark);
  transition: all 0.15s;
}

.sidebar-related-link:hover {
  border-color: var(--sage);
  background: var(--sage-lt);
  color: var(--forest);
}

.sidebar-related-link:last-child { margin-bottom: 0; }

/* ── SIDEBAR NEWSLETTER CTA ── */
.sidebar-nl-cta {
  background: linear-gradient(135deg, #0d1f1a, #1a3a28);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 18px;
}

.sidebar-nl-heading { font-family: var(--fd); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.sidebar-nl-sub     { font-size: 12.5px; color: rgba(255,255,255,0.65); margin-bottom: 16px; line-height: 1.6; }

.sidebar-nl-btn {
  display: block;
  width: 100%;
  padding: 11px;
  background: var(--lime);
  color: var(--dark);
  border-radius: var(--pill);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: background 0.15s;
}

.sidebar-nl-btn:hover { background: #6db034; }

/* ============================================================
   PLANTS PAGE — Excel-driven directory additions
   ============================================================ */

/* Category strip (horizontal scroll tabs) */
.cat-strip-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cat-strip {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 6px;
  padding-top: 12px;
  padding-bottom: 12px;
  white-space: nowrap;
}

.cat-chip {
  padding: 8px 16px;
  border-radius: var(--pill);
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--fu);
  cursor: pointer;
  background: var(--bg);
  color: var(--mid);
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.cat-chip:hover,
.cat-chip.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* Card emoji (replacing img for emoji-based cards) */
.dir-card-emoji {
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* Updated card body elements */
.dir-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.dir-card-sun {
  font-size: 11.5px;
  color: var(--mid);
  font-weight: 500;
}

.dir-card-searches {
  font-size: 11px;
  color: var(--subtle);
  font-weight: 500;
}

.dir-card-pot {
  font-size: 11.5px;
  color: var(--subtle);
  margin-bottom: 8px;
}

.dir-card-seo {
  font-size: 11px;
  color: var(--subtle);
  font-style: italic;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 6px;
}

/* Moderate badge (maps to amber) */
.badge-moderate { background: rgba(224, 140, 10, 0.9); color: #fff; }

/* ============================================================
   DROPDOWN NAVIGATION
   ============================================================ */

.header-inner { position: relative; }

.nav-drop-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mid);
  border-radius: 6px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--fu);
  transition: all .15s;
}

.nav-drop-btn:hover,
.nav-drop-btn.active { color: var(--dark); background: var(--sage-lt); }

.drop-arrow { transition: transform .2s; flex-shrink: 0; }

.nav-dropdown { position: relative; }

.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh3);
  min-width: 280px;
  padding: 8px;
  z-index: 9000;
  pointer-events: none;
}

.nav-dropdown.open .nav-drop-menu,
.nav-dropdown:hover .nav-drop-menu {
  display: block;
  pointer-events: auto;
}

.nav-dropdown.open .drop-arrow { transform: rotate(180deg); }

.ndm-header {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--subtle);
  padding: 6px 12px 8px;
}

.ndm-all {
  display: block;
  padding: 9px 14px;
  border-radius: var(--r);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--forest);
  background: var(--sage-lt);
  transition: all .15s;
  margin-bottom: 4px;
}
.ndm-all:hover { background: var(--lime-pale); }

.ndm-divider { height: 1px; background: var(--border); margin: 6px 0; }

.ndm-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r);
  transition: all .15s;
  cursor: pointer;
}
.ndm-item:hover { background: var(--sage-lt); }

.ndm-ico { font-size: 20px; flex-shrink: 0; }

.ndm-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ndm-txt strong { font-size: 13.5px; color: var(--dark); font-weight: 600; }
.ndm-txt small  { font-size: 11.5px; color: var(--subtle); }

/* Search in nav */
.nav-search-form {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--bord-md);
  border-radius: var(--pill);
  overflow: hidden;
  background: var(--bg);
  transition: border-color .15s, background .15s;
}

.nav-search-form:focus-within {
  border-color: var(--sage);
  background: var(--white);
}

.hdr-search-inp {
  padding: 7px 12px;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: var(--fu);
  color: var(--ink);
  background: transparent;
  width: 190px;
  transition: width .2s;
}

.hdr-search-inp:focus { width: 230px; }
.hdr-search-inp::placeholder { color: var(--subtle); }

.nav-search-btn {
  padding: 7px 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid);
  display: flex;
  align-items: center;
}
.nav-search-btn:hover { color: var(--forest); }

/* Hero image overlay pattern */
.hero-img-overlay {
  position: relative;
  overflow: hidden;
}
.hero-img-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
  transition: transform .6s var(--ease);
}
.hero-img-overlay:hover img { transform: scale(1.04); }

/* Plant card image */
.pc-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.plant-dir-card:hover .pc-hero-img { transform: scale(1.05); }

/* Footer brand */
.footer-brand { max-width: 260px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-ico {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.footer-logo-name {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.footer-desc {
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  font-size: 13px;
  color: var(--subtle);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--sage); transition: color .15s; }
.breadcrumb a:hover { color: var(--forest); }
.bc-sep { color: var(--border); }

/* Season/State page hero image */
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .15;
}

/* Related plant card image */
.related-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.related-card:hover .related-card-img { transform: scale(1.05); }

/* Responsive nav */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-drop-menu { left: 0; transform: none; }
}

/* Care list for plant pages */
.care-list { list-style:none; padding:0; margin:0 0 24px; }
.care-list li { padding:10px 14px; border-left:3px solid var(--lime); background:var(--lime-pale);
  border-radius:0 var(--r) var(--r) 0; margin-bottom:8px; font-size:15px; color:var(--ink); line-height:1.5; }
.care-list li strong { color:var(--forest); }

/* ============================================================
   MOBILE RESPONSIVE — Complete Overhaul
   ============================================================ */

/* ── Hamburger Button ─────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 9999;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 8888;
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 9999;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0,0,0,.15);
  padding: 64px 0 40px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav-drawer.open {
  display: block;
  transform: translateX(0);
}
.mob-nav-link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  font-family: var(--fu);
}
.mob-nav-link:hover { background: var(--sage-lt); color: var(--forest); }
.mob-nav-section {
  padding: 10px 24px 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--subtle);
  margin-top: 6px;
}
.mob-nav-sub {
  display: block;
  padding: 10px 24px 10px 38px;
  font-size: 13.5px;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
}
.mob-nav-sub:hover { color: var(--forest); background: var(--sage-lt); }
.mob-search-wrap {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.mob-search-wrap input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--pill);
  font-size: 14px;
  font-family: var(--fu);
  outline: none;
  box-sizing: border-box;
}

/* ── 480px and below ──────────────────────────────────────── */
@media (max-width: 480px) {
  .plant-dir-grid { grid-template-columns: 1fr !important; }
}

/* ── 768px and below (mobile) ─────────────────────────────── */
@media (max-width: 768px) {

  /* Hamburger visible, nav hidden */
  .hamburger { display: flex; }
  .nav-links  { display: none !important; }
  .header-right { display: none; }

  .header-inner {
    padding: 0 16px;
    height: 56px;
  }
  .logo-tagline { display: none; }
  .logo-name { font-size: 16px; }

  /* Hero */
  .hero { padding: 48px 0 36px; min-height: unset; }
  .hero-inner {
    flex-direction: column;
    padding: 0 16px;
    gap: 28px;
  }
  .hero-h1 { font-size: clamp(30px, 8vw, 48px); }
  .hero-lead { font-size: 15px; }
  .hero-search-box {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 12px;
  }
  .hero-search-inp { width: 100%; font-size: 14px; }
  .hero-search-btn {
    width: 100%;
    justify-content: center;
    padding: 10px;
    border-radius: var(--pill);
  }
  .hero-popular { flex-wrap: wrap; gap: 6px; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* Section padding */
  .wrap { padding-left: 16px !important; padding-right: 16px !important; }
  .section { padding: 36px 0; }

  /* Browse by Type — 2 cols on mobile, 5 on desktop */
  .browse-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .browse-card { padding: 16px 12px; }
  .browse-card-ico { font-size: 28px; }
  .browse-card-title { font-size: 13px; }

  /* Season grid */
  .season-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .sc-body { padding: 18px 14px; }
  .sc-emoji { font-size: 28px; }
  .sc-title { font-size: 15px; }
  .sc-sub { font-size: 12px; }

  /* Regions */
  .regions-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .region-card { padding: 16px 12px; }
  .regions-head { flex-direction: column; gap: 8px; }

  /* Plant directory grid */
  .plant-dir-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .dir-card-name { font-size: 13px; }

  /* Dir hero */
  .dir-hero { padding: 32px 0; }
  .dir-hero-inner {
    flex-direction: column;
    padding: 0 16px;
    gap: 16px;
  }
  .dir-hero-h1 { font-size: 28px; }
  .az-row { flex-wrap: wrap; gap: 4px; }
  .az-btn { padding: 5px 8px; font-size: 12px; }
  .dir-search-box { flex-wrap: wrap; }
  .dir-search-inp { width: 100%; font-size: 14px; }

  /* Category strip */
  .cat-strip { gap: 6px; padding: 10px 16px; }
  .cat-chip { font-size: 12px; padding: 6px 10px; white-space: nowrap; }

  /* Directory layout — stack filter below */
  .directory-layout {
    grid-template-columns: 1fr !important;
    padding: 0 16px !important;
  }
  .filter-panel {
    order: 2;
    margin-top: 8px;
  }
  .dir-toolbar { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* Article layout */
  .article-layout {
    grid-template-columns: 1fr !important;
    padding: 0 16px !important;
    gap: 0 !important;
  }
  .article-sidebar { display: none; }
  .plant-hero-img { height: 220px !important; }
  .article-h1 { font-size: clamp(24px, 6vw, 36px); }
  .quick-tags { flex-wrap: wrap; gap: 6px; }

  /* Calendar */
  .cal-grid { grid-template-columns: repeat(6, 1fr) !important; }

  /* State guide */
  .state-guide-grid { grid-template-columns: 1fr !important; }

  /* Tables */
  .tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-tbl { min-width: 500px; font-size: 13px; }

  /* Related grid */
  .related-grid { grid-template-columns: 1fr !important; }

  /* Guide hero */
  .guide-hero { padding: 36px 16px 28px; }
  .guide-h1 { font-size: clamp(24px, 6vw, 38px); }
  .guide-lead { font-size: 15px; }
  .guide-meta-row { flex-wrap: wrap; gap: 6px; }

  /* Guide layout */
  .guide-layout {
    grid-template-columns: 1fr !important;
    padding: 0 16px !important;
  }
  .guide-sidebar { display: none; }

  /* Season / State page sidebars */
  .page-aside { display: none; }

  /* State boxes */
  .state-boxes { grid-template-columns: 1fr !important; }

  /* Mission */
  .mission-inner { padding: 36px 16px; }
  .mission-heading { font-size: clamp(24px, 6vw, 36px); }
  .mission-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }
  .mission-stat-div { display: none; }

  /* Newsletter */
  .nl-inner { padding: 36px 16px; }
  .nl-form { flex-direction: column; gap: 8px; }
  .nl-email, .nl-submit { width: 100%; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .footer-inner { padding: 32px 16px 0; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 0;
  }
  .footer-legal { flex-wrap: wrap; gap: 8px; }

  /* Month guide */
  .month-guide { gap: 8px; }
  .month-item {
    grid-template-columns: 60px 1fr !important;
    gap: 0 10px;
  }

  /* Guides grid */
  .guides-grid { grid-template-columns: 1fr !important; gap: 12px; }

  /* Breadcrumb */
  .breadcrumb { font-size: 12px; }

  /* Share buttons */
  .share-buttons { flex-wrap: wrap; gap: 6px; }
  .share-btn { font-size: 12px; padding: 6px 12px; }
}

/* ── 1024px (tablet) ──────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .plant-dir-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .browse-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .article-layout { grid-template-columns: 1fr 220px !important; }
  .season-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .regions-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .hero-inner { padding: 0 24px; }
  .wrap { padding-left: 24px !important; padding-right: 24px !important; }
}

/* ── 5-column browse grid on desktop ─────────────────────── */
@media (min-width: 1025px) {
  .browse-grid {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px;
  }
  .browse-card { padding: 24px 16px; }
  .browse-card-ico { font-size: 36px; margin-bottom: 10px; }
  .browse-card-title { font-size: 14px; line-height: 1.35; }
  .browse-card-desc { font-size: 12.5px; }
}
