/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --slate:     #1a1f2e;
  --copper:    #c8844a;
  --copper-dk: #a8682e;
  --cream:     #faf7f2;
  --sand:      #e8e0d5;
  --text:      #2d2a26;
  --muted:     #7a7068;
  --white:     #ffffff;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; }
em { font-style: italic; }

/* ─── Nav ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 2.5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, #0d1829 0%, #1a2535 40%, #2a3548 70%, #1a2535 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,132,74,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,132,74,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 8rem 0 5rem;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 1.75rem;
  line-height: 1.1;
}
.hero-headline em {
  color: var(--copper);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(250,247,242,0.68);
  max-width: 560px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--copper);
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(250,247,242,0.5);
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200,132,74,0.3);
}

/* ─── Manifesto ─── */
.manifesto {
  background: var(--slate);
  padding: 7rem 2.5rem;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 2rem;
  font-weight: 500;
}
.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: 2rem;
  border-left: 3px solid var(--copper);
  padding-left: 2rem;
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(250,247,242,0.55);
  max-width: 540px;
  margin-left: 5rem;
  line-height: 1.7;
}

/* ─── Pillars ─── */
.pillars {
  padding: 7rem 2.5rem;
}
.pillars-header {
  margin-bottom: 4rem;
}
.pillars-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text);
  max-width: 520px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--sand);
  border: 1px solid var(--sand);
}
.pillar {
  background: var(--cream);
  padding: 3rem 2.5rem;
}
.pillar-icon {
  margin-bottom: 1.5rem;
}
.pillar-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.pillar-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pillar-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}
.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
}

/* ─── Process ─── */
.process {
  background: var(--cream);
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--sand);
}
.process-header { margin-bottom: 4rem; }
.process-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text);
  max-width: 480px;
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 900px;
}
.step {
  flex: 1;
  padding-right: 0;
}
.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--copper);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}
.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--sand), var(--copper), var(--sand));
  margin: 0 1.5rem;
  align-self: flex-start;
  margin-top: 3.5rem;
}

/* ─── Closing ─── */
.closing {
  background: var(--slate);
  padding: 8rem 2.5rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(250,247,242,0.55);
  line-height: 1.75;
}

/* ─── Footer ─── */
.site-footer {
  background: #111827;
  padding: 2.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(250,247,242,0.3);
  font-style: italic;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero { padding: 0 1.5rem; }
  .hero-content { padding: 7rem 0 4rem; }
  .hero-headline { font-size: 2.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .manifesto { padding: 5rem 1.5rem; }
  .manifesto-body { margin-left: 0; }
  .pillars { padding: 5rem 1.5rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { padding: 2rem 1.5rem; }
  .process { padding: 5rem 1.5rem; }
  .process-steps { flex-direction: column; gap: 2.5rem; align-items: flex-start; }
  .step-connector { width: 40px; height: 1px; margin: 0; background: linear-gradient(90deg, var(--sand), var(--copper)); }
  .closing { padding: 5rem 1.5rem; }
  .site-footer { flex-direction: column; gap: 0.75rem; text-align: center; }
  .site-nav { padding: 1rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { display: none; }
}
