:root {
  font-family: Arial, Helvetica, sans-serif;
  color: #252525;
  background: #f4f4f1;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: #f4f4f1;
  color: #2b2b2b;
}

button, input { font: inherit; }
button { cursor: pointer; }
a { color: #1a4f8b; }

.topbar {
  background: #fff;
  border-bottom: 1px solid #d3d3ce;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.topbar-inner {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.parking-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #303030;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  background: #315d83;
  color: white;
  border-radius: 2px;
  font-family: Georgia, serif;
}

.utility-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
}

.utility-nav a,
.link-button,
.quiet-button {
  color: #315d83;
  background: none;
  border: 0;
  padding: 0;
  text-decoration: underline;
}

main {
  width: min(1040px, calc(100% - 32px));
  margin: 34px auto 0;
}

.domain-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 365px;
  gap: 34px;
  align-items: start;
}

.domain-copy { padding: 24px 0 16px; }

.eyebrow {
  color: #6c6c67;
  font-size: 13px;
  margin: 0 0 10px;
}

h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: -1.8px;
  color: #202020;
  overflow-wrap: anywhere;
}

.subcopy {
  max-width: 590px;
  margin: 14px 0 18px;
  color: #5d5d58;
  font-size: 16px;
  line-height: 1.55;
}

.interest-strip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #d8d4c8;
  background: #fffdf4;
  padding: 7px 10px;
  color: #5a5547;
  font-size: 12px;
}

.dot {
  width: 7px;
  height: 7px;
  background: #b25c33;
  border-radius: 50%;
}

.purchase-card {
  position: relative;
  background: white;
  border: 1px solid #c8c8c2;
  padding: 22px;
  box-shadow: 0 2px 7px rgba(0,0,0,.08);
}

.purchase-card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #686863;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.info-button {
  border: 1px solid #aaa;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  padding: 0;
  background: #fafafa;
  color: #555;
  line-height: 18px;
}

.price {
  margin-top: 10px;
  color: #1d1d1d;
  font-size: 39px;
  font-weight: 700;
  letter-spacing: -.8px;
}

.payment-plan {
  margin: 3px 0 18px;
  color: #757570;
  font-size: 12px;
}

.buy-zone {
  min-height: 53px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.buy-button {
  --chase-x: 0px;
  --chase-y: 0px;
  width: 100%;
  min-height: 48px;
  border: 1px solid #1f4f72;
  border-radius: 2px;
  background: #316f9d;
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  transform: translate(var(--chase-x), var(--chase-y));
  transition: transform 90ms linear, background 120ms ease;
  box-shadow: inset 0 1px rgba(255,255,255,.25);
}

.buy-button:hover { background: #265f88; }

.offer-button {
  width: 100%;
  min-height: 42px;
  margin-top: 9px;
  border: 1px solid #aaa;
  border-radius: 2px;
  background: #f7f7f5;
  color: #333;
  font-weight: 700;
}

.quiet-button {
  display: block;
  margin: 13px auto 0;
  font-size: 12px;
}

.reservation-copy {
  margin-top: 19px;
  padding-top: 14px;
  border-top: 1px solid #e3e3df;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #666;
  font-size: 11px;
}

.microcopy,
.smallprint,
.legal {
  color: #80807b;
  font-size: 10px;
  line-height: 1.45;
}

.related { margin-top: 54px; }
.related h2,
.plain-panel h2,
.faq h2 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
}

.sponsored-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #d0d0ca;
  background: white;
}

.sponsored-list a {
  min-height: 112px;
  padding: 14px 16px;
  border-right: 1px solid #e2e2dd;
  border-bottom: 1px solid #e2e2dd;
  text-decoration: none;
}

.sponsored-list a:nth-child(3n) { border-right: 0; }
.sponsored-list a:nth-last-child(-n+2) { border-bottom: 0; }
.sponsored-list strong,
.sponsored-list span,
.sponsored-list small { display: block; }
.sponsored-list strong { font-size: 14px; text-decoration: underline; }
.sponsored-list span { margin-top: 6px; color: #555; font-size: 12px; line-height: 1.35; }
.sponsored-list small { margin-top: 10px; color: #999; font-size: 9px; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 26px;
}

.plain-panel,
.faq {
  background: white;
  border: 1px solid #d0d0ca;
  padding: 22px;
}

.check-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.9;
  font-size: 13px;
}

.sales-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.sales-table td { padding: 9px 4px; border-bottom: 1px solid #e5e5e1; }
.sales-table td:last-child { text-align: right; font-weight: 700; }
.highlight-row td { color: #315d83; }

.faq { margin-top: 22px; }
details { border-top: 1px solid #e3e3de; padding: 12px 0; }
details:first-of-type { border-top: 0; }
summary { cursor: pointer; font-size: 13px; font-weight: 700; }
details p { color: #666; font-size: 12px; line-height: 1.5; }

footer {
  width: min(1040px, calc(100% - 32px));
  margin: 48px auto 130px;
  padding: 22px 0;
  border-top: 1px solid #cfcfca;
  color: #777;
  font-size: 11px;
}

footer > div { display: flex; gap: 8px; align-items: baseline; }
footer p { margin: 7px 0; }

.cookie-banner {
  position: fixed;
  z-index: 20;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 18px max(22px, calc((100vw - 1000px) / 2));
  background: #fff;
  border-top: 1px solid #bcbcb6;
  box-shadow: 0 -2px 8px rgba(0,0,0,.10);
}

.cookie-copy { max-width: 630px; }
.cookie-copy strong { font-size: 13px; }
.cookie-copy p { margin: 6px 0 0; color: #555; font-size: 11px; line-height: 1.45; }
.cookie-actions { position: relative; min-width: 305px; min-height: 46px; display: flex; align-items: center; justify-content: flex-end; gap: 10px; }

.reject-button {
  --dodge-x: 0px;
  --dodge-y: 0px;
  border: 0;
  background: transparent;
  color: #555;
  font-size: 11px;
  text-decoration: underline;
  transform: translate(var(--dodge-x), var(--dodge-y));
  transition: transform 85ms ease-out;
  white-space: nowrap;
}

.accept-button {
  min-width: 142px;
  min-height: 43px;
  border: 1px solid #204d6d;
  border-radius: 2px;
  background: #315f80;
  color: white;
  font-weight: 700;
}

.purchase-dialog {
  width: min(440px, calc(100% - 30px));
  border: 1px solid #999;
  border-radius: 2px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,.24);
}

.purchase-dialog::backdrop { background: rgba(0,0,0,.33); }
.dialog-inner { position: relative; padding: 28px; }
.dialog-x { position: absolute; top: 8px; right: 10px; border: 0; background: transparent; font-size: 24px; color: #777; }
.dialog-kicker { margin: 0 0 8px; color: #777; font-size: 11px; text-transform: uppercase; }
.purchase-dialog h2 { margin: 0 0 9px; font-size: 23px; font-family: Georgia, serif; font-weight: 400; }
.purchase-dialog p { color: #555; line-height: 1.5; font-size: 13px; }
.dialog-price { margin: 18px 0; font-size: 32px; font-weight: 700; }
.dialog-primary,
.dialog-secondary { width: 100%; min-height: 43px; border-radius: 2px; }
.dialog-primary { border: 1px solid #1e5275; background: #316f9d; color: white; font-weight: 700; }
.dialog-secondary { margin-top: 8px; border: 0; background: transparent; color: #666; text-decoration: underline; }
.contact-form { margin-top: 18px; }
.contact-form label { display: block; margin: 12px 0 5px; color: #444; font-size: 12px; font-weight: 700; }
.contact-form label span { color: #888; font-weight: 400; }
.contact-form input,
.contact-form textarea { width: 100%; border: 1px solid #aaa; border-radius: 1px; background: #fff; color: #222; padding: 9px 10px; font: inherit; font-size: 13px; }
.contact-form textarea { resize: vertical; min-height: 88px; }
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid #a9c1d3; outline-offset: 1px; border-color: #567b96; }
.offer-field { display: flex; align-items: center; border: 1px solid #aaa; background: #fff; }
.offer-field span { padding-left: 10px; color: #666; font-size: 13px; }
.offer-field input { border: 0; outline: 0; }
.contact-form .dialog-primary { margin-top: 16px; }
.contact-status { min-height: 20px; margin: 10px 0 0; color: #8b2d25 !important; font-size: 12px !important; font-weight: 700; }

.expert-chat {
  position: fixed;
  z-index: 15;
  right: 18px;
  bottom: 128px;
  width: min(310px, calc(100% - 36px));
  background: white;
  border: 1px solid #aaa;
  box-shadow: 0 5px 18px rgba(0,0,0,.15);
}

.chat-head { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: #315f80; color: white; font-size: 12px; }
.chat-head button { border: 0; background: transparent; color: white; font-size: 18px; }
.online-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #a9dc8b; margin-right: 5px; }
.chat-body { padding: 12px; font-size: 12px; }
.agent-message { max-width: 230px; margin: 0 0 10px; padding: 9px 10px; background: #efefec; line-height: 1.45; }
.chat-choice { border: 1px solid #8da7b9; background: white; color: #315f80; padding: 8px 9px; border-radius: 2px; }

.toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 128px;
  transform: translateX(-50%);
  max-width: min(520px, calc(100% - 30px));
  background: #2f2f2f;
  color: white;
  padding: 10px 14px;
  font-size: 12px;
  box-shadow: 0 3px 14px rgba(0,0,0,.25);
}

@media (max-width: 780px) {
  .utility-nav a { display: none; }
  main { margin-top: 18px; }
  .domain-hero { grid-template-columns: 1fr; gap: 16px; }
  .domain-copy { padding-top: 8px; }
  .purchase-card { width: 100%; }
  .sponsored-list { grid-template-columns: 1fr; }
  .sponsored-list a,
  .sponsored-list a:nth-child(3n),
  .sponsored-list a:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid #e2e2dd; }
  .sponsored-list a:last-child { border-bottom: 0; }
  .content-grid { grid-template-columns: 1fr; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 10px; padding: 14px 16px; }
  .cookie-actions { min-width: 0; width: 100%; justify-content: space-between; }
  .accept-button { min-width: 145px; }
  footer { margin-bottom: 180px; }
  .expert-chat, .toast { bottom: 180px; }
}

@media (hover: none), (pointer: coarse) {
  .buy-button { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .buy-button,
  .reject-button { transform: none !important; }
}
