/* .hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
    url("../images/Caravan.jpeg") no-repeat 50% 50%;
  background-size: cover;
  padding-top: 5rem;
} */

/* ─── Stats / Metrics Strip ─── */
.stats-strip {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 3rem 2.5rem;
}
.stats-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: #000;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
  text-transform: none;
}
.stat-label {
  font-family: "Sohne", "Helvetica Neue", sans-serif;
  font-size: 0.76rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}
.stat-item--award { gap: 0.5rem; }
.stat-award-frame {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
}
.stat-laurel-icon {
  width: 150px;
  height: auto;
  display: block;
}
.stat-num--award {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: 0.03em;
  color: #000;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  text-transform: none;
}

@media screen and (max-width: 900px) {
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 1.5rem;
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)  { border-bottom: none; }
}
@media screen and (max-width: 600px) {
  .stats-strip { padding: 2rem 1rem; }
  .stats-strip__inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { padding: 1.25rem 0.75rem; }
  .stat-num  { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .stat-award-frame,
  .stat-laurel-icon { width: 110px; }
  .stat-num--award { font-size: clamp(1.3rem, 5vw, 1.7rem); }
  .stat-label { font-size: 0.7rem; }
}

/* ─── Founder Manifesto Block ─── */
.manifesto-strip {
  background: #000;
  padding: clamp(6rem, 10vw, 11rem) 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 13vw, 16rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 2rem;
}
.manifesto-statement {
  font-family: "Sohne", "Helvetica Neue", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  text-transform: none;
}
.manifesto-accent {
  color: #0a5bff;
  font-weight: 700;
}
.manifesto-link {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: "Sohne", "Helvetica Neue", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 0.3rem;
  transition: color 0.2s ease, border-color 0.2s ease;
  text-transform: none;
}
.manifesto-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

@media screen and (max-width: 600px) {
  .manifesto-strip { padding: 4rem 2rem; }
  .manifesto-statement { font-size: clamp(1.35rem, 6vw, 1.8rem); }
}
