/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf8f4;
  --bg-alt: #f0ede7;
  --fg: #1a1814;
  --fg-muted: #6b6460;
  --accent: #b8812a;
  --accent-dark: #8a6018;
  --accent-light: #d4a654;
  --warm: #e8c97a;
  --white: #ffffff;
  --radius: 6px;
}

html { scroll-behavior: smooth; }

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

/* ===== TYPOGRAPHY ===== */
.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 129, 42, 0.12);
}

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

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: -0.01em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(232, 201, 122, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(184, 129, 42, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Decorative rings */
.hero__deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184, 129, 42, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__ring--1 { width: 400px; height: 400px; }
.hero__ring--2 { width: 600px; height: 600px; }
.hero__ring--3 { width: 800px; height: 800px; }

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 6rem 2rem;
}

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

.manifesto__rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}

.manifesto__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
  color: var(--warm);
  margin-bottom: 1.5rem;
}

.manifesto__attr {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
}

/* ===== APPROACH ===== */
.approach {
  padding: 7rem 2rem;
  background: var(--bg);
}

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

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

.approach__card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--accent);
}

.approach__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(184, 129, 42, 0.15);
  margin-bottom: 1rem;
  line-height: 1;
}

.approach__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.approach__card-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 7rem 2rem;
  background: var(--fg-alt);
}

.outcomes__inner {
  max-width: 820px;
  margin: 0 auto;
}

.outcomes__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.outcomes__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(26, 24, 20, 0.08);
}

.outcomes__item:first-child {
  border-top: 1px solid rgba(26, 24, 20, 0.08);
}

.outcomes__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.outcomes__text {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.65;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  background: var(--accent);
  text-align: center;
}

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

.closing__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.closing__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--fg);
  padding: 4rem 2rem;
  text-align: center;
}

.footer__inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--warm);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .approach__grid {
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(26, 24, 20, 0.08);
  }

  .approach__card {
    border-top: none;
    border-left: 3px solid var(--accent);
  }

  .hero {
    padding: 7rem 1.5rem 5rem;
  }

  .manifesto,
  .approach,
  .outcomes,
  .closing {
    padding: 5rem 1.5rem;
  }
}