/* BRICK — layout, type, components */
:root {
  --bg: #fafbf9;
  --bg-elev: #f1f4f2;
  --surface: #ffffff;
  --border: rgba(15, 24, 20, 0.09);
  --text: #101a17;
  --muted: #4a5752;
  --accent: #c99706;
  --accent-dim: #a67f05;
  --accent-soft: rgba(201, 151, 6, 0.12);
  --accent-glow: rgba(212, 175, 70, 0.18);
  --ok: #2a8f5c;
  --danger: #b83232;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(15, 24, 20, 0.04), 0 14px 42px rgba(15, 24, 20, 0.07);
  --shadow-hover: 0 2px 6px rgba(15, 24, 20, 0.05), 0 22px 56px rgba(15, 24, 20, 0.1);
  --font: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --step--1: clamp(0.85rem, 0.82rem + 0.2vw, 0.95rem);
  --step-0: clamp(1rem, 0.95rem + 0.35vw, 1.1rem);
  --step-1: clamp(1.15rem, 1rem + 0.6vw, 1.35rem);
  --step-2: clamp(1.45rem, 1.15rem + 1.1vw, 1.85rem);
  --step-3: clamp(1.85rem, 1.35rem + 1.8vw, 2.45rem);
  --step-4: clamp(2.25rem, 1.5rem + 2.8vw, 3.25rem);
  --container: 1120px;
}

::selection {
  background: rgba(201, 151, 6, 0.22);
  color: var(--text);
}

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

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

@media (min-width: 900px) {
  body {
    background-image: radial-gradient(
      ellipse 100% 55% at 50% -8%,
      var(--accent-glow),
      transparent 58%
    );
  }
}

#main {
  flex: 1 0 auto;
}

body.nav-locked {
  overflow: hidden;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #5a4810;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--accent);
  color: #f4fbf7;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

.topbar {
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  font-size: var(--step--1);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.topbar__tag {
  color: var(--muted);
}

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

.lang__label {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.lang__select {
  font-family: var(--font);
  font-size: 0.8rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  max-width: 9.5rem;
}

.lang--legacy {
  display: flex;
  gap: 0.35rem;
}

.lang__btn {
  appearance: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.lang__btn:hover {
  border-color: rgba(15, 24, 20, 0.22);
}

.lang__btn--active {
  background: var(--accent-soft);
  border-color: rgba(180, 130, 20, 0.35);
  color: #5a4810;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo:focus-visible {
  outline: 2px solid rgba(180, 130, 20, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}

.logo__mark-wrap {
  display: block;
  overflow: hidden;
  width: 52px;
  height: 48px;
  flex: 0 0 auto;
}

.logo__mark {
  display: block;
  height: 48px;
  width: auto;
  max-width: none;
  pointer-events: none;
}

.logo__word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 24, 20, 0.35);
  z-index: 40;
}

.nav {
  z-index: 60;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__list > li {
  position: relative;
}

.nav__list a {
  color: var(--text);
  text-decoration: none;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  display: inline-block;
}

.nav__list a:hover {
  background: rgba(15, 24, 20, 0.06);
  color: var(--text);
}

.nav__link--current,
.nav a[aria-current="page"] {
  color: #5a4810;
  background: var(--accent-soft);
}

.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
}

.nav__trigger:hover {
  background: rgba(15, 24, 20, 0.06);
}

.nav__trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--muted);
}

.nav__sub {
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub,
.nav__sub.nav__sub--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__sub a {
  display: block;
  width: 100%;
}

.nav__sub--rich {
  min-width: min(92vw, 320px);
  padding: 0.65rem;
}

.nav__sub-preview {
  margin: 0;
  padding: 0;
}

.nav__svc-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.nav__svc-card:hover,
.nav__svc-card:focus-visible {
  background: var(--accent-soft);
  color: inherit;
}

.nav__svc-card__media {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 7 / 4;
  background: var(--bg-elev);
}

.nav__svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav__svc-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav__svc-card__title {
  font-weight: 600;
  font-size: var(--step--1);
  color: var(--text);
}

.nav__svc-card__note {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
}

.nav__svc-card__note--stat {
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 959px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 0 30%;
    max-width: 360px;
    background: var(--bg-elev);
    border-left: 1px solid var(--border);
    padding: 5.5rem 1.25rem 2rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }

  .nav--open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: rgba(15, 24, 20, 0.04);
    margin-top: 0.35rem;
    display: none;
  }

  .nav__sub.nav__sub--open {
    display: block;
  }

  .nav__item--has-sub:hover .nav__sub {
    display: none;
  }

  .nav__item--has-sub:hover .nav__sub.nav__sub--open {
    display: block;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero--cinematic {
  min-height: min(88vh, 760px);
  padding: clamp(5.5rem, 12vw, 7rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  justify-content: center;
}

.hero--cinematic .hero__slide {
  background-position: center center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 95% 75% at 50% 100%, rgba(6, 14, 11, 0.42), transparent 52%),
    radial-gradient(ellipse 70% 55% at 80% 20%, rgba(201, 151, 6, 0.07), transparent 45%),
    linear-gradient(180deg, rgba(10, 22, 18, 0.7) 0%, rgba(10, 22, 18, 0.52) 48%, rgba(10, 22, 18, 0.44) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

.hero--cinematic .hero__content {
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: min(72vh, 620px);
}

.hero__copy {
  max-width: 40rem;
}

.hero--cinematic .hero__copy {
  max-width: 44rem;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.hero--cinematic .hero__metrics {
  max-width: 58rem;
  margin-inline: auto;
  gap: 1rem;
}

.hero--cinematic .hero__metric {
  padding: 1.15rem 1.3rem;
  min-height: 4.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.hero--cinematic .hero__metric-value {
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
}

.hero--cinematic .hero__metric-label {
  margin-top: 0.35rem;
  font-size: clamp(0.8rem, 1.6vw, 0.9rem);
  line-height: 1.4;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  margin: 0 0 0.85rem;
}

.hero--cinematic h1 {
  font-family: var(--display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.06;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.22);
}

.hero--cinematic h1 em {
  font-style: normal;
  font-weight: inherit;
  color: #f2e6b8;
  text-shadow: 0 0 40px rgba(201, 151, 6, 0.35);
}

.hero--cinematic .hero__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--step-0);
  line-height: 1.6;
  margin: 0 auto 1.5rem;
  max-width: 36rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero--cinematic .hero__actions {
  justify-content: center;
}


.hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
}

.hero__metric {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  text-align: center;
}

.hero__metric-value {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.hero__metric-label {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

.home-intro__link {
  margin: 0.75rem 0 0;
}

.home-services__head {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.home-trust__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.home-trust__copy .section__head {
  margin-bottom: 1rem;
}

.home-trust__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
}

.customers-grid--home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.customers-grid--home .customer-card__inner {
  padding: 0.65rem 0.75rem;
  min-height: 4.5rem;
}

.customers-grid--home .customer-card__logo {
  max-height: 2.25rem;
}

.home-cta-band {
  padding: clamp(2rem, 5vw, 2.75rem) 0;
  background:
    radial-gradient(ellipse 80% 120% at 20% 50%, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 100% at 90% 80%, rgba(0, 0, 0, 0.08), transparent 45%),
    var(--accent);
  color: #fff;
}

.home-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.home-cta-band__copy h2 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-family: var(--display);
  font-size: var(--step-2);
}

.home-cta-band__copy p {
  margin: 0;
  opacity: 0.92;
  max-width: 36rem;
}

.home-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}


#services {
  scroll-margin-top: 5.5rem;
}

@media (max-width: 900px) {
  .hero--cinematic {
    min-height: min(82vh, 680px);
    align-items: center;
  }

  .hero--cinematic .hero__content {
    min-height: min(68vh, 540px);
  }

  .hero__scrim {
    background:
      radial-gradient(ellipse 100% 65% at 50% 100%, rgba(6, 14, 11, 0.5), transparent 50%),
      linear-gradient(180deg, rgba(10, 22, 18, 0.52) 0%, rgba(10, 22, 18, 0.82) 48%, rgba(10, 22, 18, 0.94) 100%);
  }

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

  .home-trust__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero__metrics {
    grid-template-columns: 1fr;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-size: var(--step--1);
}

.btn--primary {
  background: linear-gradient(145deg, #d4ae2a 0%, var(--accent) 38%, var(--accent-dim) 100%);
  color: #fdfcf6;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 10px 28px rgba(160, 115, 5, 0.22);
}

.btn--primary:hover {
  filter: brightness(1.04) saturate(1.05);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 14px 36px rgba(160, 115, 5, 0.28);
}

.btn--ghost {
  background: rgba(15, 24, 20, 0.04);
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(15, 24, 20, 0.08);
  color: var(--text);
}

.home-cta-band .btn--on-dark-ghost,
.about-cta-band .btn--on-dark-ghost {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
}

.home-cta-band .btn--on-dark-ghost:hover,
.about-cta-band .btn--on-dark-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.hero--cinematic .btn--hero-ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero--cinematic .btn--hero-ghost:hover {
  background: rgba(255, 255, 255, 0.26);
  border-color: #fff;
  color: #fff;
}

.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--tight {
  padding-top: 2rem;
}

.section__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section__head h2 {
  font-family: var(--display);
  font-size: var(--step-3);
  margin: 0 0 0.5rem;
  letter-spacing: -0.025em;
  font-feature-settings: "kern" 1, "liga" 1;
  line-height: 1.12;
}

.section__head p {
  margin: 0;
  color: var(--muted);
}

.section__head .section__eyebrow {
  margin-bottom: 0.65rem;
}

.section__head .section__lead {
  margin-top: 0.75rem;
  max-width: 38rem;
  line-height: 1.65;
}

.section__head .section__tagline {
  margin-top: 0.65rem;
  font-weight: inherit;
  color: var(--muted);
}

.home-who__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  margin-bottom: 2rem;
}

.home-who__split .section__head {
  max-width: none;
  margin-bottom: 0;
}

.home-who__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.home-who__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.home-who__media .gallery-carousel--who-split {
  aspect-ratio: 16 / 10;
  border: none;
  border-radius: var(--radius);
}

.section__list--spaced {
  margin-top: 1rem;
}

.journey {
  background: linear-gradient(180deg, var(--bg-elev) 0%, color-mix(in srgb, var(--bg-elev) 92%, var(--bg)) 100%);
  border-block: 1px solid var(--border);
}

.journey__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.35rem 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.journey__strip strong {
  font-weight: inherit;
  color: inherit;
}

.journey__sep {
  color: var(--muted);
  font-weight: 400;
  padding-inline: 0.15rem;
}

.card__list strong,
.checklist strong,
.section__list strong {
  font-weight: inherit;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 1080px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 1px 2px rgba(15, 24, 20, 0.04), 0 10px 32px rgba(15, 24, 20, 0.06);
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(15, 24, 20, 0.11);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .pillar-card,
  .customer-card__inner {
    transition-duration: 0.01ms;
  }

  .card:hover,
  .pillar-card:hover,
  .customer-card:hover .customer-card__inner {
    transform: none;
  }
}

.card h3 {
  margin: 0;
  font-size: var(--step-1);
  font-family: var(--display);
}

.card p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

.card__link {
  margin-top: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.card__link:hover {
  color: #5a4810;
}

.card--media {
  padding: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card--media .card__media {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16 / 7;
  background: var(--bg-elev);
  overflow: hidden;
}

.card--media .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card__media .gallery-carousel--card {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.card__media .gallery-carousel--card .gallery-carousel__dots {
  bottom: 0.4rem;
  padding: 0.25rem 0.4rem;
}

.card__media .gallery-carousel--card .gallery-carousel__dot {
  width: 6px;
  height: 6px;
}

.card__media .gallery-carousel--card .gallery-carousel__btn {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1.25rem;
}

.card__media .gallery-carousel--card .gallery-carousel__btn--prev {
  left: 0.35rem;
}

.card__media .gallery-carousel--card .gallery-carousel__btn--next {
  right: 0.35rem;
}

.card--media .card__body {
  flex: 1 1 67%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 0;
  padding: 0.85rem 1.35rem 1.15rem;
}

.card--media .card__body .tag {
  margin: 0;
}

.card--media .card__body h3 {
  margin: 0;
}

.card--media .card__body .card__list {
  flex: 1;
  margin: 0;
}

.card--media .card__body .card__link {
  margin: auto 0 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--bg-elev);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose {
  max-width: 65ch;
}

.prose h1 {
  font-family: var(--display);
  font-size: var(--step-3);
  margin-top: 0;
}

.prose h2 {
  font-family: var(--display);
  font-size: var(--step-2);
  margin-top: 2rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.25rem;
}

.page-hero {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(180, 130, 20, 0.06), transparent);
}

.page-hero h1 {
  font-family: var(--display);
  font-size: var(--step-3);
  margin: 0 0 0.5rem;
}

.page-hero .lede {
  margin: 0;
  color: var(--muted);
  font-size: var(--step-1);
  max-width: 50ch;
}

.list-rows {
  display: grid;
  gap: 1rem;
}

.list-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: start;
}

@media (max-width: 640px) {
  .list-row {
    grid-template-columns: 1fr;
  }
}

.list-row h3 {
  margin: 0 0 0.35rem;
  font-size: var(--step-1);
}

.list-row > div:last-child {
  align-self: center;
}

a.list-row--link {
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

a.list-row--link:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

a.list-row--link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a.list-row--link h2 {
  margin: 0 0 0.35rem;
  font-size: var(--step-1);
}

.list-row__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  align-self: center;
}

.list-row__arrow {
  font-size: 1.15rem;
  color: var(--accent);
  line-height: 1;
}

.blog-article {
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}

.blog-article__back {
  margin: 0 0 1.25rem;
}

.blog-article__back a {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--accent-dim);
  text-decoration: none;
}

.blog-article__back a:hover {
  text-decoration: underline;
}

.blog-article__head {
  margin-bottom: 1.75rem;
}

.blog-article__head h1 {
  margin: 0 0 0.5rem;
  font-size: var(--step-2);
  line-height: 1.2;
}

.blog-article__lead {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.blog-article__body {
  max-width: 52rem;
}

.tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
  opacity: 0.92;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: var(--step--1);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
  font: inherit;
}

.form label > div[data-lang] {
  width: 100%;
}

.form .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid rgba(180, 130, 20, 0.35);
  outline-offset: 1px;
}

.footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 40%, var(--bg-elev)) 0%, var(--bg-elev) 18%);
  padding: 2.5rem 0 2rem;
  font-size: var(--step--1);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.footer__brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.footer__muted {
  color: var(--muted);
  margin: 0;
}

.footer__title {
  font-weight: 700;
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer__links a {
  color: var(--text);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.footer__copyline {
  margin: 0;
}

.footer__legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.footer__legal-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
}

.footer__legal-nav a:hover {
  color: var(--accent-dim);
  text-decoration: underline;
}

.footer__legal-sep {
  color: var(--border);
  font-weight: 400;
  user-select: none;
}

.legal-doc {
  max-width: 42rem;
}

.legal-doc__updated {
  margin: 0 0 2rem;
  font-size: var(--step--1);
  color: var(--muted);
}

.legal-section {
  padding: 1.35rem 1.5rem;
  margin-bottom: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 0.65rem;
  font-size: var(--step-1);
  font-family: var(--display);
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-section p + p {
  margin-top: 0.75rem;
}

.legal-section a {
  color: var(--accent-dim);
}

.page-hero--legal .lede {
  max-width: 40ch;
}

[data-lang][hidden] {
  display: none !important;
}

html[dir="rtl"] .header__inner,
html[dir="rtl"] .topbar__inner {
  flex-direction: row-reverse;
}

.inline-note {
  font-size: var(--step--1);
  color: var(--muted);
  margin-top: 0.75rem;
}

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

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: var(--step--1);
  line-height: 1.5;
}

.form-status--success {
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  color: var(--text);
}

.form-status--error {
  background: color-mix(in srgb, #c44 10%, transparent);
  border: 1px solid color-mix(in srgb, #c44 30%, var(--border));
  color: var(--text);
}

.thank-you__inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.thank-you__message {
  margin: 0 0 1.25rem;
  font-size: var(--step-1);
  font-family: var(--display);
}

.thank-you__redirect {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: var(--step-0);
}

.thank-you__redirect strong {
  color: var(--accent);
  font-weight: 700;
}

.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-elev);
}

.contact-map {
  display: block;
  width: 100%;
  height: min(360px, 55vh);
  border: 0;
}

.customers-note {
  margin-bottom: 1.5rem;
}

.customers-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}

.customer-card {
  margin: 0;
}

.customer-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 120px;
  padding: 1.25rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(15, 24, 20, 0.04), 0 8px 28px rgba(15, 24, 20, 0.05);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.customer-card:hover .customer-card__inner {
  border-color: rgba(180, 130, 20, 0.22);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.customer-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  height: auto;
  padding: 0.35rem 0;
  overflow: visible;
}

.customer-card__logo {
  display: block;
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.customer-card__logo-wrap:has(.customer-card__logo--boost-md) {
  min-height: 66px;
  padding: 0.4rem 0.35rem;
}

.customer-card__logo--boost-md {
  transform: none;
  max-height: 56px;
  max-width: 98%;
  width: auto;
}

.customer-card__logo--boost-lg {
  transform: scale(1.6);
  transform-origin: center center;
}

.customer-card__logo-wrap:has(.customer-card__logo--boost-xl) {
  min-height: 76px;
  padding: 0.45rem 0;
}

.customer-card__logo--boost-xl {
  transform: none;
  max-height: 64px;
  max-width: 94%;
}

.customer-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: var(--muted);
  line-height: 1.3;
}

.customer-card__logo-wrap:has(.customer-card__logo:not([hidden]))
  + .customer-card__name[aria-hidden="true"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.customer-card--text .customer-card__logo-wrap {
  display: none;
}

.customer-card--text .customer-card__name {
  font-size: var(--step-0);
  color: var(--text);
  letter-spacing: 0.02em;
}

.section--elev {
  background: var(--bg-elev);
}

.pillars {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  padding: 1.5rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(15, 24, 20, 0.04), 0 10px 32px rgba(15, 24, 20, 0.05);
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
}

.pillar-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(15, 24, 20, 0.1);
  transform: translateY(-2px);
}

.pillar-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: var(--step-1);
  color: var(--accent);
}

.pillar-card__list,
.card__list,
.section__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: var(--step--1);
  line-height: 1.55;
}

.pillar-card__list li,
.card__list li,
.section__list li {
  margin-bottom: 0.35rem;
}

.pillar-card__list li:last-child,
.card__list li:last-child {
  margin-bottom: 0;
}

.checklist {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.checklist li {
  margin-bottom: 0.35rem;
}

.prose .checklist + .checklist {
  margin-top: 0.5rem;
}

.page-hero--about .lede {
  max-width: 42rem;
}

.page-hero--about-split {
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(201, 151, 6, 0.07) 0%, rgba(201, 151, 6, 0.02) 42%, transparent 100%);
}

.page-hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

.page-hero__copy .lede {
  max-width: none;
  margin-top: 0.75rem;
}

.page-hero__tagline {
  margin: 0.85rem 0 0;
  font-weight: 600;
  color: var(--text);
  font-size: var(--step--1);
}

.page-hero__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.about-stats {
  padding: 1.25rem 0;
  background: var(--accent);
  color: #fff;
}

.home-stats {
  margin: 0;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.about-stat__value {
  margin: 0;
  font-family: var(--display);
  font-size: var(--step-2);
  font-weight: 700;
  line-height: 1.15;
}

.about-stat__label {
  margin: 0.25rem 0 0;
  font-size: var(--step--1);
  opacity: 0.9;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-split__copy h2 {
  margin-top: 0;
}

.about-split__media {
  margin: 0;
}

.about-bottom__lead {
  margin: -0.25rem 0 0.75rem;
  color: var(--muted);
}

.about-bottom__cta {
  margin-top: 1.5rem;
}

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

.section__head--center {
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.about-facility__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.about-facility__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elev);
}

.about-facility__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.about-facility__item--carousel .gallery-carousel--facility {
  position: relative;
  aspect-ratio: 4 / 3;
}

.about-facility__item--carousel .gallery-carousel__slide img {
  display: block;
}

.about-facility__item--carousel .gallery-carousel__btn {
  width: 2rem;
  height: 2rem;
  font-size: 1.1rem;
}

.about-facility__item--carousel .gallery-carousel__btn--prev {
  left: 0.35rem;
}

.about-facility__item--carousel .gallery-carousel__btn--next {
  right: 0.35rem;
}

.about-facility__item figcaption {
  padding: 0.65rem 0.85rem;
  font-size: var(--step--1);
  font-weight: 600;
}

.about-capability-links {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.about-capability-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: var(--step--1);
  transition: border-color 0.15s, background 0.15s;
}

.about-capability-link:hover {
  border-color: var(--accent);
  background: rgba(180, 130, 20, 0.06);
}

.about-customers__more {
  margin: 1.5rem 0 0;
  text-align: center;
}

.home-why-keys {
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

#about,
#capabilities,
#customers {
  scroll-margin-top: 5.5rem;
}

.about-capacity {
  max-width: 48rem;
}

.about-cta-band {
  padding: clamp(2rem, 5vw, 2.75rem) 0;
  background:
    radial-gradient(ellipse 80% 120% at 20% 50%, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 100% at 90% 80%, rgba(0, 0, 0, 0.08), transparent 45%),
    var(--accent);
  color: #fff;
}

.about-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.about-cta-band__copy h2 {
  margin: 0 0 0.35rem;
  color: #fff;
}

.about-cta-band__copy p {
  margin: 0;
  opacity: 0.92;
  max-width: 36rem;
}

.btn--on-dark {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 900px) {
  .page-hero__split,
  .about-split,
  .home-who__split {
    grid-template-columns: 1fr;
  }

  .page-hero__media,
  .home-who__media {
    order: -1;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

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

  .about-split__media {
    order: -1;
  }
}

@media (max-width: 480px) {
  .about-stats__grid {
    grid-template-columns: 1fr;
  }
}

.service-feature {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elev);
}

.service-feature > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-carousel {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, var(--bg-elev) 0%, color-mix(in srgb, var(--bg-elev) 88%, #e8ebe9) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(15, 24, 20, 0.04), 0 12px 36px rgba(15, 24, 20, 0.06);
}

.gallery-carousel.service-feature {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.gallery-carousel__slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.gallery-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 24, 20, 0.5);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-carousel__btn:hover {
  background: rgba(15, 24, 20, 0.72);
}

.gallery-carousel__btn--prev {
  left: 0.65rem;
}

.gallery-carousel__btn--next {
  right: 0.65rem;
}

.gallery-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-carousel__dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 24, 20, 0.45);
}

.gallery-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.gallery-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.gallery-carousel.service-feature .gallery-carousel__dots {
  gap: 0.35rem;
}

.gallery-carousel.service-feature .gallery-carousel__dot {
  width: 7px;
  height: 7px;
}

.gallery-carousel--card .gallery-carousel__dots {
  gap: 0.25rem;
}

.gallery-carousel--card .gallery-carousel__dot {
  width: 6px;
  height: 6px;
}

.service-gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elev);
}

.service-gallery__item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fleet-banner {
  margin-top: 0.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-soft), rgba(180, 130, 20, 0.06));
  border: 1px solid var(--border);
  font-size: var(--step-1);
  font-family: var(--display);
  color: var(--text);
  text-align: center;
  line-height: 1.45;
}

.fleet-banner strong {
  color: var(--accent);
  font-size: 1.35em;
}
