@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --dark: #1a2e1a;
  --mid: #2d4a2d;
  --sage: #8fbb8f;
  --sage-light: #c8ddc8;
  --cream: #f5f0e8;
  --cream-dark: #ede8df;
  --text: #2a2a28;
  --muted: #6a6a62;
  --border: #e0dbd0;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,46,26,0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  border-bottom: 1px solid rgba(143,187,143,0.15);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.3px;
}
.nav-logo span { color: var(--sage); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  background: var(--sage);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 500 !important;
  opacity: 1 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--sage-light) !important; }

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(143,187,143,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,187,143,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(143,187,143,0.08);
}
.hero-circle-1 { width: 600px; height: 600px; right: -150px; top: -100px; }
.hero-circle-2 { width: 400px; height: 400px; right: 0px; top: 50px; }
.hero-circle-3 { width: 200px; height: 200px; right: 100px; top: 200px; }

.hero-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--sage);
}

.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s 0.35s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--sage);
}

.hero-sub {
  font-size: 18px;
  color: rgba(245,240,232,0.65);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.6s 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 0.65s forwards;
}

.btn-primary {
  display: inline-block;
  background: var(--sage);
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--sage-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: 1px solid rgba(245,240,232,0.25);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: rgba(245,240,232,0.6); transform: translateY(-1px); }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(143,187,143,0.15);
  opacity: 0;
  animation: fadeUp 0.6s 0.8s forwards;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.5px;
}

/* ── SECTIONS ── */
.section {
  padding: 96px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-full {
  padding: 96px 48px;
}
.section-full .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 60px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ── PAIN POINTS ── */
.pain-section { background: var(--cream); }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.pain-card {
  background: var(--white);
  padding: 32px 28px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}
.pain-card:hover { border-color: var(--sage); }
.pain-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.pain-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.pain-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--cream-dark);
  margin-bottom: 12px;
  line-height: 1;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}

.service-card {
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--sage);
  box-shadow: 0 4px 24px rgba(26,46,26,0.06);
}
.service-card.featured {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--cream);
}
.service-card.featured h3 { color: var(--cream); }
.service-card.featured p { color: rgba(245,240,232,0.65); }
.service-card.featured .service-price { color: var(--sage); }
.service-card.featured .service-price-incl { color: rgba(245,240,232,0.5); }
.service-card.featured .service-item { color: rgba(245,240,232,0.75); }
.service-card.featured .service-item::before { color: var(--sage); }

.service-badge {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 10px;
}
.service-card.featured .service-badge { color: var(--sage); }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.service-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 2px;
}
.service-price-incl {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}
.service-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.service-card.featured .service-divider { background: rgba(143,187,143,0.2); }
.service-items { list-style: none; }
.service-item {
  font-size: 13px;
  color: var(--text);
  padding: 5px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.service-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 11px;
}
.service-item.excl { opacity: 0.4; }
.service-item.excl::before { content: '—'; }

.xero-note {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 2px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.xero-note strong { color: var(--dark); }
.xero-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

/* ── PROCESS ── */
.process-section { background: var(--dark); }
.process-section .section-title { color: var(--cream); }
.process-section .section-sub { color: rgba(245,240,232,0.55); }
.process-section .section-label { color: var(--sage); }
.process-section .section-label::after { background: rgba(143,187,143,0.2); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 8px;
}
.process-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(143,187,143,0.1);
  padding: 32px 24px;
  transition: background 0.2s;
}
.process-step:hover { background: rgba(143,187,143,0.05); }
.process-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: rgba(143,187,143,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13px;
  color: rgba(245,240,232,0.45);
  line-height: 1.65;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-left .big-initial {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 0.85;
  margin-bottom: 24px;
  display: block;
}
.about-right p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--dark);
}
.credential-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── RESOURCES ── */
.resources-section { background: var(--cream); }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: 2px;
  transition: box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.resource-card:hover {
  box-shadow: 0 6px 28px rgba(26,46,26,0.08);
  transform: translateY(-2px);
}
.resource-type {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 12px;
}
.resource-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.resource-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.resource-cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.resource-cta::after { content: '→'; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--dark);
  padding: 80px 48px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
}
.cta-band p {
  font-size: 16px;
  color: rgba(245,240,232,0.55);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-note {
  font-size: 12px;
  color: rgba(245,240,232,0.3);
  margin-top: 16px;
  letter-spacing: 0.5px;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sage);
  font-weight: 500;
}
.contact-value {
  font-size: 16px;
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
}
.contact-value:hover { color: var(--mid); }

.calendly-embed {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  min-height: 600px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(143,187,143,0.1);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
}
.footer-brand span { color: var(--sage); }
.footer-details {
  font-size: 12px;
  color: rgba(245,240,232,0.35);
  line-height: 1.7;
  text-align: right;
}

/* ── PAGE HEADER ── */
.page-hero {
  background: var(--dark);
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-grid { opacity: 0.5; }
.page-hero .hero-accent { background: var(--sage); }
.page-hero-content { position: relative; max-width: 1100px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.2;
}
.page-hero p {
  font-size: 17px;
  color: rgba(245,240,232,0.55);
  max-width: 500px;
  line-height: 1.75;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--dark); padding: 20px 24px; gap: 16px; border-bottom: 1px solid rgba(143,187,143,0.15); }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .hero-content { padding: 60px 24px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .section { padding: 64px 24px; }
  .section-full { padding: 64px 24px; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .resources-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  footer { flex-direction: column; text-align: center; }
  .footer-details { text-align: center; }
  .page-hero { padding: 120px 24px 60px; }
  .cta-band { padding: 60px 24px; }
}
