/* ═══════════════════════════════════════════════════════════
   VISIT PAGE — supplemental styles
═══════════════════════════════════════════════════════════ */

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero--visit {
  background: var(--navy);
  padding: 9rem var(--pad-x) 5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
  overflow: hidden;
}

.page-hero--visit::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,0.06), transparent);
  pointer-events: none;
}

.page-hero--visit .page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.page-hero--visit h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin: 0.6rem 0 1.2rem;
}

.page-hero--visit p {
  font-size: 1rem;
  color: rgba(248,246,240,0.62);
  line-height: 1.7;
  max-width: 480px;
}


/* ── At a Glance Strip ────────────────────────────────────── */
.glance-strip {
  background: var(--gold);
}

.glance-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.glance-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.8rem 1.5rem;
  border-right: 1px solid rgba(15,30,61,0.15);
}
.glance-item:last-child { border-right: none; }

.glance-item__icon {
  color: var(--navy);
  flex-shrink: 0;
  opacity: 0.75;
  margin-top: 2px;
}

.glance-item__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15,30,61,0.6);
  margin-bottom: 0.2rem;
}

.glance-item__value {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

@media (max-width: 860px) {
  .glance-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .glance-item { border-bottom: 1px solid rgba(15,30,61,0.12); }
  .glance-item:nth-child(even) { border-right: none; }
  .glance-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 480px) {
  .glance-strip__grid { grid-template-columns: 1fr; }
  .glance-item { border-right: none; border-bottom: 1px solid rgba(15,30,61,0.12); }
  .glance-item:last-child { border-bottom: none; }
}


/* ── How to Visit ─────────────────────────────────────────── */
.how-to-visit {
  background: var(--cream);
  padding: 6rem 0;
}

.how-to-visit__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.visit-steps h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  margin: 0.5rem 0 2.5rem;
}

.visit-ol {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.visit-step {
  padding-bottom: 2.5rem;
  border-left: 1px solid rgba(201,168,76,0.35);
  margin-left: 20px;
  padding-left: 2.5rem;
  position: relative;
}

.visit-step:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.visit-step__num {
  position: absolute;
  left: -20px;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.visit-step__body {
  padding-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
}

.visit-step__body h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.visit-step__body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.visit-step__body strong { color: var(--navy); font-weight: 600; }

.visit-email {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 1px;
  transition: border-color var(--transition);
}
.visit-email:hover { border-color: var(--gold); }

.visit-step__note {
  font-size: 0.78rem !important;
  color: var(--text-light) !important;
  font-style: italic;
}

/* Credential box */
.credential-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 90px;
}

.credential-box__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.credential-item svg { flex-shrink: 0; margin-top: 2px; }

.credential-item--yes svg { color: #7ec89a; }
.credential-item--note svg { color: rgba(201,168,76,0.6); }

.credential-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.credential-item span {
  font-size: 0.78rem;
  color: rgba(248,246,240,0.45);
  line-height: 1.5;
}

.credential-box__rsvp {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.credential-box__rsvp .label { margin-bottom: 0.5rem; }

.credential-box__rsvp p {
  font-size: 0.83rem;
  color: rgba(248,246,240,0.55);
  line-height: 1.6;
}
.credential-box__rsvp p strong { color: var(--cream); font-weight: 600; }

@media (max-width: 860px) {
  .how-to-visit__inner { grid-template-columns: 1fr; gap: 3rem; }
  .credential-box { position: static; }
}


/* ── Location ─────────────────────────────────────────────── */
.location-section {
  background: var(--white);
  padding: 6rem 0;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.location-intro {
  font-size: 0.93rem;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-top: 3rem;
  align-items: start;
}

/* Map placeholder */
.location-map {
  background: var(--cream);
  border: 1px solid rgba(15,30,61,0.1);
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-map__placeholder {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--navy);
  padding: 2rem;
}

.location-map__placeholder svg { opacity: 0.3; }

.location-map__placeholder p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Transport items */
.location-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(15,30,61,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.transport-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  border-bottom: 1px solid rgba(15,30,61,0.08);
  background: var(--white);
  transition: background var(--transition);
}
.transport-item:last-child { border-bottom: none; }
.transport-item:hover { background: var(--cream); }

.transport-item__icon {
  color: var(--navy);
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.transport-item__text { display: flex; flex-direction: column; gap: 0.4rem; }

.transport-item__text strong {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--navy);
}

.transport-item__text p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.transport-item__lines {
  font-size: 0.75rem !important;
  color: var(--text-light) !important;
  letter-spacing: 0.03em;
}

.transport-item__lines em { font-style: normal; }

.transport-item__lines--good { color: #4a8c5c !important; font-weight: 600; }

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


/* ── Visit CTA ────────────────────────────────────────────── */
.visit-cta {
  background: var(--navy);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.visit-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.visit-cta h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.visit-cta p {
  font-size: 0.88rem;
  color: rgba(248,246,240,0.5);
}

/* Active nav link */
.nav__active { color: var(--gold) !important; }
