* {
  box-sizing: border-box;
}

:root {
  --red: #ed001f;
  --black: #070707;
  --white: #ffffff;
  --muted: #d9d9d9;
  --panel: #111111;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  min-height: calc(100vh - 70px);
}

.hero {
  min-height: 72vh;
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 48%, rgba(0,0,0,.42) 100%),
    url("assets/hero.jpg") center 18% / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(237,0,31,.18), transparent 34%),
    linear-gradient(to top, rgba(0,0,0,.65), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 90%);
  padding: 56px 0;
}

.logo {
  width: min(360px, 78vw);
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.eyebrow {
  color: var(--red);
  font-weight: 800;
  letter-spacing: .18em;
  font-size: .8rem;
}

h1 {
  max-width: 760px;
  margin: 10px 0 18px;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: .98;
  text-transform: uppercase;
}

.lead,
.spanish {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.spanish {
  font-size: 1rem;
  color: #bdbdbd;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--red);
  color: var(--white);
}

.secondary {
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
}

.info-grid {
  width: min(1120px, 90%);
  margin: -45px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 48px;
}

.card {
  background: rgba(17,17,17,.97);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 4px solid var(--red);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}

.card h2 {
  margin-top: 0;
  font-size: 1.55rem;
}

.card p {
  color: #d6d6d6;
  line-height: 1.6;
}

.phone a {
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.small {
  font-size: .92rem;
}

footer {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: #8f8f8f;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .88rem;
}

@media (max-width: 760px) {
  .hero {
    min-height: 78vh;
    background-position: 62% 20%;
  }

  .hero-content {
    padding: 38px 0 70px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    margin-top: -26px;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.4rem, 14vw, 4.2rem);
  }
}
