:root {
  --c-primary:       #3B5332;
  --c-primary-dark:  #2A3C23;
  --c-accent:        #C4A44A;
  --c-bg:            #F5F2EB;
  --c-bg-alt:        #EAE6DA;
  --c-bg-soft:       color-mix(in srgb, var(--c-bg) 92%, white);
  --c-text:          #2D2D2A;
  --c-text-muted:    #7A7868;
  --c-text-subtle:   color-mix(in srgb, var(--c-text-muted) 70%, var(--c-bg));
  --c-border:        #D6D1C4;
  --c-border-soft:   color-mix(in srgb, var(--c-border) 60%, var(--c-bg));
  --c-success:       #4E7A3E;
  --c-danger:        #C0392B;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(30,42,37,.04), 0 1px 1px rgba(30,42,37,.03);
  --shadow-md: 0 8px 24px -8px rgba(30,42,37,.10), 0 2px 6px rgba(30,42,37,.04);
  --shadow-lg: 0 24px 48px -16px rgba(30,42,37,.14);

  --f-heading: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --f-body:    system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --measure: 80ch;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: clamp(16px, .35vw + 15px, 18px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Type scale (no webfont needed) ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  color: var(--c-text);
  line-height: 1.18;
  margin: 0 0 .55em;
  letter-spacing: -.018em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 3.6vw + 1rem, 3.4rem); letter-spacing: -.028em; font-weight: 750; }
h2 { font-size: clamp(1.55rem, 1.6vw + 1rem, 2.15rem); margin-top: 2em; letter-spacing: -.02em; }
h3 { font-size: clamp(1.18rem, .6vw + 1rem, 1.4rem); margin-top: 1.4em; letter-spacing: -.012em; }
h4 { font-size: 1.08rem; margin-top: 1.1em; }
p  { margin: 0 0 1.1em; }

a { color: var(--c-primary-dark); text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--c-primary-dark) 35%, transparent); text-underline-offset: 2px; }
a:hover { color: var(--c-primary-dark); text-decoration-color: var(--c-primary-dark); }

img, figure { max-width: 100%; }
img { height: auto; display: block; }
figure { margin: 1.6rem 0; }
figure img { border-radius: var(--r-md); box-shadow: var(--shadow-md); }

ul, ol { padding-left: 1.4em; margin: 0 0 1.2em; }
li { margin-bottom: .45em; }

strong { font-weight: 650; color: var(--c-text); }

/* ---- Layout container ---- */
.container {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--wide { max-width: 1180px; }  /* used by landing-page sections */

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--c-bg) 88%, transparent);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--c-border-soft);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; color: var(--c-text); text-decoration: none; }
.brand:hover { color: var(--c-text); }
.brand img { width: 32px; height: 32px; border-radius: var(--r-sm); box-shadow: var(--shadow-sm); }
.brand-name { font-size: 1.02rem; letter-spacing: -.01em; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1.15; }
.brand-lockup .brand-name { font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; }
.brand-sub { font-size: .72rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; color: var(--c-primary); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 1rem; }
.site-nav { display: flex; gap: 1.2rem; align-items: center; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-sm);
  background: var(--c-bg-alt);
  cursor: pointer;
}
.nav-toggle__bar { display: block; width: 20px; height: 2px; margin: 0 auto; background: var(--c-text); border-radius: 1px; }
.site-nav a { color: var(--c-text-muted); font-weight: 600; text-decoration: none; font-size: .95rem; }
.site-nav a:hover { color: var(--c-text); }
.site-nav a[aria-current="page"] { color: var(--c-primary-dark); }

/* ---- Article shell ---- */
.page-article {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
}
.page-article h1 {
  margin-bottom: .35em;
  font-size: clamp(2.1rem, 3.2vw + 1.1rem, 3.2rem);
  max-width: 22ch;
}

/* Byline directly under H1 */
.byline {
  color: var(--c-text-muted);
  font-size: .96rem;
  margin: 0 0 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--c-border-soft);
}
.byline-author, .byline-reviewer { color: var(--c-text); font-weight: 650; }

/* Hero figure under byline */
.page-hero { margin: 0 0 2rem; }
.page-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }

/* Intro block */
.page-intro { font-size: 1.06em; color: var(--c-text); margin-bottom: 2rem; }
.page-intro > p:first-child { font-size: 1.12em; line-height: 1.55; }

/* Definition blockquote (the `>` markdown block used at the top of pages) */
.page-intro blockquote, blockquote {
  margin: 1.6rem 0;
  padding: 1.1rem 1.3rem;
  background: var(--c-bg-alt);
  border-left: 3px solid var(--c-primary);
  border-radius: var(--r-md);
  color: var(--c-text);
  box-shadow: var(--shadow-sm);
}
blockquote p { margin: 0; }
blockquote strong { color: var(--c-primary-dark); }

/* H2 section cards */
.page-section {
  margin: 2.2rem 0;
  padding: 0;
}
.page-section h2 {
  scroll-margin-top: 80px;
}
.page-section h3 {
  scroll-margin-top: 80px;
}

/* Inline images within sections */
.page-inbody { margin: 1rem 0 1.6rem; }
.page-inbody img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }

/* Tables */
.page-section table, article table {
  width: 100%; border-collapse: collapse;
  margin: 1.4rem 0; font-size: .96em;
  background: var(--c-bg-alt);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border-soft);
}
.page-section thead, article thead { background: var(--c-bg-soft); }
.page-section th, article th { text-align: left; font-weight: 650; color: var(--c-text); padding: .75rem .95rem; border-bottom: 1px solid var(--c-border); }
.page-section td, article td { padding: .7rem .95rem; border-bottom: 1px solid var(--c-border-soft); vertical-align: top; }
.page-section tr:last-child td, article tr:last-child td { border-bottom: none; }

/* Inline source links (max 3 per page). Subtle, not screaming. */
a[rel*="nofollow"] {
  color: var(--c-text-muted);
  text-decoration: underline dotted;
  text-decoration-color: var(--c-text-subtle);
  font-size: .92em;
}
a[rel*="nofollow"]:hover { color: var(--c-primary-dark); text-decoration: underline; }

/* Limitations section -- visually distinct, soft accent */
.page-limitations {
  margin-top: 2.4rem;
  padding: 1.4rem 1.5rem 1rem;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-lg);
}
.page-limitations h2 { margin-top: 0; color: var(--c-text); font-size: 1.4rem; }
.page-limitations ul { margin-bottom: 0; }

/* FAQ accordion */
.page-faq h2 { margin-top: 2.4rem; }
.faq-item {
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-md);
  margin: .7rem 0;
  background: var(--c-bg-alt);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item > summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 600;
  color: var(--c-text);
  list-style: none;
  position: relative;
  padding-right: 2.6rem;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: ""; position: absolute; right: 1.1rem; top: 50%;
  width: .55rem; height: .55rem;
  border-right: 2px solid var(--c-text-muted);
  border-bottom: 2px solid var(--c-text-muted);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .18s ease;
}
.faq-item[open] > summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq-answer { padding: 0 1.1rem 1.1rem; color: var(--c-text-muted); }
.faq-answer p { margin: 0; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--c-border-soft);
  background: var(--c-bg-alt);
  padding: 2.4rem 0 2rem;
  margin-top: 4rem;
}
.site-footer .container { display: grid; gap: 1.2rem; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; }
.footer-brand .brand { font-size: 1rem; }
.footer-tagline { color: var(--c-text-muted); margin: 0; max-width: 60ch; }
.footer-meta { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-meta a { color: var(--c-text-muted); text-decoration: none; font-weight: 500; font-size: .95rem; }
.footer-meta a:hover { color: var(--c-text); }
.footer-legal { color: var(--c-text-muted); font-size: .9rem; margin-top: .6rem; opacity: .8; }

/* Defer hidden sections to keep LCP tight */
.below-fold { content-visibility: auto; contain-intrinsic-size: 800px; }

/* Mobile */
@media (max-width: 640px) {
  .container { padding: 0 1.1rem; }
  .page-article { padding-top: 1.6rem; }
  .page-hero img, .page-inbody img { border-radius: var(--r-md); }
  .page-section table, article table { font-size: .9em; }
  .page-section th, .page-section td, article th, article td { padding: .55rem .65rem; }
}

/* Respect users who actively pick reduced motion. */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* =====================================================
 * LANDING-PAGE COMPONENTS
 * Used by homepage / money pages / pillar pages (anything routed
 * through money_page_renderer.py). Niche-agnostic structural CSS;
 * colors come from the same palette as article pages.
 * ===================================================== */

.lp-hero {
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  background: var(--c-bg);
}
.lp-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.lp-hero__copy h1 {
  font-size: clamp(2.2rem, 3.6vw + 1rem, 3.6rem);
  margin: 0 0 .5em;
  letter-spacing: -.03em;
  font-weight: 750;
  line-height: 1.1;
}
.lp-hero__copy .lead {
  font-size: clamp(1.1rem, .6vw + 1rem, 1.3rem);
  color: var(--c-text-muted);
  margin: 0 0 1.8rem;
  line-height: 1.55;
}
.lp-hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.2rem; }
.lp-hero__trust {
  font-size: .92rem;
  color: var(--c-text-muted);
  margin: 0;
}
.lp-hero__image img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

/* Buttons (also usable on article pages if needed) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.6rem;
  border-radius: var(--r-pill);
  font-weight: 650;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--c-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-text);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn-secondary:hover {
  border-color: var(--c-text);
  color: var(--c-text);
}

/* Section titles for landing pages */
.lp-section-title {
  text-align: center;
  font-size: clamp(1.7rem, 1.6vw + 1rem, 2.4rem);
  margin: 0 0 2rem;
  letter-spacing: -.02em;
}

/* Feature cards grid */
.lp-features { padding: clamp(3rem, 5vw, 5rem) 0; background: var(--c-bg-alt); }
.lp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.lp-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.lp-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lp-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--c-primary) 14%, var(--c-bg));
  color: var(--c-primary-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.lp-card h3 { font-size: 1.15rem; margin: 0 0 .45em; letter-spacing: -.01em; }
.lp-card p  { color: var(--c-text-muted); margin: 0; font-size: .96rem; line-height: 1.55; }

/* Numbered steps */
.lp-how { padding: clamp(3rem, 5vw, 5rem) 0; }
.lp-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.2rem;
}
.lp-steps li {
  counter-increment: step;
  position: relative;
  padding: 1.2rem 1.4rem 1.2rem 4rem;
  background: var(--c-bg-alt);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border-soft);
}
.lp-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1.2rem;
  top: 1.1rem;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .95rem;
}
.lp-steps li strong { display: block; margin-bottom: .25em; font-size: 1.05rem; }
.lp-steps li p { margin: 0; color: var(--c-text-muted); }

/* Best-for / Not-for two-column */
.lp-best-for { padding: clamp(3rem, 5vw, 5rem) 0; background: var(--c-bg-alt); }
.lp-best-for__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.lp-best-for__col {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  border: 1px solid var(--c-border-soft);
}
.lp-best-for__col h3 { font-size: 1.2rem; margin: 0 0 1rem; }
.lp-best-for__col ul { margin: 0; padding-left: 1.2rem; }
.lp-best-for__col li { margin-bottom: .5em; color: var(--c-text-muted); }
.lp-best-for__col li::marker { color: var(--c-primary); }

/* Evidence / trust strip */
.lp-evidence { padding: clamp(2.5rem, 4vw, 4rem) 0; }
.lp-evidence__stat {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.lp-evidence__big {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -.02em;
  margin: 0 0 .5rem;
}
.lp-evidence__body { color: var(--c-text-muted); margin: 0; }

/* FAQ on landing pages uses the same .faq-item from the article CSS */
.lp-faq { padding: clamp(3rem, 5vw, 5rem) 0; background: var(--c-bg-alt); }
.lp-faq__inner { max-width: 760px; margin: 0 auto; }

/* Bottom CTA */
.lp-cta {
  padding: clamp(3rem, 5vw, 5rem) 0;
  text-align: center;
  background: var(--c-bg);
}
.lp-cta h2 {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  margin: 0 0 .6em;
}
.lp-cta__sub {
  color: var(--c-text-muted);
  margin: 0 0 1.8rem;
  font-size: 1.1rem;
}
.lp-cta__buttons { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* Byline inside the LP hero (subtle, doesn't compete with H1) */
.lp-byline {
  color: var(--c-text-muted);
  font-size: .92rem;
  margin: 1rem 0 0;
}

/* Article body inside the LP shell -- inherits .page-section / .page-intro /
 * .page-limitations from the article CSS above, so internal links, tables,
 * blockquotes, sources etc. all work exactly the same. The wrapper only
 * adjusts spacing so the body sits cleanly between the cards strip and
 * the explore/FAQ blocks. */
.lp-article { padding: clamp(2rem, 4vw, 4rem) 0; }
.lp-body-section { margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem); }
.lp-body-section.page-intro { background: transparent; padding: 0; border: 0; }
.lp-body-section.page-section { background: transparent; padding: 0; border: 0; }

/* Mid-page CTA (lighter than the bottom one) */
.lp-cta--mid {
  background: var(--c-bg-alt);
  border-radius: var(--r-lg);
  margin: 2rem 0;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.lp-cta--mid .container { text-align: center; max-width: 720px; }
.lp-cta--mid h2 {
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
  margin: 0 0 .6em;
}

/* Explore grid (hub-and-spoke internal links from link_planner). Same
 * card aesthetic as feature cards but with clear "tile" affordance. */
.lp-explore { padding: clamp(3rem, 5vw, 5rem) 0; background: var(--c-bg-alt); }
.lp-explore__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.lp-explore__tile {
  display: block;
  background: var(--c-bg);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-md);
  padding: 1.2rem 1.3rem;
  text-decoration: none;
  color: var(--c-text);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.lp-explore__tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary);
  color: var(--c-text);
  text-decoration: none;
}
.lp-explore__label {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-primary-dark);
  margin-bottom: .25em;
}
.lp-explore__title {
  display: block;
  color: var(--c-text-muted);
  font-size: .92rem;
  line-height: 1.5;
}

/* SCREENSHOT GALLERY (comparison/best-of/feature pages) */
.page-screenshots {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}
.lp-screenshots { background: var(--c-bg-alt); }
.page-screenshots h2 {
  font-family: var(--f-heading);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin: 0 0 .35em;
  letter-spacing: -.015em;
}
.page-screenshots__lede {
  color: var(--c-text-muted);
  margin: 0 0 1.5rem;
  max-width: 64ch;
}
.screenshot-grid {
  display: grid;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.screenshot-card {
  margin: 0;
  background: var(--c-surface, #fff);
  border: 1px solid var(--c-border, rgba(0,0,0,.08));
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.screenshot-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md, 0 6px 24px rgba(0,0,0,.08));
}
.screenshot-card a { display: block; }
.screenshot-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.screenshot-card figcaption {
  padding: .65rem .85rem .85rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.screenshot-card__badge {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-primary);
  font-weight: 700;
}
.screenshot-card__name {
  font-weight: 600;
  color: var(--c-text);
}

/* Mobile reflow */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: .5rem 0;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border-soft);
    box-shadow: var(--shadow-md);
  }
  .site-header { position: sticky; }
  .site-header__inner { position: relative; flex-wrap: wrap; }
  .site-header.is-open .site-nav { display: flex; }
  .site-nav a { padding: .85rem 1.5rem; border-top: 1px solid var(--c-border-soft); }
  .lp-hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hp-hero__shot { order: -1; }
  .lp-hero__copy h1, .hp-hero__title { font-size: clamp(1.9rem, 6vw, 2.4rem); }
  .lp-section-title, .hp-section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .screenshot-grid { grid-template-columns: 1fr; }
  .hp-showcase__grid { grid-template-columns: 1fr; }
  .hp-feature-grid { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr; }
}


/* =====================================================
 * Homepage — design2 green botanical landing (scoped)
 * ===================================================== */
.page-home {
  background: linear-gradient(180deg, #EAE6DA 0%, var(--c-bg) 35%, #F5F2EB 100%);
}
.page-home .lp-article,
.page-home .lp-article h2,
.page-home .lp-section-title { color: var(--c-text); }
.page-home .lp-article p,
.page-home .lp-article li { color: #444; }

.hp-hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, #2A3C23 0%, #3B5332 45%, #4E7A3E 100%);
  color: #F5F2EB;
}
.hp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.hp-hero__copy { max-width: 540px; }
.hp-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .82rem;
  color: #EAE6DA;
}
.hp-badge--soon { color: #C4A44A; font-weight: 600; }
.hp-hero__eyebrow {
  margin: 0 0 .65rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #C4A44A;
}
.hp-hero__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
  margin: 0 0 .5rem;
  color: #F5F2EB;
  letter-spacing: -.02em;
}
.hp-hero__tagline {
  margin: 0 0 .75rem;
  font-size: 1.08rem;
  line-height: 1.45;
  color: #C4A44A;
  font-weight: 600;
}
.hp-hero__lead {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(245,242,235,.88);
}
.hp-hero__shot {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15,28,13,.35);
  border: 1px solid rgba(255,255,255,.12);
}
.hp-hero__shot img { width: 100%; border-radius: var(--r-lg); box-shadow: none; }

.hp-features {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--c-bg);
}
.hp-section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 .5rem;
  color: var(--c-primary-dark);
}
.hp-section-title--left { text-align: left; }
.hp-section-lede {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 2rem;
  color: var(--c-text-muted);
}
.hp-section-lede--left { text-align: left; margin-left: 0; }
.hp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hp-feature-card {
  background: #fff;
  border: 1px solid var(--c-border-soft);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.hp-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--c-primary) 35%, var(--c-border));
}
.hp-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: .75rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c-primary) 12%, var(--c-bg));
  color: var(--c-primary);
  font-size: 1.1rem;
}
.hp-feature-card h3 {
  margin: 0 0 .45rem;
  font-size: 1rem;
  color: var(--c-primary-dark);
}
.hp-feature-card p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
  color: var(--c-text-muted);
}

.hp-showcase {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--c-bg-alt);
}
.hp-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.hp-value-box {
  background: #fff;
  border: 1px solid var(--c-border-soft);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.hp-value-box__label {
  margin: 0 0 .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-primary);
}
.hp-value-box__note {
  margin: .75rem 0 0;
  font-size: .82rem;
  color: var(--c-text-muted);
}
.disclaimer-card {
  background: color-mix(in srgb, var(--c-primary) 8%, #fff);
  border: 1px solid color-mix(in srgb, var(--c-primary) 20%, var(--c-border));
  border-radius: 12px;
  padding: 1rem 1.15rem;
}
.disclaimer-card strong { display: block; margin-bottom: .35rem; color: var(--c-primary-dark); }
.disclaimer-card p { margin: 0; font-size: .9rem; color: var(--c-text-muted); }

.hp-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-store-badges { margin: 1rem 0; }
.hp-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: .7rem 1.1rem;
  border-radius: 28px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #C4A44A, #B8963E);
  color: #2A3C23;
}
.hp-store-badge:hover { text-decoration: none; transform: translateY(-1px); }

.site-footer {
  padding: clamp(2.5rem, 4vw, 3.5rem) 0 1.5rem;
  background: var(--c-primary-dark);
  color: rgba(245,242,235,.85);
  margin-top: 0;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col__title {
  margin: 0 0 .85rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C4A44A;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a { color: rgba(245,242,235,.78); text-decoration: none; font-size: .92rem; }
.footer-links a:hover { color: #fff; }
.footer-links--inline { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; margin-top: 1rem; }
.footer-tagline { font-size: .88rem; line-height: 1.55; color: rgba(245,242,235,.7); max-width: 36ch; }
.footer-legal { margin: 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: rgba(245,242,235,.55); }
.page-home .site-header {
  background: rgba(42,60,35,.92);
  border-bottom-color: rgba(255,255,255,.08);
}
.page-home .site-header .brand-name,
.page-home .site-header .brand-sub { color: #F5F2EB; }
.page-home .site-header .brand-sub { color: #C4A44A; }
.page-home .site-nav a { color: rgba(245,242,235,.75); }
.page-home .site-nav a:hover,
.page-home .site-nav a[aria-current="page"] { color: #fff; }

@media (max-width: 960px) {
  .hp-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-hero__grid { grid-template-columns: 1fr; }
}

