@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500&family=Montserrat:wght@500;600;700&display=swap');

:root {
  --green:       #42ba7d;
  --green-dark:  #147644;
  --pink:        #fbc6fd;
  --purple:      #851e89;
  --gold:        #fbc756;
  --charcoal:    #494bfa;
  --body-text:   #3d3d3d;
  --green-light: #e3f1e9;
  --white:       #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--body-text); background: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: white; border-bottom: 1px solid #ececec;
  padding: 0 6%; display: flex; align-items: center;
  justify-content: space-between; height: 96px;
}
.nav-brand { display: block; text-decoration: none; }
.nav-logo { height: 80px; display: block; }
.nav-tagline {
  font-family: 'Poppins', sans-serif; font-size: 0.62rem; font-weight: 400;
  color: #888; letter-spacing: 0.02em; line-height: 1;
  padding-left: 2px;
}
.nav-links { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a {
  font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  color: var(--body-text); transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-item-dropdown { position: relative; }
.nav-dropdown {
  visibility: hidden; opacity: 0; pointer-events: none;
  position: absolute; top: calc(100% + 8px); left: -1rem;
  background: white; border: 1px solid #ececec; border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1); list-style: none;
  min-width: 260px; padding: 0.5rem 0; z-index: 200;
  transition: opacity 0.15s, visibility 0.15s;
}
.nav-item-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-dropdown:hover { visibility: visible; opacity: 1; pointer-events: auto; }
.nav-dropdown li a {
  display: block; padding: 0.65rem 1.25rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: none; color: var(--body-text);
  text-decoration: none; transition: color 0.15s, background 0.15s; white-space: nowrap;
}
.nav-dropdown li a:hover { color: var(--green); background: #f8fef9; }
.nav-cta {
  font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  background: var(--green); color: white; padding: 0.6rem 1.25rem;
  border-radius: 3px; transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--body-text); }
.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: white; border-bottom: 1px solid #ececec;
  padding: 1.5rem 6%; z-index: 99; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  color: var(--body-text); padding: 0.85rem 0; border-bottom: 1px solid #f0f0f0;
}
.mobile-menu a.highlight { color: var(--green); border-bottom: none; }

/* ── HERO ── */
.hero {
  background: var(--green-dark); padding: 5.5rem 6% 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--green); opacity: 0.25; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: 30%;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--pink); opacity: 0.12; pointer-events: none;
}
.hero-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--pink);
  margin-bottom: 1.75rem; background: rgba(255,255,255,0.08);
  padding: 0.4rem 1rem; border-radius: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700; line-height: 1.15; color: white;
  max-width: 780px; margin-bottom: 1.75rem;
}
.hero h1 em { font-style: italic; color: var(--pink); }
.hero-sub {
  font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.82);
  max-width: 600px; margin-bottom: 0.85rem;
}
.hero-sub + .hero-sub { margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-hero-primary {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  background: var(--green); color: white;
  padding: 1rem 2rem; border-radius: 3px; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-hero-primary:hover { background: #38a86e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn-hero-ghost {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.07em; text-transform: uppercase; color: white;
  border: 2px solid var(--pink); padding: 0.98rem 1.75rem; border-radius: 3px;
  text-decoration: none; display: inline-block; transition: border-color 0.2s, background 0.2s;
}
.btn-hero-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ── EYEBROW ── */
.eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); margin-bottom: 1.5rem;
}

/* ── TYPOGRAPHY ── */
.section-heading {
  font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--body-text); margin-bottom: 0.6rem; line-height: 1.2;
}
.heading-purple { color: var(--purple); }
.section-intro { font-size: 0.97rem; color: #666; margin-bottom: 2rem; max-width: 700px; line-height: 1.75; }
.page-intro { font-size: 1rem; line-height: 1.85; color: #5a5a5a; margin-bottom: 1.2rem; max-width: 700px; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.07em; text-transform: uppercase; background: var(--green); color: white;
  padding: 0.9rem 1.75rem; border-radius: 3px; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(20,118,68,0.25); }
.btn-ghost-pink {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--body-text);
  text-decoration: none; border: 2px solid var(--pink); padding: 0.88rem 1.5rem;
  border-radius: 3px; transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-ghost-pink:hover { border-color: var(--green); color: var(--green); }
.btn-white {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.07em; text-transform: uppercase; background: white; color: var(--green);
  padding: 0.9rem 2rem; border-radius: 3px; text-decoration: none; display: inline-block;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-outline-white {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.07em; text-transform: uppercase; background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.7); padding: 0.9rem 2rem; border-radius: 3px;
  text-decoration: none; display: inline-block;
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { transform: translateY(-2px); border-color: white; background: rgba(255,255,255,0.1); }

/* ── ARROW LINK ── */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.65rem;
  text-decoration: none; font-size: 0.95rem; color: var(--body-text);
  font-family: 'Poppins', sans-serif; line-height: 1.5; padding: 0.15rem 0;
  transition: color 0.2s;
}
.arrow-link-imgs { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.arr-pink, .arr-green {
  position: absolute; top: 0; left: 0; width: 22px; height: 22px;
  transition: opacity 0.2s, transform 0.2s;
}
.arr-green { opacity: 0; }
.arrow-link:hover { color: var(--green); }
.arrow-link:hover .arr-pink { opacity: 0; transform: translateX(4px); }
.arrow-link:hover .arr-green { opacity: 1; transform: translateX(4px); }
.cta-text-links { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2rem; }

/* ── QUOTE STRIP ── */
.quote-strip { background: var(--green-light); padding: 3.5rem 6%; }
.quote-strip blockquote { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-strip blockquote p {
  font-family: 'Playfair Display', serif; font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-style: italic; line-height: 1.75; color: var(--body-text); margin-bottom: 1rem;
}
.quote-strip blockquote cite {
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-dark); font-style: normal;
}

/* ── CARDS ── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  border: 2px solid var(--green-light); border-radius: 8px; padding: 1.75rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s; background: white;
}
.card-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--green); }
.card:hover, a.card-link-wrap:hover .card { background: var(--green-light); border-color: var(--green); box-shadow: 0 4px 24px rgba(66,186,125,0.15); }
a.card-link-wrap:hover .card-accent { background: var(--green-dark); }
.card-tag {
  font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.6rem;
}
.card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--body-text); margin-bottom: 0.75rem; line-height: 1.35;
}
.card p.card-desc { font-size: 0.87rem; line-height: 1.75; color: #606060; flex-grow: 1; margin-bottom: 1rem; }
.card p.card-best {
  font-size: 0.78rem; color: #999; font-style: italic;
  border-top: 1px solid rgba(0,0,0,0.08); padding-top: 0.75rem; margin-top: auto; margin-bottom: 1rem;
}
.card-link {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--green);
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap 0.2s; margin-top: auto;
}
a.card-link-wrap { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
a.card-link-wrap:hover .card-link { gap: 0.6rem; }

/* ── LEFT-RULE SERVICE AREAS ── */
.service-rules { display: flex; flex-direction: column; gap: 2rem; margin: 1.75rem 0 2.5rem; max-width: 780px; }
.service-rule {
  display: grid; grid-template-columns: 3px 1fr; gap: 0 1.25rem;
  border-left: none; /* handled by the bar element */
}
.service-rule-bar { background: var(--green); border-radius: 2px; }
.service-rule-body dt {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.04em; color: var(--green-dark); margin-bottom: 0.4rem;
}
.service-rule-body dd { font-size: 0.95rem; line-height: 1.8; color: #5a5a5a; }

/* ── OUTCOMES GRID ── */
.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem 0 2rem; max-width: 780px; }
.outcome-card {
  background: #f8fef9; border: 1px solid var(--green-light); border-radius: 8px;
  padding: 1.25rem 1.25rem 1.25rem 1rem; border-left: 3px solid var(--green);
}
.outcome-card p { font-size: 0.9rem; line-height: 1.65; color: #4a4a4a; }

/* ── GROW DIAGNOSTIC PANEL ── */
.diagnostic-panel {
  background: var(--green-light); border-left: 4px solid var(--green-dark);
  border-radius: 0 8px 8px 0; padding: 2rem 2rem 2rem 1.75rem;
  margin: 2.5rem 0; max-width: 780px;
}
.diagnostic-panel .callout-label {
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 0.6rem;
}
.diagnostic-panel h3 {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700;
  color: var(--purple); margin-bottom: 0.75rem;
}
.diagnostic-panel p { font-size: 0.93rem; line-height: 1.8; color: #5a5a5a; margin-bottom: 0.6rem; max-width: 100%; }
.diagnostic-panel .price-note { font-size: 0.82rem; color: #888; font-style: italic; }

/* ── CALLOUT (generic, gold-left for other uses) ── */
.callout {
  background: var(--green-light); border-left: 4px solid var(--green-dark);
  border-radius: 0 8px 8px 0; padding: 2rem 2rem 2rem 1.75rem;
  margin: 2.5rem 0; max-width: 780px;
}
.callout-label {
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 0.6rem;
}
.callout h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--purple); margin-bottom: 0.75rem; }
.callout p { font-size: 0.93rem; line-height: 1.8; color: #5a5a5a; margin-bottom: 0.6rem; max-width: 100%; }
.callout .price-note { font-size: 0.82rem; color: #888; font-style: italic; }

/* ── TICK LIST ── */
.tick-list { list-style: none; margin: 1rem 0 1.5rem; max-width: 680px; }
.tick-list li { padding: 0.4rem 0 0.4rem 1.75rem; position: relative; font-size: 0.95rem; line-height: 1.7; color: #5a5a5a; }
.tick-list li::before { content: ''; position: absolute; left: 0; top: 0.72rem; width: 9px; height: 9px; border-radius: 50%; background: var(--green); }

/* ── PAGE LAYOUT ── */
.page-header { padding: 4.5rem 6% 2.5rem; max-width: 1140px; margin: 0 auto; }
.page-body { padding: 0 6% 3.5rem; max-width: 1140px; margin: 0 auto; }
.page-body .page-intro, .page-body p { max-width: 780px; }

/* ── GROW STAGES ── */
.grow-stages { display: flex; flex-direction: column; margin-top: 2rem; max-width: 860px; }
.grow-stage { display: grid; grid-template-columns: 56px 1fr; gap: 2rem; padding: 2.5rem 0; border-top: 1px solid #e8e8e8; align-items: start; }
.grow-letter { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--green); line-height: 1; padding-top: 0.2rem; }
.grow-stage h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--purple); margin-bottom: 0.15rem; }
.grow-stage .stage-sub { font-size: 0.78rem; color: #999; font-family: 'Montserrat', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; }
.grow-stage .stage-pull { font-style: italic; color: var(--green-dark); font-weight: 700; font-size: 1rem; line-height: 1.6; margin-bottom: 0.75rem; font-family: 'Playfair Display', serif; }
.grow-stage p { font-size: 0.95rem; line-height: 1.8; color: #5a5a5a; margin-bottom: 0; max-width: 100%; }

/* ── CTA BAND ── */
.cta-band { background: var(--green); padding: 4.5rem 6%; text-align: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 700; color: white; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.88); font-size: 0.97rem; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 4rem; align-items: start; max-width: 1140px; margin: 0 auto; }
.about-img-wrap { position: relative; padding: 1rem 0 0 1rem; }
.about-img-wrap::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: calc(100% - 1rem); height: calc(100% - 1rem);
  background: var(--green-light); border-radius: 6px; z-index: 0;
}
.about-img-wrap::after {
  content: ''; position: absolute; bottom: -10px; right: -10px;
  width: 60px; height: 60px; border-radius: 50%; background: var(--pink); opacity: 0.55; z-index: 0;
}
.about-img-wrap img {
  position: relative; z-index: 1; width: 100%; border-radius: 4px;
  display: block; object-fit: cover; object-position: center top; max-height: 480px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.about-text p { font-size: 0.95rem; line-height: 1.85; color: #5a5a5a; margin-bottom: 1.1rem; max-width: 100%; }
.about-text .quals { font-size: 0.82rem; font-style: italic; color: #999; margin-top: 0.5rem; }

/* ── FAQ ── */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-item:first-child { border-top: 1px solid #e8e8e8; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; padding: 1.4rem 0; text-align: left;
  font-family: 'Poppins', sans-serif; font-size: 0.97rem; font-weight: 600;
  color: var(--body-text); line-height: 1.5; transition: color 0.2s;
}
.faq-question:hover { color: var(--green); }
.faq-icon { font-size: 1.3rem; font-weight: 300; line-height: 1; flex-shrink: 0; color: var(--green); margin-top: 0.1rem; }
.faq-answer { padding: 0 0 1.4rem; }
.faq-answer p { font-size: 0.95rem; line-height: 1.85; color: #5a5a5a; max-width: 100%; }

/* ── PRICE TAG ── */
.price-tag { display: inline-block; background: var(--green-light); color: var(--green-dark); font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.4rem 1rem; border-radius: 20px; margin: 1rem 0 1.5rem; }

/* ── LEGAL ── */
.legal-content { max-width: 740px; margin: 0 auto; padding: 4rem 6%; }
.legal-content h1 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.legal-content .updated { font-size: 0.82rem; color: #999; margin-bottom: 2.5rem; font-style: italic; }
.legal-content h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.5rem; color: var(--purple); }
.legal-content p { font-size: 0.95rem; line-height: 1.8; color: #5a5a5a; margin-bottom: 1rem; }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal-content li { font-size: 0.95rem; line-height: 1.8; color: #5a5a5a; margin-bottom: 0.4rem; }
.legal-content a { color: var(--green); }

/* ── FOOTER ── */
footer { background: #1a1a1a; padding: 2rem 6%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { height: 52px; display: block; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; color: #777; text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
footer p { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; color: #555; letter-spacing: 0.04em; }

/* ── MOBILE ── */
/* ── OPTION C — GROW ORGANIC CARDS ── */
.c-stages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.c-stage {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  transition: box-shadow 0.25s, transform 0.25s;
}
.c-stage:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.c-blob-accent {
  position: absolute;
  top: -24px; right: -24px;
  width: 110px; height: 110px;
  border-radius: 60% 40% 50% 50% / 40% 60% 50% 50%;
  z-index: 0;
  pointer-events: none;
}
.c-stage-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.c-badge {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  flex-shrink: 0;
}
.c-stage-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: #3d3d3d; line-height: 1.2;
}
.c-stage-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #aaa; margin-top: 0.15rem;
}
.c-stage-pull {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 0.92rem;
  line-height: 1.55; margin-bottom: 0.65rem;
  position: relative; z-index: 1;
}
.c-stage-body {
  font-size: 0.88rem; line-height: 1.78;
  color: #666;
  position: relative; z-index: 1;
}

/* ── HOMEPAGE ABOUT — two-col on desktop, stacked on mobile ── */
.homepage-about {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  nav { padding: 0 5%; height: 80px; }
  .nav-tagline { font-size: 0.55rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 80px; }
  .hero { padding: 4rem 5% 3.5rem; }
  .page-header { padding: 3rem 5% 2rem; }
  .page-body { padding: 0 5% 3rem; }
  .cards { grid-template-columns: 1fr; gap: 1.25rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { max-width: 320px; margin: 0 auto; }
  .homepage-about { grid-template-columns: 1fr; gap: 2rem; }
  .c-stages { grid-template-columns: 1fr; }
  .cta-band { padding: 3.5rem 5%; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-white, .btn-outline-white { width: 100%; max-width: 300px; text-align: center; }
  .grow-stage { grid-template-columns: 40px 1fr; gap: 1.25rem; }
  .grow-letter { font-size: 2rem; }
  footer { flex-direction: column; align-items: flex-start; padding: 2rem 5%; }
  .footer-right { align-items: flex-start; }
  .quote-strip { padding: 2.5rem 5%; }
  .legal-content { padding: 3rem 5%; }
  .hero::before { width: 300px; height: 300px; top: -80px; right: -60px; }
  .service-rules { gap: 1.5rem; }
}
@media (max-width: 480px) { .section-heading { font-size: 1.6rem; } }

/* ── NAV LOGO (tagline baked in — just size the image correctly) ── */
.nav-brand { text-decoration: none; display: block; }

/* ── ARROW LINK — bold text with pink underline ── */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.65rem;
  text-decoration: none; font-size: 0.95rem; color: var(--body-text);
  font-family: 'Poppins', sans-serif; line-height: 1.5; padding: 0.15rem 0;
  transition: color 0.2s;
}
.arrow-link-text {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.arrow-link:hover { color: var(--green); }
.arrow-link:hover .arrow-link-text { text-decoration-color: var(--green); }
.arrow-link:hover .arr-pink { opacity: 0; transform: translateX(4px); }
.arrow-link:hover .arr-green { opacity: 1; transform: translateX(4px); }

/* ── FOCUS TILES — 3+2 grid with tinted backgrounds ── */
.focus-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 1rem;
  max-width: 900px;
  list-style: none;
}
/* Last two tiles centred in a 3-col grid via subgrid trick */
.focus-tiles .focus-tile:nth-child(4) { grid-column: 1; }
.focus-tiles .focus-tile:nth-child(5) { grid-column: 2; }
.focus-tile {
  border-radius: 8px;
  padding: 1.5rem 1.5rem 1.4rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}
.focus-tile:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.focus-tile-title {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.focus-tile-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #5a5a5a;
}

/* ── BUILD GRID — 4 equal boxes ── */
.build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.25rem 0 2.5rem;
  max-width: 780px;
}
.build-card {
  background: #f8fef9;
  border: 1px solid var(--green-light);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  padding: 1.25rem 1.25rem;
}
.build-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 100%;
  margin: 0;
}
.build-card strong { color: var(--body-text); }

@media (max-width: 768px) {
  .nav-logo { height: 64px; }
  .focus-tiles { grid-template-columns: 1fr; }
  .focus-tiles .focus-tile:nth-child(4),
  .focus-tiles .focus-tile:nth-child(5) { grid-column: 1; }
  .build-grid { grid-template-columns: 1fr; }
}

/* ── TRIGGER CARDS — left green rule, card feel ── */
.trigger-cards {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0 2rem;
  max-width: 780px;
}
.trigger-card {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 0 1rem;
  background: #f8fef9;
  border: 1px solid var(--green-light);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.trigger-card:hover {
  border-color: var(--green);
  box-shadow: 0 2px 12px rgba(66,186,125,0.12);
}
.trigger-bar {
  background: var(--green);
}
.trigger-body {
  padding: 0.9rem 1.1rem;
}
.trigger-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
  max-width: 100%;
}

/* ── GROW TIMELINE (Option A) ── */
.tl-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #bbb; margin: 1.75rem 0 1.5rem;
}
.tl-grid {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0;
  position: relative;
  max-width: 820px;
}
/* Gradient stem running the full height */
.tl-grid::before {
  content: '';
  position: absolute;
  top: 28px; bottom: 28px;
  left: 31px;
  width: 2px;
  background: linear-gradient(to bottom,
    #42ba7d 0%, #147644 33%, #851e89 66%, #fbc6fd 100%);
}
.tl-letter-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.tl-letter {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 3px 14px rgba(0,0,0,0.13);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tl-letter:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
/* W letter needs dark text on pale pink */
.tl-letter[style*="fbc6fd"] { color: #3d3d3d; }
.tl-content {
  padding: 0.1rem 0 2rem 1.75rem;
}
.tl-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: #3d3d3d; line-height: 1.2;
  margin-bottom: 0.15rem;
}
.tl-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #888; margin-bottom: 0.5rem;
}
.tl-pull {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: 0.92rem;
  color: #147644;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.tl-body {
  font-size: 0.88rem; line-height: 1.78;
  color: #4a4a4a; max-width: 620px;
}
@media (max-width: 768px) {
  .tl-grid { grid-template-columns: 48px 1fr; }
  .tl-grid::before { left: 23px; }
  .tl-letter { width: 40px; height: 40px; font-size: 1.1rem; }
  .tl-content { padding-left: 1.25rem; padding-bottom: 1.75rem; }
}
