:root {
  --bg: #0f0f0e;
  --bg-warm: #1a1917;
  --fg: #ede9e0;
  --fg-muted: #a09a8e;
  --accent: #d4a54a;
  --accent-soft: rgba(212, 165, 74, 0.12);
  --card-bg: #1e1d1a;
  --card-border: #2e2c27;
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

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

.hero-texture {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--accent-soft) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 100px 40px;
  background: var(--bg-warm);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.philosophy-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.philosophy blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.philosophy p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

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

/* ===== NICHES ===== */
.niches {
  padding: 100px 40px;
}

.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.niches h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.niches-intro {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 56px;
}

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

.niche-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.niche-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.niche-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  opacity: 0.8;
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

/* ===== HOW ===== */
.how {
  padding: 100px 40px;
  background: var(--bg-warm);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

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

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

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

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* ===== CLOSING ===== */
.closing {
  padding: 120px 40px;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 40px;
  border-top: 1px solid var(--card-border);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

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

  .hero-texture {
    width: 400px;
    height: 400px;
    right: -30%;
    top: -10%;
  }

  .philosophy {
    padding: 72px 24px;
  }

  .niches {
    padding: 72px 24px;
  }

  .niche-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .niche-card {
    padding: 28px 24px;
  }

  .how {
    padding: 72px 24px;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .closing {
    padding: 80px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

  .philosophy blockquote {
    font-size: 1.5rem;
  }
}