:root {
  --ink: #08090a;
  --ink-soft: #0f1113;
  --surface: #15181b;
  --paper: #f2f0eb;
  --paper-soft: #e8e5de;
  --white: #f8f8f6;
  --silver: #aeb3ba;
  --text-dark: #17191c;
  --muted-dark: #62666d;
  --red: #e51b23;
  --red-dark: #b40e15;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: #d8d5ce;
  --heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", "Segoe UI", sans-serif;
  --container: min(1280px, calc(100% - 64px));
  --header-height: 78px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--red-dark), #ff3139 68%, #fff 100%);
  box-shadow: 0 0 14px rgba(229, 27, 35, 0.65);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  transition: transform 90ms linear;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 10, 0.82);
  backdrop-filter: blur(16px);
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(8, 9, 10, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
}

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

.brand-logo {
  width: 102px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
  transition: transform 350ms var(--ease);
}

.brand-logo-footer {
  width: 132px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 38px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding-block: 12px;
  color: #c7c9cd;
  font-size: 12px;
  font-weight: 600;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.main-nav a:focus-visible,
.main-nav a.active {
  color: #fff;
}

.main-nav a:focus-visible::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 13px;
  margin-left: 34px;
  padding: 11px 17px;
  border-radius: 5px;
  background: var(--red);
  box-shadow: 0 10px 25px rgba(229, 27, 35, 0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  transition:
    background 180ms ease,
    transform 180ms var(--ease);
}

.header-cta:focus-visible {
  background: #f1262e;
  transform: translateY(-2px);
}

.header-cta span {
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.hero {
  --hero-parallax: 0px;
  --spotlight-x: 72%;
  --spotlight-y: 42%;
  position: relative;
  height: clamp(760px, 100svh, 900px);
  min-height: 760px;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: -3% 0;
  transform: translate3d(0, var(--hero-parallax), 0);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(
    circle 460px at var(--spotlight-x) var(--spotlight-y),
    rgba(229, 27, 35, 0.13),
    rgba(229, 27, 35, 0.025) 43%,
    transparent 72%
  );
  content: "";
  opacity: 0.78;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.98) 0%, rgba(7, 8, 9, 0.91) 25%, rgba(7, 8, 9, 0.48) 53%, rgba(7, 8, 9, 0.08) 78%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.22) 54%, rgba(8, 9, 10, 0.82) 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: calc(50% - 640px);
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
}

.hero-inner {
  display: flex;
  height: 100%;
  align-items: center;
  padding: calc(var(--header-height) + 50px) 0 150px;
}

.hero-copy {
  width: min(680px, 56%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  transform-origin: left center;
}

.eyebrow-light {
  color: #d6d8dc;
}

.eyebrow-light > span,
.eyebrow-red > span {
  background: var(--red);
}

.eyebrow-red {
  color: var(--red-dark);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 25px;
  font-family: var(--heading);
  font-size: clamp(70px, 6.8vw, 104px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.87;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  margin-top: 0.14em;
  color: var(--red);
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 32px;
  color: #c0c3c8;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  isolation: isolate;
  line-height: 1;
  overflow: hidden;
  transition:
    background 190ms ease,
    border-color 190ms ease,
    color 190ms ease,
    box-shadow 190ms ease,
    transform 190ms var(--ease);
}

.button::after {
  position: absolute;
  z-index: 1;
  top: -45%;
  bottom: -45%;
  left: -55%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.33), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-180%) skewX(-18deg);
}

.button:focus-visible::after {
  animation: button-sheen 700ms var(--ease);
}

.button:focus-visible {
  transform: translateY(-3px);
}

.button > span {
  font-size: 17px;
  transition: transform 180ms ease;
}

.button:focus-visible > span {
  transform: translate(2px, -2px);
}

.button-primary {
  background: var(--red);
  box-shadow: 0 16px 35px rgba(229, 27, 35, 0.2);
  color: #fff;
}

.button-primary:focus-visible {
  background: #f1262e;
  box-shadow: 0 18px 42px rgba(229, 27, 35, 0.3);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.27);
  background: rgba(8, 9, 10, 0.28);
  color: #fff;
  backdrop-filter: blur(7px);
}

.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--text-dark);
  color: #fff;
}

.button-dark:focus-visible {
  background: #282b30;
}

.button-light {
  background: #fff;
  color: var(--text-dark);
}

.button-light:focus-visible {
  box-shadow: 0 18px 40px rgba(87, 0, 4, 0.24);
}

.hero-address {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
}

.location-dot {
  position: relative;
  display: block;
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border: 3px solid var(--red);
  border-radius: 50%;
}

.location-dot::after {
  position: absolute;
  top: 10px;
  left: 2px;
  border-top: 7px solid var(--red);
  border-right: 2px solid transparent;
  border-left: 2px solid transparent;
  content: "";
}

.hero-address p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #9ea2a8;
  font-size: 11px;
  line-height: 1.5;
}

.hero-address strong {
  color: #fff;
  font-size: 12px;
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 9, 10, 0.76);
  backdrop-filter: blur(16px);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  min-height: 108px;
  padding: 20px clamp(20px, 3vw, 44px);
  border-right: 1px solid var(--line-dark);
}

.hero-benefits article:first-child {
  padding-left: 0;
}

.hero-benefits article:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-benefits article > span {
  color: var(--red);
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 800;
}

.hero-benefits .experience-number {
  min-width: 42px;
  font-size: 28px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.hero-benefits p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #8e9298;
  font-size: 10px;
  line-height: 1.5;
}

.hero-benefits strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: 12px;
}

.image-disclaimer {
  position: absolute;
  right: 24px;
  bottom: 124px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: clamp(80px, 7vw, 112px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
  margin-bottom: 54px;
}

.section-heading .eyebrow {
  margin-bottom: 16px;
}

.section-heading h2,
.care-copy h2,
.closing-cta h2 {
  margin-bottom: 0;
  font-family: var(--heading);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.7;
}

.services {
  background: var(--paper);
  color: var(--text-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: #faf9f6;
  overflow: hidden;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--ease);
}

.service-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(
    circle 230px at var(--glow-x) var(--glow-y),
    rgba(229, 27, 35, 0.105),
    transparent 72%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.service-card::after {
  position: absolute;
  right: -65px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(229, 27, 35, 0.035);
  border-radius: 50%;
  content: "";
  transition: transform 420ms var(--ease);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}

.service-card-head > span {
  color: var(--red);
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card-head i {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  transition:
    border-color 260ms ease,
    transform 380ms var(--ease);
}

.service-card-head i::before,
.service-card-head i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text-dark);
  content: "";
  transform: translate(-50%, -50%);
}

.service-card-head i::before {
  width: 13px;
  height: 1px;
}

.service-card-head i::after {
  width: 1px;
  height: 13px;
}

.service-card h3 {
  max-width: 520px;
  margin: 38px 0 10px;
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-card > p {
  max-width: 500px;
  margin-bottom: 24px;
  color: var(--muted-dark);
  font-size: 13px;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  translate: 0 0;
  padding: 6px 10px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: #5d6066;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    translate 220ms var(--ease);
}

.service-help {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 18px;
  padding: 31px 34px;
  border-radius: 10px;
  background: var(--text-dark);
  color: #fff;
}

.service-help > div {
  display: flex;
  flex-direction: column;
}

.service-help > div > span {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-help strong {
  font-family: var(--heading);
  font-size: clamp(24px, 2.6vw, 33px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.care {
  position: relative;
  background:
    radial-gradient(circle at 85% 16%, rgba(229, 27, 35, 0.08), transparent 30rem),
    var(--ink-soft);
  overflow: hidden;
}

.care::before {
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.012),
    0 0 0 140px rgba(255, 255, 255, 0.008);
  content: "";
}

.care-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.care-visual {
  position: relative;
  margin-bottom: 0;
}

.care-visual::before {
  position: absolute;
  z-index: -1;
  top: 28px;
  right: -18px;
  bottom: -18px;
  left: 28px;
  border-radius: 10px;
  background: var(--red);
  content: "";
}

.care-image-wrap {
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: #16181a;
  overflow: hidden;
}

.care-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.care-visual figcaption {
  margin-top: 12px;
  color: #6e7278;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.care-copy h2 {
  max-width: 580px;
  margin-bottom: 22px;
}

.care-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: #aeb2b8;
  font-size: 15px;
  line-height: 1.75;
}

.care-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.care-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding-left 280ms var(--ease);
}

.care-steps li::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms var(--ease);
}

.care-steps li > span {
  color: var(--red);
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 800;
  transition: transform 280ms var(--ease);
}

.care-steps h3 {
  margin-bottom: 5px;
  font-family: var(--heading);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.care-steps p {
  margin: 0;
  color: #888d94;
  font-size: 12px;
}

.location {
  background: var(--paper);
  color: var(--text-dark);
}

.location-heading > p {
  padding-left: 24px;
  border-left: 2px solid var(--red);
  color: #50545a;
  font-size: 14px;
  font-weight: 600;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.65fr);
  min-height: 500px;
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(29, 29, 31, 0.12);
  overflow: hidden;
}

.map-wrap {
  min-height: 500px;
  background: #d8d8d5;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  filter: grayscale(0.85) saturate(0.55) contrast(0.95);
}

.location-card {
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
  background: var(--text-dark);
  color: #fff;
}

.location-card-top {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.location-card-top p {
  margin: 0;
  color: #c2c5c9;
  font-size: 12px;
  line-height: 1.55;
}

.location-card-main {
  display: flex;
  flex-direction: column;
  margin: auto 0;
  padding: 35px 0;
}

.location-card-main > span {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-card-main > a {
  position: relative;
  width: fit-content;
  font-family: var(--heading);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease;
}

.location-card-main > a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 280ms var(--ease);
}

.location-card-main > a:focus-visible {
  color: var(--red);
}

.location-card-main > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.location-card-main p {
  max-width: 340px;
  margin: 16px 0 0;
  color: #8e9298;
  font-size: 12px;
}

.location-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 17px;
}

.route-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #c2c5c9;
  font-size: 10px;
  font-weight: 700;
  transition: color 180ms ease;
}

.route-link:focus-visible {
  color: #fff;
}

.closing-cta {
  position: relative;
  padding: 78px 0;
  background: var(--red);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.closing-cta::before {
  position: absolute;
  z-index: -1;
  top: -70%;
  bottom: -70%;
  left: -32%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  content: "";
  transform: skewX(-18deg);
}

.closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
}

.closing-inner > div > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.closing-cta h2 {
  max-width: 820px;
  font-size: clamp(42px, 4.5vw, 62px);
}

.site-footer {
  background: #050607;
}

.footer-main {
  display: grid;
  grid-template-columns: auto minmax(230px, 1fr) auto;
  align-items: center;
  gap: clamp(35px, 6vw, 80px);
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-main > p {
  max-width: 420px;
  margin: 0;
  color: #84888e;
  font-size: 11px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 25px;
}

.footer-main nav a {
  color: #a7abb1;
  font-size: 10px;
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-main nav a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  padding-bottom: 22px;
  color: #5e6268;
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(9, 10, 11, 0.9);
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.35);
  color: #fff;
  backdrop-filter: blur(12px);
  transition:
    border-color 180ms ease,
    transform 180ms var(--ease);
}

.floating-whatsapp:focus-visible {
  border-color: var(--red);
  transform: translateY(-3px);
}

.floating-whatsapp > span {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 800;
}

.floating-whatsapp > span::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(229, 27, 35, 0.75);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.floating-whatsapp > span img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.floating-whatsapp strong {
  font-size: 10px;
}

.reveal {
  opacity: 1;
  scale: 1;
  translate: 0 0;
}

html.motion-ready .reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  translate: 0 28px;
  transition:
    opacity 720ms var(--ease) var(--reveal-delay),
    scale 820ms var(--ease) var(--reveal-delay),
    translate 720ms var(--ease) var(--reveal-delay),
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--ease);
}

html.motion-ready .reveal-left {
  translate: -42px 0;
}

html.motion-ready .reveal-right {
  translate: 42px 0;
}

html.motion-ready .reveal-scale {
  scale: 0.975;
  translate: 0 18px;
}

html.motion-ready .reveal.is-visible {
  opacity: 1;
  scale: 1;
  translate: 0 0;
}

html.gsap-ready.motion-ready .reveal {
  opacity: 1;
  scale: 1;
  translate: 0 0;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease;
}

html.motion-ready .services-grid .service-card:nth-child(2) {
  --reveal-delay: 70ms;
}

html.motion-ready .services-grid .service-card:nth-child(3) {
  --reveal-delay: 140ms;
}

html.motion-ready .services-grid .service-card:nth-child(4) {
  --reveal-delay: 210ms;
}

html.motion-ready .site-header {
  animation: header-enter 720ms var(--ease) both;
}

html.motion-ready .hero .eyebrow,
html.motion-ready .hero-title-line,
html.motion-ready .hero-lead,
html.motion-ready .hero-actions,
html.motion-ready .hero-address,
html.motion-ready .image-disclaimer {
  opacity: 0;
  animation: hero-copy-in 760ms var(--ease) both;
}

html.motion-ready .hero .eyebrow {
  animation-delay: 90ms;
}

html.motion-ready .hero-title-line:first-child {
  animation-delay: 170ms;
}

html.motion-ready .hero-title-accent {
  animation-delay: 250ms;
}

html.motion-ready .hero-lead {
  animation-delay: 350ms;
}

html.motion-ready .hero-actions {
  animation-delay: 430ms;
}

html.motion-ready .hero-address {
  animation-delay: 510ms;
}

html.motion-ready .image-disclaimer {
  animation-delay: 760ms;
}

html.motion-ready .hero .eyebrow > span,
html.motion-ready .section-heading.is-visible .eyebrow > span,
html.motion-ready .care-copy.is-visible .eyebrow > span {
  animation: line-grow 650ms var(--ease) both;
}

html.motion-ready .hero .eyebrow > span {
  animation-delay: 110ms;
}

html.motion-ready .hero::after {
  animation: vertical-line-in 1.1s 320ms var(--ease) both;
  transform-origin: top center;
}

html.motion-ready .hero-benefits article {
  opacity: 0;
  animation: hero-benefit-in 680ms var(--ease) both;
}

html.motion-ready .hero-benefits article:nth-child(1) {
  animation-delay: 560ms;
}

html.motion-ready .hero-benefits article:nth-child(2) {
  animation-delay: 650ms;
}

html.motion-ready .hero-benefits article:nth-child(3) {
  animation-delay: 740ms;
}

html.motion-ready .hero-benefits article:nth-child(4) {
  animation-delay: 830ms;
}

html.motion-ready .service-card li {
  opacity: 0;
}

html.motion-ready .service-card.is-visible li {
  animation: card-chip-in 440ms var(--ease) both;
}

html.motion-ready .service-card.is-visible li:nth-child(2) {
  animation-delay: 70ms;
}

html.motion-ready .care-copy .care-steps li {
  --step-delay: 0ms;
  opacity: 0;
  translate: 18px 0;
  transition:
    opacity 520ms var(--ease) var(--step-delay),
    translate 520ms var(--ease) var(--step-delay),
    padding-left 280ms var(--ease);
}

html.motion-ready .care-copy.is-visible .care-steps li {
  opacity: 1;
  translate: 0 0;
}

html.motion-ready .care-copy.is-visible .care-steps li:nth-child(1) {
  --step-delay: 220ms;
}

html.motion-ready .care-copy.is-visible .care-steps li:nth-child(2) {
  --step-delay: 300ms;
}

html.motion-ready .care-copy.is-visible .care-steps li:nth-child(3) {
  --step-delay: 380ms;
}

html.gsap-ready.motion-ready .service-card li,
html.gsap-ready.motion-ready .care-copy .care-steps li {
  opacity: 1;
  translate: 0 0;
}

html.gsap-ready.motion-ready .site-header,
html.gsap-ready.motion-ready .hero .eyebrow,
html.gsap-ready.motion-ready .hero-title-line,
html.gsap-ready.motion-ready .hero-lead,
html.gsap-ready.motion-ready .hero-actions,
html.gsap-ready.motion-ready .hero-address,
html.gsap-ready.motion-ready .image-disclaimer,
html.gsap-ready.motion-ready .hero-benefits article {
  opacity: 1;
  animation: none;
}

html.gsap-ready .hero-image,
html.gsap-ready .care-image-wrap img {
  will-change: transform;
}

html.motion-ready .closing-cta::before {
  animation: closing-sweep 7s 1.4s ease-in-out infinite;
}

html.motion-ready .floating-whatsapp > span::after {
  animation: whatsapp-pulse 3.6s 1.1s ease-out infinite;
}

@keyframes header-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-benefit-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes vertical-line-in {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes card-chip-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes button-sheen {
  from {
    transform: translateX(-180%) skewX(-18deg);
  }
  to {
    transform: translateX(520%) skewX(-18deg);
  }
}

@keyframes closing-sweep {
  0%,
  58% {
    transform: translateX(0) skewX(-18deg);
  }
  78%,
  100% {
    transform: translateX(720%) skewX(-18deg);
  }
}

@keyframes whatsapp-pulse {
  0%,
  72% {
    opacity: 0;
    transform: scale(1);
  }
  82% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

@media (max-width: 1080px) {
  :root {
    --container: min(calc(100% - 40px), 960px);
  }

  .hero-copy {
    width: min(650px, 62%);
  }

  .hero h1 {
    font-size: clamp(66px, 8.6vw, 90px);
  }

  .care-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .care-visual {
    width: min(100% - 20px, 760px);
  }

  .care-copy {
    max-width: 760px;
  }

  .location-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(310px, 0.6fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 38px max(24px, calc((100% - 680px) / 2));
    background:
      radial-gradient(circle at 85% 12%, rgba(229, 27, 35, 0.12), transparent 22rem),
      rgba(8, 9, 10, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition:
      opacity 220ms ease,
      transform 220ms var(--ease),
      visibility 0s linear 220ms;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .main-nav a {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    padding: 10px 4px;
    border-bottom: 1px solid var(--line-dark);
    color: #fff;
    font-family: var(--heading);
    font-size: clamp(33px, 7vw, 50px);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
  }

  .main-nav a::after {
    right: auto;
    bottom: 50%;
    left: -15px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 8, 9, 0.97), rgba(7, 8, 9, 0.73) 63%, rgba(7, 8, 9, 0.22)),
      linear-gradient(180deg, rgba(8, 9, 10, 0.2) 45%, rgba(8, 9, 10, 0.92));
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-copy {
    width: min(640px, 80%);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 650px;
  }

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

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px;
  }

  .location-card {
    min-height: 420px;
  }

  .closing-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .closing-inner .button {
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: auto 1fr;
  }

  .footer-main nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 32px);
  }

  .brand-logo {
    width: 88px;
    height: 62px;
  }

  .hero {
    height: auto;
    min-height: 820px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 8, 9, 0.96), rgba(7, 8, 9, 0.5)),
      linear-gradient(180deg, rgba(8, 9, 10, 0.18) 27%, rgba(8, 9, 10, 0.96) 78%);
  }

  .hero-inner {
    min-height: 820px;
    align-items: flex-end;
    padding: 120px 0 215px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(55px, 17.5vw, 74px);
    line-height: 0.9;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-address {
    margin-top: 24px;
  }

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

  .hero-benefits article {
    min-height: 92px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 3px;
    padding: 13px 12px;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-benefits article:nth-child(2) {
    border-right: 0;
  }

  .hero-benefits article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .hero-benefits article:first-child,
  .hero-benefits article:last-child {
    padding-inline: 12px;
  }

  .hero-benefits article > span {
    font-size: 18px;
  }

  .hero-benefits .experience-number {
    min-width: 0;
    font-size: 20px;
  }

  .hero-benefits p {
    font-size: 8px;
  }

  .hero-benefits strong {
    font-size: 9px;
    line-height: 1.25;
  }

  .image-disclaimer {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .care-copy h2,
  .closing-cta h2 {
    font-size: clamp(42px, 13vw, 56px);
  }

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

  .service-card {
    min-height: 280px;
    padding: 27px;
  }

  .service-card h3 {
    font-size: 31px;
  }

  .service-help {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 27px;
  }

  .service-help .button {
    width: 100%;
  }

  .care-grid {
    gap: 58px;
  }

  .care-visual {
    width: calc(100% - 10px);
  }

  .care-visual::before {
    top: 14px;
    right: -10px;
    bottom: -10px;
    left: 14px;
  }

  .care-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .location-heading > p {
    padding-left: 16px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }

  .location-card {
    min-height: 430px;
    padding: 30px 25px;
  }

  .location-card-main > a {
    font-size: 34px;
  }

  .closing-cta {
    padding: 65px 0;
  }

  .closing-inner .button {
    width: 100%;
  }

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

  .footer-main nav {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .floating-whatsapp {
    right: 13px;
    bottom: 13px;
    padding-right: 7px;
  }

  .floating-whatsapp strong {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  html.motion-ready .reveal {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }

  html.motion-ready .hero .eyebrow,
  html.motion-ready .hero-title-line,
  html.motion-ready .hero-lead,
  html.motion-ready .hero-actions,
  html.motion-ready .hero-address,
  html.motion-ready .image-disclaimer,
  html.motion-ready .hero-benefits article,
  html.motion-ready .service-card li,
  html.motion-ready .care-copy .care-steps li {
    opacity: 1;
    transform: none;
    translate: 0 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover .brand-logo {
    transform: scale(1.035);
  }

  .main-nav a:hover {
    color: #fff;
  }

  .main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .header-cta:hover {
    background: #f1262e;
    transform: translateY(-2px);
  }

  .button:hover {
    transform: translateY(-3px);
  }

  .button:hover::after {
    animation: button-sheen 700ms var(--ease);
  }

  .button:hover > span {
    transform: translate(2px, -2px);
  }

  .button-primary:hover {
    background: #f1262e;
    box-shadow: 0 18px 42px rgba(229, 27, 35, 0.3);
  }

  .button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
  }

  .button-dark:hover {
    background: #282b30;
  }

  .button-light:hover {
    box-shadow: 0 18px 40px rgba(87, 0, 4, 0.24);
  }

  .service-card:hover {
    border-color: rgba(229, 27, 35, 0.35);
    box-shadow: 0 22px 55px rgba(24, 25, 28, 0.08);
    transform: translateY(-6px);
  }

  .service-card:hover::before {
    opacity: 1;
  }

  .service-card:hover::after {
    transform: scale(1.22);
  }

  .service-card:hover .service-card-head i {
    border-color: rgba(229, 27, 35, 0.5);
    transform: rotate(90deg);
  }

  .service-card:hover li {
    border-color: rgba(229, 27, 35, 0.32);
    color: #303338;
    translate: 0 -2px;
  }

  .care-visual:hover img {
    transform: scale(1.028);
  }

  .care-steps li:hover {
    padding-left: 8px;
  }

  .care-steps li:hover::after {
    transform: scaleX(1);
  }

  .care-steps li:hover > span {
    transform: translateX(4px);
  }

  .location-card-main > a:hover {
    color: var(--red);
  }

  .location-card-main > a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }

  .route-link:hover,
  .footer-main nav a:hover {
    color: #fff;
  }

  .floating-whatsapp:hover {
    border-color: var(--red);
    transform: translateY(-3px);
  }

  .floating-whatsapp:hover > span::after {
    animation-play-state: paused;
  }
}
