/* The visit page uses the original black-and-green identity and a readable map. */
.visit-page {
  background: #000;
  padding: 178px var(--gutter) 0;
}

.visit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
  align-items: end;
  gap: clamp(40px, 7vw, 120px);
  padding-bottom: clamp(64px, 7vw, 110px);
}

.visit-heading h1 {
  font: 400 clamp(74px, 8.9vw, 146px)/1.06 var(--display);
  letter-spacing: -.025em;
}

.visit-heading h1 span { display: block; }
.visit-heading > p {
  margin-top: 30px;
  max-width: 460px;
  font-size: 18px;
  line-height: 1.6;
}

.visit-destination {
  max-width: 455px;
  padding-bottom: 4px;
}

.visit-pin {
  width: 58px;
  height: 70px;
  color: var(--brand, #64f817);
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px #64f81725);
}
.visit-pin svg { width: 100%; height: 100%; }
.visit-business { color: #fff; font-size: 17px; margin-bottom: 12px; }
.visit-destination address {
  font: 400 clamp(25px, 2.1vw, 34px)/1.35 var(--body);
  letter-spacing: -.025em;
  color: #fff;
}
.visit-hours { margin: 28px 0 10px; }
.visit-hours > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 22px;
  padding-top: 20px;
  border-top: 1px solid #343434;
}
.visit-hours dt { color: #b5b5b5; }
.visit-hours dd { margin: 0; color: #fff; font-weight: 600; }
.visit-hours-note { font-size: 14px; max-width: 350px; }
.visit-directions { margin-top: 25px; }
.visit-phone { display: block; width: fit-content; margin-top: 18px; font-size: 16px; }
.visit-phone:hover { color: var(--brand, #64f817); }

.visit-map-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}
.visit-map-heading h2 { font-size: clamp(42px, 4.3vw, 68px); line-height: 1.12; }
.visit-map-heading .text-link { margin: 0; }
.visit-location { position: relative; }
.visit-map-frame {
  position: relative;
  height: clamp(430px, 40vw, 620px);
  border: 1px solid #64f81755;
  border-radius: 12px;
  background: #000;
  overflow: hidden;
}
.visit-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  color-scheme: light;
}
.visit-map-corner {
  position: absolute;
  width: 29px;
  height: 29px;
  border: 0 solid var(--brand, #64f817);
  pointer-events: none;
}
.visit-map-corner-tl { top: 0; left: 0; border-width: 2px 0 0 2px; border-radius: 11px 0 0; }
.visit-map-corner-tr { top: 0; right: 0; border-width: 2px 2px 0 0; border-radius: 0 11px 0 0; }
.visit-map-corner-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; border-radius: 0 0 0 11px; }
.visit-map-corner-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; border-radius: 0 0 11px; }
.visit-map-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin-top: 18px;
  font-size: 13px;
}
.visit-map-details:focus { outline: none; }
.visit-map-skip {
  position: absolute;
  z-index: 2;
  left: 14px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.visit-map-skip:focus {
  width: auto;
  height: auto;
  padding: 12px 18px;
  background: #000;
  color: var(--brand, #64f817);
  clip-path: none;
  transform: translateY(14px);
}

.visit-before {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  padding: clamp(74px, 8vw, 130px) 0 clamp(80px, 8vw, 130px);
}
.visit-before h2 { font-size: clamp(50px, 5.5vw, 86px); line-height: 1.1; }
.visit-before > div > p { font-size: 18px; max-width: 480px; }
.visit-before-links { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 28px; }
.visit-before-links .text-link { margin: 0; }

@media (min-width: 1700px) {
  .visit-page { padding-inline: max(var(--gutter), calc((100vw - 1700px) / 2)); }
}

@media (max-width: 920px) {
  .visit-hero { gap: 36px; grid-template-columns: minmax(0, 1fr) minmax(285px, .85fr); }
  .visit-heading h1 { font-size: clamp(64px, 9vw, 88px); }
  .visit-destination address { font-size: 24px; }
  .visit-before { gap: 36px; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .visit-page { padding-top: 145px; }
  .visit-hero { display: block; padding-bottom: 64px; }
  .visit-heading h1 { font-size: clamp(65px, 15vw, 96px); line-height: 1.05; }
  .visit-heading > p { font-size: 16px; margin-top: 25px; }
  .visit-destination { margin-top: 48px; max-width: none; }
  .visit-pin { width: 41px; height: 50px; margin-bottom: 18px; }
  .visit-destination address { font-size: clamp(24px, 6.2vw, 32px); }
  .visit-hours { margin-top: 23px; }
  .visit-hours-note { max-width: 360px; }
  .visit-map-heading { display: block; margin-bottom: 24px; }
  .visit-map-heading h2 { font-size: 44px; }
  .visit-map-heading .text-link { margin-top: 18px; font-size: 14px; }
  .visit-map-frame { height: 430px; border-radius: 10px; }
  .visit-map-details { display: block; line-height: 1.6; }
  .visit-map-details p + p { margin-top: 5px; }
  .visit-before { display: block; padding-block: 68px 80px; }
  .visit-before h2 { font-size: clamp(46px, 10.5vw, 65px); }
  .visit-before > div { margin-top: 26px; }
  .visit-before > div > p { font-size: 16px; }
  .visit-before-links { gap: 22px; margin-top: 24px; }
}
