:root {
  --font-heading: "Titillium Web", sans-serif;
  --font-body: "Archivo", sans-serif;
  --color-carmine: #D70040;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-body);
}

body {
  margin: 0;
  color: #172033;
  background: #f7f8fa;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
}

p,
li,
dt,
dd,
blockquote,
figcaption,
label,
input,
select,
textarea,
option,
strong,
b {
  font-family: var(--font-body);
}

.btn,
.site-nav a,
.hero-eyebrow,
.eyebrow,
.kicker {
  font-family: var(--font-heading);
  font-weight: 700;
}

body.mobile-menu-open {
  overflow: hidden;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.utility-bar {
  color: #ffffff;
  background: #111827;
}

.utility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
  font-size: 0.85rem;
  line-height: 1.2;
}

.utility-service {
  color: #eef3f8;
  white-space: nowrap;
}

.utility-service-short {
  display: none;
}

.utility-phone {
  flex: 0 0 auto;
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
}

.utility-phone:hover,
.utility-phone:focus {
  text-decoration: underline;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e4e7ec;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  min-height: 76px;
  padding: 12px 0;
}

.site-name {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.site-name img {
  display: block;
  width: 150px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 14px 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px 24px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #2f3747;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--color-carmine);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: #111827;
}

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

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-carmine);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, outline-color 160ms ease;
}

.header-call:hover,
.header-call:focus {
  color: #ffffff;
  background: #b90036;
}

.header-call:focus {
  outline: 3px solid rgba(215, 0, 64, 0.24);
  outline-offset: 3px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #c8d0dc;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus {
  border-color: var(--color-carmine);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #172033;
  border-radius: 999px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, outline-color 160ms ease;
}

.button-primary {
  color: #ffffff;
  background: var(--color-carmine);
}

.button-primary:hover,
.button-primary:focus {
  color: #ffffff;
  background: #b90036;
}

.button-secondary {
  color: var(--color-carmine);
  background: #ffffff;
  border-color: var(--color-carmine);
}

.button-secondary:hover,
.button-secondary:focus {
  color: #ffffff;
  background: #b90036;
  border-color: #b90036;
}

.button:focus {
  outline: 3px solid rgba(215, 0, 64, 0.24);
  outline-offset: 3px;
}

.site-footer {
  padding: 48px 0;
  color: #dce3ee;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
}

.footer-brand p,
.footer-column p {
  margin: 0;
}

.footer-name {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-brand p:not(.footer-name) {
  max-width: 360px;
  margin-top: 12px;
  color: #b9c3d1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.footer-links,
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a,
.footer-links span,
.footer-list li {
  color: #b9c3d1;
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: 3px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.footer-links .footer-social-link img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-links .footer-social-link:hover,
.footer-links .footer-social-link:focus {
  border-color: rgba(255, 255, 255, 0.45);
  opacity: 0.82;
  text-decoration: none;
  transform: translateY(-1px);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 699px) {
  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .utility-bar-inner {
    gap: 10px;
    min-height: 34px;
    font-size: 0.78rem;
  }

  .utility-service-full {
    display: none;
  }

  .utility-service-short {
    display: inline;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    min-height: 62px;
    padding: 10px 0;
  }

  .site-name {
    min-width: 0;
  }

  .site-name img {
    width: 122px;
    height: auto;
    max-height: 48px;
  }

  .header-actions {
    justify-content: flex-end;
    gap: 8px;
  }

  .site-nav {
    display: none;
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    width: 34px;
    height: 34px;
  }

  .menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: 26px;
    right: 24px;
    z-index: 1001;
    width: 52px;
    height: 52px;
    border: 0;
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 3px;
    background: #2f3747;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    min-height: 100vh;
    padding: 112px 28px 40px;
    overflow-y: auto;
    border-top: 0;
    background: #ffffff;
  }

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

  .mobile-nav a {
    display: flex;
    width: min(100%, 520px);
    padding: 0;
    color: #2f3747;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 6vw, 1.55rem);
    font-weight: 700;
    line-height: 1.1;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus {
    color: var(--color-carmine);
  }

  .mobile-nav .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 18px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #ffffff;
    background: var(--color-carmine);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-nav .mobile-nav-cta:hover,
  .mobile-nav .mobile-nav-cta:focus {
    color: #ffffff;
    background: #b90036;
  }

  .mobile-nav .mobile-nav-call {
    margin-top: -6px;
    color: var(--color-carmine);
    background: #ffffff;
    border-color: var(--color-carmine);
  }

  .mobile-nav .mobile-nav-call:hover,
  .mobile-nav .mobile-nav-call:focus {
    color: #ffffff;
    background: #b90036;
    border-color: #b90036;
  }

  .button {
    min-height: 44px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .site-footer {
    padding: 36px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand p:not(.footer-name) {
    max-width: min(100%, 20rem);
    font-size: 0.9rem;
    overflow-wrap: break-word;
  }

  .footer-links span {
    max-width: min(100%, 20rem);
    overflow-wrap: break-word;
  }
}
