.access-hero {
  position: relative;
  display: grid;
  min-height: 58svh;
  place-items: center;
  overflow: hidden;
  background: url("../assets/images/appearance.jpg") center / cover no-repeat;
}

.access-hero::after {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  content: "";
}

.access-hero__copy {
  position: relative;
  z-index: 1;
  padding: 70px 24px;
  color: #fff;
  text-align: center;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.8),
    0 3px 9px rgba(0, 0, 0, 0.65),
    0 5px 16px rgba(0, 0, 0, 0.55);
}

.access-hero .subpage-kicker {
  font-size: 18px;
}

.access-hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: 0.16em;
  -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.5);
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.8),
    0 4px 12px rgba(0, 0, 0, 0.65),
    0 6px 20px rgba(0, 0, 0, 0.55);
}

.access-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: 0.12em;
}

.access-wrap {
  width: min(var(--sub-max), calc(100% - 64px));
  margin: 0 auto;
}

.info-block {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  margin-top: clamp(80px, 10vw, 130px);
  background: var(--sub-paper);
  box-shadow: var(--sub-shadow);
}

.info-card {
  position: relative;
  padding: clamp(42px, 6vw, 78px);
  background: var(--sub-deep);
  color: #f5f1e7;
}

.info-card h2 {
  margin: 0 0 35px;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: 0.14em;
}

.pairs {
  margin: 0;
}

.row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(199, 173, 124, 0.18);
}

.row:last-child {
  border-bottom: 1px solid rgba(199, 173, 124, 0.18);
}

.row dt {
  color: var(--sub-gold-light);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.row dd {
  margin: 0;
  color: rgba(245, 241, 231, 0.78);
  font-size: 14px;
}

.tel {
  border-bottom: 1px solid rgba(199, 173, 124, 0.5);
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.map-links a {
  padding: 10px 15px;
  border: 1px solid rgba(199, 173, 124, 0.42);
  color: #f5f1e7;
  font-size: 12px;
  letter-spacing: 0.06em;
  transition: background-color 0.2s ease;
}

.map-links a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.map {
  min-height: 620px;
  background: #ddd;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(0.95);
}

.route-block {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding: clamp(100px, 12vw, 170px) 0 10px;
}

.route-heading h2 {
  margin: 16px 0 22px;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.5;
  white-space: nowrap;
}

.route-heading p {
  margin: 0;
  color: var(--sub-muted);
  font-size: clamp(11px, 1.7vw, 14px);
  line-height: 2.2;
  white-space: nowrap;
}

.route-image {
  position: relative;
  margin: 0;
  background: #fff;
  box-shadow: var(--sub-shadow);
}

.route-image::before {
  position: absolute;
  inset: 14px -14px -14px 14px;
  border-right: 1px solid var(--sub-gold-light);
  border-bottom: 1px solid var(--sub-gold-light);
  content: "";
  pointer-events: none;
}

.route-image img {
  width: 100%;
}

@media (max-width: 840px) {
  .access-wrap {
    width: calc(100% - 40px);
  }

  .info-block,
  .route-block {
    grid-template-columns: 1fr;
  }

  .map {
    min-height: 430px;
  }

  .route-block {
    gap: 45px;
  }
}

@media (max-width: 600px) {
  .access-hero {
    min-height: 50svh;
  }

  .access-hero::after {
    inset: 12px;
  }

  .access-hero h1 {
    font-size: 32px;
    letter-spacing: 0.1em;
  }

  .access-wrap {
    width: calc(100% - 28px);
  }

  .info-block {
    margin-top: 70px;
  }

  .info-card {
    padding: 46px 24px;
  }

  .row {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }

  .map {
    min-height: 360px;
  }

  .route-block {
    padding-top: 90px;
  }

  .route-image::before {
    inset: 9px -9px -9px 9px;
  }
}
