:root {
  --bg: #FAFAF7;
  --fg: #111111;
  --accent: #F97316;
  --accent-light: #FFF0E6;
  --teal: #1D7A8A;
  --teal-light: #E6F5F7;
  --muted: #78716C;
  --border: #E7E5E0;
  --white: #FFFFFF;
}

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

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

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── Header ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.site-header nav { display: flex; gap: 32px; }
.site-header nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.site-header nav a:hover { color: var(--fg); }

/* ── Hero ────────────────────────────────────── */
.hero { padding: 100px 0 80px; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--accent-light);
  border-radius: 100px;
  padding: 10px 20px;
}
.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 10px;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hero-card--accent {
  background: var(--accent);
  border-color: var(--accent);
}
.hero-card-icon { flex-shrink: 0; }
.hero-card-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--fg);
}
.hero-card--accent .hero-card-title { color: var(--white); }
.hero-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.hero-card--accent .hero-card-desc { color: rgba(255,255,255,0.75); }

/* ── Stats ──────────────────────────────────── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  background: var(--white);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { flex: 1; text-align: center; }
.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 32px;
}

/* ── Services ───────────────────────────────── */
.services { padding: 100px 0; }
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.services-header { margin-bottom: 64px; }
.section-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card--accent {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.service-card-top { flex: 1; }
.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.service-tag--accent {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--fg);
}
.service-card--accent h3 { color: var(--white); }
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-card--accent p { color: rgba(255,255,255,0.8); }
.service-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-checklist li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.service-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.service-card--accent .service-checklist li { color: rgba(255,255,255,0.7); }
.service-card--accent .service-checklist li::before { background: rgba(255,255,255,0.5); }
.service-card-price {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
.service-card--accent .service-card-price {
  border-top-color: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ── Trust ──────────────────────────────────── */
.trust { padding: 100px 0; border-top: 1px solid var(--border); }
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.trust-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 24px;
}
.trust-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.trust-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.trust-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-point h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--fg);
}
.trust-point p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Closing ────────────────────────────────── */
.closing {
  padding: 80px 0 100px;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.closing-statement {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--fg);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}

/* ── Footer ─────────────────────────────────── */
.site-footer {
  background: var(--fg);
  color: var(--white);
  padding: 60px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.footer-wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-meta {
  text-align: right;
}
.footer-meta p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 2;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat { min-width: calc(50% - 12px); }
}
@media (max-width: 600px) {
  .header-inner { padding: 16px 24px; }
  .hero-inner, .services-inner, .trust-inner, .closing-inner, .footer-inner { padding: 0 24px; }
  .hero { padding: 60px 0 48px; }
  .services, .trust, .closing { padding: 60px 0; }
  .services-header { margin-bottom: 40px; }
  .site-footer { padding: 40px 0; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-meta { text-align: left; }
}