body.drawer-open {
  overflow: hidden;
}

.company-hero,
.capability-strip,
.company-section,
.proof-strip {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.company-hero {
  padding-top: 32px;
}

.company-hero-copy {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.company-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: clamp(38px, 5vw, 68px);
  background:
    linear-gradient(90deg, rgba(189, 48, 44, 0.07), rgba(255, 255, 255, 0) 34%),
    var(--white);
  border-left: 6px solid var(--red);
}

.company-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 1.08;
}

.company-hero-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--red);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.35;
}

.company-hero-copy p:not(.eyebrow) {
  max-width: 730px;
  margin: 22px 0 0;
  color: #43515a;
  font-size: 20px;
  line-height: 1.85;
}

.capability-strip {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.capability-strip article {
  min-height: 210px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--line);
}

.capability-strip article:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.capability-strip article:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.capability-strip span {
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
}

.capability-strip strong {
  margin-top: 12px;
  display: block;
  color: #1e2a31;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.25;
}

.capability-strip p {
  margin: 22px 0 0;
  color: #55636b;
  font-size: 16px;
  line-height: 1.7;
}

.company-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.company-primary,
.company-secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
}

.company-primary {
  color: #fff;
  background: var(--red);
}

.company-primary:hover,
.company-primary:focus-visible {
  background: var(--red-dark);
}

.company-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.company-secondary:hover,
.company-secondary:focus-visible {
  color: var(--red);
  border-color: #c8d0d5;
}

.proof-strip {
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.proof-strip article {
  min-height: 140px;
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: #24343d;
  color: #fff;
}

.proof-strip strong {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.proof-strip span {
  color: #cbd5da;
  font-size: 15px;
  font-weight: 750;
}

.company-section {
  padding-top: 96px;
}

.company-section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.company-section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.15;
}

.company-section-head > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.milestone-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.timeline {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 0;
  padding: 26px 30px 26px 36px;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 5px;
  background: var(--red);
  border-radius: 999px;
}

.timeline time {
  color: var(--red);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.timeline h3,
.culture-cards h3,
.resource-link-cards h3 {
  margin: 0;
  font-size: 22px;
}

.timeline p,
.culture-cards p,
.resource-link-cards p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.milestone-summary {
  position: sticky;
  top: 104px;
  align-self: start;
  min-height: 100%;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(189, 48, 44, 0.08), rgba(255, 255, 255, 0) 48%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.milestone-summary > span {
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
}

.milestone-summary strong {
  margin-top: 18px;
  color: #1d292f;
  font-size: clamp(25px, 2.35vw, 34px);
  line-height: 1.25;
}

.milestone-summary p {
  margin: 22px 0 0;
  color: #53616a;
  font-size: 16px;
  line-height: 1.8;
}

.milestone-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.milestone-tags em {
  padding: 8px 12px;
  color: #33424a;
  background: #f4f6f7;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-style: normal;
  font-weight: 750;
}

.milestone-mini-stats {
  margin-top: auto;
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}

.milestone-mini-stats div {
  padding: 22px 18px;
  background: #24343d;
  color: #fff;
}

.milestone-mini-stats b {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.milestone-mini-stats small {
  display: block;
  margin-top: 8px;
  color: #ccd6da;
  font-size: 13px;
  font-weight: 750;
}

.network-panel {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.network-summary,
.network-card-grid,
.network-note {
  position: relative;
  z-index: 1;
}

.network-summary {
  max-width: 760px;
  margin-bottom: 28px;
}

.network-kicker {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.network-summary strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.network-summary p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.network-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.network-card {
  min-height: 250px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.94);
}

.network-card-hq {
  background: #24343d;
  color: #fff;
}

.network-card-planned {
  box-shadow: inset 4px 0 0 #266da8;
}

.network-card-index {
  align-self: flex-start;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.network-card-hq .network-card-index {
  color: #ffaaa6;
}

.network-card h3 {
  margin: 0;
  font-size: 24px;
}

.city-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-tags button,
.city-tags span {
  padding: 7px 10px;
  border: 1px solid #cfd7dc;
  border-radius: 8px;
  background: #fff;
  color: #35424a;
  font-size: 14px;
  font-weight: 850;
}

.city-tags button {
  cursor: pointer;
}

.city-tags button:hover,
.city-tags button:focus-visible {
  color: var(--red);
  border-color: #c9b8b7;
  outline: none;
}

.network-card-hq .city-tags button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.network-card-hq .city-tags button:hover,
.network-card-hq .city-tags button:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.network-card-planned .city-tags span {
  color: #87929a;
  background: #f6f8f9;
  border-color: #dce3e7;
  font-weight: 780;
}

.network-card > p {
  margin: auto 0 0;
  padding-top: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.network-card-hq p {
  color: #cbd4d8;
}

.network-note {
  margin: 18px 0 0;
  color: #727d84;
  font-size: 13px;
  line-height: 1.7;
}

.office-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
}

.office-drawer.is-open {
  pointer-events: auto;
}

.office-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  opacity: 0;
  background: rgba(20, 28, 33, 0.36);
  transition: opacity 180ms ease;
}

.office-drawer.is-open .office-drawer-backdrop {
  opacity: 1;
}

.office-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 100%);
  height: 100%;
  padding: 34px;
  overflow-y: auto;
  background: #fff;
  box-shadow: -20px 0 50px rgba(20, 28, 33, 0.18);
  transform: translateX(104%);
  transition: transform 200ms ease;
}

.office-drawer.is-open .office-drawer-panel {
  transform: translateX(0);
}

.office-drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #46545d;
  background: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.office-drawer-close:hover,
.office-drawer-close:focus-visible {
  color: var(--red);
  outline: none;
}

.office-drawer-head {
  padding-right: 44px;
}

.office-drawer-head span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.office-drawer-head h2 {
  margin: 12px 0 0;
  font-size: 40px;
  line-height: 1.15;
}

.office-drawer-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.office-drawer-photo {
  aspect-ratio: 4 / 3;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  margin-top: 28px;
  overflow: hidden;
  border: 1px dashed #b8c2c8;
  border-radius: 8px;
  color: #82909a;
  background:
    linear-gradient(135deg, rgba(189, 48, 44, 0.06), rgba(61, 90, 104, 0.05)),
    #f8fafb;
  font-size: 14px;
  font-weight: 850;
}

.office-drawer-photo.has-gallery {
  aspect-ratio: 1 / 1;
}

.office-drawer-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.office-photo-gallery {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1.42fr) minmax(0, 0.58fr);
  gap: 6px;
  background: #eef2f4;
}

.office-photo-gallery img {
  min-width: 0;
  min-height: 0;
  border-radius: 4px;
  filter: saturate(0.9) contrast(0.97);
}

.office-photo-gallery img:first-child {
  grid-column: 1 / -1;
  object-position: center 48%;
}

.office-drawer-photo span {
  align-self: end;
  width: 100%;
  padding: 10px 12px;
  color: #4e5a62;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(207, 215, 220, 0.78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.office-drawer-photo.is-hidden {
  display: none;
}

.office-drawer-list {
  margin: 28px 0 0;
  display: grid;
  border-top: 1px solid var(--line);
}

.office-drawer-list div {
  padding: 18px 0;
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.office-drawer-list div[hidden] {
  display: none;
}

.office-drawer-list dt {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.office-drawer-list dd {
  margin: 0;
  color: #56636b;
  font-size: 16px;
  line-height: 1.7;
  white-space: pre-line;
}

.culture-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.culture-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.culture-photo-grid {
  height: 360px;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 6px;
  background: #eef2f4;
}

.culture-photo-grid figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #e8edf0;
}

.culture-photo-main {
  grid-column: span 3;
}

.culture-photo-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(0.96);
}

.culture-photo-grid-featured .culture-photo-main img {
  object-position: 64% center;
}

.culture-photo-placeholder {
  min-height: 0;
  display: grid;
  place-items: center;
  color: #82909a;
  background:
    linear-gradient(135deg, rgba(189, 48, 44, 0.05), rgba(61, 90, 104, 0.05)),
    #f8fafb;
  border: 1px dashed #b8c2c8;
  font-size: 14px;
  font-weight: 850;
}

.culture-card-copy {
  padding: 28px;
}

.culture-card-copy > span {
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
}

.culture-card-copy h3 {
  margin-top: 16px;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.22;
}

.training-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.training-tags em {
  padding: 8px 12px;
  color: #33424a;
  background: #f4f6f7;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-style: normal;
  font-weight: 750;
}

.dealer-section {
  padding-top: 34px;
}

.dealer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dealer-photo,
.dealer-photo-placeholder {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #f8fafb;
  border-right: 1px solid var(--line);
}

.dealer-photo {
  position: relative;
}

.dealer-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(0.92) contrast(0.98);
}

.dealer-photo-placeholder {
  display: grid;
  place-items: center;
  color: #82909a;
  background:
    linear-gradient(135deg, rgba(189, 48, 44, 0.06), rgba(61, 90, 104, 0.06)),
    #f8fafb;
  font-size: 16px;
  font-weight: 850;
}

.dealer-copy {
  padding: clamp(34px, 4vw, 56px);
}

.dealer-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.12;
}

.dealer-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  color: #56636b;
  font-size: 18px;
  line-height: 1.85;
}

.dealer-points {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.dealer-points article {
  min-height: 112px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fbfcfc;
}

.dealer-points article + article {
  border-left: 1px solid var(--line);
}

.dealer-points span {
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
}

.dealer-points strong {
  color: #1e2a31;
  font-size: 20px;
  line-height: 1.35;
}

.resource-links-section {
  padding-bottom: 96px;
}

.resource-links-section .company-section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.resource-links-section .company-section-head h2 {
  font-size: clamp(28px, 3.1vw, 40px);
}

.resource-links-section .company-section-head > p:last-child {
  font-size: 16px;
}

.resource-link-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-link-cards article {
  min-height: 154px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.resource-link-cards article + article {
  border-left: 1px solid var(--line);
}

.resource-link-cards span {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
}

.resource-link-cards h3 {
  margin-top: 12px;
  font-size: 22px;
}

.resource-link-cards p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.65;
}

.resource-link-cards a,
.resource-link-cards em {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  color: #1f3039;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.resource-link-cards a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: translateY(-1px) rotate(45deg);
}

.resource-link-cards em {
  color: #82909a;
  font-style: normal;
}

.resource-link-card-disabled {
  background: #fbfcfc;
}

.resource-link-cards a:hover,
.resource-link-cards a:focus-visible {
  color: var(--red);
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .capability-strip,
  .milestone-layout,
  .network-card-grid,
  .culture-cards,
  .dealer-panel {
    grid-template-columns: 1fr;
  }

  .milestone-summary {
    position: static;
  }

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

  .dealer-photo,
  .dealer-photo-placeholder {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dealer-photo img {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .company-hero,
  .capability-strip,
  .company-section,
  .proof-strip {
    padding-right: 18px;
    padding-left: 18px;
  }

  .company-hero {
    padding-top: 20px;
    min-height: 0;
  }

  .company-hero-copy {
    padding: 26px 22px;
  }

  .company-hero h1 {
    font-size: 44px;
  }

  .company-hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .capability-strip {
    gap: 10px;
  }

  .capability-strip article {
    min-height: 0;
    padding: 24px 22px;
    border-radius: 8px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip article {
    min-height: 104px;
    padding: 22px;
  }

  .company-section {
    padding-top: 64px;
  }

  .timeline li {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    padding: 26px 22px;
  }

  .timeline time {
    font-size: 36px;
  }

  .milestone-summary {
    padding: 26px 22px;
  }

  .milestone-summary strong {
    font-size: 26px;
  }

  .milestone-mini-stats {
    margin-top: 28px;
  }

  .network-panel {
    padding: 22px;
  }

  .network-card-grid {
    grid-template-columns: 1fr;
  }

  .network-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .office-drawer-panel {
    width: 100%;
    padding: 28px 22px;
  }

  .office-drawer-head h2 {
    font-size: 32px;
  }

  .culture-photo-grid {
    height: 300px;
  }

  .culture-card-copy {
    padding: 26px 22px;
  }

  .dealer-section {
    padding-top: 28px;
  }

  .dealer-copy {
    padding: 28px 22px;
  }

  .dealer-copy h2 {
    font-size: 34px;
  }

  .dealer-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .dealer-points {
    grid-template-columns: 1fr;
  }

  .dealer-points article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .resource-link-cards {
    grid-template-columns: 1fr;
  }

  .resource-link-cards article {
    min-height: 0;
    padding: 24px 22px;
  }

  .resource-link-cards article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
