.booking-page {
  color: var(--text-strong);
  background: #f8faf8;
}

.booking-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(126px, 13vw, 160px) 0 clamp(58px, 7vw, 82px);
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(150, 193, 103, .22), transparent 31%),
    radial-gradient(circle at 87% 78%, rgba(22, 147, 168, .18), transparent 34%),
    linear-gradient(145deg, #f4faf7 0%, #eef8f8 52%, #f9f7f0 100%);
  border-bottom: 1px solid rgba(11, 100, 116, .08);
}

.booking-hero::before,
.booking-hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(11, 100, 116, .08);
  border-radius: 50%;
  pointer-events: none;
}

.booking-hero::before {
  width: 420px;
  height: 420px;
  top: -280px;
  right: -100px;
}

.booking-hero::after {
  width: 290px;
  height: 290px;
  bottom: -230px;
  left: -70px;
}

.booking-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 920px;
}

.booking-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  color: var(--teal-800);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(11, 100, 116, .14);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-eyebrow::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--leaf-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(150, 193, 103, .16);
}

.booking-hero h1 {
  max-width: 17ch;
  color: var(--teal-950);
  font-size: clamp(2.55rem, 6vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.booking-hero p {
  max-width: 670px;
  color: var(--text-body);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.booking-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin-top: 5px;
  color: var(--text-body);
  font-size: .86rem;
  font-weight: 750;
}

.booking-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.booking-trust b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--teal-100);
  border-radius: 50%;
  font-size: .65rem;
}

.booking-section {
  padding: clamp(40px, 6vw, 72px) 0 var(--section-y);
}

.booking-layout {
  display: grid;
  gap: 24px;
  max-width: 980px;
}

.booking-reassurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.booking-reassurance > span {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 2px 26px 2px 48px;
}

.booking-reassurance > span + span {
  border-left: 1px solid var(--border-subtle);
}

.booking-reassurance > span::before {
  position: absolute;
  left: 12px;
  top: 6px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--brand);
  background: var(--teal-50);
  border-radius: 50%;
  content: "✓";
  font-size: .78rem;
  font-weight: 900;
}

.booking-reassurance b {
  color: var(--teal-900);
  font-size: .84rem;
}

.booking-reassurance small {
  color: var(--text-muted);
  font-size: .75rem;
}

.booking-form {
  overflow: hidden;
  padding: 0 clamp(22px, 5vw, 58px) clamp(30px, 5vw, 58px);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: clamp(24px, 4vw, 36px);
  box-shadow: 0 24px 70px rgba(5, 54, 64, .09);
  scroll-margin-top: 104px;
}

.booking-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 calc(clamp(22px, 5vw, 58px) * -1) 42px;
  padding: 24px clamp(22px, 5vw, 58px) 22px;
  background: #fbfcfb;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-progress::before {
  position: absolute;
  top: 40px;
  right: calc(12.5% + clamp(22px, 5vw, 58px) / 2);
  left: calc(12.5% + clamp(22px, 5vw, 58px) / 2);
  height: 2px;
  content: "";
  background: var(--border-subtle);
}

.booking-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-weight: 800;
}

.booking-progress b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--text-muted);
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
  font-size: .78rem;
  transition: .2s ease;
}

.booking-progress small {
  font-size: .74rem;
}

.booking-progress span.is-active {
  color: var(--teal-900);
}

.booking-progress span.is-active b {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 0 5px rgba(11, 100, 116, .1);
}

.booking-step {
  animation: bookingReveal .28s ease both;
}

@keyframes bookingReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-step-head {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.booking-step-head h2 {
  color: var(--teal-950);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.booking-step-head p {
  max-width: 620px;
  color: var(--text-muted);
  line-height: 1.65;
}

.booking-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.booking-path {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 3px 13px;
  min-height: 116px;
  align-content: center;
  padding: 18px 20px;
  color: var(--text-strong);
  background: #fff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.booking-path:hover {
  border-color: var(--teal-200);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.booking-path.is-selected {
  background: linear-gradient(135deg, var(--teal-50), #fff);
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1px var(--brand);
}

.booking-path input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-path i {
  grid-row: 1 / 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--brand);
  background: var(--teal-50);
  border-radius: 13px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: normal;
}

.booking-path strong {
  color: var(--teal-950);
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.booking-path span {
  color: var(--text-muted);
  font-size: .83rem;
  line-height: 1.4;
}

.booking-path em {
  margin-top: 4px;
  color: var(--brand);
  font-size: .72rem;
  font-style: normal;
  font-weight: 850;
}

.booking-question-panel {
  overflow: hidden;
  background: #fbfcfb;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
}

.booking-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 18px 22px;
  background: #f5f9f7;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-panel-head span {
  color: var(--teal-900);
  font-family: var(--font-display);
  font-weight: 850;
}

.booking-panel-head small {
  color: var(--text-muted);
  font-size: .72rem;
}

.booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 18px;
  padding: 24px 22px;
}

.booking-fields label,
.booking-step > label {
  display: grid;
  gap: 9px;
  color: var(--text-strong);
  font-size: .86rem;
  font-weight: 800;
}

.booking-service-guide {
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 650;
  line-height: 1.45;
}

.booking-service-guide a {
  color: var(--brand);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-fields input,
.booking-fields select,
.booking-step select,
.booking-step textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  color: var(--text-strong);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 13px;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.booking-fields input:hover,
.booking-fields select:hover,
.booking-step select:hover,
.booking-step textarea:hover {
  border-color: var(--teal-200);
}

.booking-fields input:focus,
.booking-fields select:focus,
.booking-step select:focus,
.booking-step textarea:focus {
  border-color: var(--brand);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(11, 100, 116, .11);
}

.booking-step textarea {
  resize: vertical;
}

.booking-field-wide {
  grid-column: 1 / -1;
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

fieldset.booking-field-wide {
  padding: 20px;
  background: #fbfcfb;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

fieldset.booking-field-wide legend {
  padding: 0 7px;
  color: var(--teal-900);
  font-weight: 850;
}

.booking-priorities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.booking-priorities label {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 12px;
  background: var(--teal-50);
  border: 1px solid transparent;
  border-radius: 11px;
}

.booking-priorities label:has(input:checked) {
  color: var(--teal-900);
  border-color: var(--teal-200);
}

.booking-primary,
.booking-secondary {
  min-height: 54px;
  padding: 13px 23px;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.booking-primary {
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  box-shadow: 0 12px 24px rgba(11, 100, 116, .18);
}

.booking-primary:hover {
  background: var(--teal-800);
  box-shadow: 0 15px 30px rgba(11, 100, 116, .25);
  transform: translateY(-1px);
}

.booking-primary:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}

.booking-secondary {
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--border);
}

.booking-secondary:hover {
  background: var(--teal-50);
  border-color: var(--teal-200);
}

.booking-next {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: min(100%, 390px);
  margin: 26px auto 0;
}

.booking-next span {
  font-size: 1.15rem;
}

.booking-help {
  margin-top: 13px;
  color: var(--text-muted);
  font-size: .78rem;
  text-align: center;
}

.booking-help a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
}

.booking-price-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.booking-price-card div {
  display: grid;
  gap: 7px;
  padding: 20px;
  background: #f8faf9;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.booking-price-card div:first-child {
  justify-items: center;
  padding: 28px;
  background: linear-gradient(145deg, var(--teal-900), var(--teal-700));
  border: 0;
  text-align: center;
}

.booking-price-card span {
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 750;
}

.booking-price-card strong {
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.booking-price-card div:first-child span {
  color: rgba(255, 255, 255, .76);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.booking-price-card div:first-child strong {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 3.8rem);
}

.booking-notice {
  margin-top: 20px;
  padding: 18px 20px;
  color: var(--teal-900);
  background: var(--leaf-50);
  border: 1px solid var(--leaf-100);
  border-radius: var(--radius-lg);
}

.booking-notice p {
  margin-top: 6px;
  color: var(--text-body);
  font-size: .88rem;
  line-height: 1.6;
}

.booking-status {
  margin-top: 18px;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 750;
  text-align: center;
}

.booking-status[data-type="error"] {
  color: #8a1f17;
  background: #fff4f2;
  border: 1px solid #f2c4be;
}

.booking-status[data-type="info"] {
  color: var(--teal-900);
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
}

.booking-status[data-type="quote"] {
  color: var(--teal-900);
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
}

.booking-status-action {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 12px auto 0;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-weight: 850;
  text-decoration: none;
}

.booking-agreements {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.booking-scope-agreement {
  margin-top: 16px;
}

.booking-checkout-disclosure {
  margin: 22px 0;
  padding: 22px;
  border: 1px solid rgba(11, 100, 116, .18);
  border-radius: 18px;
  background: #f3fafb;
}

.booking-checkout-disclosure h3 {
  margin: 6px 0 10px;
  color: var(--teal-900);
  font-size: 1.2rem;
}

.booking-checkout-disclosure p {
  margin: 7px 0 0;
  color: var(--text-body);
  line-height: 1.55;
}

.booking-agreements label {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 14px 16px;
  color: var(--text-body);
  background: #fafcfb;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  font-size: .84rem;
  line-height: 1.5;
}

.booking-agreements label:has(input:checked) {
  background: var(--teal-50);
  border-color: var(--teal-200);
}

.booking-agreements input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--brand);
}

.booking-final-summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 20px 22px;
  color: #fff;
  background: var(--teal-900);
  border-radius: var(--radius-lg);
}

.booking-final-summary strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.booking-seo-section {
  padding: var(--section-y) 0;
  background: #fff;
  border-top: 1px solid var(--border-subtle);
}

.booking-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  gap: clamp(45px, 8vw, 96px);
  align-items: start;
}

.booking-seo-grid h2 {
  max-width: 17ch;
  margin: 14px 0 20px;
  color: var(--teal-950);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.booking-seo-grid > div:first-child p {
  margin-top: 14px;
  color: var(--text-body);
  line-height: 1.75;
}

.booking-text-link {
  display: inline-block;
  margin-top: 23px;
  color: var(--brand);
  font-weight: 850;
}

.booking-faq {
  padding: clamp(24px, 4vw, 34px);
  background: #f6faf8;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
}

.booking-faq .ds-kicker {
  display: block;
  margin-bottom: 15px;
}

.booking-faq details {
  border-top: 1px solid var(--border-subtle);
}

.booking-faq summary {
  position: relative;
  padding: 18px 34px 18px 0;
  color: var(--teal-900);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.booking-faq summary::-webkit-details-marker {
  display: none;
}

.booking-faq summary::after {
  position: absolute;
  right: 2px;
  content: "+";
  color: var(--brand);
  font-size: 1.25rem;
}

.booking-faq details[open] summary::after {
  content: "−";
}

.booking-faq details p {
  padding: 0 25px 18px 0;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.65;
}

.booking-faq details a {
  color: var(--brand);
  font-weight: 750;
  text-decoration: underline;
}

@media (max-width: 780px) {
  .booking-reassurance {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .booking-reassurance > span {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .booking-reassurance > span + span {
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
    border-left: 0;
  }

  .booking-reassurance > span + span::before {
    top: 16px;
  }

  .booking-seo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .booking-hero {
    padding-top: 114px;
  }

  .booking-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .booking-trust {
    display: grid;
    justify-items: start;
  }

  .booking-form {
    padding-right: 18px;
    padding-left: 18px;
  }

  .booking-progress {
    margin-right: -18px;
    margin-bottom: 30px;
    margin-left: -18px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .booking-progress::before {
    right: 13%;
    left: 13%;
  }

  .booking-progress small {
    font-size: .64rem;
  }

  .booking-step-head {
    justify-items: start;
    text-align: left;
  }

  .booking-paths,
  .booking-fields,
  .booking-price-card {
    grid-template-columns: 1fr;
  }

  .booking-price-card div:first-child {
    grid-column: auto;
  }

  .booking-panel-head {
    display: grid;
  }

  .booking-fields {
    padding: 20px 16px;
  }

  .booking-priorities {
    grid-template-columns: 1fr 1fr;
  }

  .booking-actions {
    display: grid;
  }

  .booking-actions button {
    width: 100%;
  }

  .booking-actions .booking-secondary {
    order: 2;
  }

  .booking-faq {
    border-radius: var(--radius-xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-step {
    animation: none;
  }

  .booking-path,
  .booking-primary {
    transition: none;
  }
}

/* Conversion-focused booking shell */
.booking-checkout-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 220;
  padding: 10px 0;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 6px 24px rgba(5, 54, 64, .05);
  backdrop-filter: blur(16px);
}

.booking-checkout-header-inner {
  display: flex;
  gap: 20px;
  align-items: center;
}

.booking-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.booking-brand img {
  width: 44px;
  height: 44px;
  border-radius: 11px;
}

.booking-brand > span {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.booking-brand strong {
  color: var(--teal-700);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .12em;
}

.booking-brand small {
  color: var(--text-muted);
  font-size: .7rem;
  font-weight: 650;
}

.booking-header-secure {
  margin-left: auto;
  color: var(--text-muted);
  font-size: .74rem;
  font-weight: 800;
}

.booking-header-secure::before {
  margin-right: 6px;
  color: var(--success);
  content: "✓";
}

.booking-header-actions {
  display: flex;
  gap: 9px;
}

.booking-header-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 850;
}

.booking-header-actions a.is-primary {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.booking-hero {
  padding: 96px 0 28px;
}

.booking-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 26px 46px;
  align-items: center;
  justify-items: stretch;
  max-width: var(--max-width);
  text-align: left;
}

.booking-hero-copy {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.booking-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.65rem, 5vw, 4.15rem);
}

.booking-hero p {
  max-width: 610px;
  font-size: clamp(.98rem, 1.7vw, 1.12rem);
}

.booking-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin-top: 2px;
  color: var(--teal-900);
  font-size: .78rem;
  font-weight: 820;
}

.booking-hero-proof > span::before {
  margin-right: 6px;
  color: var(--success);
  content: "✓";
}

.booking-hero-proof a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--teal-900);
}

.booking-hero-proof a span {
  color: #e2a217;
  font-size: .88rem;
  letter-spacing: 1px;
}

.booking-hero-image {
  position: relative;
  overflow: hidden;
  height: 245px;
  margin: 0;
  background: var(--teal-100);
  border: 5px solid rgba(255, 255, 255, .9);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.booking-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-hero-image figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 13px;
  color: var(--teal-900);
  background: rgba(255, 255, 255, .9);
  border-radius: 12px;
  backdrop-filter: blur(9px);
}

.booking-hero-image figcaption b {
  font-size: .75rem;
}

.booking-hero-image figcaption span {
  color: var(--text-muted);
  font-size: .67rem;
}

.booking-trust {
  grid-column: 1 / -1;
  justify-content: flex-start;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 100, 116, .1);
}

.booking-section {
  padding-top: 28px;
}

.booking-urgency {
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  margin: -8px 0 0;
  padding: 11px 16px;
  color: #7b4a14;
  background: #fff8e8;
  border: 1px solid #f2dfb7;
  border-radius: 13px;
  font-size: .8rem;
}

.booking-urgency > span {
  color: #e67e22;
  font-size: .68rem;
  animation: availabilityPulse 1.8s infinite;
}

@keyframes availabilityPulse {
  50% { opacity: .42; }
}

.booking-progress-note {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 0;
  color: var(--text-muted);
  font-size: .76rem;
}

.booking-progress-note strong {
  color: var(--teal-900);
}

.booking-progress {
  margin-top: 0;
  padding-top: 16px;
}

.booking-progress::before {
  top: 32px;
}

.booking-live-availability {
  margin-bottom: 16px;
  color: var(--success);
  font-size: .8rem;
  font-weight: 850;
  text-align: center;
}

.booking-live-availability:not(:empty)::before {
  margin-right: 6px;
  content: "●";
  font-size: .62rem;
}

.booking-includes {
  margin-top: 18px;
  padding: 19px 20px;
  background: #f7faf8;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.booking-includes > strong {
  color: var(--teal-900);
  font-family: var(--font-display);
}

.booking-includes ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px 18px;
  margin: 13px 0 0;
  padding: 0;
  color: var(--text-body);
  font-size: .8rem;
  list-style: none;
}

.booking-includes li::before {
  margin-right: 7px;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.booking-next-steps {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px 20px;
  color: var(--text-body);
  background: var(--teal-50);
  border-radius: var(--radius-lg);
  font-size: .82rem;
}

.booking-next-steps strong {
  margin-bottom: 3px;
  color: var(--teal-900);
}

.booking-promise-section {
  padding: clamp(58px, 8vw, 92px) 0;
  background: var(--teal-950);
}

.booking-promise-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.booking-promise .ds-kicker,
.booking-founder-note .ds-kicker {
  color: var(--leaf-300);
}

.booking-promise h2 {
  max-width: 20ch;
  margin: 13px 0 18px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.booking-promise p {
  color: rgba(255, 255, 255, .76);
  line-height: 1.7;
}

.booking-promise ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .9);
  font-size: .84rem;
  font-weight: 750;
  list-style: none;
}

.booking-promise li::before {
  margin-right: 8px;
  color: var(--leaf-300);
  content: "✓";
}

.booking-founder-note {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 17px;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-2xl);
}

.booking-founder-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--teal-950);
  background: var(--leaf-300);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
}

.booking-founder-note blockquote {
  margin: 12px 0 15px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.5;
}

.booking-founder-note strong {
  color: rgba(255, 255, 255, .7);
  font-size: .78rem;
}

.booking-mobile-question-nav,
.booking-mobile-help {
  display: none;
}

.booking-page.zip-gate-open {
  overflow: hidden;
}

.booking-zip-gate {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
}

.booking-zip-gate[hidden] {
  display: none;
}

.booking-zip-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 40, 49, .72);
  backdrop-filter: blur(8px);
}

.booking-zip-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100%, 570px);
  padding: clamp(28px, 6vw, 48px);
  text-align: center;
  background:
    radial-gradient(circle at 100% 0, rgba(150, 193, 103, .16), transparent 34%),
    #fff;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(4, 40, 49, .28);
  animation: zipDialogIn .28s ease both;
}

@keyframes zipDialogIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-zip-dialog > img {
  margin-bottom: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.booking-zip-kicker {
  color: var(--leaf-700);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.booking-zip-dialog h2 {
  max-width: 15ch;
  margin: 9px 0 11px;
  color: var(--teal-950);
  font-size: clamp(2rem, 6vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.booking-zip-dialog > p {
  max-width: 460px;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.booking-zip-dialog form {
  width: 100%;
  margin-top: 22px;
}

.booking-zip-dialog label {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-900);
  font-size: .78rem;
  font-weight: 850;
  text-align: left;
}

.booking-zip-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.booking-zip-control input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: var(--text-strong);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  font: inherit;
  font-size: 1rem;
  font-weight: 750;
}

.booking-zip-control input:focus {
  border-color: var(--brand);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(11, 100, 116, .12);
}

.booking-zip-control button {
  min-height: 56px;
  padding: 0 22px;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow-brand);
  font: inherit;
  font-size: .84rem;
  font-weight: 850;
  cursor: pointer;
}

.booking-zip-control button:hover {
  background: var(--teal-800);
}

.booking-zip-status {
  margin-top: 11px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: .76rem;
  font-weight: 750;
}

.booking-zip-status[data-type="error"] {
  color: #8a1f17;
  background: #fff3f1;
  border: 1px solid #efc4be;
}

.booking-zip-status[data-type="success"] {
  color: #276d42;
  background: var(--success-soft);
  border: 1px solid #b9dfc6;
}

.booking-zip-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-zip-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 16px;
  margin-top: 19px;
  color: var(--text-muted);
  font-size: .7rem;
  font-weight: 750;
}

.booking-zip-trust span::first-letter {
  color: var(--success);
}

.booking-zip-quote {
  margin-top: 17px;
  color: var(--brand);
  font-size: .72rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-area-confirmed {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin: -12px 0 20px;
  padding: 10px 14px;
  color: #276d42;
  background: var(--success-soft);
  border: 1px solid #c8e6d1;
  border-radius: 11px;
  font-size: .76rem;
  font-weight: 750;
}

.booking-area-confirmed[hidden] {
  display: none;
}

.booking-area-confirmed button {
  padding: 4px 0;
  color: var(--brand);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: .72rem;
  font-weight: 850;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

[data-service-zip-note] {
  color: var(--success);
  font-size: .7rem;
  font-weight: 750;
}

@media (max-width: 780px) {
  .booking-header-secure {
    display: none;
  }

  .booking-hero-inner,
  .booking-promise-grid {
    grid-template-columns: 1fr;
  }

  .booking-hero-image {
    display: none;
  }

  .booking-hero h1 {
    max-width: 15ch;
  }
}

@media (max-width: 620px) {
  .booking-page {
    padding-bottom: 64px;
  }

  .booking-checkout-header {
    padding: 7px 0;
  }

  .booking-brand img {
    width: 39px;
    height: 39px;
  }

  .booking-brand small,
  .booking-header-actions > a:first-child {
    display: none;
  }

  .booking-header-actions {
    margin-left: auto;
  }

  .booking-header-actions a {
    min-height: 39px;
    padding: 0 13px;
  }

  .booking-header-actions .is-primary {
    font-size: 0;
  }

  .booking-header-actions .is-primary::after {
    content: "Call";
    font-size: .8rem;
  }

  .booking-hero {
    padding: 80px 0 22px;
  }

  .booking-hero-copy {
    gap: 11px;
  }

  .booking-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  .booking-hero p {
    font-size: .93rem;
    line-height: 1.55;
  }

  .booking-hero-proof {
    gap: 6px 12px;
    font-size: .7rem;
  }

  .booking-trust {
    display: none;
  }

  .booking-section {
    padding-top: 20px;
  }

  .booking-reassurance {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 10px;
    scroll-snap-type: x mandatory;
  }

  .booking-reassurance > span,
  .booking-reassurance > span + span {
    min-width: 205px;
    padding: 7px 12px 7px 45px;
    border: 0;
    scroll-snap-align: start;
  }

  .booking-reassurance > span + span::before,
  .booking-reassurance > span::before {
    top: 9px;
    left: 9px;
  }

  .booking-urgency {
    align-items: flex-start;
    text-align: left;
  }

  .booking-progress-note {
    padding-top: 16px;
  }

  .booking-progress-note span {
    font-size: .7rem;
  }

  .booking-step-head {
    margin-bottom: 21px;
  }

  [data-mobile-questions] [data-mobile-question] {
    display: none;
  }

  [data-mobile-questions] [data-mobile-question].is-mobile-current {
    display: grid;
    min-height: 132px;
    align-content: center;
    animation: bookingReveal .22s ease both;
  }

  .booking-mobile-question-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin: 12px 2px 0;
  }

  .booking-mobile-question-nav[hidden] {
    display: none;
  }

  .booking-mobile-question-nav button {
    padding: 5px 0;
    color: var(--brand);
    background: transparent;
    border: 0;
    font: inherit;
    font-size: .72rem;
    font-weight: 800;
    cursor: pointer;
  }

  .booking-mobile-question-nav span {
    color: var(--text-muted);
    font-size: .7rem;
  }

  .booking-includes ul,
  .booking-promise ul {
    grid-template-columns: 1fr 1fr;
  }

  .booking-founder-note {
    grid-template-columns: 44px 1fr;
  }

  .booking-founder-mark {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .booking-mobile-help {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 250;
    display: grid;
    grid-template-columns: 1fr 90px 90px;
    gap: 8px;
    align-items: center;
    padding: 9px 14px;
    background: rgba(5, 40, 49, .96);
    box-shadow: 0 -8px 24px rgba(5, 40, 49, .15);
    backdrop-filter: blur(12px);
  }

  .booking-mobile-help span {
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
  }

  .booking-mobile-help a {
    display: grid;
    min-height: 42px;
    place-items: center;
    color: #fff;
    background: var(--brand);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 850;
  }

  .booking-mobile-help a:last-child {
    color: var(--teal-950);
    background: var(--leaf-300);
  }

  .booking-zip-gate {
    padding: 13px;
  }

  .booking-zip-dialog {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .booking-zip-dialog > img {
    width: 48px;
    height: 48px;
    margin-bottom: 13px;
  }

  .booking-zip-dialog h2 {
    font-size: 2.15rem;
  }

  .booking-zip-control {
    grid-template-columns: 1fr;
  }

  .booking-zip-control button {
    width: 100%;
  }

  .booking-area-confirmed {
    align-items: flex-start;
  }
}

/* Full popup booking wizard */
.booking-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.booking-page.booking-wizard-open {
  overflow: hidden;
}

.booking-start-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  background:
    radial-gradient(circle at 92% 8%, rgba(150, 193, 103, .18), transparent 27%),
    linear-gradient(145deg, #fff, #f4faf7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
}

.booking-start-card h2 {
  max-width: 19ch;
  margin: 10px 0 12px;
  color: var(--teal-950);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.booking-start-card p {
  max-width: 650px;
  color: var(--text-body);
  line-height: 1.65;
}

.booking-start-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 750;
  list-style: none;
}

.booking-start-card li::before {
  margin-right: 6px;
  color: var(--success);
  content: "✓";
}

.booking-start-card > .booking-primary {
  min-width: 210px;
}

.booking-wizard-gate {
  position: fixed;
  inset: 0;
  z-index: 480;
  display: grid;
  place-items: center;
  padding: 22px;
}

.booking-wizard-gate[hidden] {
  display: none;
}

.booking-wizard-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 40, 49, .78);
  backdrop-filter: blur(9px);
}

.booking-wizard-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 940px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 30px;
  box-shadow: 0 34px 100px rgba(4, 40, 49, .34);
  overscroll-behavior: contain;
  animation: wizardIn .28s ease both;
  scrollbar-width: thin;
  scrollbar-color: var(--teal-200) transparent;
}

@keyframes wizardIn {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-wizard-toolbar {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 12px 18px;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(14px);
}

.booking-wizard-brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--teal-900);
  font-size: .76rem;
  font-weight: 850;
}

.booking-wizard-brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.booking-wizard-save {
  margin-left: auto;
  color: var(--text-muted);
  font-size: .7rem;
  font-weight: 750;
}

.booking-wizard-save::before {
  margin-right: 5px;
  color: var(--success);
  content: "✓";
}

.booking-wizard-toolbar > button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal-900);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 50%;
  font: inherit;
  font-size: 1.35rem;
  cursor: pointer;
}

.booking-wizard-dialog .booking-form {
  width: 100%;
  padding: 0 clamp(22px, 5vw, 56px) clamp(30px, 5vw, 52px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.booking-wizard-dialog .booking-progress {
  margin-bottom: 28px;
}

.booking-wizard-dialog .booking-step-head {
  margin-bottom: 22px;
}

.booking-wizard-dialog .booking-paths {
  margin-bottom: 18px;
}

.booking-wizard-dialog .booking-path {
  min-height: 92px;
  padding-top: 14px;
  padding-bottom: 14px;
}

[data-mobile-questions] [data-mobile-question] {
  display: none;
}

[data-mobile-questions] [data-mobile-question].is-mobile-current {
  display: grid;
  min-height: 130px;
  align-content: center;
  animation: bookingReveal .22s ease both;
}

.booking-wizard-dialog .booking-fields {
  grid-template-columns: 1fr;
}

.booking-mobile-question-nav,
.booking-wizard-dialog .booking-mobile-question-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin: 12px 2px 0;
}

.booking-mobile-question-nav[hidden],
.booking-wizard-dialog .booking-mobile-question-nav[hidden] {
  display: none;
}

.booking-mobile-question-nav button {
  padding: 5px 0;
  color: var(--brand);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
}

.booking-mobile-question-nav span {
  color: var(--text-muted);
  font-size: .7rem;
}

.booking-redirect-overlay {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: grid;
  place-items: center;
  padding: 24px;
}

.booking-redirect-overlay[hidden] {
  display: none;
}

.booking-redirect-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 40, 49, .7);
  backdrop-filter: blur(8px);
}

.booking-redirect-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 620px);
  gap: 12px;
  padding: clamp(28px, 5vw, 42px);
  color: var(--text-strong);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 28px;
  box-shadow: 0 34px 100px rgba(4, 40, 49, .36);
  animation: wizardIn .22s ease both;
}

.booking-redirect-kicker {
  color: var(--accent-deep);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.booking-redirect-dialog h2 {
  margin: 0;
  color: var(--teal-900);
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.12;
}

.booking-redirect-dialog p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.booking-redirect-note {
  padding: 12px 14px;
  color: var(--teal-900) !important;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 14px;
  font-size: .88rem;
  font-weight: 700;
}

.booking-redirect-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}

.booking-redirect-actions button {
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.booking-redirect-back {
  color: var(--teal-800);
  background: #fff;
  border: 1px solid var(--teal-200);
}

.booking-redirect-continue {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-600));
  border: 0;
  box-shadow: var(--shadow-brand);
}

.booking-redirect-actions button:focus-visible {
  outline: 3px solid rgba(132, 190, 83, .5);
  outline-offset: 3px;
}

.booking-wizard-dialog[data-current-step="1"] {
  width: min(100%, 680px);
  background:
    radial-gradient(circle at 94% 8%, rgba(132, 190, 83, .1), transparent 26%),
    #fff;
}

.booking-wizard-dialog[data-current-step="1"] .booking-form {
  padding: 0 clamp(24px, 6vw, 46px) 34px;
}

.booking-wizard-dialog[data-current-step="1"] .booking-progress-note,
.booking-wizard-dialog[data-current-step="1"] > .booking-form > .booking-progress {
  display: none;
}

.booking-wizard-dialog[data-current-step="1"] [data-step="1"] {
  padding-top: 22px;
}

.booking-question-context {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.booking-question-context .booking-area-confirmed {
  margin: 0;
  padding: 10px 14px;
  color: var(--teal-800);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 13px;
  font-size: .76rem;
}

.booking-question-context > a {
  justify-self: center;
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--teal-200);
  text-underline-offset: 3px;
}

.booking-wizard-dialog[data-current-step="1"] .booking-mobile-question-nav {
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr);
  gap: 18px;
  align-items: end;
  margin: 0 0 24px;
}

.booking-wizard-dialog[data-current-step="1"] .booking-mobile-question-nav > button {
  min-width: 58px;
  min-height: 42px;
  padding: 0;
  text-align: left;
}

.booking-question-progress {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.booking-question-progress > span {
  color: var(--teal-700);
  font-size: .7rem;
  font-weight: 800;
  text-align: right;
}

.booking-question-progress > div {
  overflow: hidden;
  height: 7px;
  background: var(--teal-50);
  border-radius: 999px;
}

.booking-question-progress i {
  display: block;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: inherit;
  transition: width .28s ease;
}

.booking-wizard-dialog[data-current-step="1"] .booking-question-panel {
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.booking-wizard-dialog[data-current-step="1"] .booking-fields {
  display: block;
  padding: 0;
}

.booking-wizard-dialog[data-current-step="1"] [data-mobile-question].is-mobile-current {
  display: grid;
  gap: 14px;
  min-height: 0;
  align-content: start;
  text-align: center;
}

.booking-question-kicker {
  color: var(--accent-deep);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.booking-wizard-dialog[data-current-step="1"] [data-mobile-question] h2 {
  max-width: 560px;
  margin: 0 auto;
  color: var(--teal-950);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.booking-wizard-dialog[data-current-step="1"] .booking-service-guide {
  max-width: 540px;
  margin: -2px auto 2px;
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.55;
  text-align: center;
}

.booking-service-choice-form,
.booking-property-type-form,
.booking-unit-count-form,
.booking-quote-details-form {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: clamp(24px, 4vw, 34px);
  text-align: center;
  background:
    radial-gradient(circle at 95% 5%, rgba(132, 190, 83, .12), transparent 30%),
    #f8fbfa;
  border: 1px solid var(--teal-100);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(4, 40, 49, .07);
  animation: bookingReveal .22s ease both;
}

.booking-service-choice-form[hidden],
.booking-property-type-form[hidden],
.booking-unit-count-form[hidden],
.booking-quote-details-form[hidden] {
  display: none;
}

.booking-service-choice-form h2,
.booking-property-type-form h2,
.booking-unit-count-form h2,
.booking-quote-details-form h2 {
  margin: 0;
  color: var(--teal-950);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.booking-service-choice-form > p,
.booking-property-type-form > p,
.booking-unit-count-form > p,
.booking-quote-details-form > p {
  max-width: 520px;
  margin: 0 auto 8px;
  color: var(--text-muted);
  font-size: .86rem;
  line-height: 1.55;
}

.booking-service-choice-options {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: 6px;
  text-align: left;
}

.booking-service-choice-options .booking-answer-choice > span {
  display: grid;
  gap: 4px;
}

.booking-service-choice-options strong {
  color: var(--teal-950);
  font-size: .9rem;
}

.booking-service-choice-options small {
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.4;
}

.booking-unit-counter {
  display: grid;
  grid-template-columns: 58px minmax(130px, 180px) 58px;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  margin: 12px auto 2px;
}

.booking-unit-counter button {
  min-width: 58px;
  min-height: 58px;
  padding: 0;
  color: var(--teal-900);
  background: #fff;
  border: 1.5px solid var(--teal-100);
  border-radius: 17px;
  box-shadow: 0 8px 24px rgba(4, 40, 49, .05);
  cursor: pointer;
  font: inherit;
  font-size: 1.65rem;
  font-weight: 700;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.booking-unit-counter button:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
}

.booking-unit-counter button:focus-visible {
  outline: 3px solid rgba(132, 190, 83, .55);
  outline-offset: 3px;
}

.booking-unit-counter button:disabled {
  cursor: not-allowed;
  opacity: .35;
  transform: none;
}

.booking-unit-counter > div {
  display: grid;
  place-content: center;
  min-height: 76px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(11, 100, 116, .08), rgba(132, 190, 83, .11));
  border: 1.5px solid rgba(11, 100, 116, .2);
  border-radius: 19px;
}

.booking-unit-counter strong {
  color: var(--teal-950);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.booking-unit-counter span {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: .74rem;
  font-weight: 750;
}

.booking-unit-limit {
  color: var(--text-muted);
  font-size: .7rem;
  line-height: 1.45;
}

.booking-quote-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 6px;
  text-align: left;
}

.booking-quote-details-grid label {
  display: grid;
  align-content: start;
  gap: 8px;
}

.booking-quote-details-grid label > span {
  color: var(--teal-900);
  font-size: .82rem;
  font-weight: 800;
}

.booking-quote-details-grid small {
  min-height: 1.25em;
  color: var(--text-muted);
  font-size: .7rem;
  line-height: 1.4;
}

.booking-quote-details-grid select,
.booking-quote-details-grid input {
  width: 100%;
  min-height: 58px;
  padding: 13px 15px;
  color: var(--teal-950);
  background: #fff;
  border: 1.5px solid var(--teal-100);
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(4, 40, 49, .045);
  font: inherit;
  font-size: .88rem;
  font-weight: 750;
}

.booking-quote-details-grid select:focus,
.booking-quote-details-grid input:focus {
  border-color: var(--brand);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(11, 100, 116, .11);
}

.booking-standard-detail-question {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.booking-standard-detail-question[hidden],
.booking-detail-number[hidden],
.booking-answer-options[hidden] {
  display: none;
}

.booking-standard-detail-question > p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.65;
  text-align: center;
}

.booking-detail-number {
  display: grid;
  gap: 9px;
  width: min(100%, 520px);
  margin: 0 auto;
}

.booking-detail-number > span {
  color: var(--teal-900);
  font-weight: 800;
  text-align: left;
}

.booking-detail-number input {
  width: 100%;
  min-height: 64px;
  padding: 14px 18px;
  border: 2px solid var(--teal-100);
  border-radius: 18px;
  background: #fff;
  color: var(--teal-950);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  outline: none;
}

.booking-detail-number input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(11, 100, 116, .11);
}

.booking-price-breakdown {
  display: grid;
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(11, 100, 116, .15);
  border-radius: 22px;
  background: #fff;
}

.booking-price-breakdown[hidden] {
  display: none;
}

.booking-price-breakdown h3,
.booking-price-breakdown h4 {
  margin: 0;
  color: var(--teal-950);
}

.booking-price-breakdown h3 {
  font-size: 1.3rem;
}

.booking-price-breakdown h4 {
  margin-bottom: 9px;
  color: var(--teal-800);
  font-size: .95rem;
}

.booking-price-breakdown section + section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.booking-price-breakdown ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-price-breakdown li,
.booking-price-breakdown dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.booking-price-breakdown li {
  color: var(--text-muted);
  font-size: .9rem;
}

.booking-price-breakdown li strong {
  flex-shrink: 0;
  color: var(--teal-950);
}

.booking-price-breakdown dl {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.booking-price-breakdown dt {
  color: var(--text-muted);
}

.booking-price-breakdown dd {
  margin: 0;
  color: var(--teal-950);
  font-weight: 800;
}

.booking-price-breakdown-total {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 2px solid rgba(11, 100, 116, .16);
  font-size: 1.08rem;
}

.booking-price-breakdown-total dt,
.booking-price-breakdown-total dd {
  color: var(--teal-900);
  font-weight: 900;
}

.booking-answer-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.booking-answer-options {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}

.booking-answer-choice {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 13px 16px 13px 20px;
  color: var(--teal-900);
  text-align: left;
  background: #fff;
  border: 1.5px solid var(--teal-100);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(4, 40, 49, .055);
  font: inherit;
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.35;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.booking-answer-choice i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: transparent;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 50%;
  font-size: .78rem;
  font-style: normal;
}

.booking-answer-choice:hover {
  transform: translateY(-1px);
  border-color: var(--teal-300);
  box-shadow: 0 10px 28px rgba(4, 40, 49, .09);
}

.booking-answer-choice.is-selected {
  color: var(--teal-950);
  background: linear-gradient(135deg, var(--teal-50), rgba(132, 190, 83, .1));
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 100, 116, .1);
}

.booking-answer-choice.is-selected i {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.booking-answer-choice:focus-visible {
  outline: 3px solid rgba(132, 190, 83, .48);
  outline-offset: 3px;
}

.booking-complete-dialog {
  justify-items: center;
  text-align: center;
}

.booking-complete-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 2px 0;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(11, 100, 116, .2);
  font-size: 1.75rem;
  font-weight: 900;
}

.booking-complete-dialog .booking-redirect-actions {
  justify-content: center;
  width: 100%;
}

.booking-quote-contact-dialog {
  width: min(100%, 720px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.booking-quote-contact-fields {
  padding: 8px 0 4px;
}

.booking-quote-sms-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 14px;
  color: var(--text-body);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 14px;
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.5;
}

.booking-quote-sms-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}

.booking-quote-sms-consent a {
  color: var(--brand);
  font-weight: 850;
}

.booking-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.booking-saved-quote-status {
  margin-top: 16px;
}

.booking-saved-quote-status a {
  color: inherit;
  font-weight: 850;
  text-decoration: underline;
}

.booking-wizard-dialog[data-current-step="1"] input[name="squareFootage"] {
  max-width: 360px;
  min-height: 62px;
  margin: 6px auto 0;
  color: var(--teal-950);
  text-align: center;
  background: #fff;
  border: 1.5px solid var(--teal-200);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(4, 40, 49, .055);
  font-size: 1.05rem;
  font-weight: 800;
}

.booking-wizard-dialog[data-current-step="1"] .booking-status {
  margin-top: 16px;
  text-align: center;
}

.booking-wizard-dialog[data-current-step="1"] .booking-next {
  width: min(100%, 420px);
  min-height: 56px;
  margin: 22px auto 0;
}

.booking-wizard-dialog[data-current-step="1"] .booking-help {
  margin-top: 13px;
  text-align: center;
}

/* Calendar-first appointment scheduler */
.booking-scheduler {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(270px, .92fr);
  gap: 18px;
  margin: 26px 0 22px;
}

.booking-calendar-panel,
.booking-time-panel {
  min-width: 0;
  padding: clamp(18px, 3vw, 24px);
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(5, 54, 64, .06);
}

.booking-scheduler-heading {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.booking-scheduler-step {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 0 0 0 5px var(--teal-50);
}

.booking-scheduler-heading h3 {
  margin: 0;
  color: var(--teal-950);
  font-size: 1rem;
  line-height: 1.25;
}

.booking-scheduler-heading p {
  margin: 3px 0 0;
  color: var(--text-muted);
  font-size: .72rem;
  line-height: 1.45;
}

.booking-calendar-toolbar {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.booking-calendar-toolbar strong {
  color: var(--teal-950);
  font-size: .88rem;
  text-align: center;
}

.booking-calendar-toolbar button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--brand);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 50%;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.booking-calendar-toolbar button:hover:not(:disabled) {
  color: #fff;
  background: var(--brand);
}

.booking-calendar-toolbar button:disabled {
  opacity: .3;
  cursor: not-allowed;
}

.booking-calendar-weekdays,
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.booking-calendar-weekdays {
  margin-bottom: 7px;
}

.booking-calendar-weekdays span {
  color: var(--text-faint);
  font-size: .62rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.booking-calendar-grid button,
.booking-calendar-empty {
  aspect-ratio: 1;
  min-width: 0;
  border-radius: 11px;
}

.booking-calendar-grid button {
  position: relative;
  color: var(--text-faint);
  background: #f7f9f8;
  border: 1px solid transparent;
  font: inherit;
  font-size: .76rem;
  font-weight: 800;
}

.booking-calendar-grid button.is-unavailable {
  opacity: .42;
}

.booking-calendar-grid button.is-available {
  color: var(--teal-900);
  background: var(--teal-50);
  border-color: var(--teal-100);
  cursor: pointer;
}

.booking-calendar-grid button.is-available::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  width: 4px;
  height: 4px;
  margin: auto;
  content: "";
  background: var(--leaf-600);
  border-radius: 50%;
}

.booking-calendar-grid button.is-available:hover {
  background: #e8f5ef;
  border-color: var(--brand);
  transform: translateY(-1px);
}

.booking-calendar-grid button.is-selected {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 7px 18px rgba(11, 100, 116, .24);
}

.booking-calendar-grid button.is-selected::after {
  background: var(--leaf-300);
}

.booking-calendar-toolbar button:focus-visible,
.booking-calendar-grid button:focus-visible,
.booking-time-slot:focus-visible {
  outline: 3px solid rgba(150, 193, 103, .85);
  outline-offset: 2px;
}

.booking-time-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  max-height: 286px;
  overflow-y: auto;
  padding: 2px 5px 2px 2px;
  scrollbar-color: var(--teal-200) transparent;
}

.booking-time-slot {
  display: grid;
  gap: 2px;
  min-height: 58px;
  justify-items: start;
  align-content: center;
  padding: 10px 13px;
  color: var(--teal-900);
  background: #fff;
  border: 1.5px solid var(--teal-100);
  border-radius: 13px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.booking-time-slot strong {
  font-size: .82rem;
}

.booking-time-slot span {
  color: var(--text-muted);
  font-size: .64rem;
  font-weight: 700;
}

.booking-time-slot:hover {
  background: var(--teal-50);
  border-color: var(--brand);
  transform: translateY(-1px);
}

.booking-time-slot.is-selected {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 8px 20px rgba(11, 100, 116, .18);
}

.booking-time-slot.is-selected span {
  color: rgba(255, 255, 255, .8);
}

.booking-time-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 34px 18px;
  color: var(--text-muted);
  background: #f7faf8;
  border: 1px dashed var(--teal-100);
  border-radius: 14px;
  font-size: .78rem;
  line-height: 1.5;
  text-align: center;
}

.booking-schedule-control {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.booking-scheduler-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--text-muted);
  font-size: .76rem;
  font-weight: 750;
  text-align: center;
}

.booking-scheduler-status:empty {
  min-height: 0;
}

.booking-scheduler-status[data-type="error"] {
  color: #a03328;
}

.booking-scheduler-status[data-type="success"] {
  color: var(--success);
}

@media (max-width: 780px) {
  .booking-start-card {
    grid-template-columns: 1fr;
  }

  .booking-start-card > .booking-primary {
    width: 100%;
  }

  .booking-scheduler {
    grid-template-columns: 1fr;
  }

  .booking-time-slots {
    max-height: none;
  }
}

@media (max-width: 620px) {
  .booking-wizard-gate {
    padding: 0;
  }

  .booking-wizard-dialog {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
  }

  .booking-wizard-toolbar {
    padding: 9px 13px;
  }

  .booking-wizard-save {
    display: none;
  }

  .booking-wizard-dialog .booking-form {
    padding-right: 16px;
    padding-bottom: 96px;
    padding-left: 16px;
  }

  .booking-wizard-dialog .booking-progress-note {
    padding-top: 12px;
  }

  .booking-wizard-dialog .booking-progress {
    margin-right: -16px;
    margin-left: -16px;
  }

  .booking-wizard-dialog .booking-step-head h2 {
    font-size: 1.78rem;
  }

  .booking-wizard-dialog .booking-paths {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .booking-wizard-dialog .booking-path {
    grid-template-columns: 34px 1fr;
    gap: 2px 8px;
    min-height: 88px;
    padding: 11px;
  }

  .booking-wizard-dialog .booking-path i {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 1rem;
  }

  .booking-wizard-dialog .booking-path strong {
    font-size: .82rem;
  }

  .booking-wizard-dialog .booking-path span {
    font-size: .68rem;
  }

  .booking-wizard-dialog .booking-path em {
    font-size: .62rem;
  }

  .booking-start-card {
    padding: 24px 20px;
    border-radius: var(--radius-xl);
  }

  .booking-redirect-overlay {
    position: fixed;
    padding: 16px;
  }

  .booking-redirect-dialog {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .booking-redirect-actions {
    flex-direction: column-reverse;
  }

  .booking-redirect-actions button {
    width: 100%;
  }

  .booking-quote-contact-fields {
    grid-template-columns: 1fr;
  }


  .booking-wizard-dialog[data-current-step="1"] .booking-form {
    padding-right: 20px;
    padding-bottom: 32px;
    padding-left: 20px;
  }

  .booking-wizard-dialog[data-current-step="1"] [data-step="1"] {
    padding-top: 16px;
  }

  .booking-question-context {
    margin-bottom: 18px;
  }

  .booking-question-context .booking-area-confirmed {
    gap: 8px;
    font-size: .7rem;
  }

  .booking-wizard-dialog[data-current-step="1"] .booking-mobile-question-nav {
    margin-bottom: 22px;
  }

  .booking-wizard-dialog[data-current-step="1"] [data-mobile-question] h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .booking-quote-details-form {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .booking-property-type-form,
  .booking-unit-count-form {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .booking-quote-details-grid {
    grid-template-columns: 1fr;
  }

  .booking-quote-details-grid small {
    min-height: 0;
  }

  .booking-answer-choice {
    min-height: 56px;
    padding: 12px 14px 12px 16px;
    border-radius: 14px;
    font-size: .84rem;
  }

  .booking-calendar-panel,
  .booking-time-panel {
    padding: 17px;
    border-radius: 18px;
  }

  .booking-calendar-weekdays,
  .booking-calendar-grid {
    gap: 4px;
  }

  .booking-calendar-grid button {
    font-size: .7rem;
  }

  .booking-time-slot {
    min-height: 54px;
    padding: 9px 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-wizard-dialog {
    animation: none;
  }
}
