:root {
  --bg: #0F0F0F;
  --fg: #F5F3EF;
  --muted: #A09A93;
  --accent: #D4A017;
  --accent-light: #FEF3C7;
  --accent-dim: rgba(212, 160, 23, 0.15);
  --border: #2A2A2A;
  --card-bg: #1A1A1A;
  --white: #FFFFFF;
  --nav-height: 64px;
}

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

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

/* Navbar */
.navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 0 48px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.5) 50%, rgba(15,15,15,0.75) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 80px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 4px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-sub {
  font-size: 18px;
  color: rgba(245,243,239,0.7);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stat-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Workflow */
.workflow {
  background: var(--fg);
  color: var(--bg);
  padding: 96px 48px;
}
.workflow-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(180,83,9,0.25);
  border-radius: 4px;
}
.workflow h2,
.workflow-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.workflow-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.workflow-step {
  background: var(--bg);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.workflow-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.step-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.step-icon {
  opacity: 0.6;
}
.step-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.step-body p {
  font-size: 14px;
  color: rgba(15,15,15,0.55);
  line-height: 1.7;
}

/* Pillars */
.pillars {
  padding: 96px 48px;
  background: var(--bg);
}
.pillars-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}
.pillars-header .section-label {
  margin-bottom: 20px;
}
.pillars-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.pillars-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(212,160,23,0.3);
}
.pillar-visual {
  margin-bottom: 28px;
}
.pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.pillar p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* Outcomes */
.outcomes {
  background: var(--card-bg);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcomes-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}
.outcomes-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.outcomes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.outcome {
  padding: 44px 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  transition: border-color 0.2s ease;
}
.outcome:hover {
  border-color: rgba(212,160,23,0.25);
}
.outcome-metric {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--fg);
}
.outcome p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* Closing */
.closing {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg);
}
.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--fg);
}
.closing p {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.closing-cta:hover {
  background: #E8B020;
  transform: translateY(-2px);
}

/* Footer */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 1024px) {
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar, .hero, .workflow, .pillars, .outcomes, .closing, footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { padding-top: 64px; padding-bottom: 64px; min-height: 80vh; }
  .workflow { padding-top: 64px; padding-bottom: 64px; }
  .pillars, .outcomes { padding-top: 64px; padding-bottom: 64px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr; }
  .hero-stat-row { gap: 28px; }
  footer { flex-direction: column; gap: 8px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .hero-stat-num { font-size: 28px; }
  .navbar { padding: 0 24px; }
}