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

:root {
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --amber: #F4A226;
  --amber-light: #FFD166;
  --cream: #FEFAE0;
  --off-white: #F8F6F0;
  --dark: #1A1A1A;
  --gray: #6B7280;
  --light-gray: #E5E1D8;
  --white: #FFFFFF;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 700;
}

/* === NAV === */
.navbar {
  background: var(--green-dark);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(244,162,38,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(64,145,108,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.hero-lede {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 52ch;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  max-width: 18ch;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* === SHARED SECTION STYLES === */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--green-dark);
  margin-bottom: 3rem;
  max-width: 20ch;
}

/* === PROBLEM === */
.problem {
  padding: 5rem 2rem;
  background: var(--white);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.problem-card {
  padding: 1.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  background: var(--off-white);
  transition: border-color 0.2s, transform 0.2s;
}

.problem-card:hover {
  border-color: var(--green-light);
  transform: translateY(-2px);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--amber);
}

.problem-card h3 {
  font-size: 1.125rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* === SERVICES === */
.services {
  padding: 5rem 2rem;
  background: var(--off-white);
}

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

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

.service-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card-featured {
  border-color: var(--green-dark);
  box-shadow: 0 4px 24px rgba(27,67,50,0.12);
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--green-dark);
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 0 0 6px 6px;
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}

.service-name {
  font-size: 1.375rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.service-one {
  font-size: 0.9rem;
  color: var(--gray);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.service-month {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--gray);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--dark);
  padding-left: 1.25rem;
  position: relative;
}

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

/* === STATS === */
.stats-section {
  padding: 5rem 2rem;
  background: var(--green-dark);
  color: var(--white);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-text {
  margin-bottom: 3rem;
}

.stats-text .section-label {
  color: var(--amber);
}

.stats-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--white);
  max-width: 26ch;
  margin-bottom: 1rem;
}

.stats-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 52ch;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 3rem;
}

.stats-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stats-big {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stats-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* === PROCESS === */
.process {
  padding: 5rem 2rem;
  background: var(--white);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 2rem 0 0;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.125rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: var(--light-gray);
  flex-shrink: 0;
  margin-top: 1.5rem;
}

/* === CLOSING === */
.closing {
  padding: 6rem 2rem;
  background: var(--cream);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-left: 4px solid var(--amber);
  padding-left: 2.5rem;
}

.closing h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  max-width: 22ch;
}

.closing p {
  font-size: 1.05rem;
  color: var(--dark);
  max-width: 58ch;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.closing p:last-child {
  color: var(--gray);
  max-width: 52ch;
}

/* === FOOTER === */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.footer-services p,
.footer-areas p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .service-card-featured {
    order: -1;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }

  .step-connector {
    width: 40px;
    height: 2px;
    margin-top: 0;
    align-self: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-label {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 1.25rem 3rem;
  }

  .problem, .services, .stats-section, .process, .closing {
    padding: 3.5rem 1.25rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 3rem 1.25rem 1.5rem;
  }
}