:root {
  --black: #050505;
  --ink: #101010;
  --panel: #171717;
  --panel-soft: #222;
  --white: #f7f7f7;
  --muted: #b9b9b9;
  --line: rgba(255, 255, 255, 0.16);
  --red: #e50914;
  --red-dark: #9f0610;
  --silver: #dddddd;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(229, 9, 20, 0.18), transparent 28rem),
    linear-gradient(135deg, #050505 0%, #121212 45%, #050505 100%);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(229, 9, 20, 0.6) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent 0%, black 70%, black 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: var(--silver);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--red);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-cta,
.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.section-band,
.content-section,
.split-section,
.about-section,
.contact-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(40px, 6vw, 76px) 0 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 10vw, 8.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 620px;
  color: var(--silver);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 0;
}

.hero-stats div,
.service-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.hero-stats div {
  padding: 16px;
}

.hero-stats dt {
  color: var(--red);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-cutout {
  position: relative;
  margin: 0;
  isolation: isolate;
}

.hero-cutout::before {
  content: "";
  position: absolute;
  inset: 7% 3% 4% 22%;
  z-index: -1;
  background:
    linear-gradient(160deg, rgba(229, 9, 20, 0.9), rgba(229, 9, 20, 0.08) 62%),
    radial-gradient(circle at 56% 28%, rgba(255, 255, 255, 0.18), transparent 24rem);
  clip-path: polygon(27% 0, 100% 7%, 87% 100%, 0 88%);
  filter: drop-shadow(0 24px 58px rgba(229, 9, 20, 0.22));
}

.hero-cutout::after {
  content: "";
  position: absolute;
  inset: auto 0 4% 8%;
  z-index: -1;
  height: 18%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.72), transparent 68%);
}

.hero-cutout img {
  width: min(100%, 520px);
  max-height: calc(100vh - 125px);
  margin-left: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.72));
}

.intro-strip {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  padding: 24px 18px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  text-transform: uppercase;
}

.intro-strip p {
  margin: 0;
  color: white;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.9;
}

.intro-strip span {
  color: white;
  font-weight: 900;
}

.content-section,
.split-section,
.about-section,
.contact-section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.section-heading {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 250px;
  padding: 24px;
}

.service-card p,
.split-section p,
.about-copy p,
.contact-section p {
  color: var(--silver);
  line-height: 1.65;
}

.service-wide {
  grid-column: span 2;
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid var(--red);
  color: var(--red);
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fit-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding: 18px 18px 18px 58px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver);
  font-weight: 700;
}

.fit-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  translate: 0 -50%;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) 1fr;
  gap: clamp(28px, 7vw, 84px);
  align-items: center;
}

.about-image {
  max-height: 560px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.brush-label {
  display: inline-block;
  margin-bottom: 4px;
  padding: 8px 22px;
  background: var(--red);
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.65rem, 4vw, 3rem);
  line-height: 1;
  rotate: -2deg;
}

.about-copy h2 {
  margin-bottom: 6px;
  color: var(--red);
  font-family: "Permanent Marker", cursive;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  line-height: 1;
  text-transform: none;
}

.credential {
  max-width: 560px;
  color: white !important;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver);
  overflow-wrap: anywhere;
}

.contact-row span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-cutout img {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 5.3rem);
  }

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

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-stats div {
    min-height: 86px;
    padding: 12px 10px;
  }

  .hero-stats dt {
    font-size: 1.55rem;
  }

  .hero-stats dd {
    font-size: 0.78rem;
  }

  .service-wide {
    grid-column: auto;
  }

  .intro-strip {
    display: block;
    text-align: center;
  }

  .intro-strip span {
    display: block;
    margin-top: 8px;
  }

  .about-image {
    max-height: 420px;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 10px;
  }
}
