:root {
  --ink: #061831;
  --muted: #617086;
  --line: #dbe6f4;
  --blue: #0875ff;
  --blue-deep: #005ed8;
  --paper: #ffffff;
  --mist: #f5f8fc;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(6, 24, 49, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(8, 117, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(8, 117, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, var(--mist));
  background-size: 64px 64px, 64px 64px, auto;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.brand-ribbon {
  background: #fff;
  border-bottom: 1px solid rgba(219, 230, 244, 0.9);
}

.brand-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  min-height: 82px;
  margin: 0 auto;
}

.brand-logo-link,
.footer-logo-link {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand-ribbon img {
  width: auto;
  height: 72px;
}

.brand-ribbon h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(32px, 4.2vw, 52px);
  text-align: left;
}

.message-ribbon {
  color: #d9e8fb;
  background: linear-gradient(135deg, var(--ink), #062d62);
}

.message-ribbon-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 21px 0;
}

.message-ribbon .intro-note {
  max-width: none;
  margin: 0;
  color: #eef6ff;
  font-size: 15px;
  line-height: 1.45;
}

.booking-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px) 0 30px;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.booking-shell.is-complete {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.booking-intro {
  position: sticky;
  top: 28px;
  padding-top: 0;
}

.booking-flow {
  display: grid;
  gap: 14px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 0.98;
  letter-spacing: 0;
}

p {
  overflow-wrap: anywhere;
}

.booking-intro p:not(.eyebrow) {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.intro-note {
  max-width: 470px;
  font-size: 14px;
  line-height: 1.55;
}

.gallery-meta span,
.estimate-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.package-gallery {
  display: grid;
  gap: 12px;
  margin-top: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(6, 24, 49, 0.08);
}

.gallery-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.gallery-meta strong {
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.gallery-frame {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: #eef4fb;
  touch-action: pan-y pinch-zoom;
}

.gallery-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  transform: translateY(-50%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(6, 24, 49, 0.66);
  box-shadow: 0 12px 28px rgba(6, 24, 49, 0.18);
  font-size: 22px;
  line-height: 1;
}

.gallery-arrow-left {
  left: 12px;
}

.gallery-arrow-right {
  right: 12px;
}

.gallery-arrow:hover {
  background: var(--blue);
}

.booking-card {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(219, 230, 244, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.builder-step,
.lead-step,
.summary-step,
.thank-you-step {
  display: grid;
  gap: 14px;
}

.booking-card.is-complete {
  align-content: center;
  min-height: min(520px, calc(100vh - 64px));
  text-align: center;
}

[hidden] {
  display: none !important;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-contact-fields {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.required-star {
  color: #d92332;
  font-size: 14px;
  line-height: 1;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

input,
select,
textarea,
output {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

textarea {
  min-height: 78px;
  padding: 12px 14px;
  resize: vertical;
}

.window-label {
  align-content: end;
}

.window-control {
  display: grid;
  grid-template-columns: 46px minmax(150px, 1fr);
  gap: 8px;
}

.date-picker-shell {
  position: relative;
  width: 46px;
  height: 46px;
}

.date-picker-square {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  color: var(--blue-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
}

.date-picker-square svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.date-picker-shell:focus-within .date-picker-square {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 117, 255, 0.12);
}

.date-picker-input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 46px;
  height: 46px;
  min-height: 0;
  padding: 0;
  color: transparent;
  border: 0;
  background: transparent;
  opacity: 0;
  cursor: pointer;
}

.date-picker-input::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.estimate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  color: #fff;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink), #073b7c);
}

.estimate-row span {
  color: #aac7ef;
}

.estimate-row strong {
  display: block;
  margin-top: 3px;
  font-size: 30px;
  line-height: 1;
}

.estimate-helper {
  max-width: 390px;
  margin: 8px 0 0;
  color: #aac7ef;
  font-size: 12px;
  line-height: 1.45;
}

.estimate-row .estimate-range {
  display: block;
  max-width: 100%;
  width: auto;
  min-height: 0;
  margin-top: 3px;
  padding: 0;
  color: #dbeaff;
  border: 0;
  background: transparent;
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.18;
  font-weight: 800;
}

.estimate-row .estimate-duration {
  display: block;
  width: auto;
  min-height: 0;
  margin-top: 5px;
  padding: 0;
  color: #ffffff;
  border: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

button {
  min-height: 46px;
  padding: 0 22px;
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue);
  box-shadow: 0 16px 30px rgba(8, 117, 255, 0.26);
  cursor: pointer;
  font-weight: 800;
}

.back-button {
  justify-self: start;
  min-height: auto;
  padding: 0;
  color: var(--blue-deep);
  background: transparent;
  box-shadow: none;
  font-size: 13px;
}

.step-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-step h2,
.summary-step h2,
.thank-you-step h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.lead-step > p,
.summary-step > p,
.thank-you-step > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.thank-you-step {
  justify-items: center;
  gap: 10px;
  padding: clamp(22px, 6vw, 54px) 10px;
}

.thank-you-step h2 {
  color: var(--ink);
  font-size: clamp(42px, 7vw, 74px);
}

.thank-you-step p {
  max-width: 460px;
  font-size: clamp(16px, 2.1vw, 20px);
}

.close-window-button {
  margin-top: 12px;
  min-width: 190px;
}

.close-window-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.request-summary {
  display: grid;
  align-items: center;
  min-height: 156px;
  padding: 20px;
  color: #fff;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink), #073b7c);
}

.side-request-summary {
  margin-top: 0;
}

.side-final-summary {
  margin-top: 0;
}

.request-summary > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.request-summary > div > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.request-summary-thumb {
  width: 118px;
  height: 82px;
  flex: 0 0 118px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  background: #eef4fb;
}

.request-summary span {
  color: #aac7ef;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.request-summary strong {
  font-size: 23px;
  line-height: 1.05;
}

.request-summary small {
  color: #dbeaff;
  font-weight: 800;
}

.request-summary-action {
  display: grid;
  gap: 8px;
}

.request-action-buttons {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
}

.request-summary-action button {
  width: 100%;
  background: var(--blue);
}

.action-back-button {
  width: auto;
  min-width: 88px;
  padding: 0 14px;
  color: #fff;
  border: 1px solid var(--line);
  background: var(--blue);
  box-shadow: none;
}

.request-summary-note {
  margin: 0;
  color: #aac7ef;
  font-size: 11px;
  line-height: 1.45;
}

.extra-notes-input {
  min-height: 144px;
  padding-top: 12px;
  resize: vertical;
}

.final-summary {
  display: grid;
  gap: 10px;
  padding: 14px;
  color: #fff;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink), #073b7c);
}

.final-summary span {
  color: #aac7ef;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.final-summary strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.final-summary small {
  color: #dbeaff;
  font-size: 12px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.final-estimate {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.final-estimate span {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.final-estimate strong {
  color: var(--ink);
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1;
}

.final-estimate p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.final-summary-grid {
  display: grid;
  gap: 10px;
}

.final-vehicle-summary {
  display: flex;
  align-items: center;
  gap: 12px;
}

.final-vehicle-summary img {
  width: 92px;
  height: 64px;
  flex: 0 0 92px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  background: #eef4fb;
}

.final-vehicle-summary > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.final-summary-grid > div {
  display: grid;
  gap: 3px;
}

.crm-note {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.crm-note a {
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.disclaimer {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.disclaimer span {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.disclaimer ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.disclaimer li {
  padding-left: 2px;
}

.legal-page {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px) 0 30px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
}

.legal-shell {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(219, 230, 244, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.legal-shell h1 {
  max-width: none;
  font-size: clamp(38px, 5vw, 64px);
}

.legal-intro {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-meta {
  margin: 12px 0 0;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.legal-sections {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.legal-section {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.legal-section p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer {
  margin-top: 36px;
  color: #dbeaff;
  background: linear-gradient(135deg, var(--ink), #062d62);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0;
}

.footer-inner img {
  width: 188px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: grid;
  gap: 9px;
  min-width: 180px;
  color: #aac7ef;
  text-align: right;
}

.footer-links span {
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #9dccff;
}

.sample-gallery-modal {
  width: min(1040px, calc(100vw - 28px));
  max-height: min(860px, calc(100vh - 28px));
  padding: 0;
  color: var(--ink);
  border: 1px solid rgba(219, 230, 244, 0.95);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 26px 80px rgba(6, 24, 49, 0.28);
}

.sample-gallery-modal::backdrop {
  background: rgba(6, 24, 49, 0.58);
}

.sample-gallery-shell {
  display: grid;
  max-height: min(860px, calc(100vh - 28px));
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.sample-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.sample-gallery-header span {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.sample-gallery-header h2 {
  margin: 2px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.sample-gallery-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: none;
  font-size: 24px;
  line-height: 1;
}

.sample-gallery-stage {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  background: #eef4fb;
}

.sample-gallery-stage figure {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 100%;
  margin: 0;
  padding: 18px 68px;
}

.sample-gallery-stage img {
  width: auto;
  max-width: 100%;
  max-height: min(62vh, 620px);
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: #fff;
  cursor: zoom-in;
  transition: transform 160ms ease;
  transform-origin: center;
  user-select: none;
  -webkit-user-drag: none;
}

.sample-gallery-stage.is-zoomed figure {
  cursor: grab;
  touch-action: none;
}

.sample-gallery-stage.is-zoomed img {
  cursor: grab;
  will-change: transform;
}

.sample-gallery-stage.is-panning figure,
.sample-gallery-stage.is-panning img {
  cursor: grabbing;
}

.sample-gallery-stage.is-panning img {
  transition: none;
}

.sample-gallery-stage figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.sample-gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(6, 24, 49, 0.7);
  box-shadow: 0 12px 28px rgba(6, 24, 49, 0.18);
  font-size: 22px;
}

.sample-gallery-arrow-left {
  left: 16px;
}

.sample-gallery-arrow-right {
  right: 16px;
}

.sample-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

.sample-gallery-controls output {
  width: auto;
  min-height: 0;
  padding: 0;
  color: var(--muted);
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.sample-gallery-controls button {
  min-height: 38px;
  padding: 0 16px;
  box-shadow: none;
}

.legal-modal {
  width: min(920px, calc(100vw - 28px));
  max-height: min(860px, calc(100vh - 28px));
  padding: 0;
  color: var(--ink);
  border: 1px solid rgba(219, 230, 244, 0.95);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 26px 80px rgba(6, 24, 49, 0.28);
}

.legal-modal::backdrop {
  background: rgba(6, 24, 49, 0.58);
}

.legal-modal-shell {
  display: grid;
  max-height: min(860px, calc(100vh - 28px));
  grid-template-rows: auto minmax(0, 1fr);
}

.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.legal-modal-header span {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-modal-header h2 {
  margin: 2px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.legal-modal-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: none;
  font-size: 24px;
  line-height: 1;
}

.legal-modal-body {
  overflow: auto;
  padding: 18px;
}

.legal-modal-body .legal-intro {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.65;
}

.legal-modal-body .legal-meta {
  font-size: 12px;
}

.legal-modal-body .legal-sections {
  gap: 16px;
  margin-top: 22px;
}

.legal-modal-body .legal-section {
  padding-top: 16px;
}

.legal-modal-body .legal-section h2 {
  font-size: 18px;
}

.legal-modal-body .legal-section p {
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .booking-page {
    width: min(calc(100% - 16px), 1180px);
    padding: 10px 0 14px;
  }

  .brand-ribbon-inner {
    width: min(calc(100% - 16px), 1180px);
    min-height: 62px;
    gap: 12px;
  }

  .brand-ribbon img {
    height: 54px;
  }

  .message-ribbon-inner {
    width: min(calc(100% - 16px), 1180px);
    padding: 17px 0;
  }

  .message-ribbon .intro-note {
    font-size: 13px;
    line-height: 1.42;
  }

  .booking-shell {
    gap: 9px;
  }

  .booking-intro {
    padding-top: 0;
  }

  h1,
  .brand-ribbon h1 {
    max-width: none;
    font-size: clamp(22px, 6.4vw, 30px);
    line-height: 1;
  }

  .gallery-meta span,
  .estimate-row span {
    font-size: 11px;
    white-space: nowrap;
  }

  .gallery-meta strong {
    font-size: 10px;
  }

  .package-gallery {
    margin-top: 8px;
    padding: 9px;
  }

  .gallery-frame img {
    max-height: 170px;
    object-fit: contain;
  }

  .gallery-arrow {
    width: 30px;
    height: 30px;
    min-height: 30px;
    font-size: 16px;
  }

  .gallery-arrow-left {
    left: 8px;
  }

  .gallery-arrow-right {
    right: 8px;
  }

  .booking-card {
    gap: 9px;
    padding: 10px;
  }

  .builder-step,
  .lead-step,
  .summary-step,
  .thank-you-step {
    gap: 9px;
  }

  .legal-page {
    width: min(calc(100% - 28px), 920px);
    padding-top: 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  label {
    gap: 6px;
    font-size: 13px;
  }

  input,
  select,
  textarea,
  output {
    min-height: 40px;
    padding: 0 12px;
    font-size: 15px;
  }

  .window-control {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px;
  }

  .date-picker-shell,
  .date-picker-square,
  .date-picker-input {
    width: 40px;
    height: 40px;
  }

  .date-picker-square {
    min-height: 40px;
  }

  .date-picker-square svg {
    width: 18px;
    height: 18px;
  }

  .estimate-row {
    display: grid;
    gap: 6px;
    padding: 11px;
  }

  .estimate-helper {
    margin-top: 4px;
    font-size: 11px;
  }

  .estimate-row .estimate-range {
    font-size: 17px;
  }

  .estimate-row .estimate-duration {
    font-size: 12px;
  }

  button {
    width: 100%;
    min-height: 40px;
    padding: 0 16px;
    font-size: 15px;
  }

  .lead-step h2,
  .summary-step h2,
  .thank-you-step h2 {
    font-size: 25px;
  }

  .lead-step > p,
  .summary-step > p,
  .thank-you-step > p {
    font-size: 12px;
  }

  .request-summary,
  .final-summary,
  .final-estimate,
  .disclaimer {
    padding: 10px;
  }

  .request-summary > div {
    gap: 9px;
  }

  .request-summary-thumb {
    width: 96px;
    height: 70px;
    flex-basis: 96px;
  }

  .request-summary strong {
    font-size: 20px;
  }

  .final-vehicle-summary {
    gap: 9px;
  }

  .final-vehicle-summary img {
    width: 72px;
    height: 50px;
    flex-basis: 72px;
  }

  .extra-notes-input {
    min-height: 112px;
  }

  .disclaimer span {
    font-size: 13px;
  }

  .disclaimer ul {
    font-size: 12px;
    line-height: 1.48;
  }

  .final-estimate strong {
    font-size: 31px;
  }

  .footer-inner {
    display: grid;
  }

  .footer-links {
    text-align: left;
  }

  .sample-gallery-modal {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    min-height: 0;
    height: max-content;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius);
  }

  .legal-modal {
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .legal-modal-shell {
    max-height: 100vh;
  }

  .sample-gallery-shell {
    max-height: calc(100vh - 24px);
    grid-template-rows: auto auto auto;
  }

  .sample-gallery-header,
  .legal-modal-header {
    gap: 10px;
    padding: 11px 12px;
  }

  .sample-gallery-header h2,
  .legal-modal-header h2 {
    font-size: 19px;
  }

  .sample-gallery-close,
  .legal-modal-close {
    width: 34px;
    height: 34px;
    min-height: 34px;
    font-size: 21px;
  }

  .sample-gallery-stage {
    min-height: 0;
  }

  .sample-gallery-stage figure {
    gap: 7px;
    padding: 12px 44px;
  }

  .sample-gallery-stage img {
    max-height: calc(100vh - 166px);
  }

  .sample-gallery-arrow {
    width: 34px;
    height: 34px;
    min-height: 34px;
    font-size: 18px;
  }

  .sample-gallery-arrow-left {
    left: 8px;
  }

  .sample-gallery-arrow-right {
    right: 8px;
  }

  .sample-gallery-controls {
    padding: 10px 12px;
  }

  .sample-gallery-controls button {
    width: auto;
    min-height: 34px;
    padding: 0 13px;
  }

  .legal-modal-body {
    padding: 13px;
  }

  .legal-modal-body .legal-section h2 {
    font-size: 16px;
  }
}
