:root {
  --bg: #FAFAF8;
  --bg-alt: #F2F0EB;
  --fg: #1A1A1E;
  --fg-muted: #6B6B70;
  --accent: #C8894A;
  --accent-light: #E8C89A;
  --border: #E0DDD5;
  --radius: 4px;
}

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

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;
  font-weight: 300;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.header-nav { display: flex; gap: 32px; }
.header-nav a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--fg); }

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}
.hero-image {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--accent);
  opacity: 0.15;
  border-radius: 2px;
  z-index: -1;
}

/* PROBLEM */
.problem { background: var(--bg-alt); }
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
}
.problem-ornament { padding-top: 8px; flex-shrink: 0; }
.problem-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.2;
}
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.problem-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 560px;
}

/* SERVICES */
.services {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
}
.services-header { margin-bottom: 64px; }
.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.services-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 4px 24px rgba(200, 137, 74, 0.08);
}
.service-icon { margin-bottom: 24px; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

/* DIFFERENTIATORS */
.differentiators { background: var(--fg); color: var(--bg); }
.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.differentiators .section-label { color: var(--accent-light); }
.diff-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.diff-body {
  font-size: 0.95rem;
  color: #9A9A9F;
  line-height: 1.8;
}
.diff-cards { display: flex; flex-direction: column; gap: 24px; }
.diff-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 28px 32px;
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.diff-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.diff-card p {
  font-size: 0.9rem;
  color: #9A9A9F;
}

/* PROCESS / PRICING */
.process {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
}
.process-header { text-align: center; margin-bottom: 64px; }
.process-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.process-sub { font-size: 1rem; color: var(--fg-muted); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  background: var(--bg);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--bg-alt);
}
.pricing-badge {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.pricing-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-amount span {
  font-size: 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

/* CLOSING */
.closing { background: var(--bg-alt); }
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 96px 32px;
  text-align: center;
}
.closing-decoration { margin-bottom: 32px; display: flex; justify-content: center; }
.closing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* FOOTER */
.site-footer { border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
}
.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  max-width: 280px;
  line-height: 1.6;
}
.footer-links { display: flex; gap: 64px; }
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--fg);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 32px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.8rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px 48px; }
  .hero-image { order: -1; }
  .hero-image img { height: 280px; }
  .problem-inner { grid-template-columns: 1fr; gap: 32px; padding: 64px 24px; }
  .problem-stats { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .diff-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 32px; }
  .header-nav { display: none; }
}

@media (max-width: 480px) {
  .problem-stats { grid-template-columns: 1fr; }
}