:root {
  color-scheme: dark;
  --page: #06111d;
  --page-deep: #030b13;
  --surface: #0b1d2d;
  --surface-raised: #10263a;
  --surface-soft: #132b40;
  --border: #29445a;
  --border-strong: #3d5d75;
  --text: #f3f7fa;
  --text-muted: #9db0bf;
  --gold: #e3ad35;
  --gold-hover: #f2c45b;
  --gold-soft: #3b3018;
  --blue: #58a9e6;
  --blue-soft: #133b58;
  --success: #55c887;
  --success-soft: #123c2d;
  --warning: #efc35a;
  --danger: #ef6d73;
  --danger-soft: #3a1b25;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 22px 60px rgb(0 0 0 / 32%);
  --focus: 0 0 0 3px rgb(88 169 230 / 38%);
  --content: 1420px;
  --input-height: 52px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgb(39 87 122 / 17%), transparent 30rem),
    radial-gradient(circle at 90% 30%, rgb(25 69 100 / 14%), transparent 34rem),
    linear-gradient(145deg, var(--page-deep), var(--page) 55%, #071725);
  color: var(--text);
  font: 16px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgb(255 255 255 / 2.4%) 1px, transparent 1px);
  background-size: 6px 6px;
  content: "";
  pointer-events: none;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { touch-action: manipulation; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 18px;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: #071725;
  font-weight: 850;
}
.skip-link:focus { top: 14px; }

.site-header { border-bottom: 1px solid rgb(104 143 170 / 24%); background: rgb(3 13 23 / 91%); backdrop-filter: blur(16px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: min(100% - 48px, var(--content)); min-height: 78px; margin: auto; }
.brand { color: #fff; font-size: 1.18rem; font-weight: 950; letter-spacing: .075em; line-height: 1; text-decoration: none; }
.brand b { color: var(--gold); }
.brand small { display: block; margin-top: 7px; color: var(--gold); font-size: .53rem; letter-spacing: .28em; }
.desktop-nav, footer nav { display: flex; align-items: center; gap: 27px; }
.desktop-nav a, .link-button { padding: 9px 2px; border: 0; background: transparent; color: #c6d3dc; cursor: pointer; font-size: .88rem; font-weight: 760; text-decoration: none; }
.desktop-nav a:hover, .link-button:hover { color: #fff; }
.desktop-nav [data-open-booking] { border-bottom: 2px solid var(--gold); color: #fff; }
.desktop-nav [aria-current="page"] { border-bottom: 2px solid var(--gold); color: #fff; }
.mobile-nav { display: none; position: relative; }
.mobile-nav summary { padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; font-weight: 800; list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav nav { position: absolute; z-index: 100; top: calc(100% + 8px); right: 0; display: grid; min-width: 210px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-raised); box-shadow: var(--shadow); }
.mobile-nav a, .mobile-nav button { display: block; width: 100%; padding: 13px 16px; border-bottom: 1px solid var(--border); text-align: left; text-decoration: none; }

main { width: min(100% - 48px, var(--content)); margin: 0 auto; padding: 38px 0 70px; }
.booking-shell { min-width: 0; }
.booking-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.booking-heading h1 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.75rem); letter-spacing: -.04em; line-height: 1.05; }
.eyebrow, .step-label, .card-kicker { margin: 0 0 7px; color: var(--gold); font-size: .71rem; font-weight: 900; letter-spacing: .145em; text-transform: uppercase; }
.timezone-chip, .context-chip { display: inline-flex; align-items: center; width: fit-content; margin: 5px 0 0; padding: 8px 11px; border: 1px solid var(--border); border-radius: 999px; background: rgb(16 38 58 / 72%); color: var(--text-muted); font-size: .74rem; font-weight: 760; }

.progress { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin: 0 0 24px; padding: 0; list-style: none; }
.progress li { display: flex; align-items: center; gap: 9px; min-width: 0; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: rgb(8 26 41 / 70%); color: #8095a5; font-size: .8rem; }
.progress li > span { display: grid; flex: 0 0 auto; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #20394c; font-weight: 900; }
.progress li b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.progress .is-current { border-color: rgb(227 173 53 / 70%); background: var(--gold-soft); color: #ffe69d; }
.progress .is-current > span { background: var(--gold); color: #121a20; }
.progress .is-complete { border-color: rgb(85 200 135 / 47%); color: #a8e4c0; }
.progress .is-complete > span { background: var(--success); color: #07170f; }

.panel { min-width: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(150deg, rgb(14 37 56 / 97%), rgb(7 24 38 / 97%)); box-shadow: 0 16px 46px rgb(0 0 0 / 22%); }
.search-layout { display: grid; grid-template-columns: minmax(0, .93fr) minmax(440px, 1.07fr); gap: 22px; align-items: stretch; }
.search-panel { padding: clamp(24px, 3.2vw, 44px); }
.screen-heading h2, .page-head h2, .offers-heading h2, .lookup-heading h2 { margin: 0; color: #fff; font-size: clamp(1.7rem, 3vw, 2.35rem); letter-spacing: -.035em; line-height: 1.08; }
.screen-heading > p:last-child, .page-head p, .lookup-heading p { max-width: 690px; margin: 9px 0 0; color: var(--text-muted); }
.location-inline { display: flex; align-items: center; gap: 13px; margin: 24px 0; padding: 14px 16px; border: 1px solid var(--border); border-radius: 11px; background: rgb(4 17 28 / 52%); }
.location-mark { display: grid; flex: 0 0 auto; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--blue-soft); color: #8ecdf5; font-size: 1.3rem; }
.location-inline div { display: grid; min-width: 0; }
.location-inline span:not(.location-mark) { color: var(--text-muted); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.location-inline strong { color: #fff; }
.location-inline small { overflow: hidden; color: var(--text-muted); text-overflow: ellipsis; white-space: nowrap; }
.plain-fieldset, .duration-choices { margin: 0; padding: 0; border: 0; }
.plain-fieldset legend, .duration-choices legend { margin-bottom: 9px; color: #d9e5ec; font-size: .82rem; font-weight: 850; text-transform: uppercase; }
.parking-type-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.parking-type-card { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 11px; align-items: start; min-width: 0; min-height: 146px; padding: 16px; border: 1px solid var(--border-strong); border-radius: 12px; background: #0b2133; color: var(--text); cursor: pointer; text-align: left; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.parking-type-card:hover { border-color: #6c8da4; transform: translateY(-2px); }
.parking-type-card.is-selected { border-color: var(--gold); background: linear-gradient(145deg, #25301f, #11273a); box-shadow: 0 0 0 3px rgb(227 173 53 / 14%); }
.parking-type-card.is-bobtail.is-selected { border-color: var(--success); box-shadow: 0 0 0 3px rgb(85 200 135 / 13%); }
.parking-type-marker { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgb(227 173 53 / 55%); border-radius: 50%; background: #17354e; color: #f5cd72; font-weight: 950; }
.is-bobtail .parking-type-marker { border-color: rgb(85 200 135 / 55%); color: #8fe0b1; }
.parking-type-copy { display: grid; gap: 4px; min-width: 0; }
.parking-type-copy > strong { color: #fff; font-size: 1.02rem; }
.parking-type-copy > span:not(.card-kicker):not(.duration-badges) { color: var(--text-muted); font-size: .79rem; }
.parking-type-rate { grid-column: 1 / -1; display: flex; align-items: baseline; justify-content: space-between; color: #f5d477; }
.parking-type-rate small { color: var(--text-muted); font-size: .68rem; }
.duration-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.duration-badges span { padding: 3px 6px; border: 1px solid rgb(128 161 183 / 30%); border-radius: 999px; color: #bfd2df; font-size: .61rem; font-weight: 850; text-transform: uppercase; }
.section-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.compact-head { align-items: center; margin: 22px 0 12px; }
.compact-head h2, .compact-head h3 { margin: 0; font-size: 1.1rem; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
label { display: block; color: #cfdae2; font-size: .8rem; font-weight: 800; }
input, select, textarea { display: block; width: 100%; min-height: var(--input-height); margin-top: 7px; padding: 11px 13px; border: 1px solid #49657a; border-radius: var(--radius-sm); background: #f5f8fa; color: #102236; }
textarea { min-height: 102px; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #6e8799; }
.optional { color: var(--text-muted); font-size: .72rem; font-weight: 650; }
.duration-choices { margin-top: 20px; }
.field-help { margin: -3px 0 10px; color: var(--text-muted); font-size: .76rem; }
.duration-options { display: flex; flex-wrap: wrap; gap: 9px; }
.duration-note { flex: 1 0 100%; margin: 0; color: var(--text-muted); font-size: .75rem; }
.duration-option { flex: 1 1 120px; padding: 11px 13px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); background: #102a40; color: #e5edf2; cursor: pointer; text-align: left; }
.duration-option strong, .duration-option span { display: block; }
.duration-option span { margin-top: 2px; color: var(--text-muted); font-size: .71rem; }
.duration-option.is-selected { border-color: var(--gold); background: var(--gold-soft); color: #ffe9a8; box-shadow: 0 0 0 2px rgb(227 173 53 / 13%); }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 48px; padding: 11px 19px; border: 1px solid #b47d17; border-radius: var(--radius-sm); background: var(--gold); color: #111820; cursor: pointer; font-weight: 900; text-align: center; text-decoration: none; transition: background .16s ease, transform .16s ease; }
.button:hover { background: var(--gold-hover); transform: translateY(-1px); }
.button:disabled { border-color: #4c5d69; background: #536674; color: #c3ced5; cursor: not-allowed; transform: none; }
.primary-action { min-width: 210px; }
.secondary-button { border-color: #57738a; background: #142e43; color: #e7f0f5; }
.secondary-button:hover { background: #1b3a53; }
.small-button { min-height: 40px; padding: 8px 13px; }
.text-button, .text-link { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 2px; border: 0; background: transparent; color: #7ec2ed; cursor: pointer; font-weight: 800; text-decoration: none; }
.text-button:hover, .text-link:hover { color: #b8e2fb; text-decoration: underline; }
.message { margin: 14px 0 0; color: #b9d6e8; font-weight: 760; }
.message.error { padding: 11px 13px; border-left: 3px solid var(--danger); border-radius: 4px; background: var(--danger-soft); color: #ffb5b9; }
.muted { color: var(--text-muted); }
.loading-state { padding: 18px; border: 1px solid #42647a; border-radius: var(--radius); background: var(--blue-soft); color: #d4edfa; }
.loading-state h4, .loading-state p { margin: 0; }
.loading-state p { margin-top: 5px; color: #b9d5e4; }
.error-state { border-left-color: var(--danger); }
.quote-error { border-color: var(--danger) !important; }
.empty-state { padding: 16px; border: 1px solid var(--border); border-left: 4px solid #7892a4; border-radius: var(--radius-sm); background: #0d2639; color: var(--text-muted); }
.empty-state h2, .empty-state h3 { margin: 0 0 5px; color: var(--text); }
.empty-state p { margin: 5px 0 12px; }

.property-panel { display: flex; min-height: 0; flex-direction: column; overflow: hidden; }
.property-image-wrap { position: relative; flex: 1 1 auto; min-height: 410px; overflow: hidden; background: #172530; }
.property-image-wrap::after { position: absolute; inset: auto 0 0; height: 38%; background: linear-gradient(transparent, rgb(4 14 23 / 76%)); content: ""; pointer-events: none; }
.property-image-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 52% 50%; }
.image-badge { position: absolute; z-index: 1; right: 18px; bottom: 17px; padding: 8px 11px; border: 1px solid rgb(255 255 255 / 22%); border-radius: 999px; background: rgb(4 17 29 / 80%); color: #fff; font-size: .72rem; font-weight: 850; }
.property-copy { padding: 25px 28px 28px; }
.property-copy h2 { margin: 0; font-size: 1.55rem; }
.property-details { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; margin: 10px 0 20px; }
.property-details div { min-width: 0; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: rgb(5 19 30 / 48%); }
.property-details dt { color: var(--text-muted); font-size: .66rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.property-details dd { margin: 4px 0 0; overflow-wrap: anywhere; color: #eef5f8; font-size: .84rem; font-weight: 760; }
.assignment-note, .automatic-assignment { display: flex; gap: 12px; align-items: flex-start; padding: 15px; border: 1px solid #355970; border-radius: 11px; background: var(--blue-soft); }
.assignment-note > span, .automatic-assignment > span { display: grid; flex: 0 0 auto; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #245f84; color: #ccecff; font-weight: 900; }
.assignment-note strong, .automatic-assignment strong { color: #eef8fe; }
.assignment-note p, .automatic-assignment p { margin: 4px 0 0; color: #b5cfdf; font-size: .82rem; }
.property-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; }
.returning-customer-actions { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.returning-customer-actions > span { width: 100%; color: var(--text-muted); font-size: .76rem; font-weight: 800; }
.returning-customer-actions .button { min-height: 42px; padding: 8px 13px; font-size: .78rem; }

.availability-layout { display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: 22px; align-items: start; }
.search-summary-panel { position: sticky; top: 20px; padding: 22px; }
.search-summary-panel .compact-head { margin: 0 0 16px; }
.search-overview dl, .review-facts { margin: 0; }
.search-overview dl > div { padding: 13px 0; border-top: 1px solid var(--border); }
.search-overview dt, .review-facts dt { color: var(--text-muted); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.search-overview dd, .review-facts dd { margin: 4px 0 0; color: #fff; font-weight: 800; }
.search-overview dd small { display: block; margin-top: 3px; color: var(--text-muted); font-weight: 500; }
.automatic-assignment { margin-top: 18px; }
.offers-panel { padding: clamp(22px, 3vw, 36px); }
.offers-heading { margin-bottom: 20px; }
.availability-cards { display: grid; gap: 14px; }
.availability-card { display: grid; grid-template-columns: auto minmax(0, 1fr) minmax(175px, auto); gap: 18px; align-items: center; padding: 22px; border: 1px solid #42647a; border-radius: var(--radius); background: linear-gradient(135deg, #102b41, #0b2133); }
.availability-card.is-selected { border-color: var(--gold); box-shadow: 0 0 0 3px rgb(227 173 53 / 12%); }
.availability-card.is-unavailable { border-color: #485867; opacity: .76; }
.offer-symbol { display: grid; place-items: center; width: 50px; height: 58px; border: 1px solid #4c92c1; border-radius: 12px 12px 17px 17px; background: #143756; color: #8ac8f0; font-size: 1.2rem; font-weight: 950; }
.offer-copy h3 { margin: 0; font-size: 1.25rem; }
.offer-copy p { margin: 5px 0; color: var(--text-muted); font-size: .86rem; }
.offer-copy .offer-category { color: #dce8ef; font-weight: 800; }
.capacity { display: inline-flex; margin-top: 7px; color: #8cddb0; font-size: .76rem; font-weight: 850; }
.card-choice { display: grid; justify-items: end; text-align: right; }
.card-choice > span, .card-choice > small { color: var(--text-muted); font-size: .7rem; }
.price { margin: 2px 0; color: #f6d477; font-size: 1.65rem; line-height: 1.1; }
.quote-summary { margin-top: 16px; }
.quote-summary > section { padding: 20px; border: 1px solid rgb(227 173 53 / 42%); border-radius: var(--radius); background: linear-gradient(145deg, #2b2818, #172c39); }
.quote-summary h4 { margin: 0 0 12px; font-size: 1.05rem; }
.quote-summary p, .payment-note { margin: 12px 0 0; color: var(--text-muted); font-size: .8rem; }
.quote-unavailable { border-color: #774a58 !important; background: var(--danger-soft) !important; }
.quote-lines { display: grid; grid-template-columns: 1fr auto; gap: 7px 16px; margin: 0; font-size: .82rem; }
.quote-lines > div { display: contents; }
.quote-lines dt { color: var(--text-muted); }
.quote-lines dd { margin: 0; color: #f2f7fa; font-weight: 820; text-align: right; }
.quote-lines .quote-total dt, .quote-lines .quote-total dd { margin-top: 5px; padding-top: 11px; border-top: 1px solid rgb(227 173 53 / 24%); color: #f6d477; font-size: 1rem; font-weight: 900; }
.parking-information { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.information-card { display: flex; gap: 12px; padding: 17px; border: 1px solid var(--border); border-radius: 11px; background: #10283c; }
.information-card h4 { margin: 0; font-size: .96rem; }
.information-card p { margin: 4px 0 0; color: var(--text-muted); font-size: .79rem; }
.information-icon { display: grid; flex: 0 0 auto; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #245f84; color: #d7f1ff; }
.availability-status-card { display: block; border-color: rgb(85 200 135 / 34%); background: var(--success-soft); }
.availability-status-card h4 { color: #9be2b9; }
.step-actions { padding-top: 18px; border-top: 1px solid var(--border); }

.page-head { margin: 4px 0 20px; }
.review-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); gap: 22px; align-items: start; }
.details-panel { padding: clamp(22px, 3vw, 36px); }
.details-panel fieldset { margin: 0 0 24px; padding: 0 0 24px; border: 0; border-bottom: 1px solid var(--border); }
.details-panel legend { margin-bottom: 14px; color: #fff; font-size: 1.05rem; font-weight: 900; }
.verification-fieldset { padding: 18px !important; border: 1px solid rgb(64 158 217 / 45%) !important; border-radius: 10px; background: rgb(21 75 108 / 24%); }
.verification-fieldset > p { color: var(--text-muted); }
.verification-fieldset input[type="file"] { padding: 12px; border: 1px dashed rgb(125 194 235 / 58%); background: #071724; }
.secure-payment-note { margin: 4px 0 20px; padding: 16px 18px; border: 1px solid rgb(85 200 135 / 40%); border-radius: 10px; background: rgb(18 52 39 / 55%); }
.secure-payment-note strong { color: #dfffea; }
.secure-payment-note p { margin: 5px 0 0; color: #add6bd; }
.payment-step { max-width: 780px; margin-inline: auto; }
.payment-verification { padding: clamp(24px, 5vw, 44px); text-align: center; }
.payment-verification .confirmation-mark { margin: 0 auto 18px; }
.payment-verification h2 { margin: 0 0 10px; font-size: clamp(1.6rem, 4vw, 2.35rem); }
.payment-verification p { color: var(--text-muted); }
.payment-verification.is-error { border-color: rgb(225 99 99 / 55%); }
.payment-verification.is-error .confirmation-mark { background: var(--danger); }
.hold-countdown { display: inline-flex; margin-top: 6px; padding: 4px 8px; border-radius: 999px; background: rgb(239 195 90 / 15%); color: #ffe29a; font-variant-numeric: tabular-nums; font-weight: 900; }
.billing-summary { margin-top: 16px; padding: 14px; border: 1px solid var(--border); border-radius: 8px; background: rgb(7 23 36 / 55%); }
.full { grid-column: 1 / -1; }
.notes-field { margin-top: 2px; }
.terms { margin-top: 22px; padding: 16px; border: 1px solid var(--border); border-radius: 11px; background: rgb(5 20 32 / 52%); }
.check { display: flex; gap: 10px; align-items: flex-start; margin: 8px 0; line-height: 1.4; }
.check input { flex: 0 0 auto; width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--gold); }
.selected-parking-summary { position: sticky; top: 20px; display: block; padding: 24px; }
.summary-heading { padding-bottom: 17px; border-bottom: 1px solid var(--border); }
.summary-heading h2 { margin: 0; font-size: 1.25rem; }
.summary-heading p { margin: 5px 0 0; color: var(--text-muted); font-size: .82rem; }
.review-facts > div { padding: 11px 0; border-bottom: 1px solid var(--border); }
.selected-parking-summary > .quote-lines { margin-top: 18px; }
.summary-assignment-note { margin-top: 18px; padding: 14px; border-left: 3px solid var(--blue); background: var(--blue-soft); }
.summary-assignment-note p { margin: 4px 0 0; color: #b9d3e3; font-size: .78rem; }

.confirmation { min-width: 0; }
.digital-pass { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(145deg, #0d2335, #071a29); box-shadow: var(--shadow); }
.pass-status { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 24px; border-bottom: 1px solid var(--border); background: #071a29; }
.pass-status span { padding: 5px 10px; border: 1px solid rgb(85 200 135 / 44%); border-radius: 999px; background: var(--success-soft); color: #9ee3bb; font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.pass-status strong { color: #d6e2e9; font-size: .84rem; letter-spacing: .04em; }
.confirmation-banner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; padding: clamp(24px, 3.5vw, 44px); border-bottom: 1px solid var(--border); background: radial-gradient(circle at 90% 20%, rgb(227 173 53 / 12%), transparent 24rem); }
.confirmation-title { display: flex; gap: 18px; align-items: center; }
.confirmation-mark { display: grid; flex: 0 0 auto; place-items: center; width: 58px; height: 58px; border: 2px solid var(--success); border-radius: 50%; color: #8fe0af; font-size: 1.65rem; font-weight: 900; }
.status-warning .confirmation-mark { border-color: var(--warning); color: var(--warning); }
.status-active .confirmation-mark { border-color: var(--blue); color: #8ed2f6; }
.status-danger .confirmation-mark { border-color: var(--danger); color: #ff9da3; }
.status-neutral .confirmation-mark { border-color: #7d92a1; color: #b9c8d1; }
.status-danger .confirmation-banner, .confirmation-banner.status-danger { background: var(--danger-soft); }
.status-warning .confirmation-banner, .confirmation-banner.status-warning { background: #302817; }
.confirmation-title h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.55rem); letter-spacing: -.04em; }
.confirmation-title p:last-child { margin: 5px 0 0; color: var(--text-muted); }
.assigned-space-card { min-width: 220px; padding: 19px 24px; border: 1px solid var(--gold); border-radius: var(--radius); background: linear-gradient(145deg, #352b16, #192736); box-shadow: 0 0 32px rgb(227 173 53 / 13%); text-align: center; }
.assigned-space-card span, .assigned-space-card small { display: block; color: #e8c66d; font-size: .67rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.assigned-space-card strong { display: block; margin: 2px 0; color: #ffd66a; font-size: clamp(2.9rem, 7vw, 5rem); letter-spacing: -.06em; line-height: .95; }
.assigned-space-card.is-pending { border-color: var(--border-strong); }
.assigned-space-card.is-pending strong { color: #c9d6de; font-size: 1.5rem; letter-spacing: 0; }
.confirmation-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 24px 0; }
.confirmation-credentials > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 10px; padding: 15px; border: 1px solid var(--border); border-radius: 11px; background: var(--surface-raised); }
.confirmation-credentials span { grid-column: 1 / -1; color: var(--text-muted); font-size: .67rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.confirmation-credentials strong, .confirmation-credentials code { overflow-wrap: anywhere; color: #fff; font-size: .94rem; }
.recovery-details, .remember-control { margin: 0 24px 20px; padding: 16px 18px; border: 1px solid var(--border); border-radius: 11px; background: #0a2032; }
.recovery-details summary { min-height: 44px; cursor: pointer; color: #dbe9f1; font-weight: 850; }
.recovery-details > p, .remember-control p { margin: 5px 0 0; color: var(--text-muted); font-size: .82rem; }
.recovery-details .confirmation-credentials { margin: 14px 0 0; }
.remember-control .check { min-height: 44px; align-items: center; margin: 0; }
.cached-state { margin: 16px 24px; padding: 13px 15px; border-left: 4px solid var(--warning); border-radius: 6px; background: #302817; color: #ead9a9; }
.inactive-pass { position: relative; border-color: #6e4650; }
.inactive-pass::after { position: absolute; z-index: 5; top: 32px; right: -42px; width: 190px; padding: 6px; transform: rotate(32deg); background: rgb(102 31 42 / 92%); color: #ffd8db; content: "NOT ACTIVE"; font-size: .72rem; font-weight: 950; letter-spacing: .14em; text-align: center; pointer-events: none; }
.copy-button { min-height: 44px; padding: 8px 10px; border: 1px solid #58758a; border-radius: 6px; background: #17354b; color: #ddecf5; cursor: pointer; font-size: .72rem; font-weight: 850; }
.reservation-facts { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); margin: 24px; border: 1px solid var(--border); border-radius: 12px; background: #0a2032; }
.reservation-facts > div { min-width: 0; padding: 17px; border-right: 1px solid var(--border); }
.reservation-facts > div:last-child { border-right: 0; }
.reservation-facts span, .reservation-facts strong, .reservation-facts small { display: block; }
.reservation-facts span { color: var(--text-muted); font-size: .66rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.reservation-facts strong { margin-top: 5px; overflow-wrap: anywhere; color: #fff; }
.reservation-facts small { margin-top: 3px; color: var(--text-muted); }
.arrival-callout, .pending-assignment { display: flex; gap: 14px; align-items: center; margin: 0 24px 22px; padding: 16px 18px; border: 1px solid #3c7190; border-radius: 11px; background: var(--blue-soft); }
.arrival-callout > span { display: grid; flex: 0 0 auto; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #286f9d; font-size: 1.25rem; }
.arrival-callout p, .pending-assignment p { margin: 3px 0 0; color: #c2d9e7; font-size: .84rem; }
.pass-details { display: grid; grid-template-columns: 1fr .75fr; gap: 14px; margin: 0 24px 24px; }
.pass-details section { padding: 20px; border: 1px solid var(--border); border-radius: 12px; background: #0a2032; }
.pass-details h3 { margin: 0 0 13px; }
.pass-details dl { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 0; }
.pass-details dl div { padding: 10px; border: 1px solid rgb(52 78 98 / 72%); border-radius: 8px; background: #10283b; }
.pass-details dt { color: var(--text-muted); font-size: .66rem; font-weight: 850; text-transform: uppercase; }
.pass-details dd { margin: 3px 0 0; color: #fff; font-weight: 800; }
.pass-details p { color: var(--text-muted); font-size: .8rem; }
.pass-details .quote-lines { color: var(--text); }
.assigned-navigation-card { width: min(100% - 48px, 1120px); margin-right: auto; margin-left: auto; }
.assigned-navigation-card { display: grid; grid-template-columns: auto 1fr; gap: 3px 14px; align-items: center; margin-top: 15px; margin-bottom: 15px; padding: 15px 17px; border: 1px solid #3c7190; border-left: 4px solid var(--blue); border-radius: 11px; background: #0d2d42; }
.assigned-navigation-card span { color: #8dcef4; font-size: .66rem; font-weight: 900; letter-spacing: .11em; }
.assigned-navigation-card strong { color: #ffe08a; }
.assigned-navigation-card p { grid-column: 1 / -1; margin: 3px 0 0; color: #b9d1df; font-size: .8rem; }
.written-directions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 24px 0; }
.written-directions > div { padding: 18px; border: 1px solid var(--border); border-left: 4px solid var(--blue); border-radius: 9px; background: #0e2739; }
.written-directions > div:last-child { border-left-color: var(--gold); }
.written-directions ol { margin: 8px 0 0; padding-left: 20px; color: #c8d8e2; }
.written-directions li { margin: 6px 0; }
.pass-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px; padding-top: 22px; border-top: 1px solid var(--border); }
.self-service-button { border-color: #328c60; background: #287a53; color: #fff; }
.danger-button { border-color: #a54550; background: var(--danger-soft); color: #ffb8bc; }
.danger-button:hover { background: #55202c; }

.lifecycle-view { min-width: 0; }
.view-page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin: 6px 0 22px; }
.view-page-head h1 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.65rem); letter-spacing: -.04em; }
.view-page-head p:last-child { max-width: 760px; margin: 8px 0 0; color: var(--text-muted); }
.confirmation-view { overflow: hidden; }
.confirmation-actions { margin-bottom: 24px; }
.pending-assignment small { display: block; margin-top: 7px; color: #93b8cb; }
.lifecycle-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.management-card { overflow: hidden; }
.management-status { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; border-bottom: 1px solid var(--border); background: #0b2234; }
.management-status > span, .status-chip { width: fit-content; padding: 5px 9px; border: 1px solid #637887; border-radius: 999px; background: #1b2b36; color: #d4e0e7; font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.status-success .management-status > span, .status-success .status-chip { border-color: rgb(85 200 135 / 42%); background: var(--success-soft); color: #9ee3bb; }
.status-warning .management-status > span, .status-warning .status-chip { border-color: rgb(239 195 90 / 45%); background: #302817; color: #f5d982; }
.status-active .management-status > span, .status-active .status-chip { border-color: rgb(88 169 230 / 50%); background: var(--blue-soft); color: #a6dafa; }
.status-danger .management-status > span, .status-danger .status-chip { border-color: rgb(239 109 115 / 50%); background: var(--danger-soft); color: #ffb5b9; }
.management-status div { display: grid; justify-items: end; }
.management-status small { color: var(--text-muted); font-size: .68rem; text-transform: uppercase; }
.management-status strong { color: #ffd66a; font-size: 2rem; }
.remove-device-action { width: 100%; color: #ff9ca2; text-align: left; }
.dedicated-map { overflow: hidden; padding-top: 18px; }
.dedicated-map > .assigned-navigation-card { width: min(100% - 36px, 1120px); }
.dedicated-map .written-directions { margin-bottom: 22px; }
.recent-reservation-list { display: grid; gap: 14px; }
.recent-reservation-card { display: grid; grid-template-columns: minmax(200px, .75fr) minmax(0, 1.25fr) auto; gap: 22px; align-items: center; padding: 22px; }
.recent-reservation-card h2 { margin: 8px 0 2px; font-size: 1.2rem; }
.recent-reservation-card p { margin: 0; color: var(--text-muted); font-size: .79rem; }
.recent-reservation-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; }
.recent-reservation-card dt { color: var(--text-muted); font-size: .64rem; font-weight: 850; text-transform: uppercase; }
.recent-reservation-card dd { margin: 3px 0 0; color: #fff; font-size: .82rem; font-weight: 760; }
.recent-reservation-card .refresh-state { align-self: end; }
.card-actions { display: grid; gap: 7px; justify-items: stretch; }
.shared-device-notice { margin-top: 18px; padding: 16px 18px; border-left: 4px solid var(--warning); border-radius: 6px; background: #302817; }
.shared-device-notice p { margin: 4px 0 0; color: #dacb9f; font-size: .8rem; }
.lookup-page { padding: clamp(24px, 4vw, 44px); }
.print-pass-portal { display: none; }

.map-stage { position: relative; display: flex; justify-content: center; width: 100%; height: min(76vh, 900px); min-height: 560px; overflow: hidden; border-top: 1px solid #294552; border-bottom: 1px solid #294552; background: linear-gradient(145deg, #030d14, #0b222c); overscroll-behavior: contain; touch-action: pan-x pan-y; }
.map-stage.is-zoomed { justify-content: flex-start; overflow: auto; cursor: grab; scrollbar-color: #587282 #06141d; }
.map-stage.is-panning { cursor: grabbing; user-select: none; }
.map-canvas { position: relative; flex: 0 0 auto; height: calc(100% * var(--map-scale, 1)); aspect-ratio: var(--map-aspect, 2 / 3); }
.lot-map.customer-map { position: absolute; inset: 0; overflow: hidden; border: 1px solid #4f656c; border-radius: 8px; background-color: #18272b; background-image: radial-gradient(rgb(255 255 255 / 2.6%) 1px, transparent 1px), linear-gradient(135deg, rgb(255 255 255 / 2%), transparent 48%); background-size: 8px 8px, auto; box-shadow: inset 0 0 0 1px rgb(255 255 255 / 3%), 0 18px 40px rgb(0 0 0 / 34%); }
.map-controls { position: sticky; z-index: 1200; top: 12px; left: 100%; display: flex; align-self: flex-start; width: max-content; height: 0; margin: 12px 12px 0 -154px; gap: 5px; pointer-events: none; }
.map-controls button { min-width: 44px; height: 44px; border: 1px solid #587484; border-radius: 8px; background: rgb(9 36 50 / 94%); color: #eef8fb; cursor: pointer; font-weight: 900; pointer-events: auto; }
.map-controls button:last-child { min-width: 44px; color: #bfe8fa; }
.map-controls button:hover { border-color: var(--gold); color: #ffe08a; }
.map-controls button:disabled { opacity: .45; cursor: not-allowed; }
.customer-map .map-element { position: absolute; z-index: 10; display: grid; place-items: center; min-width: 0; min-height: 0; overflow: hidden; border: 1px solid #6e8387; border-radius: 2px; background: #26373b; color: #f1f6f7; font-size: clamp(5px, .62vw, 9px); font-weight: 850; line-height: 1; text-align: center; }
.customer-map .map-element span { max-width: 100%; overflow: visible; padding: 0 1px; text-shadow: 0 1px 1px #000; white-space: nowrap; }
.customer-map:not(.is-detail-zoom) .map-space:not(.is-assigned) span { visibility: hidden; }
.customer-map .map-space.is-assigned span { visibility: visible; }
.customer-map .map-space.is-bobtail-space { border-color: #678f84; background: #28403d; }
.customer-map .map-space.is-general-space { border-color: #77888a; }
.customer-map .map-space.is-unavailable, .customer-map .map-space.is-confirmation-muted { border-color: #47575b; background: #202c30; color: #718084; opacity: .54; }
.customer-map .map-space.is-confirmation-muted span { visibility: hidden; }
.customer-map .map-space.is-outside-area { border-color: #33444a; background: #17252a; color: transparent; opacity: .22; }
.customer-map .map-space.is-outside-area span, .customer-map .map-space.is-permitted-area span { visibility: hidden; }
.customer-map .map-space.is-permitted-area { z-index: 250 !important; border: 1.5px solid #ffd15b; background: #6f5b20; box-shadow: 0 0 7px rgb(255 209 91 / 58%); color: transparent; opacity: 1; }
.customer-map .map-space.is-permitted-area + .map-space.is-permitted-area { box-shadow: 0 0 6px rgb(255 209 91 / 52%); }
.customer-map .map-element.is-assigned { z-index: 999 !important; border: 2px solid #ffd15b; background: #806020; box-shadow: 0 0 0 4px rgb(255 209 91 / 44%), 0 0 24px rgb(255 203 75 / 88%); color: #fff9dc; font-size: clamp(8px, .9vw, 12px); opacity: 1; }
.customer-map .map-element.is-assigned span { font-weight: 950; text-shadow: 0 1px 2px #332309; }
.customer-map .map-element.is-route { border-color: #67c6ef; background: #1b5268; box-shadow: inset 0 0 0 1px rgb(128 218 255 / 35%); opacity: 1; }
.customer-map .map-space.is-route:not(.is-assigned) { background: #274951; }
.customer-map .map-element.is-assigned.is-route { border-color: #ffd15b; background: #806020; box-shadow: 0 0 0 4px rgb(255 209 91 / 44%), 0 0 24px rgb(255 203 75 / 88%); color: #fff9dc; }
.customer-map .map-label, .customer-map .map-area { z-index: 105; border: 0; background: rgb(7 23 33 / 70%); color: #e8f3f7; pointer-events: none; }
.customer-map:not(.is-detail-zoom) .map-label span, .customer-map:not(.is-detail-zoom) .map-area span { visibility: visible; }
.customer-map .customer-lane { z-index: 1; border: 0; border-radius: 0; background: #344348; }
.customer-map .customer-boundary { z-index: 2; border: 1px solid #566d72; border-radius: 4px; background: transparent; }
.customer-map .customer-island { z-index: 3; border-color: #586b6f; border-radius: 999px; background: #3a4a4e; }
.customer-map .customer-building { z-index: 4; border: 1px solid #53676b; border-radius: 3px; background: #243337; opacity: .82; }
.customer-map .is-customer-quiet span { display: none; }
.customer-entrance-marker { position: absolute; z-index: 140; display: flex; align-items: center; justify-content: center; gap: 4px; min-width: 96px; min-height: 22px; padding: 3px 6px; transform: translate(-50%, -50%); border: 1px solid #80d2f3; border-radius: 999px; background: #124d69; box-shadow: 0 0 0 2px rgb(93 184 229 / 17%), 0 6px 14px rgb(0 0 0 / 42%); color: #e9f9ff; font-size: clamp(6px, .68vw, 9px); letter-spacing: .05em; pointer-events: none; text-transform: uppercase; white-space: nowrap; }
.customer-entrance-marker span { display: grid; place-items: center; width: 14px; height: 14px; border-radius: 50%; background: #4fa5cf; font-size: 9px; }
.customer-navigation-route { position: absolute; z-index: 75; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.customer-navigation-route polyline { fill: none; stroke: #5db8e5; stroke-width: .5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1.3 1; filter: drop-shadow(0 0 1.2px rgb(93 184 229 / 88%)); }
.map-legend { display: flex; flex-wrap: wrap; gap: 13px; padding: 11px 24px 14px; color: #a9bfcb; font-size: .71rem; font-weight: 760; }
.map-legend span { display: inline-flex; align-items: center; }
.map-legend span::before { display: inline-block; width: 9px; height: 9px; margin-right: 6px; border: 1px solid rgb(255 255 255 / 25%); border-radius: 50%; background: #79909b; content: ""; }
.legend-route::before { background: #5db8e5 !important; }
.legend-assigned::before { background: #ffd15b !important; }
.legend-map-info::before { background: #4fa5cf !important; }
.legend-permitted::before { border-color: #ffe69a !important; background: #b48b23 !important; box-shadow: 0 0 0 2px rgb(255 209 91 / 24%); }
.parking-area-card strong { max-width: 22rem; margin: 8px auto; font-size: clamp(1.35rem, 3vw, 2.25rem); letter-spacing: -.03em; line-height: 1.05; }
.legend-pan::before { background: #667c87 !important; }

.reservation-saved { margin: 22px 24px 0; padding: 18px 20px; border: 1px solid rgb(85 200 135 / 48%); border-radius: 10px; background: #123427; }
.reservation-saved h2 { margin: 4px 0 6px; color: #dfffea; font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
.reservation-saved p:last-child { margin: 0; color: #add6bd; }
.reservation-saved.is-checking { border-color: rgb(239 195 90 / 52%); background: #302817; }
.monthly-selector { grid-column: 1 / -1; overflow: hidden; border: 1px solid #406477; border-radius: 12px; background: #0a1f2d; }
.monthly-selector-head { display: flex; justify-content: space-between; gap: 24px; padding: 20px 22px; }
.monthly-selector-head h3 { margin: 3px 0 7px; color: #fff; font-size: clamp(1.3rem, 2.6vw, 2rem); }
.monthly-selector-head p { margin: 0; color: var(--text-muted); }
.selected-monthly-position { display: grid; min-width: 220px; align-content: start; justify-items: end; }
.selected-monthly-position span, .selected-monthly-position small { color: #b7ccd7; font-size: .75rem; }
.selected-monthly-position strong { color: #ffe180; font-size: 2rem; }
.monthly-map-stage { height: min(72vh, 760px); min-height: 540px; border-top: 1px solid #446878; background: linear-gradient(145deg, #183541, #0f2833); }
.monthly-selection-map { background-color: #294149 !important; }
.monthly-position { appearance: none; padding: 0; font-family: inherit; cursor: default; }
.monthly-position span { visibility: visible !important; color: #e8f4f8; font-size: clamp(6px, .7vw, 10px); }
.monthly-position.state-available { z-index: 270 !important; border: 1.5px solid #7ad6a1; background: #1f6749; color: #fff; cursor: pointer; box-shadow: 0 0 0 1px rgb(122 214 161 / 24%); }
.monthly-position.state-available:hover, .monthly-position.state-available:focus-visible { border-color: #ffe077; background: #326f4f; box-shadow: 0 0 0 3px rgb(255 214 91 / 40%); }
.monthly-position.state-selected, .monthly-position.is-selected-monthly { z-index: 980 !important; border: 2px solid #ffe077; background: #8b6922; box-shadow: 0 0 0 4px rgb(255 214 91 / 38%), 0 0 18px rgb(255 214 91 / 60%); cursor: pointer; }
.monthly-position.state-temporarily-held, .monthly-position.state-reserved, .monthly-position.state-occupied { border-color: #8d739e; background: #53425d; opacity: .82; }
.monthly-position.state-blocked { border: 2px solid #d47d7d; background: repeating-linear-gradient(135deg,#633636 0 4px,#3f2929 4px 8px); }
.monthly-position.state-not-monthly-eligible { border-color: #61757d; background: #34464c; opacity: .68; }
.monthly-position.state-internal-shop-company { border-color: #8a7d69; background: repeating-linear-gradient(45deg,#4a443b 0 4px,#34302b 4px 8px); opacity: .76; }
.map-area-label { position: absolute; z-index: 1100; top: 7%; left: 50%; min-width: min(72%, 420px); transform: translateX(-50%); padding: 7px 12px; border: 1px solid #ffe077; border-radius: 999px; background: rgb(10 29 40 / 90%); color: #ffe89e; font-size: clamp(.72rem, 1.4vw, 1rem); font-weight: 950; letter-spacing: .05em; text-align: center; text-transform: uppercase; pointer-events: none; }
.legend-monthly-available::before { background: #2b825b !important; }
.legend-monthly-selected::before { background: #d7a933 !important; }
.legend-monthly-held::before { background: #6d5678 !important; }
.legend-monthly-blocked::before { background: repeating-linear-gradient(135deg,#b45c5c 0 3px,#5e3939 3px 6px) !important; }

.map-stage { background: linear-gradient(145deg, #183541, #102932); }
.map-canvas { aspect-ratio: var(--map-aspect, 1 / 1); max-width: none; }
.lot-map.customer-map { border-color: #72909a; background-color: #294149; background-image: radial-gradient(rgb(255 255 255 / 6%) 1px, transparent 1px), linear-gradient(135deg, rgb(255 255 255 / 4%), transparent 48%); }
.map-controls button:last-child { min-width: 104px; }
.customer-map .map-space.is-outside-area { border-color: #60757b; background: #33484d; color: transparent; opacity: .58; }
.customer-map .map-space.is-customer-quiet { border-color: #7c7569; background: #4b4740; opacity: .72; }
.customer-map .map-space.is-permitted-area { border-width: 2px; background: rgb(190 145 35 / 70%); box-shadow: 0 0 8px rgb(255 209 91 / 72%); }
.customer-map .customer-lane { background: #60747a; }
.customer-map .customer-building { border-color: #a58f70; background: #5d5549; }
.customer-map .customer-island { border-color: #82969b; background: #53696e; }
.customer-entrance-marker { border: 2px solid #7fd9ff; background: #1a6687; color: #fff; }

dialog { width: calc(100% - 32px); max-width: 650px; max-height: calc(100vh - 32px); padding: 30px; overflow-y: auto; border: 1px solid var(--border-strong); border-radius: var(--radius-lg); background: linear-gradient(145deg, #0d2437, #071927); box-shadow: 0 28px 90px rgb(0 0 0 / 64%); color: var(--text); }
dialog::backdrop { background: rgb(0 7 13 / 76%); backdrop-filter: blur(4px); }
.dialog-close { position: absolute; z-index: 5; top: 10px; right: 13px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: #153148; color: #dce8ef; cursor: pointer; font-size: 1.5rem; }
.lookup-heading { padding-right: 42px; }
.lookup-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end; margin-top: 22px; padding: 20px; border: 1px solid var(--border); border-radius: 12px; background: #0a2032; }
.privacy-note { margin: 10px 20px 0; color: var(--text-muted); font-size: .75rem; }
#lookupResult:not(:empty) { margin-top: 24px; }
#lookupResult .digital-pass { margin: 0; }
.dialog-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; margin-top: 22px; }

footer { display: flex; align-items: center; justify-content: space-between; width: min(100% - 48px, var(--content)); margin: 0 auto; padding: 26px 0 34px; border-top: 1px solid rgb(104 143 170 / 22%); color: var(--text-muted); }
footer strong, footer span { display: block; }
footer strong { color: #eaf2f6; font-size: .78rem; letter-spacing: .09em; }
footer span, footer a { font-size: .76rem; }

.button:focus-visible, .link-button:focus-visible, .text-button:focus-visible, .text-link:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .parking-type-card:focus-visible, .duration-option:focus-visible, .copy-button:focus-visible, summary:focus-visible { outline: 0; box-shadow: var(--focus); }

@media (max-width: 1100px) {
  .search-layout { grid-template-columns: 1fr; }
  .property-panel { min-height: 0; }
  .property-image-wrap { min-height: 390px; aspect-ratio: 16 / 7; }
  .availability-layout { grid-template-columns: 265px minmax(0, 1fr); }
  .review-layout { grid-template-columns: 1fr; }
  .selected-parking-summary { position: static; order: -1; }
  .reservation-facts { grid-template-columns: repeat(2, 1fr); }
  .reservation-facts > div:nth-child(2) { border-right: 0; }
  .reservation-facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .availability-layout { grid-template-columns: 1fr; }
  .search-summary-panel { position: static; }
  .search-overview dl { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
  .availability-card { grid-template-columns: auto minmax(0, 1fr); }
  .card-choice { grid-column: 1 / -1; grid-template-columns: 1fr auto; gap: 5px 14px; align-items: center; justify-items: start; text-align: left; }
  .card-choice .button { grid-column: 2; grid-row: 1 / span 3; }
  .written-directions { grid-template-columns: 1fr; }
  .map-stage { min-height: 560px; }
  .recent-reservation-card { grid-template-columns: 1fr 1fr; }
  .recent-reservation-card .card-actions { grid-column: 1 / -1; grid-template-columns: auto auto; justify-content: start; }
}

@media (max-width: 680px) {
  html { scroll-behavior: auto; }
  .header-inner, main, footer { width: min(100% - 30px, var(--content)); }
  .header-inner { min-height: 68px; }
  .brand { font-size: 1rem; }
  main { padding-top: 24px; }
  .booking-heading { display: grid; gap: 8px; }
  .progress { gap: 5px; }
  .progress li { justify-content: center; padding: 9px 5px; }
  .progress li b { display: none; }
  .search-panel, .offers-panel, .details-panel { padding: 20px 17px; }
  .parking-type-choices, .field-grid, .parking-information { grid-template-columns: 1fr; }
  .parking-type-card { min-height: 0; }
  .full { grid-column: auto; }
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .property-image-wrap { min-height: 260px; aspect-ratio: 4 / 3; }
  .property-copy { padding: 21px 18px 23px; }
  .property-details { grid-template-columns: 1fr; }
  .search-overview dl { grid-template-columns: 1fr; }
  .availability-card { grid-template-columns: 1fr; padding: 18px; }
  .offer-symbol { width: 42px; height: 46px; }
  .card-choice { grid-column: auto; grid-template-columns: 1fr; justify-items: stretch; text-align: left; }
  .card-choice .button { grid-column: auto; grid-row: auto; width: 100%; }
  .page-head { display: grid; }
  .review-layout { grid-template-columns: minmax(0, 1fr); }
  .selected-parking-summary { padding: 19px; }
  .details-panel .primary-action, .details-panel .secondary-button { width: 100%; }
  .pass-status { align-items: flex-start; padding: 11px 15px; }
  .pass-status strong { text-align: right; }
  .confirmation-banner { grid-template-columns: 1fr; padding: 22px 17px; }
  .confirmation-title { align-items: flex-start; }
  .confirmation-mark { width: 46px; height: 46px; }
  .assigned-space-card { min-width: 0; }
  .confirmation-credentials { grid-template-columns: 1fr; margin-right: 15px; margin-left: 15px; }
  .reservation-facts { grid-template-columns: 1fr; margin: 18px 15px; }
  .reservation-facts > div { border-right: 0; border-bottom: 1px solid var(--border); }
  .reservation-facts > div:last-child { border-bottom: 0; }
  .arrival-callout, .pending-assignment, .pass-details, .written-directions, .pass-actions, .recovery-details, .remember-control, .cached-state { margin-right: 15px; margin-left: 15px; }
  .pass-details { grid-template-columns: 1fr; }
  .pass-details dl { grid-template-columns: 1fr; }
  .assigned-navigation-card { width: calc(100% - 30px); }
  .assigned-navigation-card { grid-template-columns: 1fr; }
  .map-stage { height: min(70vh, 620px); min-height: 480px; }
  .monthly-selector-head { display: grid; gap: 14px; padding: 18px 15px; }
  .selected-monthly-position { min-width: 0; justify-items: start; }
  .monthly-map-stage { height: min(68vh, 570px); min-height: 470px; }
  .map-controls { left: auto; right: 8px; margin-right: 0; margin-left: auto; }
  .map-controls button:last-child { min-width: 82px; }
  .map-area-label { top: 10px; min-width: calc(100% - 180px); font-size: .67rem; }
  .customer-map .map-element { font-size: clamp(5px, 1.45vw, 8px); }
  .customer-entrance-marker { min-height: 14px; font-size: 6px; }
  .customer-entrance-marker span { width: 11px; height: 11px; font-size: 7px; }
  .map-legend { padding-right: 15px; padding-left: 15px; }
  dialog { padding: 24px 17px; }
  .lookup-form { grid-template-columns: 1fr; padding: 16px; }
  .lookup-form .button { width: 100%; }
  .view-page-head { display: grid; }
  .recent-reservation-card { grid-template-columns: 1fr; }
  .recent-reservation-card .card-actions { grid-column: auto; grid-template-columns: 1fr; }
  .management-status { align-items: flex-start; }
  footer { align-items: flex-start; gap: 18px; }
  footer nav { display: grid; gap: 5px; text-align: right; }
}

@media (max-width: 430px) {
  .schedule-grid { grid-template-columns: 1fr; }
  .primary-action { width: 100%; min-width: 0; }
  .confirmation-title { display: grid; }
  .map-stage { min-height: 440px; }
}

@media print {
  @page { margin: 12mm; }
  body { background: #fff !important; color: #111 !important; }
  body > * { display: none !important; }
  #printPassPortal { display: block !important; }
  #printPassPortal .digital-pass { display: block !important; width: 100%; border: 1px solid #777; background: #fff !important; color: #111 !important; box-shadow: none; }
  #printPassPortal .digital-pass * { color: #111 !important; text-shadow: none !important; }
  #printPassPortal .pass-status, #printPassPortal .confirmation-banner, #printPassPortal .reservation-facts, #printPassPortal .pass-details section, #printPassPortal .arrival-callout, #printPassPortal .pending-assignment { border-color: #aaa !important; background: #fff !important; }
  #printPassPortal .assigned-space-card { border: 2px solid #8c6413 !important; background: #fff8df !important; }
  #printPassPortal .assigned-space-card strong { color: #6d4a00 !important; }
  .site-header, footer, .pass-actions, .lifecycle-actions, .map-controls, .remember-control, .recovery-details { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Trucker Heaven booking visual system. Existing structure and behavior remain intact. */
:root{
  color-scheme:light;
  --brand-green:#95b85a;
  --brand-green-hover:#7fa443;
  --brand-blue:#2855a5;
  --brand-blue-hover:#1f468d;
  --page:#f6f8f9;
  --page-deep:#edf3f5;
  --surface:rgb(255 255 255/.9);
  --surface-raised:#ffffff;
  --surface-soft:#f3f6f7;
  --border:#d5dfe4;
  --border-strong:#b9c9d1;
  --text:#071820;
  --text-muted:#60717a;
  --gold:#2855a5;
  --gold-hover:#1f468d;
  --gold-soft:#e8eef9;
  --blue:#2855a5;
  --blue-soft:#e9f0fb;
  --success:#5f812f;
  --success-soft:#eef6e7;
  --warning:#b7791f;
  --warning-soft:#fff8e7;
  --danger:#b8322c;
  --danger-soft:#fff1f0;
  --radius-sm:8px;
  --radius:12px;
  --radius-lg:18px;
  --shadow:0 14px 38px rgb(7 24 32/.09),inset 0 1px 0 rgb(255 255 255/.9);
  --focus:0 0 0 3px rgb(40 85 165/.25);
  --content:1480px;
  --input-height:50px;
}
body{background-color:var(--page-deep);background-image:radial-gradient(circle at 8% -4%,rgb(40 85 165/.12),transparent 31rem),radial-gradient(circle at 94% 3%,rgb(149 184 90/.13),transparent 27rem),linear-gradient(180deg,#fbfaf6 0,var(--page) 58%,var(--page-deep) 100%);font-family:Inter,Aptos,"Segoe UI",system-ui,sans-serif;letter-spacing:.002em}
body::before{display:none}
button,a,input,select,textarea,summary{transition:border-color .15s ease,background-color .15s ease,color .15s ease,transform .15s ease}
button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible{outline:3px solid rgb(40 85 165/.38);outline-offset:2px;box-shadow:none}
.site-header{position:sticky;z-index:50;top:0;border-bottom:1px solid rgb(40 85 165/.13);background:rgb(255 255 255/.78);box-shadow:0 8px 28px rgb(7 24 32/.07);backdrop-filter:blur(18px) saturate(130%);-webkit-backdrop-filter:blur(18px) saturate(130%)}
.site-header::after{display:none}
.header-inner{width:min(100% - 40px,var(--content));min-height:70px}
.brand{position:relative;display:grid;width:206px;padding-left:0;font-family:Bahnschrift,"Arial Narrow",sans-serif;font-size:1.12rem;letter-spacing:.09em}
.brand::before{display:none}
.brand-logo{display:block;width:100%;height:auto;filter:none}
.brand small{margin-top:1px;padding-left:52px;color:#55772d;font-size:.49rem;letter-spacing:.32em}
.desktop-nav{gap:8px}
.desktop-nav a{position:relative;min-height:42px;padding:13px 13px 10px;color:#425761;font-size:.75rem;letter-spacing:.035em;text-transform:uppercase}
.desktop-nav a::after{position:absolute;right:13px;bottom:6px;left:13px;height:2px;background:linear-gradient(90deg,var(--brand-blue),var(--brand-green));content:"";transform:scaleX(0);transform-origin:left;transition:transform .15s ease}
.desktop-nav a:hover::after,.desktop-nav [aria-current="page"]::after{transform:scaleX(1)}
.desktop-nav [aria-current="page"]{border:0;color:var(--brand-blue)}
.mobile-nav summary{border:1px solid var(--border);border-radius:9px;background:#fff;color:var(--brand-blue);font-size:.72rem;letter-spacing:.08em;text-transform:uppercase}
.mobile-nav nav{border:1px solid var(--border);border-radius:12px;background:rgb(255 255 255/.96);box-shadow:0 16px 36px rgb(7 24 32/.16)}

main{width:min(100% - 40px,var(--content));padding:28px 0 64px}
.booking-heading{position:relative;align-items:flex-end;margin:0;padding:12px 0 20px 18px;border-left:4px solid var(--brand-green)}
.booking-heading::after{position:absolute;right:0;bottom:0;left:18px;height:1px;background:var(--border);content:""}
.booking-heading h1{font-family:Bahnschrift,"Arial Narrow",sans-serif;font-size:clamp(2rem,3.6vw,3.35rem);font-weight:760;letter-spacing:-.045em}
.eyebrow,.step-label,.card-kicker{font-family:Bahnschrift,"Arial Narrow",sans-serif;font-size:.66rem;letter-spacing:.18em}
.timezone-chip,.context-chip{border:1px solid var(--border);border-radius:999px;background:rgb(255 255 255/.72);color:#435761;font-family:Bahnschrift,"Arial Narrow",sans-serif;font-size:.66rem;letter-spacing:.035em}
.progress{position:relative;gap:0;margin:0 0 20px;padding:0 0 0 18px;border-left:4px solid transparent}
.progress::before{position:absolute;z-index:-1;top:27px;right:7%;left:7%;height:1px;background:var(--border);content:""}
.progress li{position:relative;display:grid;grid-template-columns:28px 1fr;gap:8px;min-height:56px;padding:13px 12px 10px;border:0;border-bottom:2px solid var(--border);border-radius:0;background:transparent;color:#75878f;font-family:Bahnschrift,"Arial Narrow",sans-serif;font-size:.7rem;letter-spacing:.04em;text-transform:uppercase}
.progress li>span{width:27px;height:27px;border:1px solid var(--border);border-radius:50%;background:#fff;color:#6e818a}
.progress li b{align-self:center}
.progress .is-current{border-color:var(--brand-blue);background:linear-gradient(180deg,rgb(40 85 165/.07),transparent);color:var(--brand-blue)}
.progress .is-current>span{border-color:var(--brand-blue);background:var(--brand-blue);color:#fff}
.progress .is-complete{border-color:var(--brand-green);color:#55772d}.progress .is-complete>span{border-color:var(--brand-green);background:var(--brand-green);color:#17300b}

.panel{border:1px solid rgb(255 255 255/.84);border-radius:var(--radius-lg);background:var(--surface);box-shadow:var(--shadow)}
.search-layout{grid-template-columns:minmax(0,.9fr) minmax(440px,1.1fr);gap:12px}
.search-panel{position:relative;padding:clamp(24px,3vw,42px);border-top:4px solid var(--brand-blue);backdrop-filter:blur(16px) saturate(120%);-webkit-backdrop-filter:blur(16px) saturate(120%)}
.screen-heading h2,.page-head h2,.offers-heading h2,.lookup-heading h2{font-family:Bahnschrift,"Arial Narrow",sans-serif;font-weight:760;letter-spacing:-.035em}
.location-inline{margin:22px 0;padding:12px 0;border-width:1px 0;border-radius:0;background:transparent}
.location-mark{width:32px;height:32px;border:1px solid #b6c9e7;border-radius:9px;background:#edf3fb;color:var(--brand-blue)}
.location-inline span:not(.location-mark){font-family:Bahnschrift,"Arial Narrow",sans-serif;font-size:.61rem;letter-spacing:.14em}
.plain-fieldset legend,.duration-choices legend,label{font-family:Bahnschrift,"Arial Narrow",sans-serif;letter-spacing:.025em}
.parking-type-choices{gap:8px}
.parking-type-card{grid-template-columns:42px minmax(0,1fr);min-height:132px;padding:14px;border-color:var(--border);border-radius:12px;background:#fff;box-shadow:0 5px 16px rgb(7 24 32/.04)}
.parking-type-card:hover{border-color:#9eb5da;transform:translateY(-1px)}
.parking-type-card.is-selected,.parking-type-card.is-bobtail.is-selected{border-color:#9eb5da;background:#f1f5fb;box-shadow:inset 4px 0 var(--brand-blue)}
.parking-type-marker{width:40px;height:40px;border-radius:10px;background:#eaf0fa;color:var(--brand-blue);font-family:Bahnschrift,"Arial Narrow",sans-serif;font-size:1rem}
.parking-type-copy>strong{font-family:Bahnschrift,"Arial Narrow",sans-serif;font-size:1rem;letter-spacing:.02em}
.parking-type-rate{padding-top:10px;border-top:1px solid var(--border);font-family:Bahnschrift,"Arial Narrow",sans-serif}
.duration-badges span{border-radius:2px;font-family:Bahnschrift,"Arial Narrow",sans-serif;letter-spacing:.06em}
.compact-head{margin:24px 0 12px;padding-bottom:8px;border-bottom:1px solid var(--border)}
.compact-head h2,.compact-head h3{font-family:Bahnschrift,"Arial Narrow",sans-serif;letter-spacing:.01em}
input,select,textarea{border-color:#bfcdd4;border-radius:9px;background:#fff;color:#071820;font-family:Inter,Aptos,"Segoe UI",system-ui,sans-serif;box-shadow:inset 0 1px 2px rgb(7 24 32/.03)}
input:hover,select:hover,textarea:hover{border-color:#8fa9d4}
.duration-options{gap:6px}
.duration-option{border-radius:10px;background:#fff}
.duration-option.is-selected{border-color:#9eb5da;background:#edf3fb;box-shadow:inset 3px 0 var(--brand-blue)}
.button{border-color:var(--brand-blue);border-radius:9px;background:var(--brand-blue);color:#fff;font-family:Bahnschrift,"Arial Narrow",sans-serif;font-size:.78rem;letter-spacing:.035em;text-transform:uppercase;box-shadow:0 5px 14px rgb(40 85 165/.16)}
.button:hover{border-color:var(--brand-blue-hover);background:var(--brand-blue-hover);transform:translateY(-1px)}
.secondary-button{border-color:#c4d0d7;background:#fff;color:var(--brand-blue);box-shadow:none}
.secondary-button:hover{border-color:#9eb5da;background:#f1f5fb}
.text-button,.text-link{color:var(--brand-blue);font-family:Bahnschrift,"Arial Narrow",sans-serif;font-size:.73rem;letter-spacing:.03em}
.check input{accent-color:var(--brand-green)}
.message.error,.loading-state,.empty-state{border-radius:2px}

.property-panel{border-color:rgb(255 255 255/.84);background:#fff}
.property-image-wrap{min-height:430px;border-bottom:1px solid var(--border)}
.property-image-wrap::after{height:48%;background:linear-gradient(transparent,rgb(3 14 19/.86))}
.image-badge{right:14px;bottom:14px;border:1px solid rgb(255 255 255/.55);border-radius:9px;background:rgb(7 24 32/.78);font-family:Bahnschrift,"Arial Narrow",sans-serif;font-size:.61rem;letter-spacing:.08em;text-transform:uppercase;backdrop-filter:blur(8px)}
.property-copy{position:relative;padding:24px 26px 26px}
.property-copy::before{position:absolute;top:0;left:26px;width:82px;height:3px;background:linear-gradient(90deg,var(--brand-blue) 0 62%,var(--brand-green) 62%);content:""}
.property-copy h2{font-family:Bahnschrift,"Arial Narrow",sans-serif}
.property-details{gap:0;margin:12px 0 18px;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.property-details div{padding:11px 0;border:0;border-right:1px solid var(--border);border-radius:0;background:transparent}
.property-details div+div{padding-left:14px}.property-details div:last-child{border-right:0}
.assignment-note,.automatic-assignment{border:1px solid #d8e5c9;border-radius:11px;background:#f1f7ea}
.assignment-note>span,.automatic-assignment>span{border-radius:8px;background:var(--brand-green);color:#17300b}

.availability-layout{grid-template-columns:292px minmax(0,1fr);gap:12px}
.search-summary-panel{top:90px;padding:20px;border-top:4px solid var(--brand-green)}
.search-overview dl>div{padding:11px 0}
.offers-panel{padding:clamp(22px,3vw,38px);border-top:4px solid var(--brand-blue);backdrop-filter:blur(16px) saturate(120%);-webkit-backdrop-filter:blur(16px) saturate(120%)}
.availability-cards{gap:8px}
.availability-card{grid-template-columns:48px minmax(0,1fr) minmax(190px,auto);gap:15px;padding:18px;border-color:var(--border);border-radius:12px;background:#fff}
.availability-card.is-selected{border-color:#9eb5da;background:#f5f8fd;box-shadow:inset 4px 0 var(--brand-blue)}
.offer-symbol{width:44px;height:52px;border-radius:10px;background:#eaf0fa;color:var(--brand-blue);font-family:Bahnschrift,"Arial Narrow",sans-serif}
.offer-copy h3,.price{font-family:Bahnschrift,"Arial Narrow",sans-serif}
.quote-summary>section{border-radius:11px;background:#f1f7ea}
.parking-information{gap:8px}.information-card{border-radius:11px;background:#f5f8f9}
.review-layout{gap:12px}
.details-panel{padding:clamp(22px,3vw,38px);border-top:4px solid var(--brand-blue);backdrop-filter:blur(16px) saturate(120%);-webkit-backdrop-filter:blur(16px) saturate(120%)}
.details-panel fieldset{border-radius:12px;background:#f6f8f9}
.selected-parking-summary{top:90px;border-top:4px solid var(--brand-green)}
.secure-payment-note,.privacy-note,.verification-fieldset{border-radius:2px}

/* Explicit light-surface text colors replace inherited dark-theme contrast rules. */
.screen-heading h2,.page-head h2,.offers-heading h2,.lookup-heading h2,.property-copy h2,.summary-heading h2,.portal-section-heading h2{color:var(--text)}
.plain-fieldset legend,.duration-choices legend,label,.details-panel legend{color:#344a55}
.parking-type-copy>strong,.offer-copy h3,.information-card h4,.quote-summary h4{color:var(--text)}
.parking-type-rate{color:var(--brand-blue)}
.duration-badges span{border-color:#c7d4e7;color:#52709f}
.property-details dd,.search-overview dd,.review-facts dd{color:var(--text)}
.assignment-note strong,.automatic-assignment strong{color:#36551b}.assignment-note p,.automatic-assignment p{color:#526744}
.availability-card,.quote-summary>section,.information-card{color:var(--text)}
.quote-summary>section{border-color:#d8e5c9}.quote-summary dt{color:var(--text-muted)}.quote-summary dd{color:var(--text)}
.quote-lines dd,.quote-lines .quote-total dd{color:var(--text)}
.quote-lines .quote-total dt,.quote-lines .quote-total dd{border-top-color:var(--border);color:var(--brand-blue)}
.terms,.billing-summary{background:#f6f8f8;color:var(--text)}
.terms .check,.terms .check span{color:#344a55}
.terms input{accent-color:var(--brand-blue)}
.secure-payment-note{border-color:#d8e5c9;background:#f1f7ea}.secure-payment-note strong{color:#36551b}.secure-payment-note p{color:#526744}
.summary-assignment-note p{color:#46617a}
footer strong{color:var(--brand-blue)}footer a{color:var(--brand-blue)}

.confirmation-view,.digital-pass,.management-card,.recent-reservation-card,.dedicated-map,.lookup-page{border-radius:var(--radius-lg);box-shadow:var(--shadow)}
.confirmation-banner{border-radius:0}.confirmation-mark{border-radius:2px}
.assigned-space-card,.arrival-callout,.pending-assignment,.pass-details section,.written-directions,.recovery-details,.remember-control,.cached-state,.information-card{border-radius:11px}
.map-stage{border-radius:12px;background-color:#e9eef0;background-image:linear-gradient(rgb(40 85 165/.045) 1px,transparent 1px),linear-gradient(90deg,rgb(40 85 165/.045) 1px,transparent 1px);background-size:24px 24px}
.map-controls{border-radius:2px}.map-controls button{border-radius:1px}.map-legend span{border-radius:2px}
.lookup-form{border-radius:12px;background:#f4f7f8}
dialog{border:1px solid rgb(255 255 255/.84);border-radius:16px;background:rgb(255 255 255/.94);box-shadow:0 22px 70px rgb(7 24 32/.25);backdrop-filter:blur(18px)}
footer{border-top-color:var(--border);background:#fff;color:var(--text);font-family:Bahnschrift,"Arial Narrow",sans-serif}

@media(max-width:1024px){
  .search-layout{grid-template-columns:minmax(0,1fr) minmax(360px,.92fr)}
  .property-image-wrap{min-height:360px}
  .availability-layout{grid-template-columns:250px minmax(0,1fr)}
  .availability-card{grid-template-columns:44px minmax(0,1fr);}.card-choice{grid-column:2;grid-template-columns:1fr auto;justify-items:start;text-align:left}.card-choice .button{grid-column:2;grid-row:1/4}
}
@media(max-width:768px){
  .header-inner,main{width:min(100% - 26px,var(--content))}
  .desktop-nav{display:none}.mobile-nav{display:block}
  .booking-heading{padding-left:14px}.progress{padding-left:14px}
  .search-layout,.availability-layout,.review-layout{grid-template-columns:1fr}
  .property-panel{display:grid;grid-template-columns:minmax(220px,.85fr) minmax(0,1.15fr)}
  .property-image-wrap{min-height:100%;aspect-ratio:auto}.property-copy{padding:22px}
  .search-summary-panel,.selected-parking-summary{position:relative;top:auto}
  .search-overview dl{grid-template-columns:repeat(2,minmax(0,1fr))}
  .offers-panel,.details-panel{padding:24px 20px}
}
@media(max-width:560px){
  .header-inner{width:min(100% - 24px,var(--content));min-height:64px}.brand{width:158px;font-size:.98rem}.brand small{padding-left:40px}
  main{width:min(100% - 20px,var(--content));padding-top:18px}
  .booking-heading{display:grid;gap:12px;padding:8px 0 15px 12px}.booking-heading h1{font-size:2.2rem}.timezone-chip{margin:0}
  .progress{padding-left:12px}.progress::before{display:none}.progress li{display:flex;min-height:47px;justify-content:center;padding:9px 4px}.progress li b{display:none}.progress li.is-current{grid-column:auto}.progress li.is-current b{display:none}.progress li>span{width:25px;height:25px}
  .search-panel,.offers-panel,.details-panel{padding:20px 16px}.screen-heading h2,.page-head h2,.offers-heading h2,.lookup-heading h2{font-size:1.8rem}
  .parking-type-choices,.field-grid,.parking-information{grid-template-columns:1fr}.parking-type-card{min-height:0}
  .schedule-grid{grid-template-columns:1fr 1fr}.property-panel{display:flex}.property-image-wrap{min-height:250px;aspect-ratio:4/3}.property-details{grid-template-columns:1fr}.property-details div{border-right:0;border-bottom:1px solid var(--border)}.property-details div+div{padding-left:0}.property-details div:last-child{border-bottom:0}
  .search-overview dl{grid-template-columns:1fr}.availability-card{grid-template-columns:1fr;padding:16px}.offer-symbol{width:40px;height:44px}.card-choice{grid-column:auto;grid-template-columns:1fr}.card-choice .button{grid-column:auto;grid-row:auto;width:100%}
  .primary-action{width:100%;min-width:0}.details-panel .form-actions .button{width:100%}
  .map-stage{min-height:440px}.map-area-label{min-width:calc(100% - 170px)}
  footer{padding-inline:10px}
}
@media(max-width:390px){.schedule-grid{grid-template-columns:1fr}.booking-heading h1{font-size:1.95rem}.progress li{padding-inline:2px}.property-copy{padding:20px 16px}.returning-customer-actions .button{width:100%}}
/* Passwordless My Parking portal */
.my-parking-view{width:min(1180px,calc(100% - 32px));margin:0 auto;padding:42px 0 72px}.my-parking-auth{min-height:58vh;display:grid;place-items:center}.portal-login-card{width:min(560px,100%);padding:clamp(24px,5vw,48px);backdrop-filter:blur(16px) saturate(120%)}.portal-login-card h1{margin:.35rem 0 .75rem;font-size:clamp(2rem,6vw,3.4rem)}.portal-auth-form{display:grid;gap:16px;margin:28px 0 18px}.portal-auth-form label{display:grid;gap:8px;font-weight:700}.portal-auth-form input{min-height:52px}.portal-recovery{margin-top:24px;padding-top:20px;border-top:1px solid var(--border,#d7dedf)}.portal-recovery summary{cursor:pointer;font-weight:800}.portal-loading,.portal-empty{padding:48px 24px;text-align:center;color:var(--text-muted,#53646b)}
h1[tabindex="-1"]:focus,h2[tabindex="-1"]:focus,h3[tabindex="-1"]:focus{outline:none}
.my-parking-shell{display:grid;gap:22px}.portal-head{align-items:flex-start}.portal-head-actions{display:flex;gap:18px;align-items:center;flex-wrap:wrap}.portal-tabs{display:flex;gap:6px;overflow-x:auto;padding:5px;border:1px solid var(--border);background:rgb(255 255 255/.84);border-radius:12px;box-shadow:0 7px 22px rgb(7 24 32/.05);scrollbar-width:thin}.portal-tabs button{flex:0 0 auto;border:0;background:transparent;border-radius:8px;padding:11px 15px;color:var(--text-muted);font-weight:800;cursor:pointer}.portal-tabs button[aria-current=page]{background:var(--brand-blue);color:#fff}.portal-section{display:grid;gap:22px}.portal-section-heading h2{margin:.3rem 0 0;font-size:clamp(1.55rem,4vw,2.35rem)}.current-parking-list,.portal-list{display:grid;gap:15px}.current-parking-list.compact .portal-parking-card{padding:20px}.portal-parking-card{border:1px solid var(--border);border-left:5px solid var(--brand-green);background:var(--surface-raised);border-radius:14px;padding:clamp(20px,4vw,30px);box-shadow:0 8px 24px rgb(7 24 32/.07)}.portal-parking-card.is-monthly{border-left-color:var(--brand-blue)}.portal-card-heading{display:flex;justify-content:space-between;gap:20px;align-items:flex-start}.portal-card-heading h3{font-size:clamp(1.5rem,4vw,2.2rem);margin:.25rem 0}.portal-status{border-radius:999px;padding:7px 11px;background:var(--success-soft);color:var(--success);font-size:.76rem;font-weight:900;text-transform:uppercase;letter-spacing:.06em}.portal-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin:24px 0 0}.portal-facts div{display:grid;gap:4px}.portal-facts dt,.portal-contact-list dt{font-size:.72rem;text-transform:uppercase;letter-spacing:.08em;color:var(--text-muted);font-weight:900}.portal-facts dd,.portal-contact-list dd{margin:0;font-weight:800;color:var(--text)}.portal-list-row{display:flex;justify-content:space-between;gap:20px;align-items:center;border:1px solid var(--border);background:var(--surface-raised);border-radius:10px;padding:18px 20px}.portal-list-row>div{display:grid;gap:4px}.portal-list-row>div:last-child{text-align:right}.portal-list-row span{color:var(--text-muted);font-size:.88rem}.portal-inline-form{display:grid;gap:18px;padding:24px}.portal-form-title,.portal-form-actions{display:flex;justify-content:space-between;gap:16px;align-items:center}.portal-inline-form select{min-height:48px}.danger-text{color:var(--danger)}.portal-contact-list{display:grid;gap:12px;margin:0}.portal-contact-list div{display:flex;justify-content:space-between;gap:16px;border-bottom:1px solid var(--border);padding:12px 0}.portal-contact-list dd span{margin-left:10px;color:var(--success);font-size:.78rem}.portal-document-upload,.portal-blocker{display:flex;justify-content:space-between;gap:18px;align-items:end;border:1px solid var(--border);border-radius:12px;padding:18px;background:var(--surface-raised)}.portal-document-upload label{display:grid;gap:8px;font-weight:800}.portal-blocker{display:block;border-left:5px solid var(--warning);background:var(--warning-soft)}.portal-blocker p{margin-bottom:0}.portal-empty{border:1px dashed var(--border-strong);border-radius:12px;background:rgb(255 255 255/.82)}.portal-empty h3{color:var(--text);margin-top:0}
.document-source-buttons{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}.document-source-buttons label{position:relative;cursor:pointer}.document-source-buttons input{position:absolute!important;width:1px!important;height:1px!important;opacity:0;pointer-events:none}.selected-file{margin:12px 0 0;color:var(--text-muted);font-weight:700}.upload-documents-shell{display:grid;gap:22px}.document-type-choices{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.document-type-choice{min-height:110px;border:2px solid var(--border);background:#fff;border-radius:14px;color:var(--text);font-size:1.2rem;font-weight:900;cursor:pointer;box-shadow:0 7px 22px rgb(7 24 32/.05)}.document-type-choice[aria-pressed=true]{border-color:#9eb5da;background:#f1f5fb;box-shadow:0 0 0 3px var(--gold-soft);color:var(--brand-blue)}.document-upload-card{display:grid;gap:18px;padding:clamp(22px,5vw,36px);backdrop-filter:blur(16px) saturate(120%)}.document-upload-card select{min-height:52px}.upload-progress{display:grid;gap:8px}.upload-progress progress{width:100%;height:14px;accent-color:var(--brand-blue)}.document-success{padding:clamp(28px,6vw,52px);text-align:center;border-left:6px solid var(--brand-green)}.document-success h2{font-size:clamp(2rem,6vw,3rem);margin:.4rem 0}.document-success .lifecycle-actions{justify-content:center}.safe-document-status{display:inline-flex;border-radius:999px;padding:6px 10px;background:var(--success-soft);color:var(--success);font-weight:900;font-size:.78rem;text-transform:uppercase}.safe-document-status.replacement{background:var(--warning-soft);color:var(--warning)}
@media(max-width:700px){.my-parking-view{width:min(100% - 22px,1180px);padding:24px 0 48px}.portal-head{display:grid;gap:14px}.portal-tabs{margin-inline:-2px}.portal-tabs button{padding:10px 12px}.portal-card-heading,.portal-list-row,.portal-document-upload,.portal-form-title,.portal-form-actions{align-items:flex-start;flex-direction:column}.portal-status{align-self:flex-start}.portal-facts{grid-template-columns:1fr 1fr}.portal-list-row>div:last-child{text-align:left}.portal-inline-form{padding:18px}.portal-contact-list div{display:grid}.portal-auth-form .button,.portal-document-upload .button{width:100%}.document-type-choices{grid-template-columns:1fr}.document-source-buttons{display:grid}.document-source-buttons .button{width:100%;text-align:center}.document-success .lifecycle-actions{display:grid}}
@media(max-width:420px){.portal-facts{grid-template-columns:1fr}.portal-login-card{padding:22px 18px}.portal-tabs{border-radius:9px}.portal-tabs button{font-size:.83rem}}
@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))){.site-header,.panel,.portal-login-card,.document-upload-card{background:#fff}}
