:root {
  --ink: #0a0a0c;
  --ink-soft: #121216;
  --panel: #18181d;
  --paper: #ffffff;
  --white: #ffffff;
  --muted: #b7b7bd;
  --muted-dark: #626269;
  --red: #e1252c;
  --red-dark: #b3181e;
  --border: rgba(255, 255, 255, 0.1);
  --shell: 2400px;
  --radius: 5px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
iframe:focus-visible {
  outline: 3px solid #ff5e64;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 12, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  min-height: 84px;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 244px;
  gap: 0.65rem;
}

.brand img {
  width: 112px;
  height: 66px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 0.76rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.8rem);
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding-block: 0.7rem;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone,
.button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.header-phone {
  min-height: 44px;
  padding: 0.65rem 1rem;
  background: var(--red);
  box-shadow: 0 8px 28px rgba(225, 37, 44, 0.2);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink-soft);
  cursor: pointer;
}

.menu-button span {
  width: 17px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(225, 37, 44, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(225, 37, 44, 0.05) 1px, transparent 1px),
    var(--ink);
  background-size: 42px 42px;
}

.hero::before {
  position: absolute;
  top: 0;
  right: -20%;
  width: 70%;
  height: 100%;
  background: radial-gradient(circle, rgba(225, 37, 44, 0.17), transparent 63%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  min-height: 610px;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-block: 4.4rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  color: #ff7277;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--red);
  box-shadow: 4px 0 0 rgba(225, 37, 44, 0.45);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.3rem, 5.2vw, 5rem);
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 1.8rem 0 0;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  font-weight: 700;
}

.hero-location {
  max-width: 530px;
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.hero-facts > div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 64px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  background: var(--ink-soft);
}

.hero-facts .fact-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 3px;
  color: var(--red);
  background: #08080a;
  font-weight: 900;
}

.hero-facts .fact-icon .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.hero-facts p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.hero-facts strong {
  display: block;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  padding: 0.8rem 1.25rem;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.mini-button:hover,
.header-phone:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  box-shadow: 0 12px 34px rgba(225, 37, 44, 0.25);
}

.button-primary:hover {
  background: #f02a32;
}

.button-secondary {
  border: 1px solid var(--border);
  background: var(--ink-soft);
}

.hero-mark {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #101014;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.hero-mark::after {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 54%;
  height: 70%;
  border: 2px solid var(--red);
  content: "";
}

.hero-mark-topline,
.hero-mark > p {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-mark-topline {
  padding: 0 0 0.8rem;
}

.hero-mark-topline span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.hero-mark > p {
  justify-content: space-between;
  padding: 0.8rem 0 0;
}

.hero-mark > p span {
  color: var(--red);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 310px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #101014;
}

.hero-photo picture {
  position: absolute;
  inset: 0;
}

.hero-photo picture,
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-photo img {
  object-fit: cover;
  object-position: center;
}

.hero-photo::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 7, 0.15), transparent 45%, rgba(5, 5, 7, 0.2)), linear-gradient(0deg, rgba(5, 5, 7, 0.38), transparent 35%);
  content: "";
  pointer-events: none;
}

.hero-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 0.55rem;
  bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.services {
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
}

.split-heading {
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 4vw, 3.7rem);
}

.section-heading > p:last-child,
.split-heading > p {
  max-width: 620px;
  margin: 1.2rem 0 0;
}

.eyebrow-red {
  margin-bottom: 0.9rem;
  color: var(--red-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 228px;
  flex-direction: column;
  padding: 1.45rem;
  border: 1px solid #d9d9dd;
  border-radius: var(--radius);
  background: #eeeeef;
  box-shadow: 0 2px 0 rgba(10, 10, 12, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: #cfcfd4;
  background: #e8e8ea;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 2rem;
  border-radius: 3px;
  color: var(--red);
  background: var(--ink);
}

.card-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.service-card p {
  margin: 1rem 0 0;
  max-width: 95%;
  color: var(--muted-dark);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
}

.service-status {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.why-us {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
  background: var(--red);
}

.why-us::before {
  position: absolute;
  top: -250px;
  right: -180px;
  width: 600px;
  height: 600px;
  border: 90px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.why-heading {
  position: relative;
  max-width: 760px;
  margin-bottom: 3.4rem;
}

.why-heading h2 {
  font-size: clamp(2.25rem, 3.2vw, 3.4rem);
}

.eyebrow-white {
  margin-bottom: 0.9rem;
  color: var(--white);
}

.eyebrow-white span {
  background: var(--white);
  box-shadow: 4px 0 0 rgba(255, 255, 255, 0.4);
}

.why-heading > p:last-child {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.why-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(103, 0, 5, 0.4);
  box-shadow: 0 16px 40px rgba(120, 0, 5, 0.12);
}

.why-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 2rem;
  border-radius: 3px;
  color: var(--red);
  background: var(--white);
  font-weight: 900;
}

.why-icon .icon {
  width: 1.4rem;
  height: 1.4rem;
}

.why-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.why-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.why-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.why-meta::before {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "✓";
  font-size: 0.6rem;
  line-height: 1;
}

.contact {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--ink);
}

.contact-heading {
  max-width: 650px;
  margin-bottom: 3rem;
}

.contact-heading > p:last-child {
  margin-top: 1.2rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.1rem;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 90px;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.contact-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--red);
  background: #0d0d10;
  font-weight: 900;
}

.contact-card p,
.contact-card address {
  margin: 0;
  font-style: normal;
}

.contact-card a:not(.mini-button) {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-value {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-button {
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  background: var(--red);
  font-size: 0.82rem;
  transition: transform 180ms ease;
}

.mini-button-dark {
  border: 1px solid var(--border);
  background: #0d0d10;
}

.map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.map-overlay {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(8, 8, 10, 0.93);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.map-overlay > .icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--red);
}

.map-overlay p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.map-overlay strong {
  display: block;
  margin-bottom: 0.16rem;
  color: var(--white);
  font-size: 0.86rem;
}

.map-overlay a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-inline: 0.85rem;
  border-radius: 3px;
  color: var(--white);
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
}

.map-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
}

.map-card-heading h3 {
  margin: 0.15rem 0 0;
  font-size: 1rem;
}

.map-card-heading > a {
  color: #ff676d;
  font-size: 0.84rem;
  font-weight: 800;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: calc(100% - 82px);
  min-height: 420px;
  border: 0;
  filter: contrast(1.05);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #070709;
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(180px, 0.7fr) minmax(280px, 0.9fr);
  align-items: start;
  padding-block: 3rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand img {
  width: 84px;
  height: 54px;
  object-fit: contain;
}

.footer-brand span,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-nav,
.footer-legal {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.7rem;
}

.footer-nav p,
.footer-legal p {
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  justify-content: flex-start;
  padding-block: 1.2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 2000px) {
  html {
    font-size: 17px;
    scroll-padding-top: 92px;
  }

  .header-inner {
    min-height: 92px;
  }

  .hero-grid {
    min-height: 700px;
    padding-block: 5rem;
  }

  .hero h1 {
    max-width: 780px;
    font-size: 6rem;
  }

  .hero-lead {
    max-width: 720px;
    font-size: 1.55rem;
  }

  .hero-location {
    max-width: 680px;
    font-size: 1.05rem;
  }

  .hero-photo {
    min-height: 470px;
  }

  .service-card {
    min-height: 260px;
    padding: 1.7rem;
  }

  .why-card {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .desktop-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.6rem max(1rem, calc((100vw - var(--shell)) / 2));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #0b0b0e;
  }

  .desktop-nav.is-open {
    display: flex;
  }

  .desktop-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .header-inner {
    position: relative;
    grid-template-columns: auto 1fr auto auto;
  }

  .menu-button {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 4.5rem 5rem;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-mark {
    width: min(100%, 650px);
  }

  .split-heading,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .why-card {
    min-height: 280px;
  }

  .map-card iframe {
    height: 430px;
  }

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

  .footer-identity {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 1.25rem), var(--shell));
  }

  .header-inner {
    min-height: 72px;
    gap: 0.35rem;
  }

  .brand {
    width: 105px;
  }

  .brand img {
    width: 105px;
    height: 58px;
  }

  .brand-copy {
    display: none;
  }

  .header-phone {
    min-height: 44px;
    justify-self: end;
    gap: 0.35rem;
    padding: 0.5rem 0.55rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .hero-grid {
    gap: 2.5rem;
    padding-block: 3rem 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10.5vw, 2.85rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .button {
    padding-inline: 0.7rem;
    font-size: 0.9rem;
  }

  .hero-mark {
    padding: 0.65rem;
  }

  .hero-photo {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .split-heading {
    gap: 1.5rem;
  }

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

  .service-card {
    display: grid;
    min-height: 0;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "icon body"
      "icon status";
    column-gap: 1rem;
    padding: 1rem;
  }

  .card-icon {
    grid-area: icon;
    width: 36px;
    height: 36px;
    margin: 0;
  }

  .service-card h3 {
    grid-area: title;
    font-size: 1rem;
  }

  .service-card p {
    grid-area: body;
    margin-top: 0.55rem;
    font-size: 0.86rem;
  }

  .service-status {
    grid-area: status;
    margin-top: 0;
    padding-top: 0.8rem;
  }

  .why-card {
    min-height: 0;
    padding: 1.5rem;
  }

  .why-meta {
    margin-top: 1.5rem;
    padding-top: 0;
  }

  .contact-card {
    grid-template-columns: auto 1fr auto;
  }

  .contact-card .mini-button {
    grid-column: auto;
    justify-self: start;
  }

  .map-card iframe {
    height: 350px;
    min-height: 350px;
  }

  .map-card-heading,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-identity {
    grid-column: auto;
  }

  .map-overlay {
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
    grid-template-columns: auto 1fr;
  }

  .map-overlay a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 365px) {
  .brand-copy {
    display: none;
  }

  .brand {
    width: 90px;
  }

  .brand img {
    width: 90px;
    height: 52px;
  }

  .phone-label {
    font-size: 0.72rem;
  }

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

  .contact-card {
    grid-template-columns: auto 1fr;
  }

  .contact-card .mini-button {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
