:root {
  --red: #ed1c24;
  --red-dark: #b50f16;
  --black: #080808;
  --ink: #151515;
  --muted: #666;
  --paper: #fff;
  --soft: #f5f5f5;
  --line: #e8e8e8;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(180px, 330px) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand img { width: min(330px, 42vw); height: auto; }
.nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 30px);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav a, .header-call { text-decoration: none; }
.nav a:hover, .header-call:hover { color: var(--red); }
.header-call {
  color: var(--paper);
  background: var(--black);
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 500px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 8vw, 112px) clamp(18px, 4vw, 54px) clamp(44px, 7vw, 80px);
}
.hero-copy h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.6rem, 5.1vw, 5.4rem);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.lead {
  margin: 24px 0 0;
  max-width: 680px;
  color: #393939;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { color: white; background: var(--red); box-shadow: 0 14px 30px rgba(237,28,36,.22); }
.button.primary:hover { background: var(--red-dark); }
.button.secondary { color: var(--ink); background: #f1f1f1; }
.button.light { color: white; border: 1px solid rgba(255,255,255,.25); }
.hero-card {
  overflow: hidden;
  border-radius: 30px;
  background: #111;
  box-shadow: 0 32px 70px rgba(0,0,0,.18);
}
.hero-card img { width: 100%; aspect-ratio: 4 / 4.5; object-fit: cover; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #272727;
}
.stat-row span {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 14px;
  color: white;
  background: #111;
  font-size: .82rem;
  font-weight: 850;
  text-align: center;
}

.section-pad { padding: clamp(56px, 8vw, 100px) clamp(18px, 4vw, 54px); }
.section-heading, .intro-grid, .services, .split, .testimonials, .community {
  max-width: var(--max);
  margin: 0 auto;
}
.section-heading { margin-bottom: 28px; }
h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
h3 { margin: 0 0 10px; font-size: 1.15rem; }
p { font-size: 1rem; }
.intro { border-top: 1px solid var(--line); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}
.intro-grid p { margin-top: 0; color: #424242; font-size: 1.08rem; }

.services { background: var(--soft); max-width: none; }
.services > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-grid article {
  min-height: 198px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.service-grid article:nth-child(1), .service-grid article:nth-child(8) {
  border-color: rgba(237,28,36,.24);
  box-shadow: inset 4px 0 0 var(--red);
}
.service-grid p { margin: 0; color: #545454; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}
.split-image img { border-radius: 28px; aspect-ratio: 4 / 3; object-fit: cover; }
.audience-list { display: grid; gap: 14px; margin-top: 28px; }
.audience-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.audience-list strong { text-transform: uppercase; letter-spacing: .04em; }
.audience-list span { color: #4d4d4d; }

.dark-band {
  display: grid;
  grid-template-columns: minmax(260px, 470px) 1fr;
  gap: clamp(28px, 7vw, 86px);
  align-items: center;
  padding: clamp(54px, 8vw, 100px) clamp(18px, 4vw, 54px);
  color: white;
  background: radial-gradient(circle at 15% 15%, rgba(237,28,36,.22), transparent 34%), #050505;
}
.dark-band > * { max-width: var(--max); }
.dark-logo-wrap {
  justify-self: end;
  width: min(470px, 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: #000;
  padding: clamp(16px, 3vw, 34px);
}
.dark-copy { max-width: 760px; }
.dark-copy p:not(.section-kicker) { color: #d5d5d5; font-size: 1.1rem; }
.red { color: var(--red); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
blockquote {
  margin: 0;
  min-height: 220px;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(0,0,0,.06);
}
blockquote p { margin: 0 0 24px; font-size: 1.05rem; }
cite { color: var(--red); font-style: normal; font-weight: 950; }

.community {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(28px, 6vw, 70px);
  border-top: 1px solid var(--line);
}
.community p:last-child { margin: 0; color: #454545; font-size: 1.18rem; }

.contact {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 54px);
  background: linear-gradient(135deg, #171717, #030303);
}
.contact-card {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 70px);
  color: white;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(237,28,36,.22), rgba(237,28,36,.04));
  border: 1px solid rgba(255,255,255,.12);
}
.contact-card p:not(.section-kicker) { color: #dfdfdf; max-width: 720px; }

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px clamp(18px, 4vw, 54px);
  color: white;
  background: #000;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer img { width: min(340px, 100%); }
.footer p { margin: 0 0 6px; color: #d6d6d6; }
.footer strong { color: white; }
.footer a { color: #fff; text-decoration-color: rgba(255,255,255,.3); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; gap: 14px; }
  .brand img { width: min(300px, 66vw); }
  .nav { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; }
  .hero, .intro-grid, .split, .dark-band, .community { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; }
  .hero-card { max-width: 620px; }
  .dark-logo-wrap { justify-self: start; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { padding: 14px 16px; }
  .header-call { padding: 9px 12px; font-size: .86rem; }
  .nav { gap: 18px; font-size: .8rem; }
  .hero-copy h1 { font-size: clamp(2.5rem, 15vw, 4.2rem); }
  .stat-row { grid-template-columns: 1fr; }
  .stat-row span { min-height: 52px; }
  .service-grid { grid-template-columns: 1fr; }
  .audience-list div { grid-template-columns: 1fr; gap: 4px; }
  .button { width: 100%; }
}

/* Mobile stability pass */
html, body { max-width: 100%; overflow-x: hidden; }
main, section, header, footer, .hero, .hero-copy, .hero-card, .site-header, .intro-grid, .split, .dark-band, .community { min-width: 0; }
.hero-copy h1, h2 { overflow-wrap: normal; max-width: 100%; }

@media (max-width: 620px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
  }
  .brand { flex: 1 1 100%; }
  .brand img { width: min(320px, 88vw); }
  .header-call { order: 3; width: auto; font-size: .82rem; }
  .nav {
    order: 2;
    flex: 1 1 100%;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0;
  }
  .nav::-webkit-scrollbar { display: none; }
  .hero {
    padding-left: 16px;
    padding-right: 16px;
    gap: 26px;
  }
  .hero-copy { order: 0; }
  .hero-card { order: 1; }
  .hero-card { width: 100%; }
  .hero-copy h1 {
    font-size: clamp(2.15rem, 12vw, 3.35rem);
    letter-spacing: -.055em;
    line-height: .96;
  }
  .lead { font-size: 1.02rem; }
}
