:root {
  --blue: #273AEF;
  --white: #fff;
  --gray: #F0F0F0;
  --dark: #0D0E1B;
  --max: 1180px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Prompt", system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
}

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

.site-header {
  color: var(--dark);
  background: rgba(255, 255, 255, .74);
  border-bottom: 1px solid rgba(13, 14, 27, .08);
}

.site-header.is-light {
  color: var(--white);
  background: rgba(13, 14, 27, .34);
  border-bottom-color: rgba(255, 255, 255, .08);
}

.site-header.is-light .brand img {
  filter: brightness(0) invert(1);
}

.header-actions {
  position: relative;
  display: flex;
  justify-self: end;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-action-link,
.header-language-toggle,
.header-menu-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 10px;
  background: currentColor;
  background: color-mix(in srgb, currentColor 10%, transparent);
  color: currentColor;
  padding: 0 18px;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition:
    transform .22s var(--ease),
    background-color .22s var(--ease),
    color .22s var(--ease);
}

.header-action-link svg,
.header-language-toggle svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-action-link:hover,
.header-action-link:focus-visible,
.header-language-toggle:hover,
.header-language-toggle:focus-visible,
.header-language-toggle[aria-pressed="true"],
.header-menu-toggle:hover,
.header-menu-toggle:focus-visible {
  transform: translateY(-2px);
  background: var(--blue);
  color: var(--white);
  outline: 0;
}

.header-menu {
  position: relative;
}

.header-menu-toggle {
  width: 44px;
  padding: 0;
  flex-direction: column;
  gap: 4px;
}

.header-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform .24s var(--ease),
    opacity .2s var(--ease);
}

.header-menu.is-open .header-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header-menu.is-open .header-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.header-menu.is-open .header-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(300px, calc(100vw - 30px));
  border: 1px solid rgba(13, 14, 27, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(13, 14, 27, .18);
  color: var(--dark);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  transition:
    opacity .24s var(--ease),
    transform .28s var(--ease);
}

.header-menu.is-open .header-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.header-menu-panel nav {
  display: grid;
  gap: 4px;
}

.header-menu-panel nav a,
.header-menu-contact .header-language-toggle,
.header-menu-contact a {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  transition:
    background-color .22s var(--ease),
    color .22s var(--ease),
    transform .22s var(--ease);
}

.header-menu-panel nav a:hover,
.header-menu-panel nav a:focus-visible,
.header-menu-contact .header-language-toggle:hover,
.header-menu-contact .header-language-toggle:focus-visible,
.header-menu-contact .header-language-toggle[aria-pressed="true"],
.header-menu-contact a:hover,
.header-menu-contact a:focus-visible {
  background: var(--blue);
  color: var(--white);
  outline: 0;
  transform: translateX(2px);
}

.header-menu-contact {
  display: none;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(13, 14, 27, .08);
}

.header-menu-contact .header-language-toggle,
.header-menu-contact a {
  gap: 10px;
  background: #F0F0F0;
  color: var(--dark);
  text-align: left;
}

.header-menu-contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-hero {
  min-height: 92svh;
  background:
    linear-gradient(90deg, rgba(13, 14, 27, .88), rgba(13, 14, 27, .46) 44%, rgba(13, 14, 27, .12)),
    url("../img/hero-ac-unit-background.png") center / cover no-repeat;
}

.services-hero {
  display: grid;
  min-height: 92svh;
  align-items: center;
  overflow: hidden;
  padding-block: 116px 74px;
  background: var(--white);
}

.services-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.services-hero h1 {
  margin: 0;
  color: #02030A;
  font-size: clamp(72px, 10vw, 122px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .86;
}

.services-hero p {
  max-width: 900px;
  margin: 24px 0 0;
  color: rgba(13, 14, 27, .48);
  font-size: clamp(18px, 2.1vw, 25px);
  font-weight: 400;
  line-height: 1.42;
}

.services-carousel {
  position: relative;
  width: min(100%, 1040px);
  height: clamp(210px, 29vw, 340px);
  margin-top: clamp(42px, 6vw, 66px);
  isolation: isolate;
}

.services-carousel::before {
  position: absolute;
  inset: 18% -14vw auto;
  height: 42%;
  content: "";
  background: linear-gradient(90deg, rgba(240, 240, 240, 0), #F0F0F0 16%, #F0F0F0 84%, rgba(240, 240, 240, 0));
  z-index: -1;
}

.services-carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(280px, 54vw, 640px);
  aspect-ratio: 1.9 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #D9DDE7;
  box-shadow: 0 26px 70px rgba(13, 14, 27, .18);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(.82);
  transition:
    opacity .62s var(--ease),
    transform .72s var(--ease),
    filter .62s var(--ease);
}

.services-carousel-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-carousel-card::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(to bottom, rgba(2, 3, 10, 0), rgba(2, 3, 10, .82));
}

.services-carousel-card span {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 25px;
  z-index: 1;
  color: var(--white);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 950;
  line-height: 1.05;
  text-align: left;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .42);
}

.services-carousel-card.is-active {
  z-index: 5;
  opacity: 1;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(1);
  filter: saturate(1.03);
}

.services-carousel-card.is-prev,
.services-carousel-card.is-next {
  z-index: 2;
  opacity: .38;
  pointer-events: none;
  filter: saturate(.72);
}

.services-carousel-card.is-prev {
  transform: translate3d(calc(-50% - min(34vw, 390px)), -50%, 0) scale(.62);
}

.services-carousel-card.is-next {
  transform: translate3d(calc(-50% + min(34vw, 390px)), -50%, 0) scale(.62);
}

.services-carousel-card:focus-visible {
  outline: 4px solid rgba(39, 58, 239, .65);
  outline-offset: 6px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(.985);
  filter: blur(10px);
  transition:
    opacity .92s cubic-bezier(.16, 1, .3, 1),
    transform 1.08s cubic-bezier(.16, 1, .3, 1),
    filter .98s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.motion-heading {
  position: relative;
  transform: translate3d(0, 34px, 0) scale(.965) skewY(1.2deg);
  transform-origin: left bottom;
  opacity: 0;
  filter: blur(12px);
  transition:
    opacity .82s cubic-bezier(.16, 1, .3, 1),
    transform 1s cubic-bezier(.16, 1, .3, 1),
    filter .92s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform, filter;
}

.motion-heading.is-motion-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) skewY(0);
  filter: blur(0);
}

.lift-card {
  transition:
    transform .45s var(--ease),
    background-color .45s var(--ease),
    color .45s var(--ease);
}

.lift-card:hover,
.lift-card:focus-within {
  transform: translateY(-8px);
}

.page-band {
  padding-block: clamp(78px, 10vw, 132px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(280px, 1fr);
  gap: clamp(30px, 9vw, 126px);
  align-items: start;
}

.privacy-hero {
  display: grid;
  min-height: 64svh;
  align-items: center;
  padding-block: 120px 70px;
  background: var(--white);
  text-align: center;
}

.privacy-hero-inner p {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: #02030A;
  font-size: clamp(42px, 5.7vw, 78px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .98;
}

.privacy-hero h2 {
  max-width: 720px;
  margin: 28px auto 0;
  color: rgba(13, 14, 27, .62);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.55;
}

.privacy-document {
  padding-block: clamp(54px, 8vw, 92px) clamp(82px, 10vw, 132px);
  background: #fff;
}

.privacy-doc-section {
  border: 1px solid rgba(13, 14, 27, .1);
  border-radius: 8px;
  background: #fff;
  padding: clamp(24px, 4vw, 44px);
}

.privacy-doc-section h2 {
  margin: 0 0 20px;
  color: #02030A;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

.privacy-doc-section p {
  margin: 0 0 16px;
  color: rgba(13, 14, 27, .72);
  font-size: 17px;
  font-weight: 450;
  line-height: 1.78;
}

.privacy-doc-section p:last-child {
  margin-bottom: 0;
}

.privacy-doc-section a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-hero {
  display: grid;
  height: 100svh;
  align-items: end;
  padding-top: 72px;
  overflow: hidden;
  background: var(--white);
}

.about-hero-inner {
  position: relative;
  display: grid;
  width: min(var(--max), calc(100% - clamp(48px, 12vw, 100px)));
  height: calc(100svh - 72px);
  grid-template-columns: minmax(190px, 1fr) minmax(260px, .78fr);
  align-items: center;
  justify-content: space-between;
}

.about-hero-title {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: clamp(38px, 8svh, 76px);
}

.about-hero-title h1 {
  display: grid;
  gap: .08em;
  margin: 0;
  color: #02030A;
  font-size: clamp(68px, 9vw, 124px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .88;
}

.about-hero-visual {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  width: clamp(680px, 59vw, 960px);
  height: auto;
  margin: 0;
  translate: -50% 0;
  isolation: isolate;
}

.about-hero-visual::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 20%;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .92) 72%, #fff);
}

.about-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: end;
  padding-top: clamp(42px, 9svh, 86px);
}

.about-hero-copy p {
  max-width: 360px;
  margin: 0;
  color: rgba(13, 14, 27, .58);
  font-size: clamp(22px, 2.25vw, 30px);
  font-weight: 750;
  line-height: 1.42;
}

.about-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-check-grid span {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  background: #F7F8FB;
  border: 1px solid rgba(39, 58, 239, .12);
  color: var(--blue);
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: 0 12px 28px rgba(13, 14, 27, .05);
}

.about-check-grid svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-story-stack {
  display: grid;
  gap: 16px;
  align-content: center;
}

.about-story-stack article,
.about-value-card,
.about-principle-card,
.about-timeline article {
  border-radius: 8px;
}

.about-story-stack article {
  background: var(--gray);
  padding: clamp(24px, 4vw, 42px);
}

.about-story-stack article:nth-child(2) {
  background: var(--blue);
  color: var(--white);
}

.about-story-stack span,
.about-value-card span {
  display: block;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 950;
  line-height: 1.02;
}

.about-story-stack p,
.about-value-card p {
  margin: 14px 0 0;
  color: rgba(13, 14, 27, .7);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.6;
}

.about-story-stack article:nth-child(2) p {
  color: rgba(255, 255, 255, .78);
}

.about-stats-band {
  padding-block: clamp(48px, 7vw, 86px);
}

.about-stats-grid {
  display: grid;
  width: min(1400px, calc(100% - 48px)) !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border-radius: 8px;
}

.about-stats-grid > div {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(13, 14, 27, .08);
  border-radius: 8px;
  background: #fff;
  padding: clamp(18px, 1.4vw, 20px);
  text-align: center;
  box-shadow: 0 18px 46px rgba(13, 14, 27, .06);
}

.about-stats-grid > div::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(39, 58, 239, .1), rgba(255, 255, 255, 0) 42%);
  opacity: .8;
}

.about-stats-grid strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--blue);
  font-size: clamp(98px, 7.4vw, 110px);
  font-weight: 950;
  line-height: .76;
}

.about-stats-grid .count-up {
  color: inherit;
  font: inherit;
}

.about-stats-grid > div > span:last-child {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 0;
  color: var(--blue);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.2;
}

.about-principles-grid,
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-principle-card {
  min-height: 360px;
  background: rgba(255, 255, 255, .08);
  padding: clamp(24px, 4vw, 38px);
}

.about-principle-card span {
  display: block;
  color: rgba(255, 255, 255, .38);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 950;
  line-height: .85;
}

.about-principle-card h3 {
  margin: 34px 0 14px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 950;
  line-height: 1.02;
}

.about-principle-card p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.about-value-card {
  min-height: 248px;
  background: #F7F8FB;
  border: 1px solid rgba(13, 14, 27, .08);
  box-shadow: 0 18px 45px rgba(13, 14, 27, .07);
  padding: clamp(26px, 3vw, 34px);
  transition:
    background-color .28s var(--ease),
    border-color .28s var(--ease),
    box-shadow .28s var(--ease),
    color .28s var(--ease),
    transform .32s var(--ease);
}

.about-value-card span {
  color: #080A17;
  font-size: clamp(26px, 2.4vw, 34px);
  overflow-wrap: normal;
  word-break: normal;
}

.about-value-card:hover {
  transform: translateY(-6px);
  background: var(--blue);
  border-color: rgba(39, 58, 239, .24);
  box-shadow: 0 24px 58px rgba(39, 58, 239, .2);
  color: var(--white);
}

.about-value-card p {
  color: rgba(13, 14, 27, .72);
  font-size: 15px;
}

.about-value-card:hover span,
.about-value-card:hover p {
  color: rgba(255, 255, 255, .9);
}

.about-values-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1080px;
  margin-inline: auto;
  gap: 18px;
}

.about-value-card {
  grid-column: span 2;
}

.about-value-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.about-value-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.about-timeline article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  background: var(--white);
  padding: clamp(20px, 3vw, 30px);
}

.about-timeline article > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 950;
}

.about-timeline h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  line-height: 1.05;
}

.about-timeline p {
  margin: 10px 0 0;
  color: rgba(13, 14, 27, .7);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.about-final-cta {
  overflow: hidden;
}

.about-final-cta a {
  color: var(--blue) !important;
}

.contact-emergency-hero {
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding-block: clamp(118px, 13vw, 178px) clamp(72px, 9vw, 118px);
  overflow: hidden;
}

.contact-emergency-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 7.2vw, 108px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .88;
}

.contact-emergency-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 750;
  line-height: 1.55;
}

.contact-emergency-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-emergency-notes span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .78);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.contact-emergency-action {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  padding: clamp(28px, 4vw, 42px);
}

.contact-round-call {
  display: grid;
  width: clamp(132px, 14vw, 178px);
  height: clamp(132px, 14vw, 178px);
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: #0d0e1b;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
  transition:
    transform .32s var(--ease),
    box-shadow .32s var(--ease);
}

.contact-round-call:hover,
.contact-round-call:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 30px 84px rgba(39, 58, 239, .28);
}

.contact-round-call svg {
  width: clamp(48px, 5vw, 70px);
  height: clamp(48px, 5vw, 70px);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-emergency-action > span {
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
  line-height: 1;
}

.contact-emergency-action > strong {
  color: rgba(255, 255, 255, .72);
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 950;
  line-height: 1;
}

.contact-hero {
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding-top: 72px;
  background: var(--white);
}

.contact-hero-inner {
  position: relative;
  display: grid;
  width: min(var(--max), calc(100% - clamp(48px, 12vw, 100px)));
  min-height: calc(100svh - 72px);
  grid-template-columns: minmax(320px, .9fr) minmax(320px, .76fr);
  align-items: center;
  gap: clamp(36px, 8vw, 112px);
}

.contact-hero-copy {
  position: relative;
  z-index: 2;
  padding-block: clamp(54px, 8vw, 96px);
}

.contact-eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #02030A;
  font-size: clamp(54px, 7.4vw, 104px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .88;
}

.contact-hero-copy > p:not(.contact-eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(13, 14, 27, .64);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.5;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-call-button,
.contact-mail-button,
.contact-directions-button,
.contact-emergency-call,
.contact-form button,
.contact-mobile-bar a {
  transition:
    transform .32s var(--ease),
    background-color .28s var(--ease),
    color .28s var(--ease),
    box-shadow .28s var(--ease);
}

.contact-call-button {
  display: inline-flex;
  min-height: 68px;
  align-items: center;
  gap: 14px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 18px 24px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 24px 58px rgba(39, 58, 239, .26);
}

.contact-call-button svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-mail-button,
.contact-directions-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  border-radius: 8px;
  background: #F0F0F0;
  color: var(--dark);
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
}

.contact-call-button:hover,
.contact-call-button:focus-visible,
.contact-mail-button:hover,
.contact-mail-button:focus-visible,
.contact-directions-button:hover,
.contact-directions-button:focus-visible,
.contact-emergency-call:hover,
.contact-emergency-call:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible,
.contact-mobile-bar a:hover,
.contact-mobile-bar a:focus-visible {
  transform: translateY(-4px);
}

.contact-hero-visual {
  position: relative;
  z-index: 1;
  margin: 0;
  align-self: end;
  isolation: isolate;
}

.contact-hero-visual::before {
  position: absolute;
  inset: 18% -8% 0 10%;
  z-index: -1;
  border-radius: 8px 8px 0 0;
  content: "";
  background: #F0F0F0;
}

.contact-hero-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .94) 78%, #fff);
}

.contact-hero-visual img {
  display: block;
  width: min(100%, 620px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 34px 70px rgba(13, 14, 27, .14));
}

.contact-emergency-band {
  padding-block: clamp(58px, 8vw, 96px);
}

.contact-emergency-call {
  display: grid;
  min-width: min(100%, 360px);
  min-height: 156px;
  align-content: center;
  gap: 12px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.contact-emergency-call span {
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-emergency-call strong {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 950;
  line-height: .92;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-method-card {
  position: relative;
  display: block;
  min-height: 330px;
  border: 1px solid rgba(13, 14, 27, .08);
  border-radius: 8px;
  background: #F7F8FB;
  box-shadow: 0 18px 45px rgba(13, 14, 27, .06);
  transition:
    transform .32s var(--ease),
    background-color .28s var(--ease),
    color .28s var(--ease),
    box-shadow .28s var(--ease);
}

.contact-method-card:hover,
.contact-method-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 24px 58px rgba(39, 58, 239, .16);
}

.contact-method-main {
  display: flex;
  min-height: 330px;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: inherit;
  color: inherit;
  padding: clamp(24px, 3vw, 34px);
  text-decoration: none;
}

.contact-method-main:focus-visible {
  outline: 3px solid rgba(39, 58, 239, .36);
  outline-offset: -6px;
}

.contact-method-main > svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-main > span {
  display: block;
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-method-main strong {
  display: block;
  max-width: 100%;
  margin-top: 14px;
  color: #080A17;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 950;
  line-height: 1;
  overflow-wrap: anywhere;
}

.contact-method-main .contact-email-text {
  display: block;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.contact-method-main small {
  display: block;
  margin-top: 16px;
  color: rgba(13, 14, 27, .62);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.contact-method-primary {
  background: var(--blue);
  color: var(--white);
}

.contact-method-primary .contact-method-main > span,
.contact-method-primary .contact-method-main strong,
.contact-method-primary .contact-method-main small {
  color: var(--white);
}

.contact-method-primary small {
  opacity: .78;
}

.contact-method-email {
  grid-column: 1 / -1;
  min-height: 250px;
}

.contact-copy-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(13, 14, 27, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: var(--dark);
  padding: 0 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(13, 14, 27, .1);
  transition:
    transform .22s var(--ease),
    background-color .22s var(--ease),
    color .22s var(--ease),
    box-shadow .22s var(--ease);
}

.contact-copy-button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-copy-button:hover,
.contact-copy-button:focus-visible {
  transform: translateY(-2px) scale(1.03);
  background: var(--white);
  color: var(--blue);
  outline: 0;
  box-shadow: 0 16px 34px rgba(39, 58, 239, .18);
}

.contact-copy-button.is-copied {
  animation: copyPulse .42s var(--ease);
  background: var(--dark);
  color: var(--white);
}

.contact-method-primary .contact-copy-button {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .94);
  color: var(--blue);
}

@keyframes copyPulse {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.contact-location-list {
  display: grid;
  gap: 12px;
}

.contact-location-list div {
  display: grid;
  gap: 8px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(13, 14, 27, .08);
  padding: 18px;
}

.contact-location-list span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-location-list strong {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.2;
}

.contact-directions-button {
  margin-top: 18px;
  background: var(--blue);
  color: var(--white);
}

.contact-map-shell {
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #D9DDE7;
  box-shadow: 0 26px 70px rgba(13, 14, 27, .13);
}

.contact-map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.contact-form,
.contact-service-panel {
  border-radius: 8px;
  background: #F7F8FB;
  border: 1px solid rgba(13, 14, 27, .08);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 45px rgba(13, 14, 27, .06);
}

.contact-form h2,
.contact-service-panel h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 950;
  line-height: 1;
}

.contact-form p {
  margin: 14px 0 26px;
  color: rgba(13, 14, 27, .68);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.contact-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 950;
}

.contact-form .field-shell {
  border: 1px solid rgba(13, 14, 27, .12);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.contact-form .field-shell:focus {
  outline: 3px solid rgba(39, 58, 239, .18);
  border-color: rgba(39, 58, 239, .46);
}

.contact-form select.field-shell {
  appearance: none;
  padding-right: 48px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230D0E1B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 18px center / 18px 18px no-repeat,
    #fff;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form button {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 16px 24px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.contact-service-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  background: var(--blue);
  color: var(--white);
}

.contact-call-prep {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  padding: 18px;
}

.contact-call-prep span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-size: 18px;
  font-weight: 950;
}

.contact-call-prep p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.contact-mobile-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(13, 14, 27, .88);
  box-shadow: 0 18px 48px rgba(13, 14, 27, .28);
  backdrop-filter: blur(14px);
}

.contact-mobile-bar a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 950;
}

.contact-mobile-bar a:last-child {
  background: var(--white);
  color: var(--dark);
}

.service-scroll-card {
  opacity: .42;
  transform: translateY(34px) scale(.985);
  transition:
    opacity .7s var(--ease),
    transform .85s var(--ease),
    background-color .45s var(--ease),
    color .45s var(--ease);
}

.service-scroll-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-scroll-card.is-current {
  background: var(--blue);
  color: var(--white);
}

.service-scroll-card.is-current .muted-text {
  color: rgba(255, 255, 255, .84);
}

.service-visual-stage {
  min-height: min(640px, calc(100svh - 128px));
  overflow: hidden;
}

.service-image {
  transition:
    opacity .45s var(--ease),
    transform .55s var(--ease);
}

.service-image.is-changing {
  opacity: 0;
  transform: translateY(16px) scale(.96);
}

.service-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.service-detail-list li {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: rgba(39, 58, 239, .08);
  color: var(--blue);
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity .34s var(--ease),
    transform .42s var(--ease),
    background-color .28s var(--ease),
    color .28s var(--ease);
}

.service-detail-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: currentColor;
}

.service-scroll-card.is-visible .service-detail-list li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.service-detail-list li:nth-child(2) { transition-delay: 45ms; }
.service-detail-list li:nth-child(3) { transition-delay: 90ms; }
.service-detail-list li:nth-child(4) { transition-delay: 135ms; }
.service-detail-list li:nth-child(5) { transition-delay: 180ms; }
.service-detail-list li:nth-child(6) { transition-delay: 225ms; }
.service-detail-list li:nth-child(7) { transition-delay: 270ms; }
.service-detail-list li:nth-child(8) { transition-delay: 315ms; }
.service-detail-list li:nth-child(9) { transition-delay: 360ms; }
.service-detail-list li:nth-child(10) { transition-delay: 405ms; }
.service-detail-list li:nth-child(11) { transition-delay: 450ms; }
.service-detail-list li:nth-child(12) { transition-delay: 495ms; }
.service-detail-list li:nth-child(13) { transition-delay: 540ms; }

.service-scroll-card.is-current .service-detail-list li {
  background: rgba(255, 255, 255, .16);
  color: var(--white);
}

.bullet-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(39, 58, 239, .08);
  color: var(--blue);
  padding: 7px 13px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.dark-section {
  color: var(--white);
  background: var(--dark);
}

.field-shell {
  border: 0;
  background: #F7F7F7;
  border-radius: 8px;
  min-height: 52px;
  padding: 14px 16px;
  width: 100%;
  font: inherit;
  color: var(--dark);
}

.footer-wordmark {
  will-change: transform;
}

@media (max-width: 900px) {
  .header-actions > .header-language-toggle,
  .header-action-link {
    display: none;
  }

  .header-menu-contact {
    display: grid;
  }

  footer > div:first-child {
    grid-template-columns: minmax(112px, .72fr) minmax(0, 1.28fr) !important;
    align-items: start;
    gap: 30px 22px !important;
    margin-bottom: 56px !important;
    text-align: left;
  }

  footer > div:first-child > div:first-child {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }

  footer > div:first-child > nav {
    justify-self: center;
    min-width: min(150px, 100%);
  }

  footer > div:first-child > div:last-child {
    min-width: 0;
    justify-self: center;
    max-width: 240px;
  }

  footer > div:first-child > div:last-child p,
  footer > div:first-child > div:last-child a {
    overflow-wrap: anywhere;
  }

  footer .footer-wordmark {
    text-align: center;
  }

  footer > p:last-child {
    text-align: center;
    line-height: 1.45;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero {
    min-height: 84svh;
  }

  .services-hero {
    min-height: auto;
    padding-block: 112px 54px;
  }

  .services-carousel {
    height: clamp(210px, 58vw, 310px);
    margin-top: 36px;
  }

  .services-carousel-card {
    width: min(82vw, 520px);
  }

  .services-carousel-card.is-prev {
    transform: translate3d(calc(-50% - 54vw), -50%, 0) scale(.58);
  }

  .services-carousel-card.is-next {
    transform: translate3d(calc(-50% + 54vw), -50%, 0) scale(.58);
  }

  .service-visual-stage {
    min-height: auto;
    padding-inline: 0;
  }

  .about-stats-grid,
  .about-principles-grid,
  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats-grid {
    width: min(1320px, calc(100% - 30px)) !important;
  }

  .about-value-card,
  .about-value-card:nth-child(4),
  .about-value-card:nth-child(5) {
    grid-column: auto;
  }

  .about-value-card,
  .about-principle-card {
    min-height: auto;
  }

  .contact-hero {
    min-height: auto;
    align-items: start;
    padding-block: 104px 0;
  }

  .contact-emergency-hero {
    min-height: auto;
    padding-block: 118px 74px;
  }

  .contact-emergency-hero h1 {
    font-size: clamp(52px, 11vw, 88px);
  }

  .contact-emergency-action {
    min-height: 280px;
  }

  .contact-hero-inner {
    width: min(var(--max), calc(100% - 30px));
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-hero-copy {
    padding-block: 0 22px;
  }

  .contact-hero h1 {
    font-size: clamp(58px, 14vw, 96px);
  }

  .contact-hero-visual img {
    width: min(100%, 560px);
  }

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

  .contact-method-card {
    min-height: 240px;
  }

  .contact-map-shell {
    min-height: 420px;
  }

}

@media (max-width: 820px) {
  .about-hero {
    height: auto;
    min-height: 100svh;
    align-items: start;
    padding-block: 104px clamp(46px, 10vw, 72px);
  }

  .about-hero-inner {
    width: min(var(--max), calc(100% - 30px));
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-hero-title {
    order: 1;
  }

  .about-hero-title h1 {
    font-size: clamp(62px, 18vw, 108px);
  }

  .about-hero-copy {
    order: 2;
    padding-top: 0;
  }

  .about-hero-copy p {
    max-width: 560px;
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .about-hero-visual {
    position: relative;
    left: auto;
    bottom: auto;
    order: 3;
    width: min(100%, 620px);
    height: auto;
    margin-inline: auto;
    translate: 0;
  }

  .about-hero-visual img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 620px) {
  .about-check-grid,
  .about-stats-grid,
  .about-principles-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline article {
    grid-template-columns: 1fr;
  }

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

  .services-hero h1 {
    font-size: clamp(58px, 18vw, 84px);
  }

  .services-hero p {
    margin-top: 18px;
  }

  .services-carousel-card span {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .privacy-hero {
    min-height: auto;
    padding-block: 112px 54px;
  }

  .privacy-hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .privacy-hero h2 {
    margin-top: 20px;
  }

  .privacy-doc-section p {
    font-size: 16px;
  }

  .contact-hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .contact-emergency-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: .9;
  }

  .contact-emergency-hero p {
    margin-top: 18px;
    font-size: 16px;
  }

  .contact-emergency-notes {
    margin-top: 20px;
  }

  .contact-emergency-action {
    min-height: 210px;
    gap: 12px;
    padding: 20px;
  }

  .contact-round-call {
    width: 132px;
    height: 132px;
  }

  .contact-round-call svg {
    width: 52px;
    height: 52px;
  }

  .contact-emergency-action > span {
    font-size: 22px;
  }

  .contact-emergency-action > strong {
    display: none;
  }

  .contact-hero-actions {
    display: grid;
  }

  .contact-call-button,
  .contact-mail-button,
  .contact-directions-button {
    width: 100%;
    justify-content: center;
  }

  .contact-call-button {
    min-height: 62px;
    font-size: 24px;
  }

  .contact-method-main strong {
    font-size: clamp(22px, 8vw, 34px);
  }

  .contact-method-main .contact-email-text {
    font-size: clamp(22px, 6.4vw, 32px);
  }

  .contact-call-prep {
    grid-template-columns: 1fr;
  }

  .contact-map-shell {
    min-height: 360px;
  }

  .contact-mobile-bar {
    display: grid;
  }

  .contact-page {
    padding-bottom: 76px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .motion-heading,
  .service-scroll-card {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .service-detail-list li {
    opacity: 1;
    transform: none;
  }

  .services-carousel-card {
    transition-duration: .01ms !important;
  }
}
