/* booking.css — School Visits + Activity Booking pages: info column + form card.
   Loaded only on page-school-visits.php / page-activity-booking.php. */

.bk-page {
  padding: var(--lgm-section-y) 0;
  background: var(--lgm-bg);
}

.bk-page__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* ── Info column ── */
.bk-info__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lgm-gold-ink);
  margin-bottom: 10px;
}

.bk-info__heading {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--lgm-green);
  margin: 0 0 14px;
}

.bk-info__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--lgm-fg-muted);
  margin: 0 0 22px;
}

.bk-info__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.bk-info__list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.55;
  color: var(--lgm-fg);
}

.bk-info__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lgm-green-tint);
  box-shadow: inset 0 0 0 1px rgba(15, 93, 58, 0.25);
}

.bk-info__list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--lgm-green);
  border-bottom: 2px solid var(--lgm-green);
  transform: rotate(-45deg);
}

.bk-info__facts {
  display: grid;
  gap: 0;
  border: 1px solid var(--lgm-line-soft);
  border-radius: var(--lgm-radius-md);
  overflow: hidden;
  background: var(--lgm-surface);
  box-shadow: var(--lgm-shadow-card);
}

.bk-info__fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px;
}

.bk-info__fact + .bk-info__fact {
  border-top: 1px solid var(--lgm-line-soft);
}

.bk-info__fact-k {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lgm-fg-muted);
}

.bk-info__fact-v {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lgm-fg);
}

.bk-info__contact {
  margin: 22px 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lgm-fg-muted);
}

.bk-info__contact a {
  color: var(--lgm-green);
  font-weight: 600;
  text-decoration: none;
}

.bk-info__contact a:hover {
  text-decoration: underline;
}

/* ── Form card ── */
.bk-card {
  background: var(--lgm-surface);
  border: 1px solid var(--lgm-line-soft);
  border-radius: var(--lgm-radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--lgm-shadow-card);
  scroll-margin-top: var(--lgm-sticky-offset);
}

.bk-card__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lgm-gold-ink);
  margin-bottom: 8px;
}

.bk-card__heading {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--lgm-green);
  margin: 0 0 8px;
}

.bk-card__sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lgm-fg-muted);
  margin: 0 0 22px;
}

/* ── Form ── */
.bk-form__row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.bk-form__row--2 {
  grid-template-columns: 1fr 1fr;
}

.bk-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.bk-form__row .bk-form__field {
  margin-bottom: 0;
}

.bk-form__field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lgm-fg);
}

.bk-form__field input,
.bk-form__field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--lgm-fg);
  background: var(--lgm-bg);
  border: 1px solid var(--lgm-line);
  border-radius: var(--lgm-radius-sm);
  padding: 11px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bk-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.bk-form__field input:focus,
.bk-form__field textarea:focus {
  outline: none;
  border-color: var(--lgm-green);
  box-shadow: 0 0 0 3px var(--lgm-green-tint);
}

.bk-form .ct__req {
  color: var(--lgm-danger);
}

.bk-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--lgm-fg-on-green);
  background: var(--lgm-green);
  border: none;
  border-radius: var(--lgm-radius-pill);
  padding: 13px 28px;
  margin-top: 4px;
  cursor: pointer;
  box-shadow: var(--lgm-shadow-cta);
  transition: background 0.15s ease, transform 0.1s ease;
}

.bk-form__submit:hover {
  background: var(--lgm-green-deep);
}

.bk-form__submit:active {
  transform: translateY(1px);
}

.bk-form__submit:disabled {
  opacity: 0.6;
  cursor: default;
}

.bk-form__note {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--lgm-fg-muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .bk-page__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .bk-form__row--2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bk-form__row .bk-form__field {
    margin-bottom: 16px;
  }
}
