/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F5F0E8;
  --fg: #1B1B1B;
  --fg-muted: #5A5A5A;
  --green: #1B3D2F;
  --green-light: #2A5C47;
  --amber: #C8952A;
  --amber-light: #E0AD3A;
  --cream-dark: #E8E0D0;
  --white: #FFFFFF;
}

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

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

::selection {
  background: var(--amber);
  color: var(--white);
}

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
}

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

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--green);
  margin-bottom: 2rem;
}

/* === NAV === */
.nav {
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 61, 47, 0.08);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--green);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* === HERO === */
.hero {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid rgba(27, 61, 47, 0.08);
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.hero-overline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--green);
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--amber);
  padding-left: 2rem;
}

.stat { padding: 1.25rem 0; border-bottom: 1px solid rgba(27,61,47,0.1); }
.stat:last-child { border-bottom: none; }

.stat-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* === SERVICES === */
.services { padding: 5rem 2rem; }

.services-inner { max-width: 1140px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(27, 61, 47, 0.1);
  border-radius: 4px;
  padding: 2rem;
}

.service-icon {
  color: var(--amber);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === WHY === */
.why {
  padding: 5rem 2rem;
  background: var(--green);
}

.why-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why-left .section-label { color: rgba(255,255,255,0.5); }
.why-left .section-heading { color: var(--white); }

.why-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.comparison-block {
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.comparison-block--green {
  background: rgba(200, 149, 42, 0.15);
  border-color: rgba(200, 149, 42, 0.3);
}

.comparison-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  font-weight: 600;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.comparison-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding-left: 1rem;
  position: relative;
}

.comparison-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

/* === PRICING === */
.pricing { padding: 5rem 2rem; }

.pricing-inner { max-width: 1140px; margin: 0 auto; text-align: center; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
  margin: 0 auto;
  max-width: 800px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(27, 61, 47, 0.12);
  border-radius: 4px;
  padding: 2.5rem;
}

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

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.pricing-target {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.pricing-amount {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pricing-setup {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.pricing-divider {
  color: var(--fg-muted);
  font-size: 1.2rem;
}

.pricing-monthly {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
}

.pricing-monthly span {
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--fg-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--fg);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.pricing-math {
  margin-top: 2.5rem;
  font-size: 1rem;
  color: var(--fg-muted);
}

.pricing-math strong {
  color: var(--green);
}

/* === TOOLS === */
.tools {
  padding: 4rem 2rem;
  border-top: 1px solid rgba(27, 61, 47, 0.08);
  border-bottom: 1px solid rgba(27, 61, 47, 0.08);
}

.tools-inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.tools-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tool-badge {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green);
  background: rgba(27, 61, 47, 0.07);
  border: 1px solid rgba(27, 61, 47, 0.15);
  border-radius: 2px;
  padding: 0.4rem 1rem;
}

.tools-body {
  font-size: 0.88rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 6rem 2rem;
  text-align: center;
}

.closing-inner { max-width: 860px; margin: 0 auto; }

.closing-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--green);
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.closing-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.closing-stat { text-align: center; }

.closing-stat-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
}

.closing-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* === FOOTER === */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(27, 61, 47, 0.1);
  background: var(--green);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  display: block;
}

.footer-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 0.3rem;
}

.footer-services {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-services span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .services { padding: 3rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why { padding: 3rem 1.25rem; }
  .pricing { padding: 3rem 1.25rem; }
  .closing { padding: 4rem 1.25rem; }
  .closing-stats { gap: 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
