:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #141714;
  background: #f3f4f1;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #f3f4f1;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  border-top: 5px solid #d7193f;
  background: #f3f4f1;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: calc(100vh - 5px);
  overflow: hidden;
  padding: 28px clamp(24px, 6vw, 96px) 34px;
}

.page-shell::before,
.page-shell::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.page-shell::before {
  top: 0;
  right: clamp(24px, 6vw, 96px);
  width: min(31vw, 420px);
  height: 38%;
  border-right: 1px solid #c4c9c4;
  border-bottom: 1px solid #c4c9c4;
}

.page-shell::after {
  right: clamp(24px, 6vw, 96px);
  bottom: 92px;
  width: 10px;
  height: 10px;
  background: #0d7d83;
  box-shadow: -28px 0 0 #f1bd2c, 0 -28px 0 #d7193f;
}

.site-header,
.hero,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 56px;
  height: 28px;
}

.location,
.status,
.site-footer {
  font-size: 13px;
}

.location {
  color: #5d655f;
}

.hero {
  align-self: center;
  width: min(100%, 900px);
  padding: 72px 0;
}

.status {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 34px;
  color: #4f5952;
  font-weight: 650;
  text-transform: uppercase;
}

.status span {
  width: 34px;
  height: 2px;
  background: #0d7d83;
}

h1 {
  max-width: 100%;
  margin: 0;
  font-size: 76px;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

.tagline {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: 34px;
  font-weight: 630;
  line-height: 1.18;
  letter-spacing: 0;
}

.intro {
  max-width: 650px;
  margin: 28px 0 0;
  color: #4b544d;
  font-size: 18px;
  line-height: 1.65;
}

.business-details {
  display: grid;
  width: min(100%, 760px);
  margin-top: 34px;
  border-top: 1px solid #c4c9c4;
  border-bottom: 1px solid #c4c9c4;
}

.business-details div {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) 1fr;
  gap: 20px;
  padding: 16px 0;
}

.business-details div + div {
  border-top: 1px solid #d6dad5;
}

.business-details span {
  color: #5d655f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.business-details strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  border-bottom: 2px solid #d7193f;
  padding: 0 0 8px;
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
}

.contact-link span {
  color: #d7193f;
  font-size: 22px;
  line-height: 1;
  transition: transform 160ms ease;
}

.contact-link:hover span,
.contact-link:focus-visible span {
  transform: translateX(4px);
}

.contact-link:focus-visible,
.site-footer a:focus-visible,
.brand:focus-visible {
  outline: 3px solid #f1bd2c;
  outline-offset: 5px;
}

.site-footer {
  border-top: 1px solid #c4c9c4;
  padding-top: 24px;
  color: #4f5952;
}

.capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-weight: 700;
}

.capabilities span + span::before {
  margin-right: 18px;
  color: #d7193f;
  content: "/";
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  text-align: right;
}

.footer-meta span + span::before,
.footer-meta a::before {
  margin-right: 18px;
  color: #d7193f;
  content: "/";
}

.site-footer a {
  font-weight: 650;
  text-underline-offset: 4px;
}

@media (max-width: 700px) {
  .page-shell {
    padding: 22px 22px 26px;
  }

  .page-shell::before {
    right: 22px;
    width: 30%;
    height: 24%;
  }

  .page-shell::after {
    right: 22px;
    bottom: 114px;
  }

  .location {
    display: none;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .status {
    margin-bottom: 28px;
    font-size: 12px;
  }

  h1 {
    font-size: 50px;
  }

  .tagline {
    margin-top: 22px;
    font-size: 26px;
  }

  .intro {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.6;
  }

  .business-details {
    margin-top: 28px;
  }

  .business-details div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .capabilities {
    gap: 8px 16px;
  }

  .capabilities span + span::before {
    margin-right: 16px;
  }

  .footer-meta {
    display: grid;
    justify-content: stretch;
    gap: 6px;
    text-align: left;
  }

  .footer-meta span + span::before,
  .footer-meta a::before {
    content: none;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 42px;
  }

  .tagline {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-link span {
    transition: none;
  }
}
