/* Base */
:root {
  --bg: #f5f0e8;
  --bg-alt: #ede8de;
  --fg: #1a1a0e;
  --fg-muted: #5c5847;
  --accent: #c9a84c;
  --accent-dark: #9e7e30;
  --green: #2a5c3f;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 64px 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape--circle-1 {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.shape--circle-2 {
  position: absolute;
  bottom: -200px;
  right: 200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(42,92,63,0.06) 0%, transparent 70%);
}

.shape--line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: var(--green);
}

.hero__sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero__compass {
  position: absolute;
  right: 80px;
  bottom: 80px;
  width: 120px;
  height: 120px;
  opacity: 0.7;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Philosophy */
.philosophy {
  padding: 120px 64px;
  background: var(--bg-alt);
}

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

.philosophy__label,
.how__label,
.journeys__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.philosophy__headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 720px;
}

.philosophy__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

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

.philosophy__block {
  border-left: 2px solid var(--accent);
  padding-left: 28px;
}

.philosophy__block blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 16px;
}

.philosophy__block cite {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* How it works */
.how {
  padding: 120px 64px;
  background: var(--bg);
}

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

.how__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  margin-top: 60px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}

.step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  padding-top: 4px;
}

.step__content h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.step__content p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Journeys */
.journeys {
  padding: 120px 64px;
  background: var(--green);
  color: var(--bg);
}

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

.journeys__label {
  color: var(--accent);
}

.journeys__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 60px;
}

.journey-card__icon {
  margin-bottom: 20px;
}

.journey-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 12px;
}

.journey-card p {
  font-size: 0.9375rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
}

/* Manifesto */
.manifesto {
  padding: 120px 64px;
  background: var(--bg);
  text-align: center;
}

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

.manifesto__rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}

.manifesto__headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: 36px;
}

.manifesto__body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 28px;
}

.manifesto__closing {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
}

/* Footer */
.footer {
  padding: 48px 64px;
  border-top: 1px solid rgba(92,88,71,0.15);
  background: var(--bg-alt);
}

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

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.footer__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 28px; }
  .philosophy { padding: 80px 28px; }
  .how { padding: 80px 28px; }
  .journeys { padding: 80px 28px; }
  .manifesto { padding: 80px 28px; }
  .footer { padding: 40px 28px; }

  .hero__compass { display: none; }
  .hero__scroll { display: none; }

  .philosophy__split { grid-template-columns: 1fr; gap: 40px; }
  .how__steps { grid-template-columns: 1fr; gap: 40px; }
  .journeys__grid { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; gap: 20px; align-items: flex-start; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
}