*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --forest:  #1A2F1E; --green: #2D6A4F; --sage: #52B788; --sage-lt: #D8F0E5;
  --amber: #C8922A; --amber-lt: #FEF3DC; --cream: #F5F1EA; --white: #FAFAF7;
  --ink: #1C1C1A; --muted: #5C6B62; --rule: #D8D4CC;
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--ink); font-family: var(--font-sans); font-size: 17px; line-height: 1.7; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--forest); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 60px; font-size: 13.5px; font-weight: 500;
}
nav .logo { font-family: var(--font-serif); font-size: 17px; color: #fff; text-decoration: none; white-space: nowrap; }
nav .logo span { color: var(--sage); }
nav ul { list-style: none; display: flex; gap: 1.6rem; }
nav ul a { color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s; white-space: nowrap; }
nav ul a:hover, nav ul a.active { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-msg { color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); white-space: nowrap; }
.nav-msg:hover { color: #fff; }
.nav-cta {
  background: var(--sage); color: #fff; text-decoration: none;
  padding: 0.4rem 1rem; border-radius: 4px; font-weight: 600; font-size: 13px; white-space: nowrap;
}
.nav-cta:hover { background: #3fa170; }

/* PAGE HERO */
.page-hero { background: var(--forest); color: #fff; padding: 4rem 2.5rem 3.5rem; text-align: center; }
.page-hero .eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.75rem; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.2; color: #fff; margin-bottom: 1rem; }
.page-hero h1 em { font-style: italic; color: var(--sage); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* SECTIONS */
.section { padding: 5rem 2.5rem; }
.section-inner { max-width: 880px; margin: 0 auto; }
.section-inner.wide { max-width: 1100px; }
.section-alt { background: var(--cream); }

.eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
h2 { font-family: var(--font-serif); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; line-height: 1.3; color: var(--ink); margin-bottom: 1.25rem; }
h2 em { font-style: italic; color: var(--green); }
h3 { font-weight: 600; font-size: 1.05rem; margin-bottom: 0.5rem; }
.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.5rem; max-width: 680px; }
p { line-height: 1.75; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--sage); color: #fff; padding: 0.85rem 2rem; border-radius: 4px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: background 0.2s; }
.btn-primary:hover { background: #3fa170; }
.btn-dark { display: inline-block; background: var(--forest); color: #fff; padding: 0.8rem 1.75rem; border-radius: 4px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: background 0.2s; }
.btn-dark:hover { background: var(--green); }
.btn-white { display: inline-block; background: #fff; color: var(--green); padding: 0.9rem 2.5rem; border-radius: 4px; font-weight: 700; font-size: 1.05rem; text-decoration: none; }
.btn-white:hover { opacity: 0.92; }
.btn-outline { display: inline-block; border: 2px solid var(--sage); color: var(--sage); background: transparent; padding: 0.75rem 1.75rem; border-radius: 4px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; }
.btn-outline:hover { background: var(--sage); color: #fff; }

/* TRUST BAR */
.trust-bar { background: var(--cream); border-bottom: 1px solid var(--rule); padding: 1.75rem 2.5rem; }
.trust-bar-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.trust-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--sage-lt); display: flex; align-items: center; justify-content: center; margin-bottom: 0.25rem; }
.trust-item strong { font-size: 1rem; font-weight: 600; color: var(--ink); }
.trust-item span { font-size: 0.875rem; color: var(--muted); }

/* STAT BREAK */
.stat-break { background: var(--forest); color: #fff; padding: 5rem 2.5rem; text-align: center; }
.stat-number { font-family: var(--font-serif); font-style: italic; font-size: clamp(4rem, 10vw, 7.5rem); font-weight: 600; color: var(--amber); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-family: var(--font-serif); font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; line-height: 1.5; }
.stat-sub { font-size: 0.95rem; color: rgba(255,255,255,0.5); margin-top: 1.25rem; }

/* CONTACT BAND */
.contact-band { background: var(--sage-lt); border-top: 1px solid #b8dfc9; border-bottom: 1px solid #b8dfc9; padding: 2.25rem 2.5rem; text-align: center; }
.contact-band p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.contact-band h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--forest); margin-bottom: 0.5rem; }
.contact-band a.btn-dark { margin-top: 0.25rem; }

/* TIMELINE */
.timeline { display: flex; flex-direction: column; position: relative; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--rule); }
.timeline-item { display: flex; gap: 1.75rem; padding-bottom: 2.5rem; position: relative; }
.timeline-dot { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--white); border: 3px solid var(--sage); z-index: 1; margin-top: 4px; }
.timeline-content h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.35rem; }
.timeline-content p { color: var(--muted); font-size: 0.975rem; line-height: 1.7; }
.timeline-year { font-size: 0.78rem; font-weight: 600; color: var(--green); margin-bottom: 0.2rem; letter-spacing: 0.06em; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 2.5rem 0; }
.step { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 1.75rem 1.5rem; position: relative; }
.step-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 600; color: var(--sage-lt); line-height: 1; margin-bottom: 0.75rem; position: absolute; top: 1rem; right: 1.25rem; }

/* BOXES */
.highlight-box { background: var(--sage-lt); border-left: 4px solid var(--sage); border-radius: 0 8px 8px 0; padding: 1.5rem 1.75rem; margin: 2rem 0; }
.highlight-box h3 { font-weight: 600; font-size: 1rem; margin-bottom: 0.5rem; color: var(--forest); }
.highlight-box p, .highlight-box ul { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.highlight-box ul { padding-left: 1.25rem; }
.highlight-box ul li { margin-bottom: 0.35rem; }
.amber-box { background: var(--amber-lt); border-left: 4px solid var(--amber); border-radius: 0 8px 8px 0; padding: 1.5rem 1.75rem; margin: 2rem 0; }
.amber-box h3 { font-weight: 600; font-size: 1rem; margin-bottom: 0.5rem; color: #7A5516; }
.amber-box p { font-size: 0.95rem; color: #7A5516; line-height: 1.7; }

/* PULL QUOTE */
.pull-quote { border-left: 3px solid var(--amber); padding: 1rem 0 1rem 1.75rem; margin: 2.5rem 0; }
.pull-quote p { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; line-height: 1.65; color: var(--ink); }
.pull-quote cite { display: block; font-style: normal; font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }

/* MYTHS */
.myths-grid { display: flex; flex-direction: column; }
.myth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-bottom: 1px solid var(--rule); padding: 1.5rem 0; }
.myth-row:first-child { border-top: 1px solid var(--rule); }
.myth-col { padding: 0 1.5rem; }
.myth-col:first-child { border-right: 1px solid var(--rule); padding-left: 0; }
.myth-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.myth-label.red { color: #B03A3A; }
.myth-label.grn { color: var(--green); }
.myth-col p { font-size: 0.95rem; line-height: 1.65; color: var(--muted); }
.myth-col p strong { color: var(--ink); font-weight: 600; }

/* TESTIMONIALS */
.quotes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.quote-card { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.quote-text { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; line-height: 1.7; color: var(--ink); flex: 1; }
.quote-text::before { content: '\201C'; }
.quote-text::after  { content: '\201D'; }
.quote-attr { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.quote-attr strong { color: var(--ink); display: block; }

/* VIDEO GRID */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.video-card { border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; background: var(--white); }
.video-card iframe { display: block; width: 100%; }
.video-info { padding: 0.9rem 1rem; }
.video-info .ep { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; color: var(--green); text-transform: uppercase; margin-bottom: 0.25rem; }
.video-info h4 { font-weight: 600; font-size: 0.92rem; line-height: 1.4; margin-bottom: 0.35rem; }
.video-info p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* SHARE */
.share-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 2rem 0; }
.share-card { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 1.5rem; display: flex; flex-direction: column; }
.share-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--sage-lt); display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.share-card h3 { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.4rem; }
.share-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin-bottom: 1rem; flex: 1; }
.copy-block { background: var(--cream); border: 1px solid var(--rule); border-radius: 8px; padding: 1.25rem 1.5rem; margin: 1.25rem 0; font-size: 0.9rem; color: var(--muted); line-height: 1.7; font-style: italic; position: relative; }
.copy-btn { display: inline-block; font-size: 0.8rem; font-weight: 600; color: var(--green); cursor: pointer; background: none; border: none; padding: 0; margin-top: 0.5rem; text-decoration: underline; }

/* RESOURCES */
.resource-row { display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem; align-items: start; padding: 1.25rem 0; border-bottom: 1px solid var(--rule); }
.resource-row:first-child { border-top: 1px solid var(--rule); }
.resource-name a { font-weight: 600; color: var(--green); text-decoration: none; font-size: 0.95rem; }
.resource-name a:hover { text-decoration: underline; }
.resource-name span { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }
.resource-desc { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* FINAL CTA */
.final-cta { background: var(--green); color: #fff; padding: 6rem 2.5rem; text-align: center; }
.final-cta h2 { color: #fff; font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.75rem; }
.final-cta p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.final-cta .anon-note { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 1rem; }

/* FOOTER */
footer { background: var(--forest); color: rgba(255,255,255,0.5); padding: 2.5rem; text-align: center; font-size: 0.85rem; line-height: 1.8; }
footer a { color: rgba(255,255,255,0.65); text-decoration: none; }
footer a:hover { color: #fff; }
.rule { border: none; border-top: 1px solid var(--rule); margin: 2.5rem 0; }

/* PHOTO + TEXT GRID LAYOUTS */
.photo-text-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}
.text-photo-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.two-col-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* RESPONSIVE — tablet and mobile */
@media (max-width: 960px) {
  /* Nav */
  nav { position: relative; flex-wrap: wrap; height: auto; min-height: 60px; padding: 0 1.25rem; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-actions { display: none !important; }
  nav ul {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--forest);
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  nav ul.open { display: flex; }
  nav ul li { padding: 0; }
  nav ul a { display: block; padding: 0.85rem 1.5rem; font-size: 1rem; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.07); }
  nav ul a:hover, nav ul a.active { color: #fff; background: rgba(255,255,255,0.05); }
  .nav-mobile-divider { border-top: 1px solid rgba(255,255,255,0.15) !important; margin-top: 0.5rem; padding-top: 0.5rem; }
  .nav-mobile-cta {
    display: block !important;
    margin: 0.75rem 1.25rem 0;
    background: var(--sage);
    color: #fff !important;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1rem !important;
    border-bottom: none !important;
  }
  .nav-mobile-cta:hover { background: #3fa170 !important; }

  /* Photo+text layouts — stack vertically */
  .photo-text-grid,
  .text-photo-grid,
  .two-col-equal { grid-template-columns: 1fr; gap: 1.5rem; }

  /* General grids */
  .steps           { grid-template-columns: 1fr; }
  .quotes-grid     { grid-template-columns: 1fr; }
  .video-grid      { grid-template-columns: repeat(2, 1fr); }
  .share-cards     { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .resource-row    { grid-template-columns: 1fr; gap: 0.5rem; }

  /* Myths */
  .myth-row { grid-template-columns: 1fr; gap: 1rem; }
  .myth-col:first-child { border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: 1rem; }
}

/* RESPONSIVE — mobile only */
@media (max-width: 600px) {
  .page-hero { padding: 3rem 1.25rem 2.5rem; }
  .section   { padding: 3rem 1.25rem; }
  .trust-bar { padding: 1.5rem 1.25rem; }
  .stat-break, .final-cta { padding: 3.5rem 1.25rem; }
  .contact-band { padding: 2rem 1.25rem; }
  .video-grid { grid-template-columns: 1fr; }
  .share-block { padding: 1.5rem 1.25rem; }
  h2 { font-size: 1.6rem; }
}
