:root {
  --bg: #faf8f5;
  --bg-warm: #f3efe8;
  --fg: #1a1714;
  --fg-muted: #6b6560;
  --accent: #c8602a;
  --accent-soft: #e8a878;
  --accent-bg: #fdf0e6;
  --card-bg: #ffffff;
  --border: #e8e3dc;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  padding: 120px 24px 80px;
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-warm) 60%, var(--accent-bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 96, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stat-row {
  display: flex;
  gap: 48px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  max-width: 180px;
}

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

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  position: sticky;
  top: 40px;
}

.problem-right p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}

.problem-right p:last-child {
  color: var(--fg);
  font-weight: 500;
}

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

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

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 16px;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 56px;
}

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

.how-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.how-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent-soft);
  margin-bottom: 16px;
  font-weight: 600;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.how-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.65);
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 24px;
  background: var(--bg-warm);
}

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

.services .section-tag {
  color: var(--accent);
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 56px;
}

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

.service-item {
  background: var(--card-bg);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: var(--accent-bg);
  border-radius: 12px;
}

.service-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

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

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.closing-vision p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 24px;
  background: var(--fg);
  color: rgba(250, 248, 245, 0.5);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bg);
}

.footer-note {
  font-size: 0.85rem;
}

/* ===== SITE NAV ===== */
.site-nav {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.site-nav-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.site-nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.site-nav-links a:hover { color: var(--accent); }

.site-nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background 0.15s, transform 0.1s !important;
}

.site-nav-cta:hover {
  background: #b5531f;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ===== HERO CTA ===== */
.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 3px 16px rgba(200, 96, 42, 0.3);
}

.hero-cta-primary:hover {
  background: #b5531f;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 96, 42, 0.4);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}

.hero-cta-secondary:hover { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; }
  .hero-stat-row { flex-direction: column; gap: 24px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  
  .problem-inner { grid-template-columns: 1fr; gap: 32px; }
  .problem-left h2 { position: static; }
  
  .how { padding: 80px 20px; }
  .how-grid { grid-template-columns: 1fr; gap: 20px; }
  
  .services { padding: 80px 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  
  .closing { padding: 80px 20px; }
  
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1.05rem; }
  .stat-num { font-size: 2.2rem; }
}