:root {
  --bg: #FDFBF7;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #C88B3E;
  --accent-light: #F5E6CC;
  --surface: #FFFFFF;
  --surface-alt: #F5F1EB;
  --border: #E8E2D8;
  --radius: 12px;
}

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

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

em { font-style: italic; color: var(--accent); }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-accent {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at 60% 40%, var(--accent-light) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ==================== PROBLEM ==================== */
.problem {
  padding: 100px 40px;
  background: var(--surface);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem-label,
.how-label,
.services-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem h2,
.services h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.problem-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==================== HOW ==================== */
.how {
  padding: 100px 40px;
  background: var(--bg);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}

.how-step {
  flex: 1;
  padding: 0 24px;
}

.how-connector {
  width: 48px;
  min-width: 48px;
  height: 2px;
  background: var(--accent-light);
  margin-top: 24px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.how-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ==================== SERVICES ==================== */
.services {
  padding: 100px 40px;
  background: var(--surface);
}

.services-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-item {
  padding: 36px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.service-icon {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.service-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ==================== CLOSING ==================== */
.closing {
  padding: 120px 40px;
  background: var(--fg);
  color: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 1.05rem;
  color: #A09B94;
  line-height: 1.75;
}

/* ==================== FOOTER ==================== */
.site-footer {
  padding: 40px;
  background: var(--fg);
  border-top: 1px solid #2A2A2A;
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 6px;
}

.footer-detail {
  font-size: 0.82rem;
  color: #6B6560;
}

/* ==================== BUTTONS ==================== */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--fg);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 139, 62, 0.3);
}

.hero-cta-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.btn-closing {
  display: inline-block;
  margin-top: 36px;
  padding: 16px 36px;
  background: transparent;
  color: var(--bg);
  border: 2px solid rgba(253, 251, 247, 0.4);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-closing:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 139, 62, 0.4);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 60px;
    min-height: 70vh;
  }

  .hero-accent {
    width: 80%;
    top: -5%;
    right: -15%;
  }

  .problem, .how, .services, .closing {
    padding: 64px 24px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-steps {
    flex-direction: column;
    gap: 32px;
  }

  .how-connector {
    width: 2px;
    height: 32px;
    min-width: unset;
    margin: 0 0 0 23px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .problem h2,
  .services h2,
  .closing h2 {
    font-size: 1.8rem;
  }
}