.access-page {
  position: relative;
  overflow: hidden;
  color: var(--landl-text);
  background:
    linear-gradient(rgba(27, 72, 163, 0.085) 1.6px, transparent 1.6px),
    linear-gradient(90deg, rgba(27, 72, 163, 0.085) 1.6px, transparent 1.6px),
    linear-gradient(180deg, #eef4ff 0%, #ffffff 42%, #f7fbff 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
}

.access-page .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.access-page .breadcrumbs {
  font-size: 0.9rem;
  color: var(--landl-text-light);
  margin-bottom: 20px;
}

.access-page .breadcrumbs a {
  color: var(--landl-text-light);
  text-decoration: none;
}

.access-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, filter .2s ease;
}

.access-page .btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.access-page .btn--primary {
  background: linear-gradient(135deg, #1b48a3, #14377d);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(27, 72, 163, 0.18);
}

.access-page .btn--secondary {
  background: #ffffff;
  color: #1b48a3;
  border: 1px solid var(--landl-border);
  box-shadow: var(--landl-shadow-soft);
}

.access-page .btn--ghost {
  background: #eef4ff;
  color: #1b48a3;
  border: 1px solid var(--landl-border);
}

.access-page .section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.access-page .section-heading__eyebrow,
.access-page .access-cta__eyebrow,
.access-page .access-hero__eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(253, 240, 1, 0.28);
  color: #1b48a3;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.access-page .section-heading h2,
.access-cta__box h2 {
  margin: 0;
  color: #1b48a3;
}

.access-page .section-heading p:last-child {
  margin: 12px auto 0;
  max-width: 760px;
  color: var(--landl-text-sub);
  line-height: 1.9;
}

/* Hero */
.access-hero {
  position: relative;
  padding: 64px 0 44px;
  background:
    radial-gradient(circle at top right, rgba(253, 240, 1, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(238, 244, 255, 0.78) 0%, rgba(255, 255, 255, 0.20) 100%);
}

.access-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}

.access-hero__content {
  position: relative;
}

.access-hero__content::after {
  content: "";
  position: absolute;
  top: -22px;
  left: -16px;
  width: 86px;
  height: 86px;
  background:
    radial-gradient(circle, rgba(253, 240, 1, 0.74) 0 18%, transparent 19%),
    radial-gradient(circle, rgba(27, 72, 163, 0.12) 0 18%, transparent 19%);
  background-size: 22px 22px;
  opacity: 0.42;
  pointer-events: none;
}

.access-hero__title {
  margin: 0;
  color: #1b48a3;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 800;
}

.access-hero__subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 12px 0;
  color: var(--landl-text);
}

.access-hero__text {
  line-height: 1.95;
  color: var(--landl-text-sub);
}

.access-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.access-hero__image {
  position: relative;
}

.access-hero__image::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 110px;
  height: 110px;
  border-radius: 26px;
  background: rgba(253, 240, 1, 0.16);
  filter: blur(2px);
  z-index: 0;
}

.access-hero__image::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 90px;
  height: 90px;
  border: 2px dashed rgba(27, 72, 163, 0.18);
  border-radius: 24px;
  z-index: 0;
}

.access-hero__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(27, 72, 163, .12);
  border: 4px solid rgba(255, 255, 255, 0.9);
}

/* Summary */
.access-summary {
  padding: 28px 0 56px;
}

.access-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.summary-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--landl-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--landl-shadow-soft);
  backdrop-filter: blur(3px);
}

.summary-card h2 {
  font-size: 1.2rem;
  margin: 0 0 16px;
  color: #1b48a3;
}

.summary-card__times {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.time-box {
  flex: 1;
  background: #eef4ff;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
}

.time-box__label {
  display: block;
  color: var(--landl-text-light);
  font-size: .9rem;
}

.time-box__value {
  display: block;
  font-size: 1.6rem;
  color: #1b48a3;
  font-weight: 800;
}

.summary-card__landmarks {
  margin: 0;
  padding-left: 20px;
  line-height: 1.9;
  color: var(--landl-text-sub);
}

.summary-card__postal,
.summary-card__address,
.summary-card__hours {
  margin: 0 0 10px;
  line-height: 1.8;
  color: var(--landl-text-sub);
}

.text-link {
  color: #1b48a3;
  font-weight: 800;
  text-decoration: none;
}

/* Map section = yellow dots */
.access-map-section {
  padding: 56px 0;
  background:
    radial-gradient(circle, rgba(253, 240, 1, 0.88) 1.7px, transparent 1.8px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(248, 251, 255, 0.96) 100%);
  background-size: 18px 18px, 100% 100%;
  border-top: 1px solid rgba(27, 72, 163, 0.05);
  border-bottom: 1px solid rgba(27, 72, 163, 0.05);
}

.access-map-section__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}

.access-map-section__map iframe,
.access-map-section__map .landl-map-embed iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 24px;
  box-shadow: var(--landl-shadow-soft);
}

.access-map-section__details {
  display: grid;
  gap: 16px;
}

.detail-box {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--landl-border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--landl-shadow-soft);
  backdrop-filter: blur(3px);
}

.detail-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #1b48a3;
}

.detail-box ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.9;
  color: var(--landl-text-sub);
}

/* Flow */
.access-flow {
  padding: 56px 0;
}

.access-flow__list {
  display: grid;
  gap: 16px;
}

.flow-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--landl-border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--landl-shadow-soft);
  backdrop-filter: blur(3px);
}

.flow-card__no {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b48a3, #14377d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(27, 72, 163, 0.16);
}

.flow-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #1b48a3;
}

.flow-card__body p {
  margin: 0;
  line-height: 1.9;
  color: var(--landl-text-sub);
}

/* CTA = yellow dots */
.access-cta {
  padding: 0 0 72px;
  background:
    radial-gradient(circle, rgba(253, 240, 1, 0.88) 1.7px, transparent 1.8px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(248, 251, 255, 0.96) 100%);
  background-size: 18px 18px, 100% 100%;
}

.access-cta__box {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--landl-border);
  border-radius: 28px;
  padding: 36px;
  text-align: center;
  box-shadow: var(--landl-shadow-soft);
}

.access-cta__box p {
  color: var(--landl-text-sub);
  line-height: 1.9;
}

.access-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .access-hero__inner,
  .access-summary__grid,
  .access-map-section__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .access-page {
    background-size: 30px 30px, 30px 30px, 100% 100%;
  }

  .access-page .container {
    width: min(100% - 24px, 1180px);
  }

  .access-hero {
    padding-top: 40px;
  }

  .access-map-section,
  .access-cta {
    background-size: 14px 14px, 100% 100%;
  }

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

  .flow-card__no {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
  }

  .access-cta__box,
  .summary-card,
  .detail-box {
    padding: 20px;
  }

  .access-page .btn,
  .access-hero__buttons .btn,
  .access-cta__buttons .btn {
    width: 100%;
  }

  .access-cta__buttons,
  .access-hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .access-hero__content::after,
  .access-hero__image::before,
  .access-hero__image::after {
    display: none;
  }
}