@charset "UTF-8";

/* =========================================
   VISIT
   ========================================= */

.visit {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background:
    radial-gradient(circle at top right, rgba(31, 108, 139, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(242, 107, 94, 0.10), transparent 26%),
    var(--cream);
  overflow: hidden;
}

.visit:before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background-color: var(--alpine-lake-blue);
  border-radius: 50%;
  opacity: 0.08;
}

.visit:after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -120px;
  width: 300px;
  height: 300px;
  background-color: var(--sunrise-coral);
  border-radius: 50%;
  opacity: 0.08;
}

.visit .container {
  position: relative;
  z-index: 2;
}

.visit-shell {
  position: relative;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 64px;
  align-items: center;
}

/* =========================================
   CONTENT
   ========================================= */

.visit-content {
  position: relative;
  max-width: 720px;
}

.visit-content:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -22px;
  width: 6px;
  height: 120px;
  border-radius: 999px;
  background: var(--gradient-primary);
}

.visit .eyebrow {
  margin-bottom: 18px;
  color: var(--summit-teal);
}

.visit h2 {
  margin-bottom: 24px;
  color: var(--forest-shadow);
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: -1.2px;
}

.visit-lead,
.visit-content > p {
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.8;
}

.visit-lead {
  margin-bottom: 18px;
}

.visit-content > p:last-of-type {
  margin-bottom: 30px;
}

/* =========================================
   HIGHLIGHTS
   ========================================= */

.visit-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.visit-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 108, 139, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  color: var(--forest-shadow);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

/* =========================================
   DETAILS
   ========================================= */

.visit-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.visit-item {
  position: relative;
  padding: 24px 22px 20px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 100%);
  border: 1px solid rgba(31, 108, 139, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.visit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.14);
  border-color: rgba(31, 108, 139, 0.24);
}

.visit-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 6px 6px 0 0;
}

.visit-item:nth-child(1):before {
  background: linear-gradient(90deg, #4d7fa3 0%, #1f3e56 100%);
}

.visit-item:nth-child(2):before {
  background: linear-gradient(90deg, #7bbd7e 0%, #b8e3a6 100%);
}

.visit-item:nth-child(3):before {
  background: linear-gradient(90deg, #f9a34f 0%, #ff6a6a 100%);
}

.visit-item:nth-child(4):before {
  background: linear-gradient(90deg, #d68b3c 0%, #9b4f1f 100%);
}

.visit-item-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--summit-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.visit-item h3 {
  margin-bottom: 10px;
  color: var(--forest-shadow);
  font-size: 20px;
  line-height: 1.25;
}

.visit-item p {
  margin: 0;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.65;
}

/* =========================================
   ACTIONS
   ========================================= */

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.visit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.visit-btn:hover {
  transform: translateY(-3px);
}

.visit-btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(31, 108, 139, 0.22);
}

.visit-btn-primary:hover {
  box-shadow: 0 22px 38px rgba(31, 108, 139, 0.28);
}

.visit-btn-secondary {
  background: rgba(255,255,255,0.82);
  color: var(--forest-shadow);
  border-color: rgba(31, 108, 139, 0.16);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

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

.visit-map-wrap {
  position: relative;
}

.visit-map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--snow);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.16);
  z-index: 1;
}

.visit-map-card:before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(31, 108, 139, 0.10);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 3;
}

.visit-map-wrap:before {
  content: "";
  position: absolute;
  top: 26px;
  left: -18px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(77, 127, 163, 0.18) 0%, rgba(31, 62, 86, 0.12) 100%);
}

.visit-map-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,243,238,0.96) 100%);
  border-bottom: 1px solid rgba(31, 108, 139, 0.10);
}

.visit-map-top p {
  margin: 0;
  color: var(--forest-shadow);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.visit-map-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(28, 122, 116, 0.12);
  color: var(--summit-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.visit-map-badge.is-closed {
  background: rgba(242, 107, 94, 0.12);
  color: #b44c42;
}

.visit-map-frame {
  position: relative;
  width: 100%;
  height: 620px;
  background-color: #dfe7eb;
}

.visit-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.visit-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 20px;
  background: rgba(255,255,255,0.96);
  border-top: 1px solid rgba(31, 108, 139, 0.10);
}

.visit-map-footer strong {
  display: block;
  margin-bottom: 5px;
  color: var(--forest-shadow);
  font-size: 16px;
}

.visit-map-footer p {
  margin: 0;
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.6;
}

.visit-map-footer a {
  flex-shrink: 0;
  color: var(--summit-teal);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.visit-map-footer a:hover {
  text-decoration: underline;
}

/* =========================================
   REVEAL
   ========================================= */

.visit [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.visit [data-reveal="left"] {
  transform: translateX(-40px);
}

.visit [data-reveal="right"] {
  transform: translateX(40px);
}

.visit [data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================
   1920
   ========================================= */

@media screen and (max-width: 1920px) {
  .visit {
    padding-top: 116px;
    padding-bottom: 116px;
  }

  .visit-grid {
    gap: 58px;
  }

  .visit h2 {
    font-size: 48px;
  }

  .visit-map-frame {
    height: 580px;
  }
}

/* =========================================
   1200
   ========================================= */

@media screen and (max-width: 1200px) {
  .visit {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .visit-grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 46px;
  }

  .visit-content:before {
    top: 6px;
    left: -14px;
    width: 5px;
    height: 92px;
  }

  .visit h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .visit-lead,
  .visit-content > p {
    font-size: 17px;
    line-height: 1.74;
  }

  .visit-details {
    gap: 16px;
  }

  .visit-map-frame {
    height: 500px;
  }
}

/* =========================================
   768
   ========================================= */

@media screen and (max-width: 768px) {
  .visit {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: start;
  }

  .visit-content:before {
    top: -14px;
    left: 0;
    width: 88px;
    height: 4px;
  }

  .visit h2 {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -0.8px;
  }

  .visit-lead,
  .visit-content > p {
    font-size: 17px;
    line-height: 1.7;
  }

  .visit-highlights {
    gap: 10px;
    margin-bottom: 24px;
  }

  .visit-highlights span {
    padding: 9px 14px;
    font-size: 13px;
  }

  .visit-details {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .visit-actions {
    margin-top: 24px;
  }

  .visit-btn {
    width: 100%;
  }

  .visit-map-wrap:before {
    top: 14px;
    left: -8px;
  }

  .visit-map-frame {
    height: 420px;
  }

  .visit-map-top,
  .visit-map-footer {
    padding: 16px;
  }

  .visit-map-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================
   480
   ========================================= */

@media screen and (max-width: 480px) {
  .visit {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .visit-grid {
    gap: 36px;
  }

  .visit h2 {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  .visit-lead,
  .visit-content > p {
    font-size: 16px;
    line-height: 1.68;
  }

  .visit-item {
    padding: 20px 16px 16px;
  }

  .visit-item h3 {
    font-size: 18px;
  }

  .visit-item p {
    font-size: 14px;
  }

  .visit-map-frame {
    height: 320px;
  }
}

/* =========================================
   300
   ========================================= */

@media screen and (max-width: 300px) {
  .visit {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .visit h2 {
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.3px;
  }

  .visit-lead,
  .visit-content > p {
    font-size: 14px;
    line-height: 1.6;
  }

  .visit-highlights span {
    width: 100%;
    justify-content: center;
  }

  .visit-item {
    padding: 16px 12px 14px;
  }

  .visit-item h3 {
    font-size: 15px;
  }

  .visit-item p {
    font-size: 13px;
    line-height: 1.5;
  }

  .visit-btn {
    min-height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }

  .visit-map-frame {
    height: 240px;
  }

  .visit-map-top,
  .visit-map-footer {
    padding: 14px 12px;
  }
}