:root {
  --ink: #0A0A0A;
  --bg: #FAF8F3;
  --bg-warm: #F2EDE3;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --text-soft: #4A4A4A;
  --text-mute: #7A7A7A;
  --line: #E5E0D5;
  --hot: #E63E11;
  --hot-deep: #B82D08;
  --gold: #C9A227;
  --green: #1F6F47;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 999px;
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-md: 0 4px 16px rgba(10, 10, 10, 0.06);
  --shadow-lg: 0 24px 48px -16px rgba(10, 10, 10, 0.18);
  --shadow-xl: 0 40px 80px -20px rgba(10, 10, 10, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*::selection {
  background: var(--hot);
  color: white;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}

h1 {
  font-size: clamp(44px, 7vw, 84px);
  letter-spacing: -0.035em;
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.02em;
}

em.script {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--hot);
  font-weight: 400;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hot);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--hot);
}

/* (Header / NAV / footer styles live in common.css) */

/* ===== HERO ===== */
.hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(230, 62, 17, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  margin-bottom: 24px;
  justify-content: center;
}

.hero h1 {
  max-width: 1000px;
  margin: 0 auto 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--hot);
}

.hero-lead {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== STATS ===== */
.stats-section {
  padding: 0 0 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-cell {
  background: var(--surface);
  padding: 40px 24px;
  text-align: center;
}

.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-num span {
  color: var(--hot);
}

.stat-label {
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* ===== STORY ===== */
.story-section {
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.story-head .eyebrow {
  margin-bottom: 20px;
}

.story-head h2 {
  margin-bottom: 0;
}

.story-head h2 em {
  color: var(--hot);
  font-style: italic;
}

.story-body p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 20px;
}

.story-body p strong {
  color: var(--ink);
  font-weight: 600;
}

.story-body p:first-child {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 28px;
}

/* ===== VALUES ===== */
.values-section {
  padding: 100px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head .eyebrow {
  margin-bottom: 18px;
  justify-content: center;
}

.section-head h2 {
  margin-bottom: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 em {
  color: var(--hot);
  font-style: italic;
}

.section-head .sub {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 36px 30px;
  transition: all 0.3s var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--hot);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: white;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-icon svg {
  width: 22px;
  height: 22px;
}

.value-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.value-card p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ===== TEAM ===== */
.team-section {
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink);
}

.team-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--bg-warm), var(--bg));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-initials {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  opacity: 0.92;
}

.team-img::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  pointer-events: none;
}

.team-body {
  padding: 28px 30px 32px;
}

.team-name {
  font-size: 22px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}

.team-creds {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.team-cred {
  background: var(--bg-warm);
  color: var(--text-soft);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ===== HOW WE TEST ===== */
.process-section {
  padding: 100px 0;
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 62, 17, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
  border-radius: 50%;
}

.process-inner {
  position: relative;
  z-index: 2;
}

.process-inner .eyebrow {
  color: var(--gold);
  justify-content: center;
}

.process-inner .eyebrow::before {
  background: var(--gold);
}

.process-inner .section-head h2 {
  color: white;
}

.process-inner .section-head h2 em {
  color: var(--gold);
}

.process-inner .section-head .sub {
  color: rgba(255, 255, 255, 0.7);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-2xl);
  padding: 36px 28px;
  backdrop-filter: blur(20px);
  transition: all 0.3s var(--ease);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.process-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.process-step h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

/* ===== TIMELINE ===== */
.timeline-section {
  padding: 100px 0;
  background: var(--bg);
}

.timeline {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--hot);
}

.timeline-date {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--hot);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 19px;
  margin-bottom: 8px;
}

.timeline-body {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  background: var(--bg-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(230, 62, 17, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner .eyebrow {
  margin-bottom: 20px;
  justify-content: center;
}

.cta-inner h2 {
  margin-bottom: 20px;
}

.cta-inner h2 em {
  color: var(--hot);
  font-style: italic;
}

.cta-inner p {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 36px;
  line-height: 1.65;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: white;
  padding: 16px 28px;
  border-radius: var(--r-full);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}

.btn-primary:hover {
  background: var(--hot);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(230, 62, 17, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  padding: 16px 28px;
  border-radius: var(--r-full);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  transition: all 0.25s var(--ease);
}

.btn-secondary:hover {
  background: var(--ink);
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid .team-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .stats-section,
  .story-section,
  .values-section,
  .team-section,
  .process-section,
  .timeline-section,
  .cta-section {
    padding: 64px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-grid .team-card:last-child {
    max-width: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }
}
