:root {
  --bg: #FAF7F2;
  --bg-warm: #F3EDE3;
  --fg: #2C2417;
  --fg-muted: #6B5E4D;
  --accent: #C4883A;
  --accent-light: #E8C98A;
  --accent-dark: #9A6A2A;
  --teal: #3A7A6E;
  --teal-light: #E8F4F1;
  --border: #D9CFC0;
  --white: #FFFFFF;
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 136, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 122, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero .lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

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

.hero-stat .number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-dark);
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ===== APPROACH ===== */
.approach {
  padding: 100px 24px;
  background: var(--white);
}

.approach-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 16px;
}

.approach-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--fg);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.approach-card {
  padding: 40px 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 36, 23, 0.06);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.card-icon.knowledge {
  background: rgba(196, 136, 58, 0.12);
  color: var(--accent-dark);
}

.card-icon.patience {
  background: var(--teal-light);
  color: var(--teal);
}

.card-icon.care {
  background: rgba(180, 80, 80, 0.1);
  color: #9A4A4A;
}

.approach-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.approach-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 24px;
  background: var(--bg-warm);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.services-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.services-text > p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.service-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.service-bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 10px;
}

.service-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--fg);
}

.service-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.services-visual {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.coverage-range {
  text-align: center;
}

.coverage-range .range-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.coverage-range .range-value {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.coverage-divider {
  height: 1px;
  background: var(--border);
}

.coverage-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.highlight {
  text-align: center;
  padding: 16px;
  background: var(--bg);
  border-radius: 8px;
}

.highlight .hi-value {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
}

.highlight .hi-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: var(--fg);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--teal), var(--accent));
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--bg);
}

.closing p {
  font-size: 1.1rem;
  color: rgba(250, 247, 242, 0.7);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
footer {
  padding: 32px 24px;
  text-align: center;
  background: var(--fg);
  border-top: 1px solid rgba(250, 247, 242, 0.1);
}

footer p {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 20px 60px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .approach-card {
    padding: 28px 24px;
  }

  .services-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coverage-highlights {
    grid-template-columns: 1fr;
  }

  .closing {
    padding: 80px 20px;
  }
}