/* Reference booking: one continuous cream-glass bar with two blue/neutral pills.
   Scoped to the hero and booking so the rest of the site keeps its identity. */
.hero {
  min-height: 100svh;
  overflow: visible;
}
.hero .hero-copy {
  min-height: 100svh;
  justify-content: flex-end;
  padding: 150px 4vw 5.5svh;
}
.hero .hero-photo { position: absolute; inset: 0; height: auto; min-height: 100%; }
.hero .hero-intro { width: min(880px, 92vw); margin: 0 auto 24px; }
.hero .hero-intro h1 { font-size: clamp(38px, 4vw, 62px); line-height: 1.12; margin: 10px auto 14px; }
.hero .hero-intro > p:last-child { max-width: 720px; font-size: 16px; line-height: 1.5; }
.hero .hero-proof { margin-top: 18px; font-size: 12px; }

.hero #booking {
  --bar-blue: #006fae;
  --bar-ink: #263038;
  --bar-muted: #53585b;
  width: min(1160px, 92vw);
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: var(--bar-ink);
  overflow: visible;
}
.hero #booking .booking-reassurance { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .25rem .625rem; margin: 0 0 .875rem; color: var(--lux-cream, #f5f1e9); font-family: inherit; font-size: 1rem; line-height: 1.5; text-align: center; }
.hero #booking .booking-reassurance strong { font-size: inherit; font-weight: 600; }
.hero #booking .booking-reassurance-secondary, .hero #booking .booking-reassurance-divider { color: #ece8df; font-size: .875rem; font-weight: 400; }
#booking #ride-form { display: block; position: relative; padding: 0; margin: 0; border: 0; background: none; }
#booking .ride-modes {
  display: flex;
  width: fit-content;
  max-width: 100%;
  gap: 3px;
  margin: 0 auto 15px;
  padding: 4px;
  border: 1px solid rgba(255, 251, 242, .58);
  border-radius: 999px;
  background: rgba(243, 235, 219, .78);
  box-shadow: 0 3px 12px #0002, inset 0 1px 0 #fff8;
  backdrop-filter: blur(16px);
}
#booking .ride-modes label { display: block; position: relative; margin: 0; }
#booking .ride-modes input { position: absolute; width: 1px; height: 1px; min-height: 0; padding: 0; opacity: 0; }
#booking .ride-modes span {
  display: block;
  padding: 9px 22px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: #303437;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  box-shadow: none;
  cursor: pointer;
  transition: background .18s, color .18s;
}
#booking .ride-modes input:checked + span { background: var(--bar-blue); color: #fff; box-shadow: 0 2px 6px #00497933; }
#booking .ride-modes label:hover input:not(:checked) + span { background: #fff3; }
#booking .ride-modes input:focus-visible + span { outline: 2px solid #006fae; outline-offset: 3px; }

#booking .booking-bar {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, .85fr) auto;
  align-items: stretch;
  min-height: 94px;
  padding: 17px 14px;
  border: 1px solid rgba(255, 253, 245, .65);
  border-radius: 9px;
  background: linear-gradient(110deg, rgba(248, 240, 224, .94), rgba(242, 233, 214, .83) 55%, rgba(250, 243, 230, .95));
  box-shadow: 0 12px 32px #0003, inset 0 1px 0 #fff8;
  backdrop-filter: blur(20px) saturate(110%);
  overflow: visible;
}
#booking .form-grid { display: contents; }
#booking .form-grid > label:not([hidden]) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 0;
  grid-column: auto;
  min-width: 0;
  min-height: 58px;
  padding: 0 14px;
  gap: 5px;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--bar-ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
}
#booking .form-grid > label::after { display: none; }
#booking .form-grid > label.date-field { border-left: 1px solid rgba(99, 90, 74, .3); margin-left: 5px; }
#booking .bar-field .field-label { display: block; min-height: 18px; line-height: 1.35; }
#booking .form-grid input, #booking .form-grid select {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 31px;
  height: 31px;
  margin: 0;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(72, 74, 73, .48);
  border-radius: 0;
  background: transparent;
  color: var(--bar-ink);
  color-scheme: light;
  box-shadow: none;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-overflow: ellipsis;
  outline: 0;
  transition: border-color .18s;
}
#booking .form-grid input::placeholder { color: var(--bar-muted); opacity: 1; }
#booking .form-grid input:hover, #booking .form-grid select:hover { border-color: #65686a; }
#booking .form-grid input:focus, #booking .form-grid select:focus { border-color: var(--bar-blue); box-shadow: 0 1px 0 var(--bar-blue); outline: none; }
#booking .picker-control { display: flex; align-items: center; position: relative; min-width: 0; height: 31px; min-height: 31px; padding: 0 23px 4px 0; border-bottom: 1px solid rgba(72, 74, 73, .48); cursor: pointer; }
#booking .picker-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--bar-ink); font-size: 16px; font-weight: 500; }
#booking .picker-chevron { position: absolute; right: 4px; top: 8px; width: 8px; height: 8px; border-right: 2px solid #485057; border-bottom: 2px solid #485057; transform: rotate(45deg); pointer-events: none; }
#booking .picker-control input { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; border: 0; padding: 0; opacity: 0; z-index: 1; cursor: pointer; }
#booking .picker-control input::-webkit-calendar-picker-indicator { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; padding: 0; cursor: pointer; }
#booking .picker-control:focus-within { border-color: var(--bar-blue); box-shadow: 0 1px 0 var(--bar-blue); }
#booking .booking-bottom { display: flex; justify-content: center; align-items: center; flex-direction: row; margin: 0 0 0 4px; padding: 0 0 0 16px; border: 0; border-left: 1px solid rgba(99, 90, 74, .3); border-radius: 0; background: transparent; }
#booking .booking-bottom .button { display: inline-flex; width: auto; min-height: 44px; height: auto; padding: 10px 21px; gap: 0; border: 0; border-radius: 999px; background: var(--bar-blue); color: #fff; box-shadow: none; font-size: 14px; line-height: 1.35; font-weight: 600; white-space: nowrap; transition: background .18s; }
#booking .booking-bottom .button:hover { background: #005d94; }
#booking .booking-bottom .button:focus-visible { outline: 2px solid #004e7d; outline-offset: 4px; }

/* Keep the existing optional capabilities out of the reference's primary bar. */
#booking .journey-options { margin: 10px 0 0; color: #fff8ea; }
#booking .journey-options > summary { width: fit-content; margin-left: auto; font-size: 12px; font-weight: 500; cursor: pointer; text-underline-offset: 3px; }
#booking .journey-options > summary:hover { text-decoration: underline; }
#booking .journey-extras { margin-top: 10px; padding: 20px; border: 1px solid #fff7; border-radius: 9px; background: #f4eee2; color: var(--bar-ink); box-shadow: 0 12px 30px #0002; }
#booking .journey-extras-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 16px 22px; }
#booking .journey-extras label { display: flex; flex-direction: column; gap: 5px; color: var(--bar-ink); font-size: 14px; font-weight: 500; line-height: 1.4; }
#booking .journey-extras input, #booking .journey-extras select { min-height: 44px; padding: 7px 0; border: 0; border-bottom: 1px solid #a9a59b; border-radius: 0; background: transparent; color: var(--bar-ink); color-scheme: light; box-shadow: none; font-size: 16px; }
#booking .journey-extras input:focus, #booking .journey-extras select:focus { outline: 2px solid var(--bar-blue); outline-offset: 3px; }
#booking .journey-extras .return-option { flex-direction: row; align-items: center; grid-column: 1 / -1; gap: 10px; }
#booking .return-option input { width: 18px; height: 18px; min-height: 0; padding: 0; accent-color: var(--bar-blue); }
#booking .stop-option { grid-column: 1 / -1; }
#booking #add-stop, #booking .remove-stop { min-height: 36px; padding: 4px 0; border: 0; background: transparent; color: #005d94; font-size: 14px; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
#booking .journey-estimate { margin-top: 18px; padding-top: 16px; border-top: 1px solid #cfc7b9; font-size: 12px; }
#booking .journey-estimate strong { margin-left: 10px; font-size: 20px; }
#booking .journey-estimate p { margin-top: 4px; font-size: 13px; }
#booking .form-footnote { display: block; position: static; margin: 7px 0 0; color: #eae4d9; font-size: 12px; line-height: 1.5; }
#booking .address-credit { display: none; }
#booking .address-suggestions { top: calc(100% + 12px); bottom: auto; left: 0; right: 0; min-width: min(330px, 84vw); max-height: 280px; border: 1px solid #d9d1c3; border-radius: 8px; background: #fffaf1; color: #263038; box-shadow: 0 14px 32px #0003; z-index: 100; text-align: left; text-transform: none; letter-spacing: 0; }
#booking .address-suggestions [role=option]:hover, #booking .address-suggestions [aria-selected=true] { background: #e5f1f8; }
#booking .address-suggestions strong { font-size: 14px; }
#booking .address-suggestions span, #booking .address-suggestions small { color: #59636c; font-size: 12px; }
#booking .address-hint { position: absolute; top: calc(100% + 4px); left: 0; right: 0; padding: 5px 8px; border-radius: 5px; background: #fffaf1; color: #364550; font-size: 12px; line-height: 1.3; z-index: 99; letter-spacing: 0; text-transform: none; }
#booking .address-hint:empty, #booking .address-field:has(.address-suggestions:not([hidden])) .address-hint { display: none; }
#booking #booking-error { padding: 10px 14px; margin-top: 10px; border-radius: 7px; background: #fff2eb; color: #882b16; font-size: 14px; }

@media (min-width: 901px) and (max-width: 1100px) {
  #booking .booking-bar { padding: 15px 8px; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.2fr) minmax(0, .9fr) minmax(0, .8fr) auto; }
  #booking .form-grid > label:not([hidden]) { padding: 0 9px; }
  #booking .booking-bottom { padding-left: 10px; }
  #booking .booking-bottom .button { padding-inline: 16px; }
}
@media (max-width: 900px) {
  .hero .hero-copy { padding: 125px 4vw 40px; }
  .hero #booking { width: 92vw; }
  #booking .booking-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 12px 15px; row-gap: 14px; }
  #booking .form-grid > label:not([hidden]) { grid-column: auto; padding: 0 10px; }
  #booking .form-grid > label.date-field { margin: 0; border: 0; }
  #booking .booking-bottom { grid-column: 1 / -1; justify-content: flex-end; padding: 0 10px 0 0; margin: 0; border: 0; }
  #booking .booking-bottom .button { min-height: 44px; }
}
@media (max-width: 560px) {
  .hero #booking .booking-reassurance { flex-direction: column; gap: .125rem; }
  .hero #booking .booking-reassurance-divider { display: none; }
  .hero .hero-copy { padding: 118px 4vw 30px; }
  .hero .hero-intro { margin: 15px auto 23px; }
  .hero .hero-intro h1 { font-size: clamp(34px, 9vw, 44px); }
  .hero .hero-intro .eyebrow { font-size: 12px; letter-spacing: .12em; }
  .hero .hero-intro > p:last-child { font-size: 16px; }
  #booking .booking-bar { padding: 15px 9px; gap: 15px 0; }
  #booking .form-grid > .pickup-field, #booking #dropoff-field, #booking #hours-field { grid-column: 1 / -1; }
  #booking .form-grid > .date-field, #booking .form-grid > .time-field { grid-column: auto !important; }
  #booking .form-grid > label:not([hidden]) { min-height: 54px; }
  #booking .ride-modes span { padding: 10px 20px; }
  #booking .booking-bottom { justify-content: flex-end; padding-top: 0; }
  #booking .journey-extras { padding: 16px; }
  #booking .journey-extras-grid { grid-template-columns: minmax(0, 1fr); }
  #booking .address-suggestions { width: 100%; min-width: 0; max-height: 235px; }
  .hero .hero-proof { flex-wrap: wrap; gap: 8px 16px; font-size: 12px; }
}
