:root {
  --bg: #0a0a0a;
  --surface: #121212;
  --surface-elevated: #1a1a1a;
  --text: #fafafa;
  --muted: #a3a3a3;
  --primary: #dc2626;
  --primary-hover: #b91c1c;
  --accent: #f87171;
  --border: #2a2a2a;
  --border-strong: #3f3f3f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  background-image: linear-gradient(180deg, #050505 0%, #0a0a0a 40%, #0f0f0f 100%);
  color: var(--text);
  line-height: 1.5;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.brand-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  text-decoration: none;
  color: var(--text);
}

.brand-logo-wrap {
  flex: 0 1 auto;
  max-width: min(132px, 34vw);
  max-height: 44px;
  display: flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: auto;
  height: auto;
  max-height: 44px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 0.45rem;
  border: 1px solid var(--border);
  background: #fff;
  vertical-align: middle;
}

.brand-name {
  font-weight: 800;
  font-size: clamp(0.92rem, 2.8vw, 1.05rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-highlight {
  color: var(--primary) !important;
  font-weight: 700;
}

.nav-call {
  flex-shrink: 0;
}

.topbar-trailing {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.lang-switch__btn {
  margin: 0;
  padding: 0.35rem 0.55rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  line-height: 1;
}

.lang-switch__btn:hover {
  color: var(--text);
}

.lang-switch__btn.is-active {
  background: var(--primary);
  color: #0a0a0a;
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.45rem;
  height: 2.45rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  color: var(--text);
}

.nav-menu-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-menu-btn__bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

body.nav-menu-open {
  overflow: hidden;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.25fr 0.95fr;
  align-items: start;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.subtitle {
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}

.subtitle strong {
  color: var(--text);
  font-weight: 600;
}

.coverage-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  padding: 0.65rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 0.55rem;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 52ch;
}

.section-lead {
  max-width: 62ch;
  margin: 0 0 1.5rem;
}

.section-lead.muted {
  color: var(--muted);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.trust-strip {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-strip li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.hero-highlight {
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.hero-highlight-title {
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.hero-steps {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.hero-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

/* Solo el número del paso; el segundo span es el texto (no forzar 1.75rem × 1.75rem) */
.hero-steps li > span:first-of-type {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  background: rgba(220, 38, 38, 0.2);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
}

.hero-steps li > span:last-of-type {
  flex: 1;
  min-width: 0;
}

.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.7rem;
  padding: 0.7rem 1rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  transition: 0.2s ease;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary,
.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--primary);
  color: #fff;
}

.section {
  padding: 3rem 0;
}

.about .section-lead strong {
  color: var(--text);
}

.about-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.15rem 1.1rem;
}

.about-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.about-card strong {
  color: var(--text);
}

.gallery-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-empty {
  text-align: center;
  color: var(--muted);
  max-width: 42ch;
  margin: 1.5rem auto 0;
  font-size: 0.95rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1rem;
}

.price {
  font-weight: 700;
  color: var(--primary);
}

.reservation-section {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  background: radial-gradient(ellipse 75% 45% at 50% 0%, rgba(220, 38, 38, 0.12), transparent 55%);
}

.reservation-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.reservation-header .section-lead {
  margin-bottom: 0;
}

.reservation-shell {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.35rem 1.25rem 1.5rem;
}

.reservation-shell--wide {
  max-width: min(720px, 100%);
}

.reservation-note {
  max-width: 62ch;
  margin: 1rem auto 0;
  font-size: 0.85rem;
  line-height: 1.45;
  text-align: left;
}

.agenda-sync-banner {
  max-width: 62ch;
  margin: 0.85rem auto 0;
  padding: 0.65rem 0.85rem;
  border-radius: 0.55rem;
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: left;
  border: 1px solid var(--border);
}

.agenda-sync-banner--cloud {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.08);
  color: var(--muted);
}

.agenda-sync-banner--local {
  border-color: rgba(220, 38, 38, 0.45);
  background: rgba(220, 38, 38, 0.08);
  color: var(--muted);
}

.reservation-note strong {
  color: var(--text);
}

.field-hint {
  margin: -0.35rem 0 0.75rem;
  font-size: 0.88rem;
}

.vehicles-container {
  display: grid;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.vehicle-row {
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1rem 1rem 0.85rem;
  background: var(--bg);
  display: grid;
  gap: 0.75rem;
}

.vehicle-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
}

.vehicle-row__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.booking-totals {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  border: 1px solid var(--border-strong);
  background: rgba(220, 38, 38, 0.06);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.booking-totals strong {
  color: var(--text);
}

.booking-totals__warn {
  color: var(--accent);
  font-weight: 600;
}

.btn-block-add {
  width: 100%;
  margin-top: 0.25rem;
}

.time-slots-host {
  margin-top: 0.5rem;
}

.time-slots-placeholder {
  margin: 0;
  font-size: 0.9rem;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
  gap: 0.5rem;
}

.time-slot-btn {
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 0.4rem;
  border-radius: 0.55rem;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.time-slot-btn:hover:not(:disabled) {
  border-color: var(--primary);
}

.time-slot-btn.is-selected {
  border-color: var(--primary);
  background: rgba(220, 38, 38, 0.15);
  color: #fff;
}

.time-slot-btn:disabled,
.time-slot-btn.is-busy {
  cursor: not-allowed;
  opacity: 0.45;
  text-decoration: line-through;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2px;
  color: var(--muted);
}

.card--click-reserva {
  cursor: pointer;
  transition: border-color 0.15s;
}

.card--click-reserva:hover {
  border-color: var(--primary);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0;
}

.footer-staff {
  background: none;
  border: none;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  padding: 0;
}

.footer-staff:hover {
  color: var(--text);
}

.btn--small {
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
}

.staff-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.staff-modal[hidden] {
  display: none;
}

.staff-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.staff-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(85vh, 640px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.staff-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.staff-modal__head h2 {
  margin: 0;
  font-size: 1.15rem;
}

.staff-modal__close {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.45rem;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.staff-modal__hint {
  font-size: 0.82rem;
  margin: 0.75rem 0 1rem;
}

.staff-modal__hint code {
  color: var(--accent);
  font-size: 0.9em;
}

.staff-pin-gate {
  display: grid;
  gap: 0.75rem;
}

.staff-pin-msg {
  text-align: left;
  margin: 0;
  min-height: 0;
}

.staff-content.is-hidden {
  display: none;
}

.staff-feedback {
  min-height: 1.25rem;
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  color: var(--accent);
}

.staff-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.staff-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.staff-item {
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 0.65rem 0.75rem;
  background: var(--bg);
  font-size: 0.88rem;
}

.staff-item__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: flex-start;
}

.staff-item__meta {
  color: var(--muted);
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
}

.staff-item__del {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--accent);
  border-radius: 0.45rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: inherit;
}

.staff-item__del:hover {
  border-color: var(--primary);
}

.staff-empty {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

.staff-empty.is-hidden {
  display: none;
}

/* Google Places dropdown sobre el header y el modal staff */
.pac-container {
  z-index: 10060;
  border-radius: 0.5rem;
  border: 1px solid var(--border, #2a2a2a);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  margin-top: 4px;
  font-family: inherit;
}

.steps-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.step-pill {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--muted);
  border-radius: 0.6rem;
  padding: 0.5rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: default;
  font-family: inherit;
}

.step-pill.is-active {
  border-color: var(--primary);
  color: var(--text);
  background: rgba(220, 38, 38, 0.1);
}

.step-pill.is-done {
  border-color: var(--accent);
  color: #fecaca;
}

.booking-form {
  display: grid;
  gap: 0;
}

.booking-panel {
  display: grid;
  gap: 1rem;
}

.booking-panel.is-hidden {
  display: none;
}

.fieldset-services {
  border: none;
  margin: 0;
  padding: 0;
}

.fieldset-services legend {
  font-weight: 700;
  margin-bottom: 0.85rem;
  padding: 0;
}

.service-picks {
  display: grid;
  gap: 0.65rem;
}

.service-pick {
  display: block;
  cursor: pointer;
  margin: 0;
}

.service-pick input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-pick-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-pick input:focus-visible + .service-pick-inner {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.service-pick input:checked + .service-pick-inner {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.service-pick-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.service-pick-desc {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.35;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-row.three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.85rem;
}

.address-field-label .address-field-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
}

.address-field-label .address-field-row input {
  flex: 1;
  min-width: 0;
}

.btn-locate {
  flex-shrink: 0;
  white-space: nowrap;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
  font-size: 0.88rem;
  align-self: stretch;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.65rem 0.75rem;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 5rem;
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.request-form__actions {
  justify-content: flex-start;
}

.request-form__panel select {
  cursor: pointer;
}

.pricing-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.pricing-table th,
.pricing-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  white-space: nowrap;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table__span {
  text-align: center;
}

.cards--service-cta {
  margin-top: 1.5rem;
}

@media (max-width: 720px) {
  .pricing-table th:nth-child(n + 3),
  .pricing-table td:nth-child(n + 3) {
    font-size: 0.78rem;
    padding: 0.5rem 0.4rem;
  }
}

.booking-success {
  text-align: center;
}

.booking-success.is-hidden {
  display: none;
}

.booking-success h3 {
  margin: 0 0 0.5rem;
  color: var(--accent);
}

.booking-success > p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.booking-summary {
  text-align: left;
  margin: 0 0 1.25rem;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.form-message {
  min-height: 1.2rem;
  margin: 1rem auto 0;
  max-width: 640px;
  text-align: center;
  color: var(--accent);
}

.alt {
  background: rgba(255, 255, 255, 0.02);
}

.two-col {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

.muted {
  color: var(--muted);
}

.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1rem;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

@media (max-width: 991px) {
  .hero-grid,
  .cards,
  .two-col,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar-inner {
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .brand-with-logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .topbar-trailing {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 0.35rem;
  }

  .lang-switch__btn {
    min-width: 2.5rem;
    min-height: 2.25rem;
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
  }

  .nav-menu-btn {
    display: inline-flex;
    flex-shrink: 0;
  }

  .nav-call--desktop {
    display: none !important;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 88vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 4.35rem 1.2rem 1.5rem;
    gap: 0.2rem;
    background: rgba(10, 10, 12, 0.97);
    border-left: 1px solid var(--border);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.4);
    z-index: 40;
    transform: translateX(102%);
    transition: transform 0.28s ease;
    flex: none !important;
    min-width: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.7rem 0.55rem;
    border-radius: 0.35rem;
    white-space: normal;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .site-nav__call {
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  .form-row.two,
  .form-row.three {
    grid-template-columns: 1fr;
  }

  .address-field-label .address-field-row {
    flex-direction: column;
  }

  .btn-locate {
    width: 100%;
  }

  .step-pill {
    flex: 1 1 100%;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .nav-call--desktop {
    margin-left: 0;
  }

  .site-nav__call {
    display: none;
  }
}
