/* ======================================
   access THEME
====================================== */

:root {
  --access-color: #b3c7f5;
  --access-dark: #576993;

  --text: #0f172a;
  --muted: #64748b;

  --border: #e2e8f0;
  --bg: #f8fafc;
}

/* ======================================
   HERO
====================================== */

.access-hero {
  padding: 180px 0 140px;

  text-align: center;

  background: linear-gradient(135deg, #0f172a, var(--access-dark));

  color: white;

  position: relative;

  overflow: hidden;
}

.access-hero::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  top: -250px;
  right: -200px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50%;
}

.hero-label {
  color: #b4ceff;

  font-weight: 700;

  letter-spacing: 0.2em;

  margin-bottom: 20px;
}

.access-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);

  line-height: 1.1;

  margin-bottom: 30px;
}

.hero-text {
  max-width: 700px;

  margin: 0 auto;

  font-size: 1.1rem;

  line-height: 2;

  color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
  margin-top: 50px;

  display: flex;

  justify-content: center;

  gap: 20px;
}

/* ======================================
   ACCESS
====================================== */

.access {
  background: #fff;
}

.access-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 60px;
}

.access-info,
.access-guide {
  background: #fff;

  border-radius: 24px;

  padding: 50px;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.access h2 {
  font-size: 2rem;

  margin-bottom: 35px;

  color: #0f172a;
}

.access-info dl {
  display: grid;

  grid-template-columns: 50px 1fr;

  row-gap: 20px;
}

.access-info dt {
  font-weight: 700;

  color: #2563eb;
}

.access-info dd {
  color: #475569;

  line-height: 2;
}

/* ======================================
   GUIDE
====================================== */

.guide-box {
  padding: 30px;

  border-radius: 18px;

  background: #f8fafc;

  border: 1px solid #e2e8f0;

  margin-bottom: 24px;
}

.guide-box:last-child {
  margin-bottom: 0;
}

.guide-box h3 {
  margin-bottom: 12px;

  font-size: 1.2rem;
}

.guide-box p {
  color: #64748b;
}

/* ======================================
   MAP
====================================== */

.map-section {
  height: 600px;
}

.map-section iframe {
  width: 100%;

  height: 100%;

  border: 0;
}

/* ======================================
   CONTACT CTA
====================================== */

.contact-cta {
  background: #f8fafc;

  text-align: center;
}

.contact-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);

  margin-bottom: 20px;
}

.contact-cta p {
  max-width: 720px;

  margin: 0 auto 40px;

  color: #64748b;
}

/* ======================================
   MOBILE
====================================== */

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

  .access-info,
  .access-guide {
    padding: 35px;
  }

  .access-info dl {
    grid-template-columns: 1fr;

    row-gap: 10px;
  }

  .access-info dd {
    margin-bottom: 20px;
  }

  .map-section {
    height: 420px;
  }

  .page-hero {
    height: 320px;
  }
}
