/* =====================================================================
   SB Organics — static replica stylesheet
   Faithful rebuild of sborganics.com (home, nursery, service pages)
   ===================================================================== */

:root {
  /* ---- matched to live sborganics.com tokens ---- */
  --brand-green: #3b7863; /* live header bar + primary button: linear-gradient(#3b7863) */
  --green-900: #0c1115;   /* dark sections / footer + button border (live near-black) */
  --green-800: #0c1115;
  --green-700: #2e5e4e;   /* darker green for hover */
  --green-600: #357059;
  --green-500: #3b7863;   /* CTA accent = brand green */
  --green-300: #8fc19a;
  --cream: #ffffff;       /* live page background is white */
  --cream-dark: #effbf6;  /* live pale-mint band rgba(239,251,246,.9) */
  --gray-block: #e6e6e6;  /* live light gallery block */
  --earth: #8a6a4a;
  --ink: #1a1a1a;         /* live body text rgba(10,10,10,.85) */
  --heading-dark: #3b3b3b;/* live heading color rgb(59,59,59) */
  --muted: #76726e;
  --white: #ffffff;
  --link: #008fff;        /* live link blue */
  --radius: 0px;          /* live uses square corners */
  --radius-soft: 6px;     /* for media where a little softening helps */
  --shadow: 0 6px 24px rgba(12, 17, 21, 0.08);
  --shadow-lg: 0 14px 40px rgba(12, 17, 21, 0.14);
  --max: 1200px;
  /* Abel for headings, Arial for body — matched to live */
  --font-serif: "Abel", "Oswald", "Arial Narrow", sans-serif;  /* display/heading face */
  --font-display: "Abel", "Oswald", "Arial Narrow", sans-serif;
  --font-sans: Arial, Helvetica, "Segoe UI", sans-serif;
  --font-menu: "Assistant", Arial, sans-serif;  /* live nav menu face */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--link); }
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; font-weight: 400; letter-spacing: normal; }
h1 { font-weight: 700; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 880px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--brand-green);
  color: var(--white);
  border-bottom: 0;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 24px; max-width: var(--max); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--cream); }
.brand img { height: 54px; width: auto; }
.brand-fallback { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.5px; color: var(--white); text-transform: uppercase; }
/* tagline lockup next to the logo — the brand promise, no name repeat */
.brand-tagline {
  font-family: var(--font-display); color: var(--cream);
  font-size: clamp(0.95rem, 1.5vw, 1.2rem); line-height: 1.1; letter-spacing: 0.5px;
  padding-left: 12px; border-left: 1px solid rgba(255, 255, 255, 0.45); white-space: nowrap;
}
@media (max-width: 430px) { .brand-tagline { display: none; } }
/* live site uses a hamburger that opens a light overlay menu (Assistant, large, bold, uppercase) */
.nav-links {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  flex-direction: column; gap: 0; list-style: none; margin: 0;
  background: var(--white); padding: 20px 24px 28px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.nav-links.open { display: flex; }
.nav-links a {
  color: rgba(10,10,10,0.85); text-decoration: none;
  font-family: var(--font-menu); font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 12px 0; display: block; border-bottom: 1px solid #ececec;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav-links li { width: 100%; }
.nav-links li:last-child a { border-bottom: 0; }
.nav-links a:hover, .nav-links a:focus { color: var(--brand-green); background: var(--cream-dark); }
.nav-toggle { display: block; background: none; border: 0; color: var(--white); font-size: 1.7rem; line-height: 1; cursor: pointer; }

.btn {
  display: inline-block; padding: 14px 26px; border-radius: var(--radius);
  font-weight: 400; text-decoration: none; cursor: pointer; border: 0;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-size: 1.05rem; font-family: var(--font-sans);
  text-transform: uppercase; letter-spacing: 2px;
}
/* live homepage CTA: solid brand-green fill, thin dark border, square */
.btn-primary { background: var(--brand-green); color: var(--white); border: 1px solid var(--green-900); }
.btn-primary:hover { background: var(--green-700); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-solid { background: var(--green-700); color: var(--white); }
.btn-solid:hover { background: var(--green-900); }
.btn-dark { background: var(--green-900); color: var(--cream); }

/* ---------- HERO (home) ---------- */
.hero {
  position: relative; min-height: 86vh;
  display: grid; place-items: center; text-align: center;
  color: var(--cream); overflow: hidden;
  /* layered: vignette (edges dark) > subtle tonal wash > photo */
  background:
    radial-gradient(ellipse at center, rgba(8,12,10,0) 38%, rgba(8,12,10,0.45) 75%, rgba(8,12,10,0.78) 100%),
    linear-gradient(rgba(20,32,26,0.38), rgba(20,32,26,0.46)),
    url("../img/slide1.jpg") center/cover no-repeat;
}
.hero-inner { max-width: 880px; padding: 40px 24px; }
.hero h1 {
  font-size: clamp(3rem, 7vw, 4.7rem); margin: 0 0 18px; font-weight: 700;
  text-transform: capitalize; letter-spacing: normal; line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero p.lead { font-size: clamp(1.1rem, 2.2vw, 1.5rem); font-weight: 600; margin: 0 0 32px; }

/* ---------- SECTIONS ---------- */
section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; font-weight: 700; color: var(--green-500); margin: 0 0 14px; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 24px; color: var(--green-900); }
.section-intro { font-size: 1.2rem; color: var(--muted); max-width: 820px; margin: 0 auto 8px; text-align: center; }
.center { text-align: center; }
.bg-green { background: var(--green-900); color: var(--cream); }
.bg-green .section-title, .bg-green h2, .bg-green h3 { color: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.lead-statement { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.6vw, 1.9rem); text-align: center; max-width: 920px; margin: 0 auto; color: var(--green-800); line-height: 1.4; }

/* ---------- SERVICE CARD GRID (home) ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative; min-height: 280px; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; text-decoration: none; box-shadow: var(--shadow);
  background: var(--green-700);
}
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover img { transform: scale(1.06); }
.service-card .label {
  position: relative; z-index: 2; width: 100%; padding: 22px 20px;
  background: linear-gradient(transparent, rgba(20,32,26,0.85));
  color: var(--white); font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600;
}

/* ---------- TWO-COLUMN CONTENT ---------- */
.two-col { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.two-col.reverse .col-media { order: 2; }
.col-body h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--heading-dark); margin: 0 0 20px; }
.col-body p { margin: 0 0 16px; font-size: 1.05rem; }
.col-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: cover; }

/* ---------- GALLERY ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow); }

/* ---------- PAGE HEADER (service pages) ---------- */
.page-hero {
  padding: 120px 0 64px; text-align: center; color: var(--cream);
  background: linear-gradient(rgba(26,46,31,0.78), rgba(26,46,31,0.86)), var(--green-800);
  background-size: cover; background-position: center;
}
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); margin: 0; text-transform: capitalize; letter-spacing: normal; font-weight: 700; }
.page-hero .subtitle { font-size: 1.2rem; margin: 18px auto 0; max-width: 760px; opacity: 0.94; }

/* ---------- ARTICLE / RICH TEXT ---------- */
.article { padding: 72px 0; }
.article h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); color: var(--heading-dark); margin: 40px 0 16px; }
.article h3 { font-size: 1.35rem; color: var(--green-700); margin: 28px 0 12px; }
.article p { font-size: 1.06rem; margin: 0 0 18px; }
.article ul, .article ol { font-size: 1.06rem; margin: 0 0 22px; padding-left: 22px; }
.article li { margin: 0 0 8px; }
.article .lede { font-size: 1.25rem; color: var(--muted); }
.article img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 24px 0; }
.cols-2-list ul { columns: 2; column-gap: 40px; }

/* ---------- PROMISE / FEATURE CARDS (nursery) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature { background: var(--white); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); border-top: 4px solid var(--green-500); }
.feature h3 { font-size: 1.2rem; color: var(--green-800); margin: 0 0 12px; }
.feature p { margin: 0; color: var(--muted); }

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center; }
.stat .num { font-family: var(--font-serif); font-size: 3rem; color: var(--green-300); font-weight: 700; line-height: 1; }
.stat .desc { margin-top: 12px; font-size: 1rem; opacity: 0.9; }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step .n { font-family: var(--font-serif); font-size: 2.6rem; color: var(--green-500); font-weight: 700; }
.step h4 { font-size: 1.15rem; margin: 8px 0 10px; color: var(--green-900); }
.step p { margin: 0; color: var(--muted); }

/* ---------- FOUNDER ---------- */
.founder { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: center; }
.founder img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ---------- CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 24px; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--green-900); color: var(--cream); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.site-footer h5 { text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.95rem; margin: 0 0 18px; color: var(--green-300); font-family: var(--font-sans); font-weight: 700; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 10px; }
.site-footer a { color: var(--cream); text-decoration: none; opacity: 0.85; font-size: 0.95rem; }
.site-footer a:hover { opacity: 1; color: var(--green-300); }
.footer-badges { display: flex; gap: 16px; align-items: center; margin-top: 18px; }
.footer-badges img { height: 64px; width: auto; background: #fff; border-radius: 6px; padding: 6px; }
.footer-logo img { height: 54px; width: auto; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 44px; padding-top: 22px; text-align: center; font-size: 0.85rem; opacity: 0.75; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .service-grid, .feature-grid, .stats, .steps { grid-template-columns: 1fr 1fr; }
  .two-col, .founder { grid-template-columns: 1fr; }
  .two-col.reverse .col-media { order: 0; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cols-2-list ul { columns: 1; }
  /* nav menu (white overlay, dark text, green hover) is handled by the base
     rules at all widths — no mobile-specific override needed here */
}
@media (max-width: 560px) {
  .service-grid, .feature-grid, .stats, .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}

/* ---------- 2-COLUMN WITH SIDEBAR (interior/service pages) ---------- */
.page-body { padding: 60px 0 72px; background: var(--white); }
.layout-2col { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 52px; align-items: start; }
.layout-2col .article { padding: 0; }
.layout-2col .article > h2:first-child, .layout-2col .article > .lede:first-child { margin-top: 0; }
.sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget { border: 1px solid var(--gray-block); background: #fff; padding: 22px 24px 26px; }
.sidebar-widget h5 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1.5px; font-size: 1.05rem; font-weight: 400; margin: 0 0 14px; color: var(--brand-green); border-bottom: 2px solid var(--brand-green); padding-bottom: 10px; }
.sidebar-menu, .sidebar-why { list-style: none; margin: 0; padding: 0; }
.sidebar-menu a { display: block; padding: 10px 0; color: var(--ink); text-decoration: none; border-bottom: 1px solid #ececec; font-size: 0.95rem; transition: color .15s ease, padding .15s ease; }
.sidebar-menu li:last-child a { border-bottom: 0; }
.sidebar-menu a:hover { color: var(--brand-green); padding-left: 6px; }
.sidebar-menu a.is-current { color: var(--brand-green); font-weight: 700; }
.sidebar-why li { padding: 8px 0; border-bottom: 1px solid #ececec; font-size: 0.92rem; color: var(--muted); }
.sidebar-why li:last-child { border-bottom: 0; }
.sidebar-badges { display: flex; gap: 14px; align-items: center; margin-top: 16px; }
.sidebar-badges img { height: 62px; width: auto; }
/* slim interior footer (black logo on light, matches original) */
.site-footer--minimal { background: var(--white); color: var(--ink); padding: 40px 0; border-top: 1px solid var(--gray-block); }
.footer-min { display: flex; align-items: center; gap: 22px; justify-content: center; text-align: center; flex-wrap: wrap; }
.footer-min-logo { height: 50px; width: auto; }
.site-footer--minimal .footer-min p { margin: 0; font-size: 0.85rem; color: var(--muted); }
@media (max-width: 900px){
  .layout-2col { grid-template-columns: 1fr; gap: 36px; }
  .sidebar { position: static; }
}

/* ---------- NURSERY SUBMENU (two audiences) ---------- */
.subnav { list-style: none; margin: 0; padding: 0; }
/* header overlay submenu */
.nav-links .subnav a { font-size: 1rem; font-weight: 600; color: var(--muted); letter-spacing: 0.5px; padding: 9px 0; border-bottom: 1px solid #f0f0f0; }
.nav-links .subnav a:hover, .nav-links .subnav a:focus { color: var(--brand-green); background: var(--cream-dark); }
.nav-links .subnav li:last-child a { border-bottom: 0; }
/* sidebar submenu */
.sidebar-menu .subnav a { padding: 8px 0 8px 16px; font-size: 0.86rem; color: var(--muted); border-bottom: 1px solid #f1f1f1; }
.sidebar-menu .subnav a:hover { color: var(--brand-green); padding-left: 20px; }
.sidebar-menu .subnav li:last-child a { border-bottom: 0; }
/* footer submenu */
.site-footer .subnav a { font-size: 0.88rem; opacity: 0.75; padding-left: 12px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: #fff; border: 1px solid var(--gray-block); padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; }
.testimonial .quote { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.45; color: var(--heading-dark); margin: 0; }
.testimonial .who { margin-top: auto; }
.testimonial .who .name { font-weight: 700; color: var(--green-900); }
.testimonial .who .loc { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }

/* 4-up promise grid (landowners page) */
.feature-grid.g4 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px){
  .testimonials { grid-template-columns: 1fr; }
  .feature-grid.g4 { grid-template-columns: 1fr; }
}

/* =====================================================================
   NURSERY TEMPLATE — modeled on live sborganics.com/nursery/
   ===================================================================== */
:root {
  --orange: #c8642a;        /* live promise/founder accent + get-started bg */
  --orange-dark: #b1551f;
  --grad-green: linear-gradient(180deg, #56ad90 0%, #2f6755 100%); /* live nursery buttons */
}
/* gradient, rounded CTA button (live nursery style) */
.btn-grad { background: var(--grad-green); color: #fff; border: 0; border-radius: 12px; font-weight: 700; letter-spacing: 1.5px; padding: 16px 34px; box-shadow: 0 6px 18px rgba(20,32,26,0.25); }
.btn-grad:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* left-aligned green section heading + rule (varietals, promise) */
.nsy-head { color: var(--brand-green); font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 0 0 18px; }
.nsy-head + .nsy-rule { border: 0; border-top: 1px solid #dfdbd5; margin: 22px 0 0; }
.nsy-lead { font-size: 1.15rem; color: var(--ink); max-width: 900px; }

/* PROMISE — icon rows with hairline dividers */
.promise-list { margin-top: 8px; }
.promise-row { display: grid; grid-template-columns: 84px 1fr; gap: 26px; align-items: start; padding: 30px 0; border-bottom: 1px solid #e6e2dc; }
.promise-row:last-child { border-bottom: 0; }
.promise-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--brand-green); display: grid; place-items: center; }
.promise-icon svg { width: 34px; height: 34px; fill: none; stroke: #fff; stroke-width: 2; }
.promise-row h3 { color: var(--orange); font-size: 1.35rem; margin: 4px 0 8px; }
.promise-row p { margin: 0; color: var(--ink); font-size: 1.02rem; }

/* STATS — two-tone green bands, huge numbers */
.stats-intro { background: var(--brand-green); color: #fff; text-align: center; padding: 70px 0 64px; }
.stats-intro h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.6rem); max-width: 960px; margin: 0 auto; }
.stats-band { background: var(--green-900); color: #fff; padding: 64px 0 72px; }
.stats-band .stats { grid-template-columns: repeat(3, 1fr); }
.stats-band .num { font-family: var(--font-display); font-size: clamp(3.4rem, 7vw, 5.2rem); line-height: 1; color: #fff; font-weight: 700; }
.stats-band .desc { color: rgba(255,255,255,0.82); max-width: 280px; margin: 14px auto 0; }

/* FOUNDER — framed photo + centered orange heading */
.founder-orange { color: var(--orange); text-align: center; text-transform: uppercase; font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 48px; letter-spacing: 1px; }
.founder-frame { padding: 10px; border: 2px solid var(--brand-green); }
.founder-frame img { width: 100%; display: block; }
.founder .founder-body p { font-size: 1.08rem; color: var(--ink); }

/* GET STARTED + CTA — warm orange section, white numbered cards */
.section-orange { background: var(--orange); color: #fff; }
.section-orange .section-title, .section-orange h2 { color: #fff; }
.steps-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.step-card { position: relative; background: #fbf8f4; border: 1px solid rgba(255,255,255,0.5); padding: 48px 26px 30px; text-align: center; }
.step-card .n { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--brand-green); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.3rem; }
.step-card h4 { font-family: Georgia, "Times New Roman", serif; font-weight: 600; font-size: 1.18rem; color: #2a2a2a; margin: 0 0 14px; line-height: 1.3; }
.step-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* OPT-IN FORM card */
.optin { max-width: 660px; margin: 48px auto 0; background: #fff; padding: 34px 34px 38px; box-shadow: var(--shadow-lg); text-align: left; }
.optin label { display: block; font-weight: 700; color: #2a2a2a; font-size: 0.95rem; margin: 16px 0 6px; }
.optin label:first-child { margin-top: 0; }
.optin input { width: 100%; padding: 13px 14px; border: 1px solid #d6d1ca; border-radius: 4px; font-size: 1rem; font-family: var(--font-sans); }
.optin input:focus { outline: 2px solid var(--brand-green); outline-offset: 0; border-color: var(--brand-green); }
.optin .btn-grad { width: 100%; margin-top: 24px; border-radius: 8px; }

@media (max-width: 900px){
  .steps-cards { grid-template-columns: 1fr; gap: 40px; }
  .stats-band .stats { grid-template-columns: 1fr; gap: 36px; }
  .promise-row { grid-template-columns: 60px 1fr; gap: 18px; }
  .promise-icon { width: 56px; height: 56px; }
}

/* ---------- CATALOG FORM: audience toggle, fine print, states ---------- */
.optin-audience { margin-bottom: 8px; }
.optin-audience__label { display: block; font-weight: 700; color: #2a2a2a; font-size: 0.95rem; margin-bottom: 8px; }
.optin-seg { display: flex; gap: 10px; flex-wrap: wrap; }
.optin-seg label { display: flex; align-items: center; gap: 8px; flex: 1 1 200px; margin: 0; padding: 12px 14px; border: 1px solid #d6d1ca; border-radius: 6px; cursor: pointer; font-weight: 400; color: var(--ink); font-size: 0.92rem; transition: border-color .15s ease, background .15s ease; }
.optin-seg label:hover { border-color: var(--brand-green); }
.optin-seg input { width: auto; accent-color: var(--brand-green); }
.optin-seg input:checked + span { font-weight: 700; color: var(--brand-green); }
.optin-seg label:has(input:checked) { border-color: var(--brand-green); background: var(--cream-dark); }
.optin input.is-invalid { border-color: #c0392b; outline: 2px solid rgba(192,57,43,.25); }
.optin-fine { font-size: 0.8rem; color: var(--muted); margin: 14px 0 0; text-align: center; }
.optin-success { max-width: 660px; margin: 48px auto 0; background: #fff; padding: 40px 34px; box-shadow: var(--shadow-lg); text-align: center; }
.optin-success .check { width: 56px; height: 56px; border-radius: 50%; background: var(--brand-green); color: #fff; display: grid; place-items: center; margin: 0 auto 18px; font-size: 1.8rem; }
.optin-success h3 { color: var(--green-900); font-size: 1.5rem; margin: 0 0 10px; }
.optin-success p { color: var(--ink); margin: 0; font-size: 1.05rem; }

/* ---------- NON-LINK "Nursery" parent label (must choose a child) ---------- */
.nav-parent { font-family: var(--font-menu); display: block; cursor: default; }
/* header overlay */
.nav-links .nav-parent { font-size: clamp(1.25rem, 2.4vw, 1.75rem); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #1a1a1a; padding: 12px 0 6px; border-bottom: 1px solid #ececec; }
.nav-links .subnav { padding-bottom: 4px; }
.nav-links .subnav a.is-current { color: var(--brand-green); font-weight: 700; }
/* sidebar */
.sidebar-menu .nav-parent { padding: 10px 0 6px; color: var(--ink); font-weight: 700; border-bottom: 1px solid #ececec; font-family: var(--font-sans); }
/* footer */
.site-footer .nav-parent { color: var(--green-300); font-weight: 700; opacity: 0.9; margin-bottom: 4px; font-family: var(--font-sans); font-size: 0.95rem; }

/* ---------- MOBILE REFINEMENTS ---------- */
/* clip (not hidden) stops sideways scroll WITHOUT making body a scroll
   container — `overflow:hidden` here silently breaks the sticky header */
html, body { overflow-x: clip; }
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .nav { padding: 12px 16px; }
  .brand img { height: 46px; }
  section { padding: 52px 0; }
  /* tame tall hero padding (incl. inline 175px on nursery pages) */
  .page-hero { padding: 104px 0 54px !important; }
  .hero { min-height: 78vh; }
  .hero-inner { padding: 24px 18px; }
  .stats-intro { padding: 52px 0 46px; }
  .stats-band { padding: 46px 0 54px; }
  .stats-band .desc { max-width: 100%; }
  .optin { padding: 26px 20px 30px; margin-top: 36px; }
  .promise-row { padding: 22px 0; }
  .founder-orange { margin-bottom: 30px; }
  .section-orange .steps-cards { margin-top: 44px; }
  .nsy-lead, .section-intro { font-size: 1.08rem; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 2.5rem; }
  .page-hero h1 { font-size: 2.05rem; }
  .btn { padding: 13px 20px; letter-spacing: 1.5px; }
  .stats-band .num { font-size: 3.2rem; }
}

/* ---------- SIDEBAR CONTACT FORM ---------- */
.sidebar-contact .contact-form { display: flex; flex-direction: column; gap: 14px; }
.sidebar-contact .cf-row { display: flex; gap: 12px; }
.sidebar-contact .cf-row .cf-field { flex: 1 1 0; min-width: 0; }
.sidebar-contact .cf-field { display: flex; flex-direction: column; }
.sidebar-contact .cf-field label { font-weight: 700; color: #2a2a2a; font-size: 0.82rem; margin-bottom: 5px; }
.sidebar-contact .contact-form input {
  width: 100%; padding: 11px 12px; border: 1px solid #d6d1ca; border-radius: 4px;
  font-size: 0.95rem; font-family: var(--font-sans); min-height: 44px;
}
.sidebar-contact .contact-form input:focus { outline: 2px solid var(--brand-green); outline-offset: 0; border-color: var(--brand-green); }
.sidebar-contact .contact-form input.is-invalid { border-color: #c0392b; outline: 2px solid rgba(192,57,43,.25); }
.sidebar-contact .cf-submit { width: 100%; margin-top: 4px; letter-spacing: 1.5px; }
.sidebar-contact .cf-fine { font-size: 0.78rem; color: var(--muted); margin: 12px 0 0; }
.sidebar-contact .cf-success { color: var(--ink); margin: 0; font-size: 0.95rem; }

/* ---------- SPLIT HERO (homepage + hero-test) ---------- */
.split-hero {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; isolation: isolate; padding: 0;
  min-height: calc(100vh - 82px); min-height: calc(100svh - 82px);
  /* aligns hero content to the nav's centered container rails (logo ↔ hamburger) */
  --nav-gutter: 24px;
  --nav-edge: max(var(--nav-gutter), calc((100vw - var(--max)) / 2 + var(--nav-gutter)));
}
.split-title {
  position: absolute; inset: 0 0 auto 0; z-index: 3; pointer-events: none; text-align: center;
  padding: clamp(32px, 7vh, 90px) 24px 0; background: linear-gradient(rgba(8,12,10,0.62), rgba(8,12,10,0));
}
.split-title .eyebrow { color: #cfe9dd; letter-spacing: 3px; margin: 0 0 10px; text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.split-title h1 {
  color: #fff; margin: 0; font-weight: 700; line-height: 1.05;
  font-size: clamp(2.6rem, 6vw, 4.6rem); text-transform: capitalize; text-shadow: 0 2px 26px rgba(0,0,0,0.45);
}
.split-half {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(40px, 8vh, 88px) clamp(24px, 5vw, 64px) clamp(48px, 9vh, 96px);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  overflow: hidden; color: #fff; min-height: 52vh;
  text-decoration: none; cursor: pointer;  /* whole panel is the link */
}
.split-half:focus-visible { outline: 3px solid #fff; outline-offset: -3px; }
.split-half::before {
  content: ""; position: absolute; inset: 0; z-index: 0; transition: opacity .4s ease;
  background: linear-gradient(rgba(20,32,26,0.30), rgba(12,17,21,0.78));
}
.split-half:hover::before { opacity: 0.82; }
.split-half > * { position: relative; z-index: 1; }
/* left panel: content flush to the LOGO's left edge */
.split-half--land { background-image: url("../img/permaculture-garden.jpg"); padding-left: var(--nav-edge); }
/* right panel: left-justified, padded off the center seam */
.split-half--nursery { background-image: url("../img/nursery-services.jpg"); padding-left: clamp(24px, 5vw, 64px); padding-right: var(--nav-edge); }
.split-half--nursery::after {
  content: ""; position: absolute; top: 14%; bottom: 14%; left: 0; width: 1px; z-index: 2; background: rgba(255,255,255,0.28);
}
.split-half .eyebrow { color: #cfe9dd; letter-spacing: 3px; margin: 0 0 14px; }
.split-half h2 {
  font-family: var(--font-display); font-weight: 700; line-height: 1.15;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem); margin: 0 0 26px; max-width: 18ch; text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.split-half .btn { align-self: flex-start; }
/* screen-reader-only h1 — keeps document structure after the visible title was removed */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 860px) {
  /* stacked: both panels left-align to the nav edge */
  .split-hero { grid-template-columns: 1fr; min-height: 0; }
  .split-half { min-height: 50vh; min-height: 50svh; justify-content: flex-end; padding-inline: var(--nav-edge); }
  .split-half--nursery::after { display: none; }
  .split-title h1 { font-size: clamp(2.3rem, 9vw, 3.2rem); }
}
/* nav gutter shrinks to 16px at phone widths — keep the hero edge matched */
@media (max-width: 600px) { .split-hero { --nav-gutter: 16px; } }
@media (max-width: 480px) { .split-half { padding-bottom: 44px; } }
