/* ─── Tokens ─────────────────────────────────────────────────────── */
:root {
  --bg:        #F8F6F1;
  --bg-alt:    #F0EDE6;
  --fg:        #1A1A1A;
  --fg-muted:  #6B6560;
  --accent:    #0F4C5C;
  --accent-lt: #E6F0F2;
  --amber:     #E8A838;
  --amber-lt:  #FDF3DC;
  --white:     #FFFFFF;
  --border:    rgba(15,76,92,0.12);
}

/* ─── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: 'DM Sans', system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }

/* ─── Typography ─────────────────────────────────────────────────── */
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.15; }
em { font-style: italic; color: var(--accent); }

/* ─── Nav ────────────────────────────────────────────────────────── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-name { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; color: var(--fg); }
.nav-tagline { font-size: 0.8125rem; color: var(--fg-muted); letter-spacing: 0.01em; }

/* ─── Section label ───────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  padding: 4px 10px; border-radius: 3px;
  margin-bottom: 16px;
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  padding: 100px 48px 80px;
  max-width: 1100px;
  position: relative;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; font-weight: 500; color: var(--amber);
  background: var(--amber-lt);
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 32px;
}
.hero-label-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--amber);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-sub {
  font-size: 1.125rem; line-height: 1.65;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  max-width: 640px;
  box-shadow: 0 2px 20px rgba(15,76,92,0.06);
}
.hero-stat { padding: 20px 28px; }
.hero-stat-value {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem; color: var(--accent);
  margin-bottom: 2px;
}
.hero-stat-desc { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.4; }
.hero-stat-divider {
  width: 1px; height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── Services ────────────────────────────────────────────────────── */
.services {
  background: var(--white);
  padding: 96px 48px;
}
.services-header { max-width: 700px; margin-bottom: 56px; }
.services-title { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 16px; }
.services-desc { font-size: 1rem; color: var(--fg-muted); line-height: 1.6; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
}
.service-card {
  padding: 28px 28px 32px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15,76,92,0.10);
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 18px;
}
.service-name { font-family: 'DM Serif Display', serif; font-size: 1.25rem; margin-bottom: 10px; }
.service-desc { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.6; }

/* ─── Outcomes ────────────────────────────────────────────────────── */
.outcomes { background: var(--accent); color: var(--white); padding: 96px 48px; }
.outcomes-inner { max-width: 1100px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.outcomes-title { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 24px; color: var(--white); }
.outcomes-title em { font-style: italic; color: var(--amber); }
.outcomes-body { font-size: 0.9375rem; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.outcomes-metrics { display: flex; flex-direction: column; gap: 32px; }
.metric { border-left: 3px solid var(--amber); padding-left: 20px; }
.metric-value { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: var(--amber); line-height: 1; margin-bottom: 6px; }
.metric-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ─── Process ────────────────────────────────────────────────────── */
.process { padding: 96px 48px; background: var(--bg); }
.process-header { max-width: 700px; margin-bottom: 56px; }
.process-title { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 16px; }
.process-desc { font-size: 1rem; color: var(--fg-muted); line-height: 1.6; }
.process-steps {
  display: flex; align-items: center; gap: 0;
  max-width: 900px;
  flex-wrap: wrap;
  row-gap: 32px;
}
.process-step { flex: 1; min-width: 220px; }
.step-num { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 12px; }
.step-title { font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 10px; }
.step-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }
.process-arrow { flex-shrink: 0; color: var(--border); padding: 0 16px; }

/* ─── Testimonial ────────────────────────────────────────────────── */
.testimonial { background: var(--white); padding: 80px 48px; }
.testimonial-inner { max-width: 720px; margin: 0 auto; }
.quote-mark { margin-bottom: 20px; }
.quote-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  color: var(--fg);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 32px;
}
.quote-attr { display: flex; align-items: center; gap: 14px; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.8125rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.quote-name { font-weight: 600; font-size: 0.9375rem; }
.quote-context { font-size: 0.8125rem; color: var(--fg-muted); }

/* ─── Closing ────────────────────────────────────────────────────── */
.closing { background: var(--bg-alt); padding: 100px 48px; text-align: center; }
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-title { font-size: clamp(2.25rem, 4vw, 3.5rem); margin-bottom: 24px; line-height: 1.2; }
.closing-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 16px; }

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer { background: var(--fg); color: rgba(255,255,255,0.5); padding: 40px 48px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-name { font-size: 1rem; font-weight: 600; color: var(--white); }
.footer-tagline { font-size: 0.8125rem; margin-bottom: 16px; }
.footer-copy { font-size: 0.75rem; }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 64px 24px 56px; }
  .hero-headline { font-size: 2.5rem; }
  .hero-stats { flex-direction: column; }
  .hero-stat { width: 100%; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stat-divider { display: none; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 64px 24px; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); padding: 8px 0; }
  .process { padding: 64px 24px; }
  .testimonial { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2rem; }
}