/* Based In Day Pass Requests — request form (.dpr) + booking page (.dpb).
   Reads only Vellum tokens so it follows the site's dark/light scheme. */

.dpr { scroll-margin-top: 120px; max-width: 900px; margin: 0 auto; padding: 0 clamp(24px,5vw,48px) clamp(64px,8vw,110px); text-align: center; }
.dpr__inner { width: min(640px,100%); margin: 0 auto; text-align: left; }
.dpr__eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: 12px; font-weight: 500;
  color: var(--color-accent); margin: 0 0 14px; }
.dpr__title { font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  font-size: clamp(26px,3.6vw,38px); line-height: 1.02; letter-spacing: .01em; margin: 0 0 14px; }
.dpr__lead { color: var(--color-text-muted); max-width: 52ch; margin: 0 0 clamp(28px,4vw,40px); }

.dpr__row { display: grid; gap: 20px; margin: 0; }
.dpr__row--half { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .dpr__row--half { grid-template-columns: 1fr; } }
.dpr__group { display: flex; flex-direction: column; gap: 10px; margin: 0 0 22px; }
.dpr__group--last { margin-bottom: 26px; }
.dpr__label { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--color-text-muted); margin: 0; }
.dpr__req { color: var(--color-accent); margin-left: 4px; }
.dpr__opt { font-weight: 400; letter-spacing: .04em; text-transform: none; margin-left: 6px; opacity: .8; }

.dpr__form input:not([type="hidden"]), .dpr__form textarea {
  display: block; width: 100%; padding: 16px 18px; font-family: var(--font-sans); font-size: 17px; line-height: 1.4;
  color: var(--color-text); background: transparent; border: 1px solid var(--color-line); border-radius: 0;
  box-shadow: none; -webkit-appearance: none; appearance: none; color-scheme: dark;
  transition: border-color var(--dur-sm,.25s) var(--ease,ease); }
html[data-theme="light"] .dpr__form input:not([type="hidden"]), html[data-theme="light"] .dpr__form textarea { color-scheme: light; }
.dpr__form input:focus, .dpr__form textarea:focus { outline: none; border-color: var(--color-accent); }
.dpr__form input::placeholder, .dpr__form textarea::placeholder { color: var(--color-text-muted); opacity: .7; }
.dpr__form textarea { min-height: 110px; resize: vertical; line-height: 1.55; }
.dpr__form input[type="date"] { min-height: 58px; }
.dpr__form input.is-invalid, .dpr__form textarea.is-invalid { border-color: var(--color-accent); }

.dpr__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.dpr__submit { width: auto; min-height: 56px; cursor: pointer; font-family: var(--font-sans); }
.dpr__submit[disabled] { opacity: .6; cursor: progress; }
.dpr__fine { color: var(--color-text-muted); font-size: 14px; margin: 18px 0 0; max-width: 52ch; }
.dpr__error { color: var(--color-accent); margin: 0 0 18px; font-size: 15px; }
.dpr__error[hidden] { display: none; }

.dpr__done { border: 1.5px solid var(--color-text); padding: clamp(24px,3.5vw,36px); position: relative;
  animation: dpr-in .6s cubic-bezier(.2,.75,.2,1) both; }
.dpr__done[hidden] { display: none; }
.dpr__done-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 500;
  font-size: clamp(22px,3vw,30px); letter-spacing: .02em; margin: 0 0 10px; line-height: 1; }
.dpr__done p:last-child { margin: 0; color: var(--color-text-muted); }
@keyframes dpr-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .dpr__done { animation: none; } }

/* Booking page */
.dpb { padding: clamp(110px,14vh,170px) clamp(24px,5vw,48px) clamp(64px,8vw,120px); }
.dpb__inner { width: min(640px,100%); margin: 0 auto; }
.dpb__title { font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  font-size: clamp(34px,5.4vw,58px); line-height: .95; letter-spacing: .01em; margin: 0 0 18px; }
.dpb__lead { font-size: clamp(16.5px,1.4vw,18px); color: var(--color-text-muted); max-width: 52ch; margin: 0 0 8px; }
.dpb__lead strong { color: var(--color-text); font-weight: 500; }
.dpb__lead a { color: var(--color-accent); text-decoration: none; }
.dpb .daypass-cta-wrap { margin: clamp(26px,4vw,40px) 0 0; }
.dpb__fine { color: var(--color-text-muted); font-size: 14px; margin: 18px 0 0; max-width: 52ch; }

/* The site-wide sticky "Book a tour" bar has no business on the payment step. */
.bidp-booking .sticky-cta { display: none !important; }
