:root {
  --bg: #faf8f5;
  --bg-alt: #f0ece4;
  --fg: #0d1b2a;
  --fg-muted: #5a6a7a;
  --accent: #c9a55c;
  --accent-dark: #a8894a;
  --white: #ffffff;
  --hero-height: 100vh;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* HERO */
.hero {
  min-height: var(--hero-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 60px;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

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

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-mark {
  opacity: 0.6;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* HOW IT WORKS */
.how-it-works {
  background: var(--fg);
  color: var(--white);
  padding: 100px 48px;
}

.how-it-works .section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.how-it-works h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 64px;
  color: var(--white);
}

.steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 400;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--white);
}

.step p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* NICHES */
.niches {
  padding: 100px 48px;
  background: var(--bg);
}

.niches-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.niche-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.niche-main h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 24px;
  color: var(--fg);
}

.niche-main > p {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.niche-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.niche-points li {
  font-size: 15px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}

.niche-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1.5px;
  background: var(--accent);
}

.niche-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.niche-card {
  background: var(--white);
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: 8px;
  padding: 28px 28px 28px 28px;
  transition: box-shadow 0.2s ease;
}

.niche-card:hover {
  box-shadow: 0 8px 32px rgba(13,27,42,0.06);
}

.niche-card-icon {
  margin-bottom: 16px;
}

.niche-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--fg);
}

.niche-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--bg-alt);
  padding: 100px 48px;
}

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

blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 32px;
}

.philosophy-inner > p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--fg);
}

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

.closing h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 28px;
}

.closing p {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
}

/* FOOTER */
.site-footer {
  background: var(--bg);
  border-top: 1px solid rgba(13,27,42,0.08);
  padding: 40px 48px;
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}

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

.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-mark { display: none; }
  .hero h1 { font-size: 2.8rem; }
  .hero-sub { font-size: 16px; }

  .how-it-works { padding: 80px 24px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }

  .niches { padding: 80px 24px; }
  .niches-grid { grid-template-columns: 1fr; gap: 48px; }

  .philosophy { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .site-footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
