/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f9f5ee;
  --bg-alt: #f0ebe0;
  --fg: #1e2b18;
  --fg-muted: #5a6b4d;
  --accent: #e8a838;
  --accent-dark: #c88a1e;
  --green: #1e3a28;
  --green-mid: #2d5240;
  --green-light: #3d6b54;
  --border: #d6ccb8;
  --card-bg: #ffffff;
  --shadow: 0 2px 16px rgba(30,42,24,0.08);
  --shadow-lg: 0 8px 40px rgba(30,42,24,0.14);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
}

/* ── Nav ── */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* ── Hero ── */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(30,58,40,0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--green);
  margin-bottom: 1.25rem;
  max-width: 16ch;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 40ch;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-tag {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--fg-muted);
  background: var(--card-bg);
}
.service-tag:last-child {
  color: var(--accent-dark);
  border-color: var(--accent);
  font-weight: 600;
}

/* Hero Card */
.hero-card {
  background: var(--green);
  border-radius: 18px;
  padding: 1.75rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.metric-value {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.metric-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.1rem;
}
.card-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 1.25rem;
}
.card-schedule { display: flex; flex-direction: column; gap: 0.65rem; }
.sched-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
}
.sched-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sched-dot.green { background: #4ade80; }
.sched-dot.amber { background: var(--accent); }
.sched-name { flex: 1; color: rgba(255,255,255,0.85); }
.sched-day { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

/* ── Shared Section Styles ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--green);
  margin-bottom: 1.5rem;
  max-width: 22ch;
}

/* ── Features ── */
.features {
  background: var(--green);
  padding: 5rem 2rem;
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features .section-label { color: rgba(255,255,255,0.5); }
.features .section-heading { color: #fff; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.75rem;
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.feature-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── Stats ── */
.stats { padding: 5rem 2rem; }
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.stats-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.stats-row {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.stat-item {}
.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-fact {
  display: block;
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── Testimonials ── */
.testimonials {
  background: var(--bg-alt);
  padding: 5rem 2rem;
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
}
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--accent);
  line-height: 0.7;
  margin-bottom: 0.75rem;
}
.quote-text {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.quote-attr {}
.quote-role {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ── Closing ── */
.closing {
  background: var(--green);
  padding: 6rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 3rem;
}
.cta-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.cta-service {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}
.cta-service:last-child {
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

/* ── Footer ── */
.footer {
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.footer-logo {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-note { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-headline { max-width: none; }
  .hero-visual { order: -1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stats-row { flex-direction: row; flex-wrap: wrap; }
  .stat-item { min-width: 140px; flex: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; }
}

@media (max-width: 560px) {
  .hero { padding: 3rem 1.25rem 3rem; }
  .features, .stats, .testimonials, .closing { padding: 3.5rem 1.25rem; }
  .features-grid { grid-template-columns: 1fr; }
  .card-row { grid-template-columns: repeat(3, 1fr); }
  .sched-day { display: none; }
  .stats-row { flex-direction: column; }
  .stat-number { font-size: 2rem; }
}