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

:root {
  --bg: #0B0B0D;
  --bg-2: #111115;
  --bg-3: #18181D;
  --fg: #F0EDE8;
  --fg-2: #A8A49D;
  --fg-3: #6B6862;
  --accent: #E86E1A;
  --accent-dim: rgba(232, 110, 26, 0.12);
  --accent-border: rgba(232, 110, 26, 0.3);
  --white: #FFFFFF;
  --border: rgba(240, 237, 232, 0.07);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
.font-display { font-family: 'Fraunces', Georgia, serif; }

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(12px);
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  width: 34px; height: 34px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  letter-spacing: -0.5px;
}
.nav-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 500;
}

/* === HERO === */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 48px;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  font-family: 'Fraunces', serif;
  font-size: clamp(140px, 22vw, 340px);
  font-weight: 700;
  color: rgba(232, 110, 26, 0.03);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-kicker {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--fg-2);
  background: var(--bg-2);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* === STATS === */
.stats {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* === PROCESS === */
.process {
  padding: 120px 48px;
}

.process-header {
  max-width: 640px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.process-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.15;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  padding: 0 20px;
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-dim);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  line-height: 1;
}

.step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

.step-desc {
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.65;
}

.step-connector {
  width: 1px;
  height: 120px;
  background: var(--border);
  margin: 80px auto 0;
  align-self: center;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-2);
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  position: relative;
  padding-left: 32px;
}

.manifesto-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.manifesto-body {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  padding: 140px 48px 120px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--accent-border));
}

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.65;
  font-weight: 300;
}

.closing-vision {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.vision-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-3);
}

.vision-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/* === FOOTER === */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-brand { display: flex; align-items: center; gap: 10px; }

.footer-logo {
  width: 30px; height: 30px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}

.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-3);
}

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

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .hero { padding: 0 24px; min-height: 80vh; }
  .stats { padding: 60px 24px; }
  .stats-grid { flex-direction: column; gap: 0; }
  .stat-item { padding: 30px 0; }
  .stat-divider { width: 80px; height: 1px; margin: 0 auto; }
  .process { padding: 80px 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .step-connector { width: 40px; height: 1px; margin: 16px auto; }
  .manifesto { padding: 80px 24px; }
  .closing { padding: 100px 24px 80px; }
  .footer { padding: 40px 24px; }
  .hero-bg-text { font-size: 28vw; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .process-title { font-size: 30px; }
  .closing-headline { font-size: 28px; }
}