:root {
  --bg: #FAF8F4;
  --fg: #1A1A1A;
  --muted: #6B6560;
  --accent: #C9933A;
  --accent-light: #F5EDD8;
  --border: #E4DED4;
  --card-bg: #FFFFFF;
}

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

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

h1, h2, h3, blockquote {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Navigation */
.nav {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 13px;
  color: var(--muted);
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Sections shared */
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* Process */
.process {
  background: var(--fg);
  color: var(--bg);
  padding: 96px 48px;
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process .section-title { color: var(--bg); }
.process .section-sub { color: #A8A29E; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.process-step {
  padding: 40px 36px 40px 0;
  border-right: 1px solid #2E2E2E;
  padding-right: 36px;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child { border-right: none; padding-left: 36px; padding-right: 0; }
.process-step:not(:first-child):not(:last-child) { padding-left: 36px; }
.step-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}
.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--bg);
}
.step-body {
  font-size: 15px;
  color: #A8A29E;
  line-height: 1.65;
}

/* Proof */
.proof {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.proof-quote blockquote {
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 16px;
}
.proof-quote cite {
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Services */
.services {
  padding: 96px 48px;
  background: var(--accent-light);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
}
.service-card.featured {
  border: 2px solid var(--accent);
}
.card-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 2px;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.card-tier {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
}
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}
.card-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.card-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
}

/* Closing */
.closing {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 48px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.closing-name {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.closing-name span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer-contact {
  font-size: 13px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px; gap: 40px; }
  .hero-content { order: 1; }
  .hero-image-wrap { order: 2; }
  .hero-img { height: 280px; }
  .hero-stats { gap: 24px; }
  .process, .proof, .services, .closing, .footer { padding: 64px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid #2E2E2E; padding: 32px 0; }
  .process-step:last-child { border-bottom: none; padding-left: 0; }
  .proof-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .nav { padding: 20px 24px; }
}

@media (max-width: 500px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .card-header { flex-direction: column; gap: 4px; }
}