/* === TOKENS === */
:root {
  --bg: #FAFAF8;
  --fg: #111110;
  --fg-2: #5A5A56;
  --fg-3: #9A9A95;
  --accent: #C9A84C;
  --accent-light: #F5EDDB;
  --border: #E5E5DF;
  --card-bg: #F3F3EF;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--fg);
}

.section-heading.centered { text-align: center; }

/* === NAV === */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: 6rem 3rem 5rem;
  border-bottom: 1px solid var(--border);
}

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

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 1.75rem;
  max-width: 700px;
}

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

/* === STATS === */
.stats {
  padding: 4rem 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--fg);
  color: var(--bg);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: #333;
  margin: 0 2.5rem;
  flex-shrink: 0;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.philosophy-body {
  color: var(--fg-2);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--fg-2);
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
  line-height: 1.5;
}

/* === SERVICES === */
.services {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--card-bg);
}

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

.services .section-heading { margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
}

.service-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.6;
}

/* === OUTCOMES === */
.outcomes {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.outcomes-intro {
  color: var(--fg-2);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.outcome-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.outcome-title {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.outcome-desc {
  font-size: 0.9rem;
  color: var(--fg-2);
}

/* === MANIFESTO === */
.manifesto {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

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

.manifesto-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 2.5rem;
}

.manifesto-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.25;
}

.manifesto-sub {
  font-size: 1.1rem;
  color: var(--fg-2);
  max-width: 520px;
  margin: 0 auto;
}

/* === CLOSING === */
.closing {
  padding: 7rem 3rem;
  background: var(--fg);
  color: var(--bg);
}

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

.closing-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.closing-headline {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--bg);
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.1rem;
  color: #888;
  max-width: 480px;
}

/* === FOOTER === */
.footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-3);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-3);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .philosophy-inner,
  .outcomes-inner { grid-template-columns: 1fr; gap: 3rem; }

  .services-grid { grid-template-columns: 1fr; }

  .stats-inner { flex-wrap: wrap; gap: 2rem; }
  .stat-divider { display: none; }
  .stat { min-width: calc(50% - 1rem); }
}

@media (max-width: 600px) {
  .hero, .philosophy, .services, .outcomes, .manifesto, .closing {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .nav { padding-left: 1.5rem; padding-right: 1.5rem; }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .stat { min-width: 100%; }
}