/* ── Plan Your Visit Page ─────────────────────────── */
.page-plan-your-visit {
  padding: 40px 0;
}

/* ── Hero Banner ─────────────────────────────────── */
.pyv-hero-banner {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.pyv-hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 30, 36, 0.30) 0%,
    rgba(30, 30, 36, 0.80) 70%,
    rgba(30, 30, 36, 0.97) 100%
  );
}

.pyv-hero-banner__content {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pyv-hero-banner__content h1 {
  color: #ffffff;
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.pyv-hero-banner__content p {
  color: rgba(237, 232, 223, 0.82);
  font-size: 1.05rem;
  margin: 0;
}

/* ── Section spacing ──────────────────────────────── */
.page-plan-your-visit section {
  margin-bottom: 3rem;
}

.page-plan-your-visit section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--brand-navy);
  margin: 0 0 1.25rem;
}

/* ── Service Times (T009) ─────────────────────────── */
.pyv-service-times {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pyv-service-times__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--accent);
}

.pyv-service-times__row:first-child {
  border-top: 1px solid var(--accent);
}

.pyv-service-times__label {
  color: var(--text-main);
  font-weight: 600;
}

.pyv-service-times__time {
  color: var(--text-muted);
  text-align: right;
}

/* ── Location Block (T010) ────────────────────────── */
.pyv-location-block {
  margin-top: 1rem;
}

.pyv-location-block__address {
  color: var(--text-main);
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.pyv-location-block__map-embed {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(0, 18, 71, 0.1);
}

.pyv-location-block__map-embed iframe {
  display: block;
  width: 100%;
}

.pyv-location-block__map-link {
  display: inline-block;
}

/* ── What to Expect Grid (T011) ───────────────────── */
.pyv-expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .pyv-expect-grid {
    grid-template-columns: 1fr;
  }
}

/* ── For Your Family (T020) ───────────────────────── */
.pyv-family-image {
  margin: 0 0 1.5rem;
  border-radius: 6px;
  overflow: hidden;
  line-height: 0;
}

.pyv-family-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pyv-family-section {
  padding: 2rem;
  background: rgba(0, 0, 102, 0.04);
  border-radius: 6px;
}

.pyv-family-section__subsection {
  margin-bottom: 1.5rem;
}

.pyv-family-section__subsection:last-child {
  margin-bottom: 0;
}

.pyv-family-section__subsection h3 {
  color: var(--brand-navy);
  margin: 0 0 0.5rem;
}

.pyv-family-section__subsection p {
  color: var(--text-muted);
  margin: 0;
}

/* ── Parking Notice ───────────────────────────────── */
.pyv-parking-notice {
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* ── CTA Section (T024) ───────────────────────────── */
.pyv-cta-section {
  text-align: center;
  padding: 2.5rem 1rem;
  background: rgba(0, 0, 102, 0.03);
  border-radius: 6px;
}

.pyv-cta-section h2 {
  margin-bottom: 1rem;
}

.pyv-cta-section p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.pyv-cta-section__buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .pyv-cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }
}
