/* Presentation only. Form markup, handlers, and inline booking scripts are
   preserved from reference/skyatx/book.html. */
:root {
  --black: var(--ink);
  --white: var(--paper);
  --gray: #6d7465;
  --light: var(--line);
}

.booking-page { line-height: 1.7; }
.booking-nav {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  z-index: 10;
}
.booking-nav .nav-logo { margin-right: auto; }
.booking-nav .nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.booking-nav .nav-links a { font-size: 12px; font-weight: 500; }
.booking-nav .nav-links a:hover { color: var(--accent); }
.booking-nav .nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #c5c9bb;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.booking-nav .nav-toggle span { width: 19px; height: 1px; background: var(--ink); }
.booking-page .page { padding: 0; }
.booking-page .book-wrap { width: calc(100% - 64px); max-width: 820px; padding: 40px 0 80px; }
.booking-page .book-header { margin-bottom: 44px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.booking-page .book-header .eyebrow { color: var(--accent); font-size: 10px; letter-spacing: 1.9px; }
.booking-page .book-header h1 { font-size: clamp(36px, 5vw, 60px); margin: 20px 0 18px; line-height: 1.12; }
.booking-page .book-header p { font-size: 13px; max-width: 430px; margin: 0; }
.booking-page .book-header h1.booking-page-title{font-size:clamp(34px,4.8vw,56px);max-width:760px;letter-spacing:-.035em}
.booking-page .book-header .booking-alternate{margin-top:18px;font-size:12px;max-width:540px}
.booking-alternate a{color:var(--accent);text-decoration:underline;text-underline-offset:3px}
.booking-page .form-section { margin-bottom: 36px; }
.booking-page .section-rule { margin-bottom: 20px; gap: 18px; }
.booking-page .section-rule span { color: var(--ink); font-size: 10px; font-weight: 600; letter-spacing: 1.9px; }
.booking-page .field-row { gap: 18px; margin-bottom: 18px; }
.booking-page .field { min-width: 0; gap: 8px; }
.booking-page .field label { font-size: 11px; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--ink); }
.booking-page .field input,
.booking-page .field select,
.booking-page .field textarea {
  padding: 14px 16px;
  min-height: 48px;
  border-radius: 0;
  background-color: #faf9f5;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}
.booking-page .field select { padding-right: 36px; }
.booking-page .field textarea { min-height: 110px; }
.booking-page .field input::placeholder,
.booking-page .field textarea::placeholder { color: #858a7f; }
.booking-page .field input:focus,
.booking-page .field select:focus,
.booking-page .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 2px #ac54371a; }
/* The Maps input is created with inline styles by the original script. */
.booking-page #property-location {
  padding: 14px 16px !important;
  min-height: 48px;
  background-color: #faf9f5 !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}
.booking-page #property-location:focus { border-color: var(--accent) !important; }
.booking-page .field .error { border-color: #c0392b; }
.booking-page #property-location.error { border-color: #c0392b !important; }
.booking-page #property-location-wrap:empty::before {
  content: 'Loading address search…';
  display: block;
  padding: 14px 16px;
  min-height: 48px;
  border: 1px solid var(--line);
  background: #faf9f5;
  font-size: 13px;
  color: var(--muted);
}
.booking-page .services-grid { gap: 14px; }
.booking-page .service-card { padding: 22px; gap: 13px; border-radius: 0; background: transparent; }
.booking-page .service-card:hover { border-color: #919b84; background: #edeee5; }
.booking-page .service-card.selected { border-color: var(--olive); background: #e5e9dc; }
.booking-page .service-card:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 3px; }
.booking-page .service-card input[type="checkbox"] { accent-color: var(--olive); width: 17px; height: 17px; margin-top: 6px; }
.booking-page .service-name { font-family: var(--sans); font-size: 20px; font-weight: 500; line-height: 1.25; }
.booking-page .service-desc { color: var(--gray); font-size: 11px; line-height: 1.6; margin-top: 8px; }
.booking-page .service-price { color: var(--accent); font-family: var(--sans); font-size: 13px; font-weight: 500; margin-top: 16px; }
.booking-page .estimate-row:not(#mileageRow) { background: var(--olive); color: var(--paper); padding: 20px 24px; border: 0; margin-top: 24px; }
.booking-page .estimate-row:not(#mileageRow) .estimate-label { font-size: 10px; letter-spacing: 1.8px; color: #d3d7ca; }
.booking-page .estimate-val { font-size: 42px; line-height: 1.2; }
.booking-page .estimate-note { font-size: 11px; margin-top: 12px; }
.booking-page .submit-btn {
  background: var(--accent);
  color: #fff;
  border-radius: 0;
  min-height: 54px;
  font-weight: 500;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0;
}
.booking-page .submit-btn:hover:not(:disabled) { opacity: 1; background: #92432b; }
.booking-page .submit-btn:focus-visible,
.booking-page .modal-cancel:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.booking-page .legal-note { font-size: 10px; }
.booking-page .modal-overlay { background: #161b15dc; backdrop-filter: blur(6px); }
.booking-page .modal { background: var(--paper); border-radius: 0; max-width: 570px; padding: 36px; max-height: calc(100dvh - 48px); overflow-y: auto; }
.booking-page .modal h2 { font-size: 34px; line-height: 1.15; margin-bottom: 12px; }
.booking-page .modal .modal-sub { font-size: 12px; }
.booking-page .review-row { font-size: 12px; padding-block: 11px; }
.booking-page .review-val { min-width: 0; overflow-wrap: anywhere; }
.booking-page .modal-deposit { background: #e5e9dc; border-radius: 0; padding: 18px 20px; }
.booking-page .modal-deposit-label { font-size: 10px; color: var(--ink); }
.booking-page .modal-deposit-val { font-size: 34px; }
.booking-page .modal-cancel { border-radius: 0; color: var(--ink); }
.booking-page .success-state h2 { font-size: 38px; }
.booking-page .success-state p { font-size: 13px; }
.booking-page .success-check { background: var(--olive); }
.booking-page .btn { display: inline-flex; align-items: center; justify-content: center; font-size: 12px; padding: 15px 22px; border: 1px solid #919587; }
.booking-page .btn:hover { background: #e8e9df; }
.booking-page .site-footer { border-top: 1px solid var(--line); }
.booking-page .site-footer>span { font-size: 10px; }

@media (max-width: 760px) {
  .booking-nav { min-height: 82px; gap: 16px; }
  .booking-nav .nav-toggle { display: flex; }
  .booking-nav .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; padding: 12px 20px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 15px 25px #30372d12; }
  .booking-nav .nav-links.open { display: flex; }
  .booking-nav .nav-links a { display: block; padding: 12px 0; font-size: 14px; }
  .booking-nav .nav-book { display: none; }
  .booking-page .book-wrap { width: calc(100% - 40px); padding: 24px 0 48px; }
  .booking-page .book-header { margin-bottom: 32px; padding-bottom: 26px; }
  .booking-page .book-header .eyebrow { font-size: 8px; letter-spacing: 1.4px; }
  .booking-page .book-header h1 { font-size: 36px; }
  .booking-page .field-row { gap: 14px; }
  .booking-page .form-section { margin-bottom: 30px; }
  .booking-page .service-card { padding: 20px; }
  .booking-page .service-name { font-size: 20px; }
  .booking-page .modal { padding: 26px 22px; }
  .booking-page .modal h2 { font-size: 30px; }
  .booking-page .modal-actions { flex-direction: column-reverse; }
  .booking-page .modal-deposit { padding: 15px; gap: 12px; }
  .booking-page .success-state h2 { font-size: 32px; }
}
