:root {
  --charcoal: #17191b;
  --charcoal-soft: #22262a;
  --off-white: #f4f2ed;
  --white: #ffffff;
  --grey: #a7adb2;
  --line: rgba(255, 255, 255, 0.14);
  --red: #b21f2d;
  --red-dark: #8e1722;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--charcoal);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 38%, rgba(255,255,255,.08), transparent 23%),
    linear-gradient(120deg, #121416 0%, #24282b 58%, #17191b 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -9% -32% auto;
  width: 620px;
  aspect-ratio: 1;
  border: 86px solid rgba(255,255,255,.035);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: var(--red);
}

.hero__texture {
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(30deg, transparent 46%, rgba(255,255,255,.035) 47%, rgba(255,255,255,.035) 49%, transparent 50%),
    linear-gradient(150deg, transparent 46%, rgba(255,255,255,.025) 47%, rgba(255,255,255,.025) 49%, transparent 50%);
  background-size: 90px 90px;
  mask-image: linear-gradient(to right, transparent 0%, #000 45%, #000 100%);
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 500px;
  height: auto;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
}

.header-phone__label {
  margin-bottom: 3px;
  color: var(--grey);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.header-phone strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.6rem;
  letter-spacing: .02em;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: clamp(48px, 8vw, 105px);
  align-items: center;
  padding: 90px 0 110px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #d5d8da;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 3px;
  margin: 0 12px 3px 0;
  background: var(--red);
}

h1,
h2 {
  margin-top: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  line-height: .98;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 7.2vw, 6.8rem);
  letter-spacing: -.025em;
}

.hero__intro {
  max-width: 710px;
  margin: 0;
  color: #d1d4d6;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.75;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 34px 0 40px;
}

.service-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.045);
  color: #f2f2f2;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--red);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-dark);
}

.button--secondary {
  border-color: rgba(255,255,255,.3);
  color: var(--white);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255,255,255,.06);
}

.contact-card {
  padding: 36px;
  border-top: 4px solid var(--red);
  background: var(--off-white);
  color: var(--charcoal);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}

.contact-card__heading > span {
  display: block;
  margin-bottom: 11px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin-bottom: 26px;
  font-size: 2.2rem;
}

.contact-list {
  margin: 0;
}

.contact-list > div {
  padding: 18px 0;
  border-top: 1px solid #d7d4ce;
}

.contact-list dt {
  margin-bottom: 6px;
  color: #72777b;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.65;
}

.contact-list a {
  text-decoration-color: rgba(178,31,45,.4);
  text-underline-offset: 4px;
}

.summary {
  padding: 88px 0;
}

.summary__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(45px, 8vw, 110px);
}

.eyebrow--dark {
  color: #777b7e;
}

.summary h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
}

.summary__copy {
  padding-top: 28px;
  border-top: 1px solid #c9c6bf;
}

.summary__copy p {
  margin: 0 0 18px;
  color: #4f5457;
  line-height: 1.8;
}

.site-footer {
  background: #101214;
  color: #9ca1a5;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  font-size: .75rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero__content,
  .summary__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-top: 65px;
  }

  .contact-card {
    max-width: 600px;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    align-items: flex-start;
    padding: 24px 0;
  }

  .brand img {
    width: 170px;
  }

  .header-phone__label {
    display: none;
  }

  .header-phone strong {
    font-size: 1.25rem;
  }

  .hero__content {
    gap: 52px;
    padding: 58px 0 72px;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 4.75rem);
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .contact-card {
    padding: 27px 24px;
  }

  .summary {
    padding: 64px 0;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 8px;
  }
}
