:root {
  --bg: #faf7f2;
  --bg-warm: #f5ede0;
  --fg: #1c1917;
  --fg-muted: #78716c;
  --accent: #b45309;
  --accent-warm: #92400e;
  --gold: #d97706;
  --card-bg: #ffffff;
  --border: #e7e0d6;
  --terracotta: #c2410c;
}

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

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

/* NAV */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 5rem 3rem 4rem;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 2px;
}
.hero-card-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.hero-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.hero-card-sub {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hero-card-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}
.hero-card-meta { display: flex; flex-direction: column; gap: 1rem; }
.meta-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-bottom: 0.2rem;
}
.meta-value {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}

/* STATS */
.stats {
  background: var(--fg);
  padding: 3rem 3rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 3rem; }
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-warm);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: #44403c;
}

/* SECTIONS */
.section-eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 3rem;
}

/* THESIS */
.thesis { padding: 5rem 3rem; background: var(--bg-warm); }
.thesis-inner { max-width: 1200px; margin: 0 auto; }
.thesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}
.thesis-item {}
.thesis-icon {
  width: 44px;
  height: 44px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.thesis-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.thesis-body {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PROCESS */
.process { padding: 5rem 3rem; background: var(--bg); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.04em;
  min-width: 4rem;
}
.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CREDENTIALS */
.credentials { padding: 5rem 3rem; background: var(--bg-warm); }
.credentials-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.credentials-body { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.65; margin-top: 1.5rem; }
.credentials-right { display: flex; flex-direction: column; gap: 1rem; }
.credential-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
}
.cred-stat {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.cred-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing { padding: 5rem 3rem; background: var(--fg); }
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--bg-warm);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.0625rem;
  color: #a8a29e;
  line-height: 1.7;
}

/* FOOTER */
.footer { padding: 2rem 3rem; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { margin-bottom: 1rem; }
.footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-tagline { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--fg-muted); }
.footer-disclaimer p { font-size: 0.75rem; color: var(--fg-muted); line-height: 1.6; }

/* URGENCY BANNER */
.urgency-banner {
  background: var(--terracotta);
  padding: 0.875rem 3rem;
}
.urgency-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  flex-shrink: 0;
  animation: urgency-pulse 2s ease-in-out infinite;
}
@keyframes urgency-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.urgency-text {
  font-size: 0.8125rem;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.urgency-text strong {
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* DEALS */
.deals { padding: 5rem 3rem; background: var(--bg); }
.deals-inner { max-width: 1200px; margin: 0 auto; }
.deals-grid { display: grid; grid-template-columns: 1fr; max-width: 640px; margin-bottom: 2rem; }
.deal-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.deal-card-header {
  background: var(--fg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.deal-card-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a8a29e;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.deal-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #faf7f2;
  letter-spacing: -0.02em;
}
.deal-card-badge {
  background: #22c55e;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.625rem;
  border-radius: 1px;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.deal-card-divider { height: 1px; background: var(--border); }
.deal-card-body { padding: 1.75rem 2rem; }
.deal-meta-grid { display: flex; gap: 3rem; margin-bottom: 1.25rem; }
.deal-meta-item {}
.deal-meta-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.deal-card-sub {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.deal-card-footer { padding: 0 2rem 1.75rem; }
.btn-deal {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 1px;
  transition: background 0.15s ease;
}
.btn-deal:hover { background: var(--accent-warm); }
.deals-disclaimer { font-size: 0.75rem; color: var(--fg-muted); max-width: 640px; line-height: 1.6; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-headline { font-size: 2.25rem; }
  .stats-inner { flex-direction: column; gap: 2rem; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .thesis-grid { grid-template-columns: 1fr; }
  .credentials-inner { grid-template-columns: 1fr; gap: 3rem; }
  .closing-headline { font-size: 2rem; }
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .thesis, .process, .credentials, .closing { padding: 3.5rem 1.5rem; }
  .section-headline { font-size: 1.875rem; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 1.875rem; }
  .stat-number { font-size: 2rem; }
}