/* Fonts */
:root {
  --bg: #f7f3ed;
  --bg-alt: #ede8df;
  --fg: #1a1a18;
  --fg-muted: #6b6b67;
  --accent: #1a3a2a;
  --accent-light: #2d5c45;
  --warm: #c45a2a;
  --border: #d4cfc6;
  --white: #ffffff;
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Nav */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

/* Proof */
.proof {
  background: var(--accent);
  padding: 4rem 2rem;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.proof-quote {
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: 1.5rem;
}
.proof-quote p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* Features */
.features {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--warm);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  max-width: 600px;
}
.section-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
}
.feature-num {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--warm);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Process */
.process {
  background: var(--bg-alt);
  padding: 5rem 2rem;
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
}
.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}
.process-step:last-child {
  border-right: none;
}
.step-num {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 1rem;
  line-height: 1;
}
.step-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.step-body p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.step-tags span {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--fg-muted);
}

/* Pricing */
.pricing {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.pricing-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  position: relative;
  background: var(--white);
}
.pricing-card-featured {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}
.pricing-badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--warm);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.pricing-tier {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.pricing-card-featured .pricing-price {
  color: var(--white);
}
.pricing-note {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-card-featured .pricing-note {
  color: rgba(255,255,255,0.6);
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.pricing-card-featured .pricing-desc {
  color: rgba(255,255,255,0.75);
}
.pricing-features {
  list-style: none;
}
.pricing-features li {
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
}
.pricing-card-featured .pricing-features li {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}
.pricing-feature-highlight {
  color: var(--warm) !important;
  font-weight: 500;
}
.pricing-card-featured .pricing-feature-highlight {
  color: rgba(255,255,255,0.95) !important;
}

/* Closing */
.closing {
  background: var(--fg);
  padding: 6rem 2rem;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { order: -1; }
  .hero-image img { height: 280px; }
  .hero-headline { font-size: 2.25rem; }
  .proof-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}