:root {
  /* ---- Brand palette ---- */
  --color-navy: #1a2e44; /* primary brand navy: headings, buttons, primary dark surfaces */
  --color-navy-deep: #10202f; /* hero & statement section backgrounds */
  --color-navy-darkest: #142436; /* footer background */
  --color-navy-panel: #16273a; /* network map panel background */
  --color-gold: #c8922a; /* primary accent: CTAs, borders, highlights */
  --color-gold-light: #e6be66; /* lighter accent: tag labels, active states, image overlay tint */
  --color-gold-muted: #5c4a1c; /* dark gold-brown text, used on the gold section background */
  --color-beige: #f0ebe1; /* page background */
  --color-ivory: #fbf9f4; /* contact form card background */
  --color-white: #fff;
  --color-teal: #2a6b6b; /* secondary accent: nav-link hover, link hover, input focus. Light backgrounds
                             only — it fails WCAG contrast on the dark navy surfaces gold is used on. */

  /* ---- Status colors ---- */
  --color-error-bg: #fbeae6;
  --color-error-text: #9a3220;

  /* ---- Text on light backgrounds, darkest to lightest ---- */
  --text-on-light-1: #2a3340; /* base body text */
  --text-on-light-2: #36404c; /* vision/mission/promise card text */
  --text-on-light-3: #3a434f; /* header nav links */
  --text-on-light-4: #4a535f; /* standard secondary paragraph text (most common) */
  --text-on-light-5: #525b67; /* services card text */
  --text-on-light-6: #5c6470; /* why / partners / contact-success text */
  --text-on-light-7: #6a7280; /* product card text */
  --text-on-light-8: #7a8290; /* foundation sub-label */
  --text-on-light-9: #94a0af; /* network region-zones text */

  /* ---- Text on dark backgrounds, roughly strongest to faintest ---- */
  --text-on-dark-1: #f4f0e8; /* headings on navy */
  --text-on-dark-2: #f6f2ea; /* hero heading */
  --text-on-dark-3: #c8d1dc; /* hero description */
  --text-on-dark-4: #c9d2dd; /* trust-bar item names */
  --text-on-dark-5: #b9c2ce; /* paragraph text on navy */
  --text-on-dark-6: #d7dee7; /* secondary text on navy */
  --text-on-dark-7: #dce3ec; /* hero badge / hero-nav label text */
  --text-on-dark-8: #8b97a6; /* hero-nav inactive index / footer tagline */
  --text-on-dark-9: #7e8b9b; /* trust-bar label */
  --text-on-dark-10: #9faab8; /* footer links */
  --text-on-dark-11: #6e7b8a; /* footer bottom text */

  /* ---- RGB triplets, for rgba() tints, borders, overlays, shadows ---- */
  --color-navy-rgb: 26, 46, 68;
  --color-navy-deep-rgb: 16, 32, 47;
  --color-navy-darkest-rgb: 20, 36, 54;
  --color-navy-statement-rgb: 13, 26, 38; /* one-off tone used only in the statement-break scrim */
  --color-gold-rgb: 200, 146, 42;
  --color-beige-rgb: 240, 235, 225;
  --color-white-rgb: 255, 255, 255;
  --color-black-rgb: 0, 0, 0;
  --color-error-border-rgb: 178, 58, 42;

  /* ---- Typography ---- */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Type scale. Applied uniformly to real content headings/copy;
     branding (logo wordmark), decorative glyphs/icons, and the two
     deliberate full-bleed display moments (the statement-break pull-quote
     and the network stat badge) are intentionally exempt — see their
     comments below. */
  --text-h1: 64px; /* the hero heading only */
  --text-h2: 40px; /* every section title */
  --text-h3: 24px; /* subsection headings (e.g. the foundation block within About) */
  --text-card-title: 20px; /* titles inside repeating cards: products, partners, services, values, why */
  --text-body: 16px; /* primary reading paragraphs */
  --text-card-body: 14px; /* descriptive copy inside compact cards */
  --text-meta: 14px; /* uppercase eyebrow labels and small meta text */
  --text-button: 15px; /* CTA and link button text */

  /* Comfortable reading measure for long-form paragraphs. */
  --measure: 60ch;
}

* {
  box-sizing: border-box;
}
/* Several components (e.g. .contact__fields, .contact__success) set their
   own `display` unconditionally, which otherwise beats the browser's
   default `[hidden]{display:none}` rule. This keeps `hidden` authoritative
   everywhere it's used to toggle visibility (contact form states, etc). */
[hidden] {
  display: none !important;
}
/* Every <picture> in this file is a transparent AVIF/WebP source wrapper
   around a single styled <img> — this keeps it out of layout so the img's
   own class (positioning, object-fit, sizing) applies exactly as if the
   <picture> wrapper weren't there. */
picture {
  display: contents;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--color-beige);
}
::selection {
  background: var(--color-gold);
  color: var(--color-white);
}
@keyframes gimpexKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.09) translate(-2%, -1.5%);
  }
}
[data-track]::-webkit-scrollbar {
  height: 6px;
}
[data-track]::-webkit-scrollbar-thumb {
  background: rgba(var(--color-navy-rgb), 0.22);
  border-radius: 99px;
}
[data-track]::-webkit-scrollbar-track {
  background: transparent;
}

/* ========== RESPONSIVE SYSTEM ========== */
/* data-sp    = section side-padding container            */
/* data-grid  = layout grid (split / 2 / 3 / 4 / 5)     */
/* data-rsp   = named one-off responsive targets         */

[data-rsp="hamburger"] {
  display: none;
}

/* — Tablet (≤1024px) — */
@media (max-width: 1024px) {
  [data-rsp="nav-links"] {
    display: none !important;
  }
  [data-rsp="hamburger"] {
    display: flex !important;
  }
  [data-sp] {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  [data-grid="split"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  [data-rsp="hero-grid"] {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
  }
  [data-rsp="hero-shell"] {
    min-height: 640px !important;
  }
  [data-grid="4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [data-grid="5"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  [data-rsp="h1"] {
    font-size: 46px !important;
    line-height: 1.08 !important;
  }
  [data-rsp="h2"] {
    font-size: 32px !important;
  }
  [data-rsp="statement"] {
    font-size: 58px !important;
  }
  [data-rsp="hero-badge"] {
    left: 14px !important;
  }
}

/* — Large mobile (≤768px) — */
@media (max-width: 768px) {
  [data-sp] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  [data-rsp="h1"] {
    font-size: 36px !important;
    line-height: 1.08 !important;
  }
  [data-rsp="h2"] {
    font-size: 27px !important;
  }
  [data-rsp="statement"] {
    font-size: 40px !important;
  }
  [data-grid="3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [data-grid="5"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [data-rsp="hero-img"] {
    display: none !important;
  }
  [data-rsp="hero-mosaic"] {
    grid-template-rows: 160px 160px !important;
  }
  [data-rsp="hero-shell"] {
    min-height: 668px !important;
  }
  [data-hero-slide] > [data-sp] {
    padding-top: 74px !important;
    padding-bottom: 120px !important;
  }
  [data-hero-dot] > div:last-child > span:last-child {
    font-size: 11px !important;
    letter-spacing: 0.02em !important;
  }
  [data-rsp="dot-nav"] {
    bottom: 10px !important;
  }
  [data-rsp="stat-d"] {
    display: none !important;
  }
  [data-rsp="stat-strip"] {
    gap: 16px 24px !important;
    justify-content: center !important;
  }
  [data-rsp="trust"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  [data-rsp="val-hdr"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }
  [data-grid="2"] {
    grid-template-columns: 1fr !important;
  }
  [data-rsp="why-item"] {
    border-right: none !important;
    border-bottom: 1px solid rgba(var(--color-navy-rgb), 0.1) !important;
    padding-bottom: 24px !important;
  }
  [data-rsp="why-item"]:last-child {
    border-bottom: none !important;
    padding-bottom: 30px !important;
  }
  [data-rsp="form-2col"] {
    grid-template-columns: 1fr !important;
  }
  [data-rsp="contact-tel"] {
    flex-direction: column !important;
    gap: 16px !important;
  }
  [data-rsp="footer-fl"] {
    flex-direction: column !important;
    gap: 32px !important;
  }
  [data-rsp="footer-nav"] {
    flex-direction: column !important;
    gap: 28px !important;
  }
  [data-rsp="hero-btns"] {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  [data-rsp="stat-strip"] > div {
    padding: 0 20px !important;
  }
}

/* — Small mobile (≤480px) — */
@media (max-width: 480px) {
  [data-grid="3"] {
    grid-template-columns: 1fr !important;
  }
  [data-grid="4"] {
    grid-template-columns: 1fr !important;
  }
  [data-grid="5"] {
    grid-template-columns: 1fr !important;
  }
  [data-rsp="h1"] {
    font-size: 28px !important;
  }
  [data-rsp="h2"] {
    font-size: 22px !important;
  }
  [data-rsp="statement"] {
    font-size: 30px !important;
  }
  [data-rsp="statement-pad"] {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  [data-rsp="hero-shell"] {
    min-height: 600px !important;
  }
  [data-hero-slide] > [data-sp] {
    padding-top: 64px !important;
    padding-bottom: 104px !important;
  }
  [data-hero-dot] > div:last-child > span:last-child {
    display: none !important;
  }
}

/* ===== extracted inline styles ===== */
.products__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  background: var(--color-gold-light);
  opacity: 0.5;
}
.contact__submit {
  margin-top: 4px;
  width: 100%;
  background: var(--color-gold);
  color: var(--color-navy);
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-size: var(--text-button);
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.contact__submit:hover {
  background: var(--color-navy);
  color: var(--color-white);
}
.contact__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.site {
  font-family: var(--font-body);
  color: var(--text-on-light-1);
  background: var(--color-beige);
  overflow-x: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(var(--color-beige-rgb), 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(var(--color-navy-rgb), 0.1);
}
.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gold);
  font-size: 19px;
  line-height: 1;
}
.site-header__logo-word {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.02em;
  color: var(--color-navy);
}
.site-header__logo-dot {
  color: var(--color-gold);
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-header__nav-link--about {
  text-decoration: none;
  color: var(--text-on-light-3);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.site-header__nav-link--about:hover {
  color: var(--color-teal);
}
.site-header__nav-link {
  text-decoration: none;
  color: var(--text-on-light-3);
  font-size: 14px;
  font-weight: 500;
}
.site-header__nav-link:hover {
  color: var(--color-teal);
}
.site-header__cta {
  text-decoration: none;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: var(--text-button);
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 6px;
  letter-spacing: 0.01em;
}
.site-header__cta:hover {
  background: var(--color-navy);
  color: var(--color-white);
}
.site-header__hamburger {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(var(--color-navy-rgb), 0.18);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.site-header__hamburger-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 1px;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(var(--color-beige-rgb), 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(var(--color-navy-rgb), 0.12);
  padding: 8px 24px 24px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 16px 40px rgba(var(--color-navy-darkest-rgb), 0.16);
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav__link {
  text-decoration: none;
  color: var(--color-navy);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(var(--color-navy-rgb), 0.07);
  display: block;
}
.mobile-nav__cta {
  text-decoration: none;
  display: block;
  text-align: center;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: var(--text-button);
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 8px;
  margin-top: 14px;
}
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--color-navy-deep);
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s ease;
}
.hero__slide--active {
  opacity: 1;
  z-index: 2;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: gimpexKenBurns 20s ease-in-out infinite alternate;
}
.hero__image--duration-22 {
  animation-duration: 22s;
}
.hero__image--duration-24 {
  animation-duration: 24s;
}
.hero__scrim-horizontal {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(var(--color-navy-deep-rgb), 0.94) 0%,
    rgba(var(--color-navy-deep-rgb), 0.72) 44%,
    rgba(var(--color-navy-deep-rgb), 0.28) 100%
  );
}
.hero__scrim-vertical {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(var(--color-navy-deep-rgb), 0.66) 0%, transparent 34%);
}
.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 40px 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__text {
  max-width: 660px;
}
.hero__tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero__tag-line {
  width: 34px;
  height: 1px;
  background: var(--color-gold);
}
.hero__tag-label {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}
.hero__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h1);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-on-dark-2);
  margin: 0 0 22px;
}
.hero__heading-accent {
  font-style: italic;
  color: var(--color-gold);
}
.statement__heading-accent {
  font-style: italic;
  color: var(--color-gold);
}
.hero__description {
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--text-on-dark-3);
  max-width: 540px;
  margin: 0 0 30px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero__cta {
  text-decoration: none;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: var(--text-button);
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 7px;
}
.hero__cta:hover {
  background: var(--color-navy);
  color: var(--color-white);
}
.hero__link {
  text-decoration: none;
  color: var(--text-on-dark-1);
  font-size: var(--text-button);
  font-weight: 600;
  padding: 15px 6px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.hero__link:hover {
  gap: 14px;
  color: var(--color-gold-light);
}
.hero__link-arrow {
  font-size: 18px;
}
.products__link-arrow {
  font-size: 18px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border: 1px solid rgba(var(--color-gold-rgb), 0.4);
  border-radius: 999px;
  background: rgba(var(--color-navy-deep-rgb), 0.35);
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 10px rgba(var(--color-gold-rgb), 0.8);
  flex-shrink: 0;
}
.hero__badge-text {
  font-size: 13px;
  color: var(--text-on-dark-7);
  letter-spacing: 0.02em;
}
.hero-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 6;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.hero-nav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hero-nav__item {
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.hero-nav__item--active {
  opacity: 1;
}
.hero-nav__track {
  height: 3px;
  border-radius: 2px;
  background: rgba(var(--color-white-rgb), 0.2);
  overflow: hidden;
  margin-bottom: 11px;
}
.hero-nav__fill {
  height: 100%;
  width: 0%;
  background: var(--color-gold);
}
.hero-nav__label-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hero-nav__index {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-on-dark-8);
}
.hero-nav__index--active {
  color: var(--color-gold-light);
}
.hero-nav__label {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-on-dark-7);
}
.trust {
  background: var(--color-navy);
}
.network {
  background: var(--color-navy);
}
.trust__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.trust__label {
  font-size: var(--text-meta);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-9);
  font-weight: 600;
}
.trust__list {
  display: flex;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
}
.trust__item {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--text-on-dark-4);
  letter-spacing: 0.02em;
}
.about {
  max-width: 1240px;
  margin: 0 auto;
  padding: 104px 40px 70px;
}
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.about__eyebrow {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-navy);
}
.services__eyebrow {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-navy);
}
.products__eyebrow {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-navy);
}
.why__eyebrow {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-navy);
}
.partners__eyebrow {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-navy);
}
.about__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: 1.12;
  color: var(--color-navy);
  margin: 18px 0 0;
}
.about__body {
  padding-top: 8px;
}
.about__lead {
  font-size: var(--text-body);
  max-width: var(--measure);
  line-height: 1.78;
  color: var(--text-on-light-4);
  margin: 0 0 20px;
}
.about__text {
  font-size: var(--text-body);
  max-width: var(--measure);
  line-height: 1.78;
  color: var(--text-on-light-4);
  margin: 0;
}
.pillars {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 40px 70px;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillars__card {
  background: var(--color-white);
  border: 1px solid rgba(var(--color-navy-rgb), 0.09);
  border-radius: 13px;
  padding: 34px 30px;
}
.pillars__label {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 16px;
}
.pillars__text {
  font-size: var(--text-body);
  max-width: var(--measure);
  line-height: 1.7;
  color: var(--text-on-light-2);
  margin: 0;
}
.pillars__card--promise {
  background: var(--color-navy);
  border-radius: 13px;
  padding: 34px 30px;
}
.pillars__label--promise {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.pillars__text--promise {
  font-size: var(--text-body);
  max-width: var(--measure);
  line-height: 1.7;
  color: var(--text-on-dark-6);
  margin: 0;
}
.values {
  background: var(--color-gold);
}
.values__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 84px 40px 92px;
}
.values__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}
.values__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h2);
  color: var(--color-navy);
  margin: 0;
}
.values__subtext {
  font-size: var(--text-meta);
  color: var(--color-gold-muted);
  max-width: 300px;
  text-align: right;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(var(--color-navy-darkest-rgb), 0.18);
  border: 1px solid rgba(var(--color-navy-darkest-rgb), 0.18);
  border-radius: 13px;
  overflow: hidden;
}
.values__card {
  background: var(--color-navy);
  padding: 34px 34px;
}
.values__number {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-gold-light);
  margin-bottom: 12px;
}
.values__title {
  font-family: var(--font-heading);
  font-size: var(--text-card-title);
  color: var(--text-on-dark-1);
  margin: 0 0 10px;
}
.values__text {
  font-size: var(--text-card-body);
  line-height: 1.68;
  color: var(--text-on-dark-5);
  margin: 0;
}
.services {
  background: var(--color-white);
  border-top: 1px solid rgba(var(--color-navy-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--color-navy-rgb), 0.08);
}
.services__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 40px;
}
.products {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 40px;
}
.why {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 40px;
}
.partners {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 40px;
}
.services__header {
  max-width: 640px;
  margin-bottom: 48px;
}
.services__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: 1.12;
  color: var(--color-navy);
  margin: 16px 0 18px;
}
.partners__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: 1.12;
  color: var(--color-navy);
  margin: 16px 0 18px;
}
.services__subtext {
  font-size: var(--text-body);
  max-width: var(--measure);
  line-height: 1.7;
  color: var(--text-on-light-4);
  margin: 0;
}
.partners__subtext {
  font-size: var(--text-body);
  max-width: var(--measure);
  line-height: 1.7;
  color: var(--text-on-light-4);
  margin: 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.services__card {
  padding: 6px 0;
}
.services__number {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: var(--color-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-weight: 700;
  margin-bottom: 18px;
}
.services__title {
  font-family: var(--font-heading);
  font-size: var(--text-card-title);
  color: var(--color-navy);
  margin: 0 0 9px;
}
.services__text {
  font-size: var(--text-card-body);
  line-height: 1.66;
  color: var(--text-on-light-5);
  margin: 0;
}
.products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.products__heading-col {
  max-width: 560px;
}
.products__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: 1.12;
  color: var(--color-navy);
  margin: 16px 0 0;
}
.why__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: 1.12;
  color: var(--color-navy);
  margin: 16px 0 0;
}
.products__controls {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.products__link {
  text-decoration: none;
  color: var(--color-teal);
  font-size: var(--text-button);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.products__link:hover {
  gap: 14px;
  color: var(--color-navy);
}
.products__nav {
  display: flex;
  gap: 9px;
}
.products__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(var(--color-navy-rgb), 0.22);
  background: transparent;
  color: var(--color-navy);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products__nav-btn:hover {
  background: var(--color-navy);
  color: var(--color-beige);
  border-color: var(--color-navy);
}
.products__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 288px;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
}
.products__card {
  background: var(--color-white);
  border: 1px solid rgba(var(--color-navy-rgb), 0.09);
  border-radius: 12px;
  overflow: hidden;
}
.products__card:hover {
  border-color: rgba(var(--color-gold-rgb), 0.5);
}
.products__media {
  aspect-ratio: 4/3;
  position: relative;
}
.products__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products__body {
  padding: 16px 18px 20px;
}
.products__title {
  font-family: var(--font-heading);
  font-size: var(--text-card-title);
  color: var(--color-navy);
  margin: 0 0 5px;
}
.products__text {
  font-size: var(--text-card-body);
  line-height: 1.55;
  color: var(--text-on-light-7);
  margin: 0;
}
.network__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 40px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.network__eyebrow {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.contact__eyebrow {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.network__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: 1.12;
  color: var(--text-on-dark-1);
  margin: 16px 0 20px;
}
.network__text {
  font-size: var(--text-body);
  max-width: var(--measure);
  line-height: 1.72;
  color: var(--text-on-dark-5);
  margin: 0 0 30px;
}
.network__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.network__region {
  border-left: 2px solid var(--color-gold);
  padding-left: 18px;
}
.network__region-name {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--text-on-dark-1);
  margin-bottom: 5px;
}
.network__region-zones {
  font-size: var(--text-card-body);
  color: var(--text-on-light-9);
  line-height: 1.55;
}
.network__map {
  position: relative;
  aspect-ratio: 900/760;
  border-radius: 16px;
  border: 1px solid rgba(var(--color-gold-rgb), 0.22);
  background: var(--color-navy-panel);
  overflow: hidden;
}
.network__map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  box-sizing: border-box;
}
.network__stat {
  position: absolute;
  right: 22px;
  top: 22px;
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 15px 19px;
  border-radius: 11px;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(var(--color-black-rgb), 0.3);
}
.network__stat-number {
  font-family: var(--font-heading);
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
}
.network__stat-label {
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 0.03em;
}
.network__legend {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(var(--color-navy-darkest-rgb), 0.8);
  padding: 9px 13px;
  border-radius: 9px;
  z-index: 2;
  border: 1px solid rgba(var(--color-gold-rgb), 0.28);
}
.network__legend-dot {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: var(--color-gold);
  box-shadow: 0 0 8px rgba(var(--color-gold-rgb), 0.6);
}
.network__legend-text {
  font-size: var(--text-meta);
  color: var(--text-on-dark-6);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.statement {
  position: relative;
  background: var(--color-navy-deep);
  overflow: hidden;
}
.statement__media {
  position: absolute;
  inset: 0;
}
.statement__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.statement__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(var(--color-navy-statement-rgb), 0.86) 0%,
    rgba(var(--color-navy-statement-rgb), 0.45) 48%,
    rgba(var(--color-navy-statement-rgb), 0.12) 100%
  );
  pointer-events: none;
}
.statement__content {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 150px 40px;
}
.statement__eyebrow {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.statement__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 86px;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--text-on-dark-1);
  margin: 24px 0 0;
  max-width: 920px;
}
.why__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(var(--color-navy-rgb), 0.12);
}
.why__item {
  padding: 30px 22px;
  border-right: 1px solid rgba(var(--color-navy-rgb), 0.1);
}
.why__icon {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--color-teal);
  margin-bottom: 14px;
}
.why__title {
  font-family: var(--font-heading);
  font-size: var(--text-card-title);
  color: var(--color-navy);
  margin: 0 0 8px;
  line-height: 1.25;
}
.why__text {
  font-size: var(--text-card-body);
  line-height: 1.6;
  color: var(--text-on-light-6);
  margin: 0;
}
.why__item--last {
  padding: 30px 22px;
}
.about__foundation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid rgba(var(--color-navy-rgb), 0.08);
}
.foundation__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h3);
  line-height: 1.14;
  color: var(--color-navy);
  margin: 16px 0 20px;
}
.foundation__lead {
  font-size: var(--text-body);
  max-width: var(--measure);
  line-height: 1.75;
  color: var(--text-on-light-4);
  margin: 0 0 18px;
}
.foundation__founder {
  color: var(--color-navy);
}
.foundation__text {
  font-size: var(--text-body);
  max-width: var(--measure);
  line-height: 1.75;
  color: var(--text-on-light-4);
  margin: 0;
}
.foundation__sub-label {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-light-8);
  margin-bottom: 18px;
}
.foundation__sister-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}
.foundation__sister {
  background: var(--color-white);
  border: 1px solid rgba(var(--color-navy-rgb), 0.1);
  border-radius: 10px;
  padding: 20px 22px;
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--color-navy);
}
.foundation__expansion {
  background: var(--color-navy);
  border-radius: 12px;
  padding: 24px 26px;
}
.foundation__expansion-label {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}
.foundation__expansion-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.foundation__expansion-item {
  font-size: 14px;
  color: var(--text-on-dark-6);
}
.partners__header {
  max-width: 640px;
  margin-bottom: 44px;
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.partners__card {
  border: 1px solid rgba(var(--color-navy-rgb), 0.1);
  border-radius: 12px;
  padding: 28px;
}
.partners__title {
  font-family: var(--font-heading);
  font-size: var(--text-card-title);
  color: var(--color-navy);
  margin: 0 0 7px;
}
.partners__text {
  font-size: var(--text-card-body);
  line-height: 1.6;
  color: var(--text-on-light-6);
  margin: 0;
}
.contact {
  background: var(--color-navy);
  background-image: radial-gradient(
    circle at 90% 0%,
    rgba(var(--color-gold-rgb), 0.16),
    transparent 40%
  );
}
.contact__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: 1.1;
  color: var(--text-on-dark-1);
  margin: 16px 0 22px;
}
.contact__text {
  font-size: var(--text-body);
  line-height: 1.72;
  color: var(--text-on-dark-5);
  margin: 0 0 40px;
  max-width: 440px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact__info-label {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}
.contact__address {
  font-size: 15.5px;
  color: var(--text-on-dark-6);
  line-height: 1.55;
}
.contact__info-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.contact__info-value {
  font-size: 15.5px;
  color: var(--text-on-dark-6);
}
.contact__form-card {
  background: var(--color-ivory);
  border-radius: 16px;
  padding: 38px;
  box-shadow: 0 30px 70px rgba(var(--color-black-rgb), 0.25);
}
.contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 380px;
  gap: 14px;
}
.contact__success-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.contact__success-heading {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--color-navy);
  margin: 6px 0 0;
}
.contact__success-text {
  font-size: var(--text-card-body);
  color: var(--text-on-light-6);
  margin: 0;
  max-width: 280px;
  line-height: 1.6;
}
.contact__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact__label {
  display: block;
  font-size: var(--text-meta);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.contact__input {
  width: 100%;
  border: 1px solid rgba(var(--color-navy-rgb), 0.18);
  background: var(--color-white);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-on-light-1);
  outline: none;
}
.contact__input:focus {
  border-color: var(--color-teal);
}
.contact__textarea {
  width: 100%;
  border: 1px solid rgba(var(--color-navy-rgb), 0.18);
  background: var(--color-white);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-on-light-1);
  outline: none;
  resize: vertical;
}
.contact__textarea:focus {
  border-color: var(--color-teal);
}
.contact__error {
  background: var(--color-error-bg);
  border: 1px solid rgba(var(--color-error-border-rgb), 0.28);
  color: var(--color-error-text);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  line-height: 1.5;
}
.site-footer {
  background: var(--color-navy-darkest);
}
.site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 54px 40px 40px;
}
.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(var(--color-white-rgb), 0.08);
}
.site-footer__brand {
  max-width: 340px;
}
.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.site-footer__logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 18px;
}
.site-footer__logo-word {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-beige);
}
.site-footer__tagline {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-on-dark-8);
  margin: 0;
}
.site-footer__nav {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.site-footer__col-heading {
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}
.site-footer__link {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-on-dark-10);
}
.site-footer__link:hover {
  color: var(--color-white);
}
.site-footer__contact-line {
  font-size: 14px;
  color: var(--text-on-dark-10);
}
.site-footer__bottom {
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer__bottom-text {
  font-size: 13px;
  color: var(--text-on-dark-11);
}
