.access-page {
  --route-line: rgba(17,17,17,.08);
  background: #ffffff;
  color: #181818;
}

/* =========================
   HERO
========================= */
.access-hero {
  padding: 140px 0 72px;
  background: #f6f4ef;
  text-align: center;
}

.access-hero__inner {
  max-width: 720px;
}

.access-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.access-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 46px);
  line-height: 1.5;
  letter-spacing: .04em;
}

.access-hero p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

/* =========================
   ROUTES
========================= */
.access-routes {
  padding: clamp(56px, 7vw, 100px) 16px;
}

.access-routes .access-head {
  margin-bottom: 16px;
}

.access-routes__lead {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 44px auto 0;
}

.route-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: 0 12px 36px rgba(0,0,0,.06);
}

.route-card__from {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--muted);
}

.route-card__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .02em;
}

.route-card__time {
  display: inline-block;
  margin: 14px 0 0;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(111,179,201,.14);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 14px;
  width: fit-content;
}

.route-card__steps {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  flex: 1;
}

.route-card__steps li {
  padding: 12px 0;
  border-top: 1px solid var(--route-line);
  font-size: 14px;
  line-height: 1.8;
  color: #222;
}

.route-card__steps li:first-child {
  border-top: 0;
  padding-top: 0;
}

.route-card__steps li span {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
  color: var(--muted);
}

.route-card__link {
  display: inline-block;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dark);
  width: fit-content;
}

.route-card__link:hover {
  opacity: .8;
}

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

@media (max-width: 640px) {
  .access-hero {
    padding: 108px 0 56px;
  }

  .access-hero h1 {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .route-card {
    padding: 26px 22px;
  }
}

@media (max-width: 768px) {
  .access-page .header-inner {
    flex-wrap: nowrap;
  }

  .access-page .header-actions {
    margin-left: auto;
    gap: 10px;
  }

  .access-page .header-actions .btn {
    width: auto;
    min-width: 92px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.2;
  }

  .access-page .brand {
    min-width: 0;
  }
}
