/* ==========================================================================
   Surbiton Cars — wayfinding theme
   Palette anchored on the logo: slate-navy wordmark + sky-blue map pin,
   with an amber indicator-light accent for actions.
   No webfonts, no frameworks — system stack keeps FCP/LCP immediate.
   ========================================================================== */

:root {
  --ink: #10202e;
  --ink-deep: #0a1621;
  --ink-soft: #35505f;
  --body: #43606f;

  --sky: #7dcbf1;
  --sky-deep: #1780b8;
  --sky-wash: #eaf5fc;

  --amber: #f5b32d;
  --amber-deep: #c98708;

  --paper: #f3f7fa;
  --white: #fff;
  --line: #dbe6ef;
  --line-soft: #eaf0f6;

  --measure: 70ch;
  --radius: 14px;
  --radius-sm: 9px;
  --shell: 1240px;
  --gutter: 20px;

  --shadow-sm: 0 1px 2px rgba(16, 32, 46, .06), 0 4px 12px rgba(16, 32, 46, .05);
  --shadow-md: 0 2px 6px rgba(16, 32, 46, .07), 0 14px 34px rgba(16, 32, 46, .09);
  --ease: cubic-bezier(.4, .1, .2, 1);

  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; border: 0; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.16;
  letter-spacing: -.021em;
  text-wrap: balance;
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: var(--sky-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: 0; }
li:last-child { margin-bottom: 0; }

button { font: inherit; color: inherit; }

strong, b { color: var(--ink); font-weight: 680; }

:focus-visible {
  outline: 3px solid var(--sky-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 0; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.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;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 650;
  letter-spacing: -.005em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn svg { width: 17px; height: 17px; flex: none; fill: currentColor; }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: #ffc043; color: var(--ink); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #1b3348; color: #fff; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.btn--outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--sky-deep); color: var(--sky-deep); }

.btn--sm { padding: 10px 18px; font-size: 14.5px; }

/* ---------- top strip ---------- */
.topbar {
  background: var(--ink-deep);
  color: #b9cede;
  font-size: 13.5px;
  line-height: 1.4;
}
.topbar__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 26px;
  padding-block: 9px;
}
.topbar a { color: #dbe9f4; }
.topbar a:hover { color: var(--sky); text-decoration: none; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 14px; height: 14px; flex: none; fill: var(--sky); }
.topbar__hours { margin-left: auto; color: #8fa9bd; }

@media (max-width: 780px) {
  .topbar__hours { display: none; }
  .topbar__in { justify-content: center; gap: 6px 18px; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
}
.site-header.is-stuck { box-shadow: 0 6px 22px rgba(16, 32, 46, .09); }

.masthead {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: 190px; height: 36px; }

.nav-toggle {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 9px;
  padding: 9px 14px;
  font-size: 14.5px;
  font-weight: 620;
  cursor: pointer;
}
.nav-toggle__bars { width: 17px; height: 12px; position: relative; flex: none; }
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }
.is-nav-open .nav-toggle__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.is-nav-open .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.is-nav-open .nav-toggle__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item { position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color .16s var(--ease), color .16s var(--ease);
}
.nav__link:hover { background: var(--sky-wash); color: var(--sky-deep); text-decoration: none; }
.nav__link[aria-current="page"] { color: var(--sky-deep); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--sky-deep);
}
.nav__caret { width: 9px; height: 9px; fill: currentColor; opacity: .55; transition: transform .18s var(--ease); }
.nav__item.is-open > .nav__link .nav__caret { transform: rotate(180deg); }

.nav__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 246px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 7px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
}
.nav__item.is-open > .nav__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__panel li { margin: 0; }
.nav__panel a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 14.7px;
  font-weight: 550;
}
.nav__panel a:hover { background: var(--sky-wash); color: var(--sky-deep); text-decoration: none; }
.nav__panel a[aria-current="page"] { color: var(--sky-deep); background: var(--sky-wash); }

.header-cta { flex: none; margin-left: 6px; }

@media (max-width: 1120px) {
  .nav__link { padding: 10px 10px; font-size: 14.4px; }
  .brand img { width: 168px; height: 32px; }
}

@media (max-width: 991px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    background: #fff;
    border-left: 1px solid var(--line);
    padding: 18px 16px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .26s var(--ease);
    z-index: 95;
    box-shadow: -18px 0 44px rgba(10, 22, 33, .16);
    margin: 0;
  }
  .is-nav-open .nav { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { justify-content: space-between; padding: 12px 12px; font-size: 15.5px; }
  .nav__link[aria-current="page"]::after { display: none; }
  .nav__panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: 0 0 4px 14px;
    padding: 0 0 0 6px;
    display: none;
    min-width: 0;
  }
  .nav__item.is-open > .nav__panel { display: block; }
  .nav__mobile-cta { margin-top: 16px; display: block; }
  .nav__mobile-cta .btn { width: 100%; }
}
@media (min-width: 992px) { .nav__mobile-cta { display: none; } }

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 33, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease), visibility .24s;
  z-index: 88;
}
.is-nav-open .nav-scrim { opacity: 1; visibility: visible; }

/* ==========================================================================
   HERO — headline left, booking widget slot right
   ========================================================================== */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 460px at 12% 8%, rgba(125, 203, 241, .16), transparent 62%),
    radial-gradient(720px 420px at 96% 96%, rgba(245, 179, 45, .1), transparent 60%),
    repeating-linear-gradient(115deg, transparent 0 78px, rgba(125, 203, 241, .05) 78px 79px);
  z-index: -1;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .38;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, var(--ink) 30%, rgba(16, 32, 46, .82) 58%, rgba(16, 32, 46, .62));
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: 44px;
  align-items: start;
  padding-block: 58px 66px;
}

.hero__copy { max-width: 640px; padding-top: 6px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125, 203, 241, .13);
  border: 1px solid rgba(125, 203, 241, .3);
  color: var(--sky);
  border-radius: 999px;
  padding: 6px 15px 6px 11px;
  font-size: 13.4px;
  font-weight: 620;
  letter-spacing: -.005em;
  margin-bottom: 20px;
}
.chip svg { width: 13px; height: 13px; fill: currentColor; flex: none; }

.hero h1 {
  color: #fff;
  font-size: clamp(2.05rem, 1.28rem + 2.55vw, 3.35rem);
  line-height: 1.09;
  letter-spacing: -.032em;
  margin-bottom: 18px;
}
.hero__sub {
  font-size: clamp(1.02rem, .97rem + .28vw, 1.16rem);
  line-height: 1.6;
  color: #b3cadb;
  max-width: 54ch;
  margin-bottom: 26px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.stores { display: flex; gap: 10px; align-items: center; }
.stores a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  opacity: .94;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.stores a:hover { opacity: 1; transform: translateY(-1px); }
.stores img { width: 122px; height: 36px; }

/* route strip: the "journey" of promises, drawn as a line with stops */
.hero__route {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
}
.hero__stop {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.4px;
  font-weight: 600;
  color: #cadff0;
}
.hero__stop::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 3px rgba(125, 203, 241, .22);
  flex: none;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding-block: 72px; }
.section--tight { padding-block: 56px; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: #b8cede; }
.section--ink h2, .section--ink h3 { color: #fff; }

.section-head { max-width: 60ch; margin-bottom: 40px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.62rem, 1.32rem + 1vw, 2.28rem);
  margin-bottom: 12px;
}
.section-head p { font-size: 16.6px; }
.section--ink .section-head p { color: #a6c0d3; }

.chip--light {
  background: var(--sky-wash);
  border-color: #c4e3f6;
  color: var(--sky-deep);
}

/* ---------- long-form article ---------- */
.prose { max-width: var(--measure); }
.prose h2 {
  font-size: clamp(1.42rem, 1.22rem + .68vw, 1.85rem);
  margin: 2.1em 0 .6em;
  padding-left: 18px;
  position: relative;
  line-height: 1.22;
}
.prose h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .16em;
  bottom: .16em;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(var(--sky), var(--sky-deep));
}
.prose h3 {
  font-size: clamp(1.2rem, 1.1rem + .36vw, 1.4rem);
  margin: 1.9em 0 .55em;
  color: var(--ink);
}
.prose h4 { font-size: 1.1rem; margin: 1.6em 0 .5em; }
.prose > *:first-child { margin-top: 0; }
.prose p { font-size: 16.8px; }
.prose ul { list-style: none; padding-left: 0; margin-bottom: 1.4em; }
.prose ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: .62em;
  font-size: 16.6px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--sky-deep);
  background: #fff;
}
.prose ol { padding-left: 1.3em; }

/* article + aside layout used on the deep content pages */
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 54px;
  align-items: start;
}
@media (max-width: 1000px) {
  .article-grid { grid-template-columns: 1fr; gap: 38px; }
}

.aside { position: sticky; top: 104px; display: grid; gap: 18px; }
@media (max-width: 1000px) { .aside { position: static; } }

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.panel h3 { font-size: 1.08rem; margin-bottom: 12px; }
.panel p { font-size: 15.2px; }
.panel--ink {
  background: var(--ink);
  border-color: transparent;
  color: #b6cddd;
}
.panel--ink h3 { color: #fff; }
.panel .btn { width: 100%; margin-top: 14px; }

.panel-list { list-style: none; margin: 0; padding: 0; }
.panel-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15.1px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  margin: 0;
}
.panel-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.panel-list li:first-child { padding-top: 0; }
.panel-list svg { width: 16px; height: 16px; fill: var(--sky-deep); flex: none; margin-top: 4px; }
.panel--ink .panel-list li { border-color: rgba(255, 255, 255, .1); }
.panel--ink .panel-list svg { fill: var(--sky); }

.quick-links { list-style: none; margin: 0; padding: 0; }
.quick-links li { margin: 0; }
.quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 15.1px;
  font-weight: 580;
}
.quick-links li:last-child a { border-bottom: 0; }
.quick-links a:hover { color: var(--sky-deep); text-decoration: none; }
.quick-links svg { width: 13px; height: 13px; fill: currentColor; opacity: .45; flex: none; }

/* ==========================================================================
   DESTINATION BOARD — airports & stations
   ========================================================================== */
.board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
}
.dest {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.dest:hover { box-shadow: var(--shadow-md); border-color: #c3d8e6; }
.dest__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--sky-wash);
  overflow: hidden;
}
.dest__media img { width: 100%; height: 100%; object-fit: cover; }
.dest__tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(10, 22, 33, .82);
  color: #fff;
  border-radius: 7px;
  padding: 5px 11px;
  font-size: 12.4px;
  font-weight: 650;
  letter-spacing: .01em;
}
.dest__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.dest__body h3 { font-size: 1.12rem; margin-bottom: 9px; line-height: 1.28; }
.dest__body p { font-size: 15.1px; line-height: 1.62; margin-bottom: 18px; }
.dest__cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.8px;
  font-weight: 660;
  color: var(--ink);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 3px;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.dest__cta:hover { color: var(--sky-deep); border-color: var(--sky-deep); text-decoration: none; }
.dest__cta svg { width: 13px; height: 13px; fill: currentColor; }

/* ==========================================================================
   FLEET
   ========================================================================== */
.fleet {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 22px;
}
.vehicle {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.vehicle__media {
  background: linear-gradient(170deg, var(--sky-wash), #fff);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  min-height: 118px;
}
.vehicle__media img { width: 100%; max-width: 220px; height: auto; }
.vehicle h3 { font-size: 1.08rem; margin-bottom: 3px; }
.vehicle__tag { font-size: 13.4px; color: #7d95a5; font-weight: 580; margin-bottom: 14px; }
.vehicle__specs { list-style: none; margin: 0; padding: 14px 0 0; border-top: 1px solid var(--line-soft); }
.vehicle__specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.6px;
  color: var(--ink-soft);
  margin-bottom: 9px;
}
.vehicle__specs li:last-child { margin-bottom: 0; }
.vehicle__specs svg { width: 15px; height: 15px; fill: var(--sky-deep); flex: none; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 860px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item.is-open { border-color: #bcdcf0; box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 19px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: 16.2px;
  font-weight: 640;
  color: var(--ink);
  line-height: 1.42;
}
.faq-question:hover { color: var(--sky-deep); }
.faq-question .icon {
  margin-left: auto;
  flex: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--sky-wash);
  color: var(--sky-deep);
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  transition: transform .22s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.faq-item.is-open .icon { transform: rotate(45deg); background: var(--ink); color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s var(--ease);
}
.faq-answer-inner { padding: 0 19px 19px; }
.faq-answer-inner p { font-size: 15.8px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

.faq-foot {
  margin-top: 26px;
  background: var(--sky-wash);
  border: 1px solid #cbe6f7;
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}
.faq-foot h3 { font-size: 1.08rem; margin-bottom: 3px; }
.faq-foot p { font-size: 15px; margin: 0; }
.faq-foot .btn { margin-left: auto; }
@media (max-width: 620px) { .faq-foot .btn { margin-left: 0; width: 100%; } .chip,.hero__route,.hero__actions, .hero__sub{display: none;} .hero__grid{    grid-template-columns:auto;gap:5px; padding-block:10px} }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 22px;
}
.contact-card {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(125, 203, 241, .14);
  display: grid;
  place-items: center;
  margin-bottom: 15px;
}
.contact-card__icon svg { width: 19px; height: 19px; fill: var(--sky); }
.contact-card h3 { font-size: 1.02rem; margin-bottom: 7px; }
.contact-card p, .contact-card a { font-size: 15.3px; color: #a9c3d6; }
.contact-card a { color: var(--sky); font-weight: 600; word-break: break-word; }
.contact-card a:hover { color: #fff; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink-deep); color: #93aec2; font-size: 15px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px 30px;
  padding-block: 58px 42px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { width: 180px; height: 34px; margin-bottom: 16px; }
.footer-brand p { font-size: 14.7px; line-height: 1.66; max-width: 40ch; }

.footer-col h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 680;
  margin-bottom: 15px;
  letter-spacing: -.006em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #93aec2; font-size: 14.7px; }
.footer-col a:hover { color: var(--sky); text-decoration: none; }

.footer-contact { list-style: none; margin: 14px 0 0; padding: 0; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; font-size: 14.7px; }
.footer-contact svg { width: 15px; height: 15px; fill: var(--sky); flex: none; margin-top: 4px; }
.footer-contact a { color: #cfe1ee; font-weight: 570; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding-block: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  font-size: 13.8px;
  color: #7c98ad;
}
.footer-bottom a { color: #a8c3d6; }
.footer-bottom .sep { opacity: .4; }

/* ==========================================================================
   Floating helpers
   ========================================================================== */

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 79;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 17px; height: 17px; fill: currentColor; }
@media (max-width: 767px) { .to-top { bottom: 76px; right: 14px; } }

/* 404 */
.err { text-align: center; padding-block: 96px; }
.err__code {
  font-size: clamp(6.4rem, 3rem + 6vw, 8rem);
  line-height: 1;
  color: var(--sky-deep);
  letter-spacing: -.05em;
  margin-bottom: 12px;
}
.err p { max-width: 46ch; margin-inline: auto; }
.err .btn { margin-top: 22px; }
button:focus{
  outline: 3px solid var(--sky-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

.modalwidth{
  z-index: 99999 !important;
}