:root {
  --bg: #050d14;
  --bg-deep: #02080d;
  --surface: rgba(8, 20, 31, 0.78);
  --surface-strong: rgba(10, 25, 38, 0.94);
  --card: rgba(10, 26, 38, 0.84);
  --card-soft: rgba(11, 31, 46, 0.72);
  --stroke: rgba(255, 255, 255, 0.08);
  --text: #f5f8fb;
  --muted: rgba(232, 238, 244, 0.74);
  --brand-blue: #0f2c44;
  --brand-lime: #91d329;
  --brand-lime-soft: rgba(145, 211, 41, 0.18);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  --radius-xl: 2rem;
  --radius-lg: 1.4rem;
  --content-width: min(100% - 2rem, 88rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(145, 211, 41, 0.16), transparent 22rem),
    radial-gradient(circle at 85% 10%, rgba(20, 58, 89, 0.34), transparent 18rem),
    linear-gradient(180deg, #07131d 0%, #05101a 48%, #03080e 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.22;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.8rem 1rem;
  margin-bottom: 1.6rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(5, 17, 27, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: min(13rem, 40vw);
  height: auto;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: 180ms ease;
}

.menu-toggle span + span {
  margin-top: 0.24rem;
}

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

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

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

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.site-nav a {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: var(--brand-lime-soft);
  border-color: rgba(145, 211, 41, 0.34);
  outline: none;
}

.page-content {
  display: grid;
  gap: 1.5rem;
}

.section-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

@media (prefers-reduced-motion: no-preference) {
  .has-scroll-reveal [data-reveal] {
    opacity: 0;
    transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 34px), 0) scale(var(--reveal-scale, 1));
    transition:
      opacity 720ms ease,
      transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .has-scroll-reveal [data-reveal="left"] {
    --reveal-x: -42px;
    --reveal-y: 16px;
  }

  .has-scroll-reveal [data-reveal="right"] {
    --reveal-x: 42px;
    --reveal-y: 16px;
  }

  .has-scroll-reveal [data-reveal="up"] {
    --reveal-y: 38px;
  }

  .has-scroll-reveal [data-reveal="zoom"] {
    --reveal-y: 24px;
    --reveal-scale: 0.96;
  }

  .has-scroll-reveal [data-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.section-heading--center {
  justify-items: center;
  text-align: center;
}

.section-heading h2,
.section-heading p {
  margin: 0;
}

.section-heading h2 {
  max-width: 38rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.section-heading p {
  max-width: 44rem;
  color: var(--muted);
  line-height: 1.65;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  background: var(--brand-lime);
  color: #08131a;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.section-chip--light {
  color: #ffffff;
}

.hero-card {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background:
    linear-gradient(115deg, rgba(3, 10, 15, 0.88), rgba(3, 10, 15, 0.5)),
    url("files/bg-hero-home.png") center/cover no-repeat;
}

.hero-card::before {
  content: "";
  position: absolute;
  left: clamp(-4rem, -2vw, -1rem);
  bottom: -7rem;
  width: clamp(12rem, 18vw, 18rem);
  height: clamp(16rem, 24vw, 24rem);
  background: rgba(0, 0, 0, 0.28);
  clip-path: polygon(50% 0%, 64% 8%, 70% 20%, 70% 28%, 100% 100%, 0% 100%, 30% 28%, 30% 20%, 36% 8%);
  opacity: 0.5;
}

.hero-card__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(21rem, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
}

.hero-card__copy {
  display: grid;
  gap: 1rem;
  align-content: start;
  max-width: 39rem;
}

.hero-card__copy h1,
.hero-card__copy p {
  margin: 0;
}

.hero-card__copy h1 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
}

.hero-card__copy p {
  color: rgba(245, 248, 251, 0.86);
  line-height: 1.72;
}

.hero-card__highlights {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  padding-top: 0.35rem;
}

.hero-card__highlights span {
  padding: 0.62rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-card__mini-logo {
  width: min(10rem, 38vw);
  margin-top: 0.5rem;
  opacity: 0.94;
}

.hero-card__leaders {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.leader-card {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 1.35rem;
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(8, 23, 35, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.leader-card__portrait {
  width: 8.7rem;
  align-self: start;
  justify-self: center;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.22));
}

.leader-card__portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.leader-card h2,
.leader-card p {
  margin: 0;
}

.leader-card h2 {
  font-size: 1.15rem;
  line-height: 1.1;
}

.leader-card__role {
  margin-top: 0.3rem;
  margin-bottom: 1.05rem;
  color: var(--brand-lime);
  font-weight: 800;
  font-size: 0.9rem;
}

.leader-card p:last-child,
.leader-card p:nth-child(3) {
  color: rgba(232, 238, 244, 0.78);
  line-height: 1.6;
}

.services-card {
  padding: clamp(1rem, 2vw, 1.6rem);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 25%),
    linear-gradient(90deg, #103047 0%, #3b6441 45%, #8fca2c 100%);
}

.carousel {
  margin-top: 0.9rem;
}

.carousel__stage {
  position: relative;
  --carousel-arrow-offset-y: -7.5rem;
}

.carousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.service-slide {
  display: grid;
  gap: 0.8rem;
  min-height: clamp(21.25rem, 52vh, 24.5rem);
  padding: clamp(0.75rem, 1.7vw, 1.2rem);
  border-radius: calc(var(--radius-xl) - 0.35rem);
  background: transparent;
  animation: fade-in 260ms ease;
}

.service-slide[hidden] {
  display: none;
}

.service-slide__copy {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.service-slide__copy h3,
.service-slide__copy p {
  margin: 0;
}

.service-slide__copy h3 {
  font-size: clamp(1.3rem, 1.9vw, 1.8rem);
  line-height: 1.08;
}

.service-slide--access .service-slide__copy {
  max-width: 43rem;
}

.service-slide--access .service-slide__copy h3 {
  font-size: clamp(1.02rem, 1.4vw, 1.45rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.service-slide__copy p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.38;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-slide__visual {
  position: relative;
  min-height: 8.5rem;
  margin-top: auto;
}

.service-slide__track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.55rem;
  height: clamp(3.25rem, 4vw, 3.9rem);
  border-radius: 999px;
  background: var(--brand-blue);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.service-slide__visual img {
  position: absolute;
  left: clamp(0rem, 3vw, 1.2rem);
  bottom: 0;
  width: min(var(--product-width), 46vw);
  max-height: 10.25rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.28));
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3.4rem;
  height: 3.4rem;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 20, 31, 0.64);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  transform: translateY(calc(-50% + var(--carousel-arrow-offset-y)));
  transition: 180ms ease;
}

.carousel__arrow:hover,
.carousel__arrow:focus-visible {
  background: rgba(7, 20, 31, 0.9);
  transform: translateY(calc(-50% + var(--carousel-arrow-offset-y))) scale(1.04);
  outline: none;
}

.carousel__arrow--prev {
  left: 1rem;
}

.carousel__arrow--next {
  right: 1rem;
}

.carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

.carousel__status {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel__dot {
  width: 0.85rem;
  height: 0.85rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: 180ms ease;
}

.carousel__dot.is-active,
.carousel__dot:hover,
.carousel__dot:focus-visible {
  width: 2.7rem;
  background: #ffffff;
  outline: none;
}

@keyframes fade-in {
  from {
    opacity: 0.38;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.city-section {
  --watermark-shift: 0px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background:
    linear-gradient(180deg, rgba(4, 16, 25, 0.88), rgba(4, 16, 25, 0.94)),
    url("files/bg-city-web.jpg") center/cover no-repeat;
}

.city-section::before {
  content: "";
  position: absolute;
  right: clamp(-1rem, 1vw, 1.5rem);
  top: 50%;
  width: clamp(8.5rem, 14vw, 12rem);
  aspect-ratio: 1837 / 3541;
  background: url("files/watermark.png") center/contain no-repeat;
  opacity: 0.08;
  transform: translate3d(0, calc(-50% + var(--watermark-shift)), 0);
  transform-origin: center;
  filter: saturate(0) brightness(1.2);
  pointer-events: none;
  will-change: transform;
}

.city-section::after {
  content: "";
  position: absolute;
  left: -3rem;
  bottom: -6rem;
  width: clamp(10rem, 18vw, 18rem);
  height: clamp(10rem, 18vw, 18rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 72%);
  filter: blur(4px);
  opacity: 0.55;
}

.testimonials-grid,
.segments-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.testimonials-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.testimonial-card > div {
  display: grid;
  gap: 0.1rem;
}

.testimonial-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(6, 20, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.testimonial-card h3,
.testimonial-card p,
.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card h3 {
  font-size: 1.02rem;
}

.testimonial-card__meta {
  margin-top: 0.25rem;
  color: var(--brand-lime);
  font-size: 0.88rem;
  font-weight: 800;
}

.testimonial-card blockquote {
  margin-top: 0.75rem;
  color: rgba(232, 238, 244, 0.84);
  line-height: 1.65;
}

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

.segment-card {
  position: relative;
  z-index: 1;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(7, 23, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.segment-card h3,
.segment-card p {
  margin: 0;
}

.segment-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.segment-card p {
  color: rgba(232, 238, 244, 0.82);
  line-height: 1.6;
}

.segments-section__closing {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 1.6rem auto 0;
  color: rgba(245, 248, 251, 0.92);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.contact-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) auto minmax(18rem, 1.1fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 1.8rem;
}

.contact-panel__info,
.contact-form {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-panel__info {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  padding: 1.4rem;
  background: rgba(12, 42, 64, 0.84);
}

.contact-panel__info > div {
  display: grid;
  gap: 0.3rem;
}

.contact-panel__info h3,
.contact-panel__info p {
  margin: 0;
}

.contact-panel__info h3 {
  font-size: 1.02rem;
}

.contact-panel__info p {
  margin-top: 0.35rem;
  color: rgba(232, 238, 244, 0.82);
}

.contact-panel__icon {
  display: grid;
  place-items: center;
  padding-inline: 0.4rem;
}

.contact-panel__icon img {
  width: 4rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  background: rgba(145, 211, 41, 0.93);
  color: #ffffff;
}

.contact-form h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1;
  text-transform: uppercase;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form label span {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: #ffffff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.contact-form button {
  margin-top: 0.2rem;
  min-height: 3.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 20, 31, 0.88);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: rgba(7, 20, 31, 1);
  transform: translateY(-1px);
  outline: none;
}

.contact-form__status {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.5;
}

.maps-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 22rem);
  min-height: 4.3rem;
  margin: 1.8rem auto 0;
  padding: 0.8rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--brand-lime);
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: 180ms ease;
}

.maps-button:hover,
.maps-button:focus-visible {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.03);
  outline: none;
}

body.has-modal-open {
  overflow: hidden;
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.map-modal[hidden] {
  display: none;
}

.map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 15, 0.8);
  backdrop-filter: blur(10px);
}

.map-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  width: min(100%, 56rem);
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-xl) - 0.15rem);
  background: rgba(8, 20, 31, 0.96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.map-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  transition: 180ms ease;
}

.map-modal__close:hover,
.map-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.map-modal__header {
  display: grid;
  gap: 0.3rem;
  padding-right: 3rem;
}

.map-modal__header h3,
.map-modal__header p {
  margin: 0;
}

.map-modal__eyebrow {
  color: var(--brand-lime);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-modal__header h3 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.map-modal__frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #dbe1e7;
  aspect-ratio: 16 / 10;
}

.map-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-modal__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: var(--brand-lime);
  color: #08131a;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .hero-card__grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .leader-card--secondary {
    transform: none;
  }

  .contact-panel__icon {
    display: none;
  }
}

@media (max-width: 860px) {
  .carousel__stage {
    --carousel-arrow-offset-y: -4.5rem;
  }

  .page-shell {
    width: min(100% - 1rem, 88rem);
    padding-top: 0.75rem;
  }

  .site-header {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border-radius: 1.3rem;
    padding: 1rem;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    padding-top: 0.8rem;
    justify-content: stretch;
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
  }

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

  .hero-card__highlights {
    flex-wrap: wrap;
  }

  .hero-card,
  .services-card,
  .city-section {
    padding: 1.25rem;
  }

  .city-section::before {
    right: -0.35rem;
    width: clamp(10rem, 26vw, 13.5rem);
    opacity: 0.1;
  }

  .city-section::after {
    left: -2.2rem;
    bottom: -4.5rem;
    width: clamp(8.5rem, 22vw, 13rem);
    height: clamp(8.5rem, 22vw, 13rem);
    opacity: 0.42;
  }

  .carousel__arrow {
    top: 50%;
    transform: translateY(calc(-50% + var(--carousel-arrow-offset-y)));
  }

  .carousel__arrow:hover,
  .carousel__arrow:focus-visible {
    transform: translateY(calc(-50% + var(--carousel-arrow-offset-y))) scale(1.04);
  }

  .carousel__footer {
    gap: 0.8rem;
  }

  .service-slide {
    min-height: auto;
    padding: 1.1rem 0.25rem 0.75rem;
  }

  .service-slide__visual {
    min-height: 12rem;
  }

  .service-slide--access .service-slide__copy h3 {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    white-space: normal;
  }

  .service-slide__visual img {
    max-height: 12.5rem;
  }

  .testimonials-grid,
  .segments-grid {
    grid-template-columns: 1fr;
  }

  .maps-button {
    min-width: 0;
    width: 100%;
  }

  .map-modal {
    padding: 0.85rem;
  }

  .map-modal__dialog {
    padding: 1rem;
  }
}

@media (max-width: 560px) {
  .hero-card__copy h1 {
    font-size: 1.8rem;
  }

  .hero-card__mini-logo {
    margin-left: 1.25rem;
  }

  .city-section::before {
    right: -1.1rem;
    top: 46%;
    width: min(44vw, 12rem);
    opacity: 0.12;
  }

  .city-section::after {
    left: -2rem;
    bottom: -3.5rem;
    width: min(42vw, 10.5rem);
    height: min(42vw, 10.5rem);
    opacity: 0.34;
  }

  .leader-card,
  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .leader-card__portrait {
    width: 9.1rem;
  }

  .feature-list li {
    width: 100%;
    text-align: center;
  }

  .service-slide__visual {
    min-height: 10rem;
  }

  .service-slide__track {
    height: 4.25rem;
  }

  .service-slide__visual img {
    left: 0.35rem;
    max-height: 9.5rem;
  }

  .carousel__arrow {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.15rem;
  }

  .carousel__arrow--prev {
    left: 0.2rem;
  }

  .carousel__arrow--next {
    right: 0.2rem;
  }

  .contact-form {
    padding: 1.15rem;
  }

  .map-modal__close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .map-modal__frame {
    aspect-ratio: 1 / 1;
  }

  .map-modal__link {
    width: 100%;
  }
}
