/* Illinois Naturopathy — shared styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --green-dark:   #085041;
  --green-mid:    #1D9E75;
  --green-light:  #E1F5EE;
  --green-pale:   #EAF3DE;
  --white:        #ffffff;
  --text:         #1a2e28;
  --text-muted:   #4a6b60;
  --border:       #c8e6d8;
  --shadow:       0 2px 12px rgba(8,80,65,.10);
  --radius:       10px;
  --radius-lg:    18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a  { color: var(--green-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: var(--green-dark); }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .6rem;
  display: block;
}

/* ── Layout helpers ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 5rem 0; }

.text-center { text-align: center; }
.text-muted   { color: var(--text-muted); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .72rem 1.5rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover { background: #178a63; border-color: #178a63; text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover { background: var(--green-dark); color: var(--white); text-decoration: none; }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); text-decoration: none; }

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(8,80,65,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 64px;
}
.nav-logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--green-mid); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-mid); text-decoration: none; }
.nav-cta { margin-left: .5rem; }

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}

/* ── Hero ── */
.hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(29,158,117,.25) 0%, transparent 65%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 240px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.hero-card-label {
  padding: .9rem 1rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  border-top: 1px solid var(--border);
}
.hero-card-label strong { display: block; color: var(--green-dark); font-size: .95rem; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--green-pale);
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar ul {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.trust-bar li {
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.trust-bar li::before {
  content: '✓';
  color: var(--green-mid);
  font-weight: 700;
}

/* ── Section headings ── */
.section-heading { margin-bottom: 2.5rem; }
.section-heading h2 { margin-bottom: .5rem; }
.section-heading p { color: var(--text-muted); font-size: 1.05rem; }

/* ── Cards grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(8,80,65,.13); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .5rem; color: var(--green-dark); }
.card p  { color: var(--text-muted); font-size: .93rem; }

/* ── Bio strip ── */
.bio-strip {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}
.bio-strip-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.bio-strip h3 { color: var(--green-dark); margin-bottom: .3rem; }
.bio-strip p  { color: var(--text-muted); font-size: .93rem; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.testimonial {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-size: 3.5rem;
  color: var(--green-mid);
  line-height: 1;
  position: absolute;
  top: .5rem;
  left: 1.25rem;
  opacity: .35;
}
.testimonial blockquote {
  font-size: .93rem;
  color: var(--text);
  margin-bottom: .75rem;
  padding-top: .5rem;
  font-style: italic;
}
.testimonial cite {
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-dark);
  font-style: normal;
}

/* ── Location cards ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.location-card h3 { color: var(--green-mid); margin-bottom: .5rem; }
.location-card address { font-style: normal; font-size: .93rem; color: var(--text-muted); line-height: 1.7; }

/* ── CTA banner ── */
.cta-banner {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.8); margin-bottom: 1.75rem; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── Pricing tables ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.price-card h4 { color: var(--green-dark); margin-bottom: .25rem; }
.price-card .price { font-size: 1.4rem; font-weight: 700; color: var(--green-mid); margin-bottom: .25rem; }
.price-card .duration { font-size: .82rem; color: var(--text-muted); }
.price-card p { font-size: .88rem; color: var(--text-muted); margin-top: .5rem; }

.membership-card {
  background: var(--green-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}
.membership-card h3 { color: var(--green-dark); font-size: 1.35rem; margin-bottom: .25rem; }
.membership-card .tagline { color: var(--text-muted); margin-bottom: 1.25rem; }
.membership-card ul { list-style: none; padding: 0; margin-bottom: 1.25rem; }
.membership-card ul li {
  padding: .3rem 0 .3rem 1.5rem;
  position: relative;
  font-size: .93rem;
  color: var(--text);
}
.membership-card ul li::before {
  content: '✓';
  color: var(--green-mid);
  font-weight: 700;
  position: absolute;
  left: 0;
}
.membership-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--white);
  display: inline-block;
  padding: .5rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.package-card h3 { color: var(--green-dark); font-size: 1.25rem; margin-bottom: .25rem; }
.package-card .pkg-price { color: var(--green-mid); font-weight: 700; font-size: 1.15rem; margin-bottom: 1rem; }
.package-card ul { list-style: none; padding: 0; }
.package-card ul li {
  padding: .25rem 0 .25rem 1.4rem;
  position: relative;
  font-size: .9rem;
  color: var(--text);
}
.package-card ul li::before {
  content: '→';
  color: var(--green-mid);
  position: absolute;
  left: 0;
}

/* ── Testing page ── */
.test-section { margin-bottom: 3rem; }
.test-section h3 {
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--green-light);
  padding-bottom: .5rem;
  margin-bottom: 1rem;
}
.test-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
}
.test-item h4 { color: var(--green-dark); margin-bottom: .25rem; }
.test-item p  { font-size: .88rem; color: var(--text-muted); margin-bottom: .4rem; }
.test-item .test-prices { display: flex; gap: .75rem; flex-wrap: wrap; }
.test-item .test-price-tag {
  font-size: .85rem;
  font-weight: 600;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: .2rem .7rem;
  border-radius: 50px;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.bundle-card {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.bundle-card h4 { color: var(--white); margin-bottom: .25rem; }
.bundle-card .bundle-price { font-size: 1.5rem; font-weight: 700; color: var(--green-mid); margin-bottom: .5rem; }
.bundle-card p  { font-size: .85rem; color: rgba(255,255,255,.75); }

/* ── About page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: start;
}
.about-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.credentials-list { list-style: none; padding: 0; }
.credentials-list li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  font-size: .93rem;
  border-bottom: 1px solid var(--border);
}
.credentials-list li:last-child { border-bottom: none; }
.credentials-list li::before {
  content: '◆';
  font-size: .5rem;
  color: var(--green-mid);
  position: absolute;
  left: 0;
  top: .7rem;
}
.specialties-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.chip {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 500;
  padding: .3rem .85rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* ── Donation page ── */
.donation-philosophy {
  background: var(--green-pale);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--text-muted);
}

/* ── Group program ── */
.group-includes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.group-includes-item {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  font-size: .9rem;
  color: var(--text);
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}
.group-includes-item::before { content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }

/* ── Footer ── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.8);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand h2 { color: var(--white); font-size: 1.1rem; margin-bottom: .5rem; }
.footer-brand p  { font-size: .88rem; margin-bottom: .75rem; }
.footer-contact a { color: rgba(255,255,255,.85); font-size: .9rem; display: block; margin-bottom: .4rem; }
.footer-col h3   { color: var(--white); margin-bottom: .75rem; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul   { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul a { color: rgba(255,255,255,.75); font-size: .9rem; }
.footer-col ul a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(8,80,65,.08);
  }
  .nav-links.open .nav-cta { display: block; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 1/1; width: 180px; border-radius: 50%; }

  .bio-strip { grid-template-columns: 1fr; text-align: center; }
  .bio-strip-photo { margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
