:root {
  --red: #d72638;
  --red-dark: #a91727;
  --black: #111417;
  --graphite: #23272b;
  --graphite-2: #2d333b;
  --surface: #343b44;
  --steel: #77818a;
  --text: #f5f5f5;
  --muted: #c5c5c5;
  --white: #fff;
  --line: #4a535d;
  --max: 1160px;
  --radius: 3px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(245, 245, 245, 0.025) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(180deg, var(--graphite) 0%, #1c2024 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

a {
  color: inherit;
}

.hero,
.services,
.gallery,
.contact,
.site-footer {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 10px max(16px, calc((100vw - var(--max)) / 2));
  border: 0;
  border-bottom: 4px solid var(--red);
  background: #15191d;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  width: min(215px, 58vw);
  padding: 4px;
  border: 1px solid rgba(215, 38, 56, 0.75);
  border-radius: var(--radius);
  background: var(--red);
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  background: var(--red);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr);
  min-height: calc(100vh - 88px);
  padding: 18px 0 34px;
}

.hero-photo {
  min-height: 610px;
  border: 1px solid #080a0c;
  border-right: 0;
  background: var(--black);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #080a0c;
  border-left: 9px solid var(--red);
  background: #121619;
  color: var(--white);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 3.8vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-panel p {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.15rem;
  overflow-wrap: anywhere;
}

.call-button,
.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 20px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.22);
}

.call-button {
  width: fit-content;
  margin-top: 12px;
  font-size: 1.18rem;
}

.call-button:hover,
.map-button:hover {
  background: var(--red-dark);
}

.services {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 9px solid var(--red);
  scroll-margin-top: 122px;
  background: var(--graphite);
}

.section-title {
  padding: 24px;
  border: 1px solid var(--line);
  background: #171b1f;
  color: var(--white);
}

.section-title h2 {
  max-width: 520px;
}

.service-list {
  display: grid;
  gap: 8px;
}

.service-list article {
  padding: 17px 18px;
  border-left: 7px solid var(--red);
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.service-list article:nth-child(2n) {
  border-left-color: var(--red);
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
  padding: 16px 0 34px;
  scroll-margin-top: 122px;
  background: var(--graphite);
}

.gallery figure {
  position: relative;
  min-height: 270px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
}

.gallery .wide {
  grid-row: span 2;
  min-height: 550px;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-left: 5px solid var(--red);
  background: rgba(23, 27, 29, 0.92);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 18px;
  padding: 30px 0 40px;
  border-top: 9px solid var(--red);
  scroll-margin-top: 122px;
  background: var(--graphite);
}

.contact-heading {
  padding: 26px;
  background: var(--red);
  color: var(--white);
}

.contact-heading .eyebrow {
  color: var(--white);
}

.phone {
  display: block;
  margin-top: 20px;
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.people {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px;
}

.person-card,
.address p {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--graphite-2);
  color: var(--muted);
}

.person-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.person-card h3 {
  margin: 0;
  font-size: 1rem;
}

.person-card p {
  margin: 2px 0 0;
  color: var(--muted);
}

.person-card a {
  display: inline-flex;
  margin-right: 12px;
  color: var(--text);
  font-weight: 700;
  text-decoration-color: rgba(245, 245, 245, 0.35);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.address strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.address {
  border-left: 6px solid var(--red);
  background: var(--graphite-2);
}

.address p {
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.map-button {
  width: calc(100% - 40px);
  margin: 20px;
}

.map-frame {
  grid-column: 1 / -1;
  width: 100%;
  height: 310px;
  border: 0;
  border-top: 1px solid var(--line);
  filter: grayscale(0.35) contrast(1.05);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 34px;
  border-top: 5px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer img {
  width: 124px;
  padding: 4px;
  background: var(--red);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .services,
  .contact,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-photo {
    border-right: 1px solid #080a0c;
    border-bottom: 0;
  }

  .hero-panel {
    border-left: 1px solid #080a0c;
    border-top: 9px solid var(--red);
  }

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

  .address {
    border-left: 0;
    border-top: 6px solid var(--red);
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(260px, calc(100vw - 28px));
    padding: 8px;
    border: 1px solid rgba(215, 38, 56, 0.45);
    background: var(--graphite);
  }

  .site-nav.is-open {
    display: grid;
  }

  h1 {
    font-size: clamp(1.95rem, 8vw, 2.45rem);
  }

  .hero-photo,
  .hero-photo img {
    min-height: 330px;
  }

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

  .gallery .wide,
  .gallery figure {
    grid-row: auto;
    min-height: 285px;
  }

  .site-footer {
    display: block;
  }

  .site-footer div {
    align-items: flex-start;
    margin-bottom: 16px;
  }
}

@media (max-width: 640px) {
  .hero,
  .services,
  .gallery,
  .contact,
  .site-footer {
    width: calc(100% - 28px);
    max-width: 350px;
    margin-left: 14px;
    margin-right: auto;
  }

  .brand {
    width: 190px;
  }

  .hero-panel,
  .section-title,
  .contact-heading {
    padding: 22px 18px;
  }

  h1 {
    font-size: clamp(1.85rem, 7.4vw, 2.2rem);
  }

  h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.85rem);
  }

  .hero-panel p {
    font-size: 1rem;
  }

  .service-list article {
    padding: 15px;
  }

  .phone {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .call-button {
    width: 100%;
  }
}
