/* =========================================================
   RootDelight — shared stylesheet
   Used by: index.html, about.html, and all six Garden Basics
   guide pages (pick_your_spot, fix_your_soil, the_good_bugs,
   buy_and_plant, pest_management, harvest_and_eat).

   Structure:
   1. Tokens + base reset
   2. Header / nav
   3. Hero (default = guide pages + about; overrides below)
   4. Sections, prose, note components shared across guides
   5. Guide-specific grids (sun/card/bug), try-it, recipe card
   6. Checklist + closing (default = guide pages)
   7. Interactive components — accordion, carousel, checklist
      progress, attach/placeholder cards (rolled out per
      claude/interactivity-design-decisions.md)
   8. About-page-only components
   9. Homepage-only components + overrides
   ========================================================= */

:root{
  --slate:#2E3A44;
  --forest:#1E3B2C;
  --ink:#20395C;
  --paper:#F8F7F3;
  --panel:#EFEDE6;
  --line:rgba(46,58,68,0.14);
  /* --slate-70 / --slate-45 are dark-on-light secondary/tertiary text
     (nav links, card descriptions, footer, checklist source, etc.).
     They previously used rgba(46,58,68, 0.7 / 0.45), which measured
     4.52:1 (bare pass of the 4.5:1 AA minimum, no margin) and 2.41:1
     (fails outright) against the paper/panel backgrounds they sit on.
     Replaced with solid colors carrying real headroom above the
     minimum, verified against both --paper and --panel:
       --slate-70 -> #424D56: 8.08:1 vs paper, 7.39:1 vs panel
       --slate-45 -> #525C64: 6.37:1 vs paper, 5.83:1 vs panel
     Kept as two distinct tiers (70 darker/more prominent than 45) to
     preserve the existing visual hierarchy between them. */
  --slate-70:#424D56;
  --slate-45:#525C64;
  --paper-70:rgba(248,247,243,0.7);
  /* --paper-45 is light-on-dark text (currently just .closing-or) on
     either --forest (guide pages) or --slate (homepage's .closing
     override). Old value rgba(248,247,243,0.45) measured 3.63:1 on
     forest — fails AA. Replaced with a solid color verified against
     both backgrounds it actually appears on: 6.72:1 vs forest,
     6.4:1 vs slate. --paper-70 was already fine (6.47:1 / 6.15:1) and
     is unchanged. */
  --paper-45:#BBC2BB;
  --brand-gold:#b8860b;
  --brand-gold-light:#d4a843;
  --brand-forest:#203316;
  --brand-forest-deep:#141f0d;
  --brand-cream:#f5f0e8;
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:var(--paper);
  color:var(--slate);
  font-size:1.05rem;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
a{color:var(--ink);}
img{max-width:100%;}

/* ---------- header ---------- */
.site-header{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1.1rem 2rem;
  background:var(--paper);
  border-bottom:1px solid var(--line);
  position:sticky;top:0;z-index:40;
}
.site-logo{font-weight:700;font-size:1rem;letter-spacing:-0.01em;color:var(--slate);text-decoration:none;}
.series-nav{display:flex;gap:1.4rem;flex-wrap:wrap;}
.series-nav a{font-size:0.78rem;letter-spacing:0.03em;color:var(--slate-45);white-space:nowrap;text-decoration:none;}
.series-nav a:hover{color:var(--forest);}
.series-nav a.current{color:var(--forest);font-weight:600;border-bottom:2px solid var(--forest);padding-bottom:2px;}
@media(max-width:820px){.series-nav{display:none;}}

/* ---------- hero (default: guide pages + about) ---------- */
.hero{
  position:relative;overflow:hidden;
  background:#282216;
  color:var(--paper);
  padding:4.5rem 2rem 3.5rem;
  text-align:center;
}
/* Optional per-guide hero photo. Add <div class="hero-photo-layer"
   style="--hero-img:url('assets/whatever.jpg')"></div> as the first
   child of .hero to enable it; harmless to omit. */
.hero-photo-layer{
  position:absolute;inset:0;z-index:0;
  background-size:cover;background-position:center;
  background-image:linear-gradient(160deg, rgba(40,34,22,0.55) 0%, rgba(40,34,22,0.85) 100%), var(--hero-img);
}
.hero > *:not(.hero-photo-layer){position:relative;z-index:1;}
.hero-index{
  font-size:0.72rem;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;
  color:#d4a843;margin-bottom:0.6rem;
}
.hero-title{
  font-family:'Quicksand',-apple-system,BlinkMacSystemFont,sans-serif;
  font-size:clamp(2.2rem,5vw,3.4rem);
  font-weight:800;letter-spacing:-0.02em;line-height:1.12;
  max-width:720px;margin:0 auto 1.1rem;
}
.hero-title .accent{color:#d4a843;}
.hero-sub{
  font-size:1.08rem;font-weight:400;color:var(--paper-70);
  max-width:580px;margin:0 auto 2rem;line-height:1.75;
}
.hero-meta{display:flex;gap:0.9rem;justify-content:center;flex-wrap:wrap;}
.meta-pill{
  border:1px solid rgba(248,247,243,0.25);border-radius:3px;
  padding:0.38rem 0.9rem;font-size:0.78rem;color:var(--paper-70);
  letter-spacing:0.02em;
}
.hero-tagline{
  font-size:1.1rem;font-style:italic;font-weight:500;
  color:var(--brand-gold-light);
}

/* About page: same fixed hero height as Home, larger title, no eyebrow/meta row */
body.page-about .hero{padding:5rem 2rem 4.5rem;min-height:480px;display:flex;flex-direction:column;align-items:center;justify-content:center;}
body.page-about .hero-title{font-size:clamp(2.4rem,6vw,4rem);line-height:1.1;margin:0 auto 0.6rem;}

/* ---------- sections ---------- */
.section{
  max-width:950px;margin:10px auto;padding:4rem 2rem;
  border-bottom:1px solid var(--line);
}
.section:last-of-type{border-bottom:none;}
.sec-eyebrow{
margin:15px auto 0;
  font-size:0.75rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--forest);margin-bottom:0.7rem;
}
.sec-title{
  font-size:clamp(1.5rem,3vw,2rem);font-weight:800;letter-spacing:-0.01em;
  color:var(--slate);margin-bottom:0.4rem;line-height:1.2;
}
.sec-sub{color:var(--slate-70);font-style:italic;font-size:0.98rem;margin-bottom:1.8rem;}
.prose{color:var(--slate);opacity:0.92;margin-bottom:1.3rem;font-size:1.03rem;line-height:1.8;}
.prose strong{color:var(--slate);font-weight:600;}

h3.block-head{
  font-size:1.02rem;font-weight:700;color:var(--slate);
  margin:2.1rem 0 0.9rem;padding-bottom:0.4rem;border-bottom:1px solid var(--line);
}

/* ---------- field note ---------- */
.field-note{
  background:var(--panel);border-left:3px solid var(--forest);
  padding:1.15rem 1.4rem;margin:1.8rem 0;border-radius:0 4px 4px 0;
}
.field-note .fn-label{
  font-size:0.68rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--forest);margin-bottom:0.5rem;display:block;
}
.field-note p{font-size:1.03rem;line-height:1.8;color:var(--slate);font-style:italic;opacity:0.9;}

/* ---------- note box ---------- */
.note-box{
  border:1px solid var(--line);background:var(--paper);
  padding:1.1rem 1.3rem;margin:1.7rem 0;border-radius:4px;
}
.note-box .nb-label{
  font-size:0.7rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--ink);margin-bottom:0.35rem;display:block;
}
.note-box p{font-size:1.03rem;line-height:1.75;color:var(--slate);opacity:0.9;}

/* ---------- sun grid (Pick Your Spot) ---------- */
.sun-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0.85rem;margin:1.2rem 0 1.8rem;}
.sun-card{border:1px solid var(--line);border-radius:4px;padding:1.1rem 1rem;text-align:center;}
.sun-card .sc-name{font-weight:700;font-size:0.9rem;color:var(--slate);margin-bottom:0.3rem;}
.sun-card .sc-hours{font-size:0.78rem;color:var(--forest);font-weight:600;margin-bottom:0.5rem;}
.sun-card .sc-crops{font-size:1.03rem;color:var(--slate-70);line-height:1.55;}
@media(max-width:640px){.sun-grid{grid-template-columns:1fr;}}

/* ---------- card grid (soil types, categories, spray toolkit, etc.) ---------- */
.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0.85rem;margin:1.2rem 0 1.8rem;}
.card-grid.cols-2{grid-template-columns:repeat(2,1fr);}
.info-card{border:1px solid var(--line);border-radius:4px;padding:1.1rem 1.1rem;}
.info-card .ic-name{font-weight:700;font-size:0.92rem;color:var(--slate);margin-bottom:0.4rem;}
.info-card .ic-tag{font-size:0.78rem;color:var(--forest);font-weight:600;margin-bottom:0.5rem;}
.info-card .ic-body{font-size:1.03rem;color:var(--slate-70);line-height:1.6;}
@media(max-width:640px){.card-grid{grid-template-columns:1fr;}}

/* ---------- combo list (simple stacked entries — companion planting, and
   anywhere else a card-grid would leave an awkward gap because the item
   count doesn't divide evenly, or the entries vary a lot in length) ----------
   Each .combo-item can optionally start with a .combo-media image (a small
   rounded-square illustration or photo) — just add
   <div class="combo-media"><img src="..." alt="..."></div> before the
   .combo-text div once art is ready; .combo-text alone (no media) is the
   default and looks fine as plain text until then. */
.combo-list{margin:1.2rem 0 1.8rem;}
.combo-item{padding:1.3rem 0;border-bottom:1px solid var(--line);display:flex;gap:1.1rem;align-items:flex-start;}
.combo-item:last-child{border-bottom:none;}
.combo-media{flex-shrink:0;width:64px;height:64px;border-radius:8px;overflow:hidden;}
.combo-media img{width:100%;height:100%;object-fit:cover;display:block;}
.combo-text{flex:1;min-width:0;}
.combo-title{
  font-size:1.2rem;font-weight:700;color:var(--slate);margin-bottom:0.4rem;
  display:flex;align-items:baseline;gap:0.6rem;flex-wrap:wrap;
}
.combo-tag{font-size:1.0rem;font-weight:600;color:var(--forest);}
.combo-item p{font-size:1.0rem;line-height:1.75;color:var(--slate-70);}

/* ---------- bug id grid (good bugs, seed depth, pest ID) ---------- */
.bug-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0.7rem;margin:1rem 0 1.8rem;}
.bug-grid.cols-4{grid-template-columns:repeat(4,1fr);}
.bug-card{border:1px solid var(--line);border-radius:4px;padding:0.95rem 1rem;}
.bug-card .bg-name{font-weight:700;font-size:0.88rem;color:var(--slate);margin-bottom:0.35rem;}
.bug-card .bg-tag{font-size:0.78rem;color:var(--forest);font-weight:600;margin-bottom:0.35rem;}
.bug-card .bg-job{font-size:1.03rem;color:var(--slate-70);line-height:1.55;}
@media(max-width:640px){.bug-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:440px){.bug-grid{grid-template-columns:1fr;}}

/* ---------- data table (exact reference numbers — crop-by-crop depth/spacing, etc.) ----------
   Wrap in .table-scroll so a wide table scrolls inside its own box on narrow/iframe
   viewports instead of forcing the whole page to scroll horizontally. */
.table-scroll{overflow-x:auto;margin:1.2rem 0 1.8rem;}
.data-table{width:100%;border-collapse:collapse;font-size:1.03rem;min-width:520px;}
.data-table th{
  text-align:left;font-size:0.75rem;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;
  color:var(--ink);padding:0.7rem 0.9rem;border-bottom:2px solid var(--line);background:var(--panel);
  white-space:nowrap;
}
.data-table td{padding:0.7rem 0.9rem;border-bottom:1px solid var(--line);color:var(--slate);opacity:0.92;white-space:nowrap;}
.data-table tr:last-child td{border-bottom:none;}
.data-table tr:hover td{background:var(--panel);}

/* ---------- steps ---------- */
.steps{margin:1rem 0 1.8rem;}
.step-row{display:flex;gap:1rem;padding:1rem 0;border-bottom:1px solid var(--line);}
.step-row:last-child{border-bottom:none;}
.step-num{
  flex-shrink:0;width:26px;height:26px;border-radius:50%;
  background:var(--slate);color:var(--paper);
  display:flex;align-items:center;justify-content:center;
  font-size:0.75rem;font-weight:700;margin-top:2px;
}
.step-content h4{font-weight:700;font-size:0.96rem;color:var(--slate);margin-bottom:0.25rem;}
.step-content p{font-size:1.03rem;line-height:1.7;color:var(--slate-70);}

/* ---------- try-it list (static; use .carousel below for the interactive version) ---------- */
.try-it{border:1px solid var(--line);border-radius:4px;padding:1.3rem 1.5rem;margin:1.8rem 0;}
.try-it .ti-label{
  font-size:0.7rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--ink);margin-bottom:0.7rem;
}
.try-it ol{list-style:none;counter-reset:ti;}
.try-it ol li{
  counter-increment:ti;display:flex;gap:0.8rem;margin-bottom:0.7rem;
  font-size:1.03rem;line-height:1.7;color:var(--slate);opacity:0.92;
}
.try-it ol li:last-child{margin-bottom:0;}
.try-it ol li::before{
  content:counter(ti);flex-shrink:0;width:22px;height:22px;border-radius:50%;
  border:1.5px solid var(--forest);color:var(--forest);
  display:flex;align-items:center;justify-content:center;
  font-size:0.7rem;font-weight:700;margin-top:1px;
}

/* ---------- recipe card (Harvest & Eat) ---------- */
.recipe-card{border:1px solid var(--line);border-radius:4px;padding:1.3rem 1.5rem;margin:1.3rem 0;}
.recipe-card .rc-title{font-weight:700;font-size:1rem;color:var(--slate);margin-bottom:0.2rem;}
.recipe-card .rc-sub{font-size:0.82rem;color:var(--slate-45);font-style:italic;margin-bottom:0.95rem;}
.recipe-card ol{list-style:none;counter-reset:rc;padding:0;}
.recipe-card ol li{
  counter-increment:rc;display:flex;gap:0.75rem;margin-bottom:0.6rem;
  font-size:1.03rem;line-height:1.7;color:var(--slate);opacity:0.92;
}
.recipe-card ol li:last-child{margin-bottom:0;}
.recipe-card ol li::before{
  content:counter(rc);flex-shrink:0;width:20px;height:20px;border-radius:50%;
  border:1.5px solid var(--forest);color:var(--forest);
  display:flex;align-items:center;justify-content:center;
  font-size:0.68rem;font-weight:700;margin-top:1px;
}

/* ---------- checklist ---------- */
.checklist{border:1px solid var(--line);border-radius:4px;overflow:hidden;margin-top:1.5rem;}
.checklist-group{padding:1.3rem 1.5rem;border-bottom:1px solid var(--line);}
.checklist-group:last-child{border-bottom:none;}
.checklist-group h4{font-size:0.85rem;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;color:var(--ink);margin-bottom:0.9rem;}
.check-item{display:flex;gap:0.7rem;align-items:flex-start;padding:0.5rem 0;font-size:1.03rem;color:var(--slate);opacity:0.92;line-height:1.6;}
.check-item input{margin-top:0.35rem;width:15px;height:15px;accent-color:var(--forest);flex-shrink:0;}
.check-item label{cursor:pointer;}
.check-item.done label{text-decoration:line-through;opacity:0.65;}
.checklist-source{font-size:0.78rem;color:var(--slate-45);padding:0.9rem 1.5rem;background:var(--panel);}

/* ---------- closing (default: guide pages) ---------- */
.closing{
  background:var(--forest);color:var(--paper);text-align:center;padding:3.5rem 2rem;
}
.closing h2{font-size:1.5rem;font-weight:800;margin-bottom:0.8rem;}
.closing p{color:var(--paper-70);max-width:520px;margin:0 auto 1.6rem;line-height:1.75;font-size:0.98rem;}
.closing-links{display:flex;gap:0.7rem;justify-content:center;flex-wrap:wrap;}
.closing-link{
  border:1px solid rgba(248,247,243,0.28);border-radius:3px;padding:0.55rem 1.1rem;
  font-size:0.8rem;color:var(--paper-70);letter-spacing:0.02em;
  text-decoration:none;display:inline-block;transition:background 0.15s ease, border-color 0.15s ease;
}
.closing-link:hover{background:rgba(248,247,243,0.1);border-color:rgba(248,247,243,0.5);}
.closing-next{
  display:inline-flex;flex-direction:column;align-items:center;gap:0.3rem;
  background:rgba(248,247,243,0.08);border:1px solid rgba(248,247,243,0.35);
  border-radius:6px;padding:1rem 2.2rem;margin:0.4rem 0 1.7rem;
  text-decoration:none;transition:transform 0.15s ease, background 0.15s ease;
}
.closing-next:hover{transform:translateY(-2px);background:rgba(248,247,243,0.14);}
.next-label{font-size:0.7rem;font-weight:700;letter-spacing:0.16em;text-transform:uppercase;color:#d4a843;}
.next-title{font-size:1.15rem;font-weight:800;color:var(--paper);}
.closing-or{font-size:0.85rem;color:var(--paper-45);margin:0 0 0.9rem;letter-spacing:0.02em;}

.site-footer{
  text-align:center;padding:1.5rem;font-size:0.78rem;color:var(--slate-45);background:var(--paper);
}
.site-footer a{color:var(--slate-45);}

/* =========================================================
   INTERACTIVE COMPONENTS
   Accordion, carousel, checklist progress bar, and the
   end-of-course "attach" placeholder cards. Rolled out per
   claude/interactivity-design-decisions.md — shared across
   all six guide pages so each file only needs matching markup
   plus the small inline script block at the bottom of the page.
   ========================================================= */

/* ---------- accordion (native <details>/<summary>, restyled) ---------- */
.accordion{border:1px solid var(--line);border-radius:4px;overflow:hidden;margin:1.2rem 0 1.8rem;}
.acc-toggle-row{display:flex;justify-content:flex-end;gap:1rem;margin:0 0 0.6rem;}
.acc-toggle{
  background:none;border:none;padding:0;font:inherit;cursor:pointer;
  font-size:0.78rem;font-weight:600;color:var(--ink);letter-spacing:0.02em;
  text-decoration:underline;text-underline-offset:2px;
}
.acc-toggle:hover{color:var(--forest);}
.acc-group{border-bottom:1px solid var(--line);}
.acc-group:last-child{border-bottom:none;}
.acc-group summary{
  cursor:pointer;list-style:none;padding:1.1rem 1.4rem;
  font-size:0.98rem;font-weight:700;color:var(--slate);
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  background:var(--paper);
}
.acc-group summary::-webkit-details-marker{display:none;}
.acc-group summary::after{
  content:"+";flex-shrink:0;font-size:1.1rem;font-weight:700;color:var(--forest);
  width:22px;height:22px;display:flex;align-items:center;justify-content:center;
}
.acc-group[open] summary::after{content:"–";}
.acc-group[open] summary{border-bottom:1px solid var(--line);}
.acc-body{padding:0.3rem 1.4rem 1.4rem;background:var(--panel);}
.acc-body p{font-size:1.03rem;line-height:1.75;color:var(--slate-70);margin:0.7rem 0;}
.acc-body p:first-child{margin-top:1rem;}
.acc-body ul{list-style:none;margin:0.7rem 0;}
.acc-body ul li{
  position:relative;padding:0.4rem 0 0.4rem 1.1rem;font-size:1.03rem;line-height:1.65;
  color:var(--slate);opacity:0.92;
}
.acc-body ul li::before{content:"–";position:absolute;left:0;color:var(--forest);}
.acc-body ul li strong{color:var(--slate);}

/* ---------- carousel (numbered try-it steps, interactive) ---------- */
.carousel{border:1px solid var(--line);border-radius:4px;padding:1.3rem 1.5rem 1.5rem;margin:1.8rem 0;}
.carousel .ti-label{
  font-size:0.7rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--ink);margin-bottom:0.9rem;
}
.carousel-viewport{overflow:hidden;touch-action:pan-y;}
.carousel-track{display:flex;transition:transform 0.3s ease;}
.carousel-slide{flex:0 0 100%;min-width:0;padding:0.1rem 0.15rem;}
.carousel-slide p{font-size:1.03rem;line-height:1.75;color:var(--slate);opacity:0.94;}
.carousel-slide strong{color:var(--slate);font-weight:700;}
.carousel-nav{display:flex;align-items:center;justify-content:center;gap:1rem;margin-top:1.2rem;}
.carousel-btn{
  flex-shrink:0;width:32px;height:32px;border-radius:50%;
  border:1.5px solid var(--forest);background:var(--paper);color:var(--forest);
  font-size:1rem;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background 0.15s ease;
}
.carousel-btn:hover{background:var(--panel);}
.carousel-btn:disabled{opacity:0.35;cursor:default;}
.carousel-dots{display:flex;gap:0.5rem;}
.carousel-dot{
  width:9px;height:9px;border-radius:50%;border:1.5px solid var(--forest);
  background:transparent;padding:0;cursor:pointer;
}
.carousel-dot.active{background:var(--forest);}

/* ---------- checklist progress bar ---------- */
.checklist-progress{display:flex;align-items:center;gap:0.9rem;margin:1.2rem 0 0.9rem;}
.checklist-progress-track{
  flex:1;height:8px;border-radius:100px;background:var(--panel);
  border:1px solid var(--line);overflow:hidden;
}
.checklist-progress-fill{height:100%;background:var(--forest);width:0%;transition:width 0.25s ease;}
.checklist-progress-label{font-size:0.78rem;color:var(--slate-45);white-space:nowrap;letter-spacing:0.02em;}

/* ---------- attach / resource cards (Deep Read / Easy Read / Activity) ----------
   .attach-card is a real <a> when it links to a resource (border solid, hover
   lift); it still supports being a plain <div> for a genuine "coming soon"
   placeholder (border dashed, no hover) — the dashed style is the fallback,
   the anchor rule below overrides it whenever the tile is a real link. */
.attach-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:0.9rem;margin-top:1.4rem;}
.attach-card{
  border:1.5px dashed var(--slate-45);border-radius:6px;background:var(--panel);
  padding:1.3rem 1.2rem;text-align:center;
}
a.attach-card{
  display:block;text-decoration:none;color:inherit;border-style:solid;
  transition:border-color 0.15s ease, transform 0.15s ease;
}
a.attach-card:hover{border-color:var(--forest);transform:translateY(-2px);}
.attach-card .ac-title{font-weight:700;font-size:0.98rem;color:var(--slate);margin-bottom:0.55rem;}
.attach-card .ac-desc{font-size:0.85rem;color:var(--slate-70);line-height:1.6;margin-bottom:0.9rem;}
.attach-tag{
  display:inline-block;font-size:0.68rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--slate-45);border:1px solid var(--slate-45);border-radius:100px;padding:0.28rem 0.7rem;
}
a.attach-card .attach-tag{color:var(--forest);border-color:var(--forest);}
@media(max-width:640px){.attach-grid{grid-template-columns:1fr;}}

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* =========================================================
   ABOUT PAGE — unique components
   ========================================================= */
.bio-wrap{overflow:hidden;}
.bio-photo{
  float:right;width:230px;max-width:33%;
  margin:0 0 1.2rem 2rem;border-radius:8px;display:block;
}

/*To replace the above*/

.about-split{
  display:grid;grid-template-columns:220px 1fr;gap:2.5rem;align-items:start;
}
.about-photo{
  width:100%;max-width:200px;border-radius:8px;display:block;margin-bottom:1rem;
}

/*End About*/

@media(max-width:720px){
  .about-split{grid-template-columns:1fr;text-align:center;}
  .about-photo{margin:0 auto 1rem;}
}

@media(max-width:640px){
  .bio-photo{float:none;width:100%;max-width:100%;margin:0 0 1.5rem;}
}

.divider{border:none;border-top:1px solid var(--line);max-width:950px;margin:0 auto;}

.vmv-block{margin-bottom:1.8rem;}
.vmv-block:last-child{margin-bottom:0;}
.vmv-label{
  font-size:0.75rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--forest);margin-bottom:0.5rem;
}
.values-list{list-style:none;margin-top:0.3rem;}
.values-list li{
  display:flex;gap:0.7rem;align-items:flex-start;
  font-size:0.98rem;line-height:1.7;color:var(--slate);opacity:0.92;
  padding:0.55rem 0;border-bottom:1px solid var(--line);
}
.values-list li:last-child{border-bottom:none;}
.value-emoji{flex-shrink:0;font-size:1.1rem;}

.impact-list{margin:1.5rem 0;}
.impact-item{display:flex;gap:1.2rem;padding:1.6rem 0;border-bottom:1px solid var(--line);}
.impact-item:last-child{border-bottom:none;}
.impact-num{
  flex-shrink:0;width:34px;height:34px;border-radius:50%;
  background:var(--forest);color:var(--paper);
  display:flex;align-items:center;justify-content:center;
  font-size:0.9rem;font-weight:700;margin-top:2px;
}
.impact-body h3{font-size:1.05rem;font-weight:800;color:var(--slate);margin-bottom:0.5rem;line-height:1.3;}
.impact-body p{font-size:0.95rem;line-height:1.75;color:var(--slate-70);margin-bottom:0.8rem;}
.impact-body p:last-child{margin-bottom:0;}
.impact-body p strong{color:var(--ink);}

.references{margin-top:1.5rem;padding-top:1.2rem;border-top:1px solid var(--line);}
.references summary{
  cursor:pointer;font-size:0.82rem;font-weight:600;color:var(--slate-45);
  letter-spacing:0.03em;text-transform:uppercase;
}
.references ul{list-style:none;margin-top:0.9rem;}
.references li{font-size:0.8rem;line-height:1.7;color:var(--slate-45);margin-bottom:0.6rem;}

.goals-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0.7rem;
  margin-top:0.5rem;
}
.goal-slot{
  border:1px solid var(--line);border-radius:6px;
  background:var(--panel);text-align:center;overflow:hidden;
}
.goal-slot img{width:100%;aspect-ratio:1/1;object-fit:cover;display:block;}
.goal-slot span{display:block;font-size:0.72rem;font-weight:600;color:var(--slate-70);padding:0.5rem 0.4rem;line-height:1.35;}
@media(max-width:640px){.goals-grid{grid-template-columns:repeat(2,1fr);}}

/* =========================================================
   HOMEPAGE — unique hero + sections
   ========================================================= */
body.page-home .hero{
  position:relative;
  min-height:480px;
  display:flex;align-items:center;justify-content:flex-start;
  overflow:hidden;
  background:#282216;
  color:var(--brand-cream);
  text-align:left;
  padding:0;
}
.hero-photo{
  position:absolute;inset:0;
  background:
    linear-gradient(160deg, rgba(32,51,22,0.55) 0%, rgba(20,31,13,0.82) 100%);
  background-size:cover;
  background-position:62% center;
}
.hero-inner{
  position:relative;z-index:2;
  padding:3.5rem 2rem;max-width:620px;
  margin:0 2rem 0 4rem;
}
@media(max-width:900px){.hero-inner{margin-left:2rem;}}
@media(max-width:640px){.hero-inner{margin:0 1.25rem;padding:3.5rem 0 2.75rem;}}
body.page-home .hero-eyebrow{
  font-size:0.72rem;font-weight:700;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--brand-gold-light);margin-bottom:1rem;
}
body.page-home .hero-title{
  font-family:'Quicksand',-apple-system,BlinkMacSystemFont,sans-serif;
  font-size:clamp(2.1rem,5vw,3.2rem);
  font-weight:700;letter-spacing:-0.01em;line-height:1.15;
  margin:0 0 0.7rem;color:#ffffff;max-width:none;
}
body.page-home .hero-sub{
  font-size:1.08rem;font-weight:500;color:rgba(255,255,255,0.92);
  max-width:480px;margin:0 0 1.6rem;line-height:1.6;
}
body.page-home .hero-meta{justify-content:flex-start;margin-bottom:1.6rem;}
body.page-home .meta-pill{
  border:1px solid rgba(245,240,232,0.32);border-radius:100px;
  padding:0.38rem 1rem;font-size:0.78rem;color:rgba(245,240,232,0.85);
  letter-spacing:0.02em;background:rgba(15,23,10,0.25);
}
.hero-cta{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:var(--brand-gold-light);color:var(--brand-forest-deep);
  font-weight:700;font-size:0.92rem;letter-spacing:0.02em;
  padding:0.85rem 1.9rem;border-radius:4px;text-decoration:none;
  transition:transform 0.15s ease, box-shadow 0.15s ease;
}
.hero-cta:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(0,0,0,0.28);}

/*WELCOME*/

.welcome{
  max-width:950px;margin:0 auto;padding:3rem 2rem;
  display:grid;grid-template-columns:1fr 280px;gap:3rem;align-items:start;
  text-align:left;
}
.welcome-text p{font-size:1.05rem;line-height:1.85;color:var(--slate-70);}

.welcome-note{
  border:1px solid var(--line);border-radius:4px;
  background:var(--panel);padding:1.1rem 1.3rem;
}
.welcome-note .wn-label{
  display:block;font-size:0.68rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--ink);margin-bottom:0.4rem;
}
.welcome-note p{font-size:0.85rem;line-height:1.6;color:var(--slate-70);}

@media(max-width:720px){
  .welcome{grid-template-columns:1fr;text-align:center;}
  .welcome-note{text-align:left;}
}

body.page-home .section{padding:4.5rem 2rem;}
body.page-home .sec-eyebrow{text-align:center;}
body.page-home .sec-title{font-size:clamp(1.6rem,3.2vw,2.1rem);margin-bottom:0.5rem;text-align:center;}
body.page-home .sec-sub{margin:0 auto 2.6rem;text-align:center;max-width:520px;}
body.page-home .prose{max-width:680px;}

.topic-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem;}
.topic-card{
  display:block;border:1px solid var(--line);border-radius:6px;
  padding:1.7rem 1.6rem;text-decoration:none;color:inherit;background:var(--paper);
  transition:border-color 0.15s ease, transform 0.15s ease;
}
.topic-card:hover{border-color:var(--forest);transform:translateY(-2px);}
.topic-card .tc-num{
  font-size:0.72rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--forest);margin-bottom:0.85rem;
}
.topic-card .tc-title{font-size:1.18rem;font-weight:800;color:var(--slate);margin-bottom:0.55rem;line-height:1.25;}
.topic-card .tc-desc{font-size:0.9rem;color:var(--slate-70);line-height:1.65;margin-bottom:1.1rem;}
.topic-card .tc-meta{font-size:0.76rem;color:var(--slate-45);letter-spacing:0.02em;}
@media(max-width:900px){.topic-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.topic-grid{grid-template-columns:1fr;}}

body.page-home .steps{margin:1rem 0 0;max-width:680px;}

body.page-home .closing{background:var(--slate);padding:4rem 2rem;}
body.page-home .closing h2{font-size:1.6rem;}
.closing-cta{
  display:inline-block;border:1px solid rgba(248,247,243,0.35);border-radius:3px;
  padding:0.75rem 1.6rem;font-size:0.85rem;color:var(--paper);letter-spacing:0.03em;
  text-decoration:none;font-weight:600;
}
.closing-cta:hover{background:rgba(248,247,243,0.08);}
