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

:root {
  --green:        #1a5c45;
  --green-hover:  #154d39;
  --green-light:  #eef5f1;
  --gold:         #b8955a;
  --bg:           #fafaf8;
  --text:         #1a1a1a;
  --text-muted:   #6b6b6b;
  --border:       #e4e0da;
  --white:        #ffffff;
  --font-h:       'Playfair Display', Georgia, serif;
  --font-b:       'Inter', system-ui, sans-serif;
  --max:          1080px;
  --nav-h:        70px;
  --radius:       10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
}

.nav-logo {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-links .btn-nav {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  transition: background 0.2s !important;
}

.nav-links .btn-nav:hover { background: var(--green-hover) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ── MAIN OFFSET ── */
main { padding-top: calc(var(--nav-h) + 33px); }

/* ── HERO SPLIT ── */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0;
  overflow: hidden;
  max-width: 100%;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
  max-width: 600px;
}

.hero-img {
  flex-shrink: 0;
  width: clamp(280px, 38vw, 560px);
  height: clamp(280px, 38vw, 560px);
  border-radius: 50%;
  overflow: hidden;
  margin-right: clamp(-120px, -10vw, -60px);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero-split { flex-direction: column; padding-right: clamp(20px, 5vw, 60px); }
  .hero-img {
    width: 220px;
    height: 220px;
    margin-right: 0;
    margin-top: 2rem;
    align-self: flex-end;
    margin-right: -40px;
  }
  .hero-content { max-width: 100%; padding-right: 0; }
}

/* ── HERO ── */
.hero {
  padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 60px);
  max-width: var(--max);
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 1.4rem;
  max-width: 700px;
}

.hero h1 em { font-style: italic; color: var(--green); }

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.4rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-hover); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green-light); }

/* ── SECTIONS ── */
section {
  padding: clamp(50px, 8vw, 90px) clamp(20px, 5vw, 60px);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--green); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.card h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card p { font-size: 0.95rem; color: var(--text-muted); }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 2rem;
  position: relative;
  padding-bottom: 2.5rem;
}

.step:last-child { padding-bottom: 0; }

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.step-line {
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.step:last-child .step-line { display: none; }

.step-content { padding-top: 8px; }
.step-content h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.step-content p { font-size: 0.95rem; color: var(--text-muted); }

/* ── HIGHLIGHT BAND ── */
.band {
  background: var(--green);
  color: var(--white);
  padding: clamp(50px, 8vw, 90px) clamp(20px, 5vw, 60px);
}

.band .section-label { color: rgba(255,255,255,0.6); }
.band .section-title { color: var(--white); }
.band .section-title em { color: #a8d4be; }
.band .section-subtitle { color: rgba(255,255,255,0.75); }

/* ── PRICING ── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
}

.price-card.featured {
  border-color: var(--green);
  border-width: 2px;
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 50px;
}

.price-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.price-amount {
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.price-amount span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

.price-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  display: flex;
  gap: 0.6rem;
}
.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 600;
  flex-shrink: 0;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 320px;
  justify-self: center;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}
.about-text h2 em { font-style: italic; color: var(--green); }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }

.credentials { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.6rem; }
.credential {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.credential strong { color: var(--text); }

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
  margin: 0 clamp(20px, 5vw, 60px) clamp(50px, 8vw, 90px);
}

.cta-section h2 {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.cta-section h2 em { font-style: italic; color: var(--green); }
.cta-section p { color: var(--text-muted); margin-bottom: 2rem; }

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 3rem clamp(20px, 5vw, 60px);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .nav-logo { color: var(--white); display: block; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }

footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
footer ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
footer ul a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: var(--green);
  color: var(--white);
  padding: clamp(50px, 8vw, 90px) clamp(20px, 5vw, 60px);
}

.page-hero .section-label { color: rgba(255,255,255,0.55); }
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 700px;
}
.page-hero h1 em { font-style: italic; color: #a8d4be; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; font-size: 1.05rem; }

/* ── TWO-COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 clamp(20px, 5vw, 60px);
}

/* ── FORM ── */
.tally-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 600px;
}

/* ── TRUST / PAYMENT BADGES ── */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: 1.6rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.band .badge { color: rgba(255,255,255,0.8); }
.band .badge-icon { background: rgba(255,255,255,0.12); }

/* ── QUOTE CARD ── */
.quote-card {
  border-left: 4px solid var(--green);
  padding: 2rem 2.5rem;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 780px;
}

.quote-card p.quote-text {
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1rem;
}

.quote-card p.quote-source {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.quote-card.quote-card--placeholder {
  border-left-color: var(--border);
  background: var(--green-light);
}

.quote-card.quote-card--placeholder p.quote-text {
  font-style: normal;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ── CARD ON DARK ── */
.card--on-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.card--on-dark h3 { color: white; }
.card--on-dark p { color: rgba(255,255,255,0.7); }
.card--on-dark .card-icon { background: rgba(255,255,255,0.12); }

/* ── BMI CALCULATOR ── */
.bmi-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 640px;
}

.bmi-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: flex-end;
}

.bmi-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  min-width: 140px;
}

.bmi-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.bmi-field input {
  font-family: var(--font-b);
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
}

.bmi-field input:focus {
  outline: none;
  border-color: var(--green);
}

.bmi-result {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.bmi-result[hidden] { display: none; }

.bmi-value {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text);
}

.bmi-category {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.bmi-result--neutral .bmi-category { background: var(--border); color: var(--text); }
.bmi-result--good .bmi-category { background: var(--green-light); color: var(--green); }
.bmi-result--warn .bmi-category { background: #faf1de; color: var(--gold); }
.bmi-result--alert .bmi-category { background: var(--green); color: var(--white); }

.bmi-note {
  flex-basis: 100%;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ── PHASE TRACK (horizontal timeline) ── */
.phase-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.phase-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
}

.phase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--green);
  border-radius: var(--radius) var(--radius) 0 0;
}

.phase-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.phase-card h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.phase-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; max-width: 780px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.3rem 1.5rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-family: var(--font-h);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-bottom: 1.3rem;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem clamp(20px, 5vw, 40px);
    gap: 1.2rem;
    align-items: flex-start;
  }

  .about-grid,
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { display: none; }
  .footer-bottom { flex-direction: column; }
  .phase-track { grid-template-columns: 1fr; }
  .bmi-form { flex-direction: column; align-items: stretch; }
}
