:root {
  --blue: #003478;
  --blue-d: #00275a;
  --orange: #e66926;
  --orange-d: #c9551a;
  --paper: #f3efe5;
  --paper-2: #eae4d6;
  --card: #fbf9f3;
  --ink: #1b2330;
  --ink-2: #5e6573;
  --line: #ddd5c4;
  --line-blue: rgba(0, 52, 120, .14);
  --maxw: 1200px;
  --sans: "Rubik", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px
}

.mono {
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: .04em
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px
}

.brand .ov {
  width: 46px;
  height: 30px;
  border-radius: 50%/50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .04em;
  font-style: italic;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .35)
}

.brand b {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .01em;
  color: var(--blue);
  display: block;
  line-height: 1
}

.brand .sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--ink-2);
  text-transform: uppercase;
  margin-top: 3px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px
}

.nav-links>a {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: .02em;
  transition: color .2s
}

.nav-links>a:hover {
  color: var(--blue)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background .2s, transform .2s;
  white-space: nowrap
}

.nav-cta:hover {
  background: var(--orange-d);
  transform: translateY(-1px)
}

.nav-cta svg {
  width: 15px;
  height: 15px
}

.nav-dir {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1.5px solid var(--line-blue);
  transition: .2s;
  white-space: nowrap
}

.nav-dir:hover {
  border-color: var(--blue);
  background: rgba(0, 52, 120, .05);
  transform: translateY(-1px)
}

.nav-dir svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

.burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 46px;
  height: 42px;
  cursor: pointer
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue);
  margin: 3px auto;
  transition: .25s
}

.hero {
  padding: 72px 0 0;
  position: relative
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 40px;
  align-items: center
}

.kicker {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-d);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange)
}

.hero h1 {
  font-weight: 900;
  font-size: clamp(44px, 8.2vw, 104px);
  line-height: .92;
  letter-spacing: -.025em;
  color: var(--blue);
  text-transform: uppercase
}

.hero h1 .mark {
  position: relative;
  display: inline-block;
  color: var(--orange)
}

.hero h1 .mark::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: .1em;
  height: .12em;
  background: var(--orange);
  opacity: .32;
  z-index: -1
}

.hero p.lead {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 520px;
  margin: 26px 0 30px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 9px;
  cursor: pointer;
  border: none;
  transition: transform .2s, background .2s
}

.btn svg {
  width: 18px;
  height: 18px
}

.btn-primary {
  background: var(--blue);
  color: #fff
}

.btn-primary:hover {
  background: var(--blue-d);
  transform: translateY(-2px)
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--line-blue)
}

.btn-ghost:hover {
  border-color: var(--blue);
  transform: translateY(-2px)
}

.btn-ghost svg {
  stroke: currentColor;
  fill: none
}

.vitals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2)
}

.vitals span b {
  color: var(--blue);
  font-weight: 700
}

.seal-wrap {
  display: grid;
  place-items: center
}

.seal {
  width: min(300px, 72vw);
  aspect-ratio: 1;
  position: relative
}

.seal .ring {
  position: absolute;
  inset: 0;
  animation: spin 26s linear infinite
}

.seal text {
  font-family: var(--mono);
  font-size: 8.4px;
  letter-spacing: .34em;
  fill: var(--blue);
  font-weight: 600
}

.seal .core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center
}

.seal .core .yr {
  font-weight: 900;
  font-size: clamp(40px, 9vw, 58px);
  color: var(--orange);
  line-height: .9
}

.seal .core .t {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--blue);
  margin-top: 6px;
  text-transform: uppercase
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.marquee {
  background: var(--orange);
  color: var(--blue-d);
  overflow: hidden;
  border-top: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  margin-top: 64px
}

.marquee .track {
  display: flex;
  white-space: nowrap;
  animation: slide 28s linear infinite;
  will-change: transform
}

.marquee span {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .02em;
  padding: 15px 0;
  text-transform: uppercase
}

.marquee i {
  font-style: normal;
  margin: 0 22px;
  opacity: .55
}

@keyframes slide {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

section {
  padding: 100px 0
}

.sec-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 18px
}

.sec-top .idx {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--orange-d);
  text-transform: uppercase
}

.sec-top h2 {
  font-weight: 900;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: -.02em;
  flex: 1;
  min-width: 280px
}

.sec-note {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 320px
}

.index {
  margin-top: 42px;
  border-top: 2px solid var(--blue)
}

.row {
  display: grid;
  grid-template-columns: 84px 1fr 1.4fr 44px;
  gap: 24px;
  align-items: center;
  padding: 26px 12px;
  border-bottom: 1px solid var(--line-blue);
  position: relative;
  transition: background .25s, padding .25s
}

.row:hover {
  background: var(--card);
  padding-left: 22px;
  padding-right: 22px
}

.row .no {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--orange)
}

.row h3 {
  font-weight: 800;
  font-size: clamp(19px, 2.4vw, 25px);
  color: var(--blue);
  line-height: 1.1
}

.row p {
  font-size: 15px;
  color: var(--ink-2)
}

.row .arr {
  justify-self: end;
  opacity: 0;
  transform: translateX(-8px);
  transition: .25s
}

.row:hover .arr {
  opacity: 1;
  transform: none
}

.row .arr svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2
}

.heritage {
  background: var(--blue);
  color: #eef2f8
}

.heritage .wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center
}

.big-num {
  font-weight: 900;
  font-size: clamp(120px, 22vw, 240px);
  line-height: .8;
  color: #fff;
  letter-spacing: -.04em
}

.big-num em {
  font-style: normal;
  color: var(--orange);
  font-size: .4em;
  display: block;
  letter-spacing: .04em;
  margin-top: 10px
}

.heritage h2 {
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 40px);
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff
}

.heritage p {
  color: #b9c6dd;
  margin-top: 16px;
  max-width: 520px
}

.feat {
  list-style: none;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px
}

.feat li {
  padding-left: 18px;
  border-left: 2px solid var(--orange)
}

.feat b {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 16px
}

.feat span {
  font-size: 14px;
  color: #9fb0cd
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 18px;
  margin-top: 42px
}

.tcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s
}

.tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px -28px rgba(0, 0, 0, .45);
  border-color: var(--blue)
}

.tcard .top {
  position: relative;
  height: 116px;
  background: linear-gradient(135deg, var(--blue), var(--blue-d))
}

.tcard .top::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 16px solid rgba(230, 105, 38, .28)
}

.tcard .tid {
  position: absolute;
  top: 13px;
  left: 15px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .65)
}

.tcard .avatar {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 3;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 38px;
  border: 4px solid var(--card);
  box-shadow: 0 10px 22px -8px rgba(0, 0, 0, .45);
  overflow: hidden
}

.tcard .avatar span {
  position: relative;
  z-index: 1
}

.tcard .avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2
}

.tcard .info {
  padding: 70px 22px 24px;
  text-align: center
}

.tcard .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-d);
  font-weight: 700
}

.tcard h3 {
  font-weight: 800;
  font-size: 21px;
  color: var(--blue);
  margin: 7px 0 3px;
  line-height: 1.1
}

.tcard .meta {
  font-size: 14px;
  color: var(--ink-2)
}

.tcard .spec {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px dashed var(--line);
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: left
}

.tcard .spec svg {
  width: 17px;
  height: 17px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0
}

.carousel {
  margin-top: 42px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--blue-d)
}

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

.car-track {
  display: flex;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1)
}

.car-slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16/9;
  max-height: 540px
}

.car-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.car-ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-d))
}

.car-slide:nth-child(2n) .car-ph {
  background: linear-gradient(135deg, #0a3f87, var(--blue-d))
}

.car-slide:nth-child(3n) .car-ph {
  background: linear-gradient(135deg, var(--blue), #021c44)
}

.car-ph svg {
  width: 64px;
  height: 64px;
  stroke: rgba(255, 255, 255, .35);
  fill: none;
  stroke-width: 1.4
}

.car-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(0deg, rgba(0, 39, 90, .9), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px
}

.car-cap .mono {
  font-family: var(--mono);
  color: #ffd9bf;
  font-size: 12px;
  letter-spacing: .08em
}

.car-btn {
  position: absolute;
  top: calc(50% - 26px);
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .5);
  transition: background .2s, transform .2s
}

.car-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06)
}

.car-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.4
}

.car-prev {
  left: 16px
}

.car-next {
  right: 16px
}

.car-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: var(--card)
}

.car-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: .25s;
  padding: 0
}

.car-dot.active {
  background: var(--orange);
  width: 26px;
  border-radius: 6px
}

.contact .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch
}

.contact .sec-top {
  grid-column: 1/-1;
  margin-bottom: 0
}

.order {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden
}

.order .head {
  background: var(--blue);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase
}

.order .head .o {
  color: var(--orange);
  background: #fff;
  padding: 3px 9px;
  border-radius: 5px;
  font-weight: 700
}

.order .body {
  padding: 10px 24px 22px
}

.ln {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--line)
}

.ln:last-child {
  border: none
}

.ln .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap
}

.ln .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px)
}

.ln .v {
  font-weight: 700;
  color: var(--blue);
  text-align: right
}

.ln .v a:hover {
  color: var(--orange)
}

.ln .v small {
  display: block;
  font-weight: 500;
  color: var(--ink-2);
  font-size: 13px
}

.open-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-d);
  letter-spacing: .04em
}

.map-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  min-height: 440px;
  position: relative;
  background: var(--card)
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  filter: grayscale(.25) contrast(1.02)
}

.map-cta {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, .5);
  transition: transform .2s
}

.map-cta:hover {
  transform: translateY(-2px)
}

.map-cta svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.9
}

footer {
  background: var(--blue-d);
  color: #fff;
  padding: 56px 0 40px
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center
}

footer .brand .ov {
  background: #fff;
  color: var(--blue)
}

footer .brand b {
  color: #fff
}

footer .brand .sub {
  color: rgba(255, 255, 255, .55)
}

.foot-meta {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  text-align: right;
  line-height: 2
}

.foot-meta a {
  color: #fff
}

.foot-meta a:hover {
  color: var(--orange)
}

.credit {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, .5)
}

.foot-meta .credit a {
  color: rgba(255, 255, 255, .82);
  font-weight: 600
}

.foot-meta .credit a:hover {
  color: var(--orange)
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s cubic-bezier(.2, .7, .2, 1), transform .65s cubic-bezier(.2, .7, .2, 1)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.float-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  place-items: center;
  box-shadow: 0 12px 26px -10px rgba(0, 0, 0, .5)
}

.float-call svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2
}

.float-dir {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 60;
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  place-items: center;
  box-shadow: 0 12px 26px -10px rgba(0, 0, 0, .5)
}

.float-dir svg {
  width: 23px;
  height: 23px;
  stroke: #fff;
  fill: none;
  stroke-width: 2
}

@media (max-width:1024px) {
  .nav-links {
    gap: 20px
  }

  .nav-links>a {
    font-size: 12px
  }

  section {
    padding: 84px 0
  }
}

@media (max-width:900px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    background: color-mix(in srgb, var(--paper) 97%, transparent);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 14px 28px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-135%);
    transition: transform .35s ease;
    align-items: stretch;
    max-height: calc(100vh - 70px);
    overflow: auto
  }

  .nav-links.open {
    transform: none
  }

  .nav-links>a {
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 15px
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 16px
  }

  .nav-cta,
  .nav-dir {
    justify-content: center;
    font-size: 15px;
    padding: 14px 16px
  }

  .burger {
    display: block
  }

  .hero {
    padding: 48px 0 0
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .seal-wrap {
    order: -1
  }

  .seal {
    width: min(220px, 52vw)
  }

  .marquee {
    margin-top: 48px
  }

  .heritage .wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center
  }

  .big-num {
    margin: 0 auto
  }

  .feat {
    text-align: left;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
  }

  .contact .wrap {
    grid-template-columns: 1fr
  }

  .sec-note {
    max-width: none
  }
}

@media (max-width:600px) {
  body {
    font-size: 16px
  }

  .wrap {
    padding: 0 20px
  }

  section {
    padding: 64px 0
  }

  section[id] {
    scroll-margin-top: 16px
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 60px)
  }

  .hero p.lead {
    font-size: 16px
  }

  .hero-actions {
    gap: 10px
  }

  .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 20px
  }

  .vitals {
    gap: 8px 18px;
    font-size: 12px;
    margin-top: 30px
  }

  .marquee span {
    font-size: 16px
  }

  .marquee i {
    margin: 0 16px
  }

  .sec-top {
    margin-bottom: 8px
  }

  .row {
    grid-template-columns: 48px 1fr;
    gap: 4px 14px;
    padding: 20px 8px
  }

  .row:hover {
    padding-left: 14px;
    padding-right: 14px
  }

  .row .no {
    grid-row: 1;
    grid-column: 1;
    font-size: 18px
  }

  .row h3 {
    grid-row: 1;
    grid-column: 2;
    font-size: 18px
  }

  .row p {
    grid-row: 2;
    grid-column: 1/-1;
    margin-top: 4px
  }

  .row .arr {
    display: none
  }

  .feat {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .car-slide {
    aspect-ratio: 4/3
  }

  .car-btn {
    width: 38px;
    height: 38px;
    top: calc(50% - 26px)
  }

  .car-btn svg {
    width: 18px;
    height: 18px
  }

  .car-prev {
    left: 10px
  }

  .car-next {
    right: 10px
  }

  .car-cap {
    font-size: 14px;
    padding: 16px
  }

  .ln {
    flex-wrap: wrap;
    gap: 4px
  }

  .ln .dots {
    display: none
  }

  .ln .v {
    text-align: left;
    width: 100%
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 320px
  }

  .map-cta {
    font-size: 13px;
    padding: 10px 14px
  }

  .foot {
    justify-content: flex-start
  }

  .foot-meta {
    text-align: left;
    font-size: 12px
  }

  .float-call {
    display: grid;
    width: 54px;
    height: 54px
  }

  .float-dir {
    display: grid;
    width: 54px;
    height: 54px;
    bottom: 80px
  }
}

@media (prefers-reduced-motion:reduce) {
  .seal .ring {
    animation: none
  }

  .marquee .track {
    animation: none
  }

  .reveal {
    transition: none
  }

  html {
    scroll-behavior: auto
  }

  .car-track {
    transition: none
  }
}