:root {
  --sand: #F2EDE4;
  --sand-dark: #E8E1D5;
  --slate: #18181B;
  --slate-mid: #3A3A3A;
  --amber: #C8956C;
  --amber-light: #E8C4A4;
  --cream: #FAF8F5;
  --text: #2A2A2A;
  --text-muted: #6B6B6B;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 24, 27, 0.88) 0%,
    rgba(24, 24, 27, 0.5) 40%,
    rgba(24, 24, 27, 0.15) 70%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  color: #F8F4EE;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-lede {
  font-size: 1.05rem;
  color: rgba(248, 244, 238, 0.78);
  max-width: 560px;
  line-height: 1.65;
  font-weight: 300;
}

/* WHAT IT DOES */
.what-it-does {
  padding: 7rem 0;
  background: var(--cream);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
}

.cap {}

.cap-icon {
  width: 40px;
  height: 40px;
  background: var(--sand-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.cap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--slate);
}

.cap p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* WORKFLOWS */
.workflows {
  padding: 7rem 0;
  background: var(--sand);
}

.workflow-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.workflow-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.workflow-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--slate);
  margin-bottom: 2.5rem;
}

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

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--sand-dark);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  min-width: 1.8rem;
  padding-top: 0.15rem;
}

.step strong {
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.2rem;
  color: var(--slate);
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* OUTCOMES */
.outcomes {
  padding: 7rem 0;
  background: var(--slate);
}

.outcomes .section-label { color: var(--amber-light); }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.outcome { text-align: center; }

.outcome-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.outcome-desc {
  font-size: 0.85rem;
  color: rgba(248, 244, 238, 0.65);
  line-height: 1.5;
}

.outcomes-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(248, 244, 238, 0.7);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.4;
}

/* MANIFESTO */
.manifesto {
  padding: 7rem 0;
  background: var(--cream);
}

.manifesto-content { max-width: 720px; }

.manifesto-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--slate);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.manifesto-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* CLOSING */
.closing {
  padding: 8rem 0;
  background: var(--sand);
}

.closing-content { text-align: center; }

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 1rem;
}

.closing p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* FOOTER */
.footer {
  padding: 3rem 0;
  background: var(--slate);
}

.footer-inner { text-align: center; }

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--amber-light);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(248, 244, 238, 0.4);
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .capabilities-grid { grid-template-columns: 1fr; gap: 2rem; }
  .workflow-layout { grid-template-columns: 1fr; gap: 3rem; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 3rem 1.5rem 3.5rem; }
  .container { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .outcome-stat { font-size: 2.8rem; }
}