:root {
  --brand-blue: #04478b;
  --brand-blue-dark: #033562;
  --brand-blue-light: #0a5a9e;
  --brand-purple: #611e85;
  --brand-gold: #d4a017;
  --brand-gold-hover: #b8890f;
  --success: #6d9880;
  --success-dark: #5a8269;
  --success-bg: #f2f7f4;
  --error: #b91c1c;
  --error-bg: #fef2f2;
  --text: #1f2937;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --surface: #ffffff;
  --surface-muted: #f8fafb;
  --bg: #eef1f5;
  --radius: 14px;
  --radius-sm: 6px;
  --shadow: 0 12px 40px rgba(4, 71, 139, 0.07);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(760px, calc(100% - 2rem));
  margin-inline: auto;
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 1.25rem);
  }
}

.dev-banner {
  background: #fef3c7;
  color: #92400e;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.8125rem;
  border-bottom: 1px solid #fcd34d;
}

.dev-banner a {
  color: var(--brand-blue);
  font-weight: 600;
  margin-left: 0.5rem;
}

@media (max-width: 480px) {
  .dev-banner {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .dev-banner a {
    display: inline-block;
    margin-left: 0;
    margin-top: 0.25rem;
  }
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.125rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  display: block;
  height: auto;
  max-height: 52px;
  width: auto;
}

.header-phone {
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover { color: var(--brand-blue-dark); }

@media (max-width: 480px) {
  .site-header {
    padding: 0.875rem 0;
  }

  .header-inner {
    gap: 0.625rem;
  }

  .brand img {
    max-height: 42px;
  }

  .header-phone {
    font-size: 0.8125rem;
  }
}

.site-main { padding: 2.25rem 0 3.5rem; }

@media (max-width: 480px) {
  .site-main {
    padding: 1.25rem 0 2rem;
  }
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.hero {
  margin-bottom: 1.75rem;
  text-align: center;
}

.hero h1 {
  margin: 0 0 0.625rem;
  font-size: clamp(1.625rem, 4vw, 2.125rem);
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
}

.hero-light { font-weight: 400; color: #383a3c; }

.lead {
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 42ch;
  line-height: 1.65;
}

/* ── Progress stepper ── */
.progress { margin-bottom: 2rem; }

.progress-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.progress-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.progress-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.progress-item.is-done:not(:last-child)::after {
  background: var(--success);
  opacity: 0.45;
}

.progress-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--surface);
  border: 2px solid var(--border-strong);
  color: var(--text-muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.progress-item.is-active .progress-dot {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

.progress-item.is-done .progress-dot {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.progress-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 5.5rem;
  line-height: 1.3;
  padding-inline: 0.125rem;
}

@media (max-width: 480px) {
  .progress {
    margin-bottom: 1.5rem;
  }

  .progress-dot {
    width: 1.625rem;
    height: 1.625rem;
    font-size: 0.625rem;
    border-width: 1.5px;
  }

  .progress-item:not(:last-child)::after {
    top: 0.8125rem;
  }

  .progress-label {
    font-size: 0.625rem;
    max-width: 4rem;
    line-height: 1.25;
  }

  .progress-item {
    gap: 0.375rem;
  }
}

.progress-item.is-active .progress-label,
.progress-item.is-done .progress-label {
  color: var(--text);
  font-weight: 600;
}

/* ── Cards ── */
.card {
  position: relative;
  background: var(--surface-muted);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.card--embed {
  padding: 1.25rem;
  background: var(--surface);
}

.card--center {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
}

.card--success {
  background: linear-gradient(180deg, #fafcfb 0%, var(--success-bg) 100%);
}

.success-copy {
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
  text-wrap: balance;
}

.card--success h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.25;
}

.card--success .lead {
  margin: 0 0 0.875rem;
  color: var(--text-muted);
  max-width: none;
}

.success-copy__note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.success-copy__line {
  display: block;
}

.success-copy__note a {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.success-copy__note a:hover {
  text-decoration: underline;
}

.success-actions {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

.card--success p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* ── Forms ── */
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.field--full { grid-column: 1 / -1; }

.phone-field {
  display: flex;
  gap: 0.625rem;
  align-items: stretch;
}

.phone-field select {
  width: 10.5rem;
  flex-shrink: 0;
}

.phone-field input {
  flex: 1;
  min-width: 0;
}

.field-grid__country {
  align-self: start;
}

.field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.125rem;
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.8125rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(4, 71, 139, 0.1);
}

.actions {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.actions--stack { align-items: stretch; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  font: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.12s;
  min-width: 10rem;
}

.btn:hover { transform: translateY(-1px); }

.btn:active { transform: translateY(0); }

.btn.is-busy,
.btn:disabled {
  cursor: wait;
  transform: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  min-width: 14rem;
}

.btn-primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 2px 6px rgba(4, 71, 139, 0.25);
}

.btn-primary:hover {
  background: var(--brand-blue-dark);
  box-shadow: 0 4px 12px rgba(4, 71, 139, 0.3);
}

.btn-outline {
  background: var(--surface);
  color: var(--brand-blue);
  border: 1.5px solid var(--brand-blue);
  box-shadow: none;
  min-width: auto;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-outline:hover {
  background: rgba(4, 71, 139, 0.04);
  box-shadow: none;
}

.btn-fast-track {
  background: linear-gradient(180deg, #f5d061 0%, var(--brand-gold) 100%);
  color: #1f2937;
  border: 1px solid #c99812;
  box-shadow: 0 2px 6px rgba(212, 160, 23, 0.3);
}

.btn-fast-track:hover {
  background: var(--brand-gold-hover);
  color: #fff;
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin: 0.25rem 0;
  width: 100%;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.hint {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.alert {
  padding: 1rem 1.125rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.alert-error {
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid #fecaca;
}

.alert ul { margin: 0.5rem 0 0; padding-left: 1.2rem; }

/* ── Upload zones ── */
.upload-form__intro {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.upload-zone {
  position: relative;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  background: var(--surface);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.upload-zone:hover {
  border-color: var(--brand-blue);
  background: #fafcff;
}

.upload-zone.is-dragover {
  border-color: var(--brand-blue);
  background: #f0f6fc;
  box-shadow: 0 0 0 3px rgba(4, 71, 139, 0.08);
}

.upload-zone.has-file {
  border-style: solid;
  border-color: var(--success);
  background: var(--success-bg);
}

.upload-zone__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.875rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(4, 71, 139, 0.08);
  color: var(--brand-blue);
}

.upload-zone.has-file .upload-zone__icon {
  background: rgba(109, 152, 128, 0.15);
  color: var(--success-dark);
}

.upload-zone__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.upload-zone__title {
  margin: 0 0 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.upload-zone__desc {
  margin: 0 0 1.125rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 16rem;
  margin-inline: auto;
}

.upload-zone__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.upload-zone__trigger {
  pointer-events: none;
}

.upload-zone__filename {
  display: block;
  margin: 0.875rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  min-height: 1.125rem;
  word-break: break-all;
}

.upload-zone.has-file .upload-zone__filename {
  color: var(--success-dark);
}

.upload-zone__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.625rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: rgba(109, 152, 128, 0.15);
  color: var(--success-dark);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.upload-zone__badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.upload-zone__badge[hidden] { display: none; }

.upload-form__footer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.privacy-note {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}

.privacy-note:last-of-type { margin-bottom: 0; }

.privacy-note a {
  color: var(--brand-blue);
  font-weight: 500;
  text-decoration: none;
}

.privacy-note a:hover { text-decoration: underline; }

.fixture-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-top: 0.75rem;
}

.fixture-links a {
  font-size: 0.75rem;
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
}

.fixture-links a:hover { text-decoration: underline; }

/* ── Embeds & demo ── */
.embed-frame {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: var(--radius-sm);
  background: #fff;
}

.embed-frame--tall { min-height: 900px; height: 85vh; max-height: 1100px; }

/* Book page — keep Continue visible; calendar scrolls inside iframe */
.page-book {
  padding-bottom: 5.75rem;
  margin-inline: calc(-1 * clamp(0px, (920px - 100%) / 2, 80px));
  max-width: 920px;
}

.hero--compact {
  margin-bottom: 1rem;
}

.hero--compact .lead {
  margin-bottom: 0;
}

.book-layout__calendar {
  padding: 1rem;
}

.card--contact-summary {
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface-muted);
}

.contact-summary__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.contact-summary__label {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-summary__copy-all {
  flex-shrink: 0;
}

.contact-summary {
  display: grid;
  gap: 0.75rem 1rem;
  margin: 0;
}

@media (min-width: 640px) {
  .contact-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-summary__row {
  margin: 0;
}

.contact-summary dt {
  margin: 0 0 0.125rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.contact-summary dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.contact-summary dd span {
  overflow-wrap: anywhere;
}

.contact-summary__copy {
  flex-shrink: 0;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-blue);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.contact-summary__copy:hover {
  border-color: var(--brand-blue);
}

.contact-summary__hint {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.btn-outline {
  background: #fff;
  color: var(--brand-blue);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--brand-blue);
  background: #fff;
}

.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
}

.book-layout__fallback {
  margin: 0.75rem 0 0;
  text-align: center;
}

.embed-frame--bookings {
  display: block;
  width: 100%;
  min-height: 360px;
  height: min(520px, calc(100vh - 19rem));
  max-height: 560px;
  border: 0;
  border-radius: var(--radius-sm);
  background: #fff;
}

.book-continue-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.12);
  padding: 0.875rem 0 calc(0.875rem + env(safe-area-inset-bottom, 0px));
}

.book-continue-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.book-continue-bar__text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.book-continue-bar__btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .page-book {
    padding-bottom: 6.5rem;
  }

  .embed-frame--bookings {
    height: min(440px, calc(100vh - 17rem));
  }

  .book-continue-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .book-continue-bar__btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

.card--errors {
  border-color: var(--danger, #c0392b);
  background: #fef5f5;
}

.error-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--danger, #c0392b);
}

.card--booking-api {
  padding: 0;
  overflow: hidden;
}

.card--booking-api .booking-api-form {
  padding: 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.booking-calendar {
  padding: 1.5rem 1.25rem 1.75rem;
  background: linear-gradient(180deg, #fafbfd 0%, var(--surface) 100%);
  border-right: 1px solid var(--border);
}

.booking-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.booking-calendar__month {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  flex: 1;
}

.booking-calendar__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand-blue);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
  box-shadow: var(--shadow-sm);
}

.booking-calendar__nav:hover:not(:disabled) {
  border-color: var(--brand-blue);
  background: var(--surface-muted);
}

.booking-calendar__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.booking-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.booking-calendar__weekdays span {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.booking-calendar__day {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  min-height: 2.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.booking-calendar__day:hover:not(:disabled) {
  background: rgba(4, 71, 139, 0.08);
  border-color: rgba(4, 71, 139, 0.15);
}

.booking-calendar__day.is-outside {
  color: #c5ced8;
}

.booking-calendar__day.is-disabled {
  color: #d1d9e0;
  cursor: not-allowed;
}

.booking-calendar__day.is-disabled.is-weekend {
  color: #d8dee6;
  text-decoration: line-through;
  text-decoration-color: rgba(148, 163, 184, 0.7);
}

.booking-calendar__day.is-today:not(.is-selected) {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  font-weight: 600;
}

.booking-calendar__day.is-selected {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(4, 71, 139, 0.28);
}

.booking-times {
  padding: 1.5rem 1.25rem 1.75rem;
  background: var(--surface);
  min-height: 18rem;
}

.booking-times__header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.booking-times__title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.booking-times__date {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.booking-times__alert {
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(185, 28, 28, 0.35);
  background: var(--error-bg);
}

.booking-times__alert p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--error);
}

.booking-times__alert p + p {
  margin-top: 0.35rem;
}

.booking-slots__loading {
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.booking-slots__spinner {
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid var(--border);
  border-top-color: var(--brand-blue);
  border-radius: 50%;
  animation: booking-spin 0.7s linear infinite;
}

@keyframes booking-spin {
  to { transform: rotate(360deg); }
}

.booking-slots__status:not(.is-alert) {
  margin: 0;
  padding: 1rem 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.booking-slots__status.is-alert {
  margin-bottom: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(185, 28, 28, 0.35);
  background: var(--error-bg);
  color: var(--error);
  font-size: 0.875rem;
  line-height: 1.5;
}

.booking-slots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.75rem, 1fr));
  gap: 0.625rem;
  max-height: 16rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.booking-slot {
  appearance: none;
  touch-action: manipulation;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  padding: 0.75rem 0.5rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}

.booking-slot:hover {
  border-color: var(--brand-blue);
  background: rgba(4, 71, 139, 0.05);
}

.booking-slot.is-selected {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(4, 71, 139, 0.22);
}

.booking-slots__loading,
.booking-slots__empty,
.booking-slots__status,
.booking-slots__grid,
.booking-times__hint,
.booking-confirm,
.booking-confirm-bar {
  display: none;
}

.booking-slots__loading:not([hidden]) {
  display: flex;
}

.booking-slots__empty:not([hidden]) {
  display: flex;
}

.booking-slots__status:not([hidden]) {
  display: block;
}

.booking-slots__grid:not([hidden]) {
  display: grid;
}

.booking-times__hint:not([hidden]) {
  display: block;
}

.booking-confirm:not([hidden]) {
  display: flex;
}

.booking-confirm-bar:not([hidden]) {
  display: block;
}

.booking-slots__empty {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  min-height: 12rem;
  color: var(--text-muted);
}

.booking-slots__empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.25rem;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text-muted);
}

.booking-slots__empty-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.booking-slots__empty-text {
  margin: 0;
  max-width: 16rem;
  font-size: 0.875rem;
  line-height: 1.55;
}

.booking-times__hint {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.booking-confirm {
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.booking-confirm__selection {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.booking-confirm__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking-confirm__value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}

.booking-confirm__btn {
  width: 100%;
  touch-action: manipulation;
}

.booking-confirm-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(8px);
}

.booking-confirm-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  width: min(920px, calc(100% - 0.5rem));
  margin-inline: auto;
}

.booking-confirm-bar__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.booking-confirm-bar__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking-confirm-bar__text strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-confirm-bar__btn {
  flex-shrink: 0;
  min-width: 7.5rem;
  touch-action: manipulation;
}

.booking-confirm-bar:not(.is-ready) .booking-confirm-bar__btn,
.booking-confirm:not([hidden]) .booking-confirm__btn:disabled {
  pointer-events: none;
}

.page-book.has-booking-selection {
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 767px) {
  .booking-confirm-bar {
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  }

  .booking-confirm-bar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
    width: 100%;
  }

  .booking-confirm-bar__text {
    gap: 0.2rem;
  }

  .booking-confirm-bar__text strong {
    font-size: 1.0625rem;
    line-height: 1.35;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .booking-confirm-bar__btn {
    width: 100%;
    min-width: 0;
    min-height: 3rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .page-book.has-booking-selection {
    padding-bottom: calc(9.5rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 768px) {
  .booking-confirm-bar {
    display: none !important;
  }

  .page-book.has-booking-selection {
    padding-bottom: 5.75rem;
  }

  .booking-confirm {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem 1.125rem;
    margin-top: 1rem;
    background: var(--success-bg);
    border: 1px solid rgba(109, 152, 128, 0.35);
    border-radius: var(--radius-sm);
  }

  .booking-confirm__btn {
    width: auto;
    min-width: 12rem;
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .booking-confirm {
    display: none !important;
  }
}

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

  .booking-calendar {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .booking-times {
    min-height: auto;
    padding-bottom: 0.5rem;
  }

  .booking-slots__grid {
    max-height: none;
  }
}

.booking-slots {
  margin-top: 0;
}

.setup-steps {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.setup-steps code {
  font-size: 0.8125rem;
}

@media (max-width: 767px) {
  .page-book {
    margin-inline: 0;
    max-width: none;
  }

  .page-book[data-api-booking] {
    padding-bottom: 2rem;
  }
}

.demo-calendar {
  padding: 2rem 1.5rem;
  background: var(--surface-muted);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-strong);
  text-align: center;
}

.demo-calendar p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.demo-calendar p:last-child { margin-bottom: 0; }

.demo-calendar code {
  font-size: 0.8125rem;
  background: rgba(4, 71, 139, 0.06);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
}

.card--demo-booking .actions { margin-top: 1.25rem; }

/* ── Success icon ── */
.success-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
}

.success-icon--large {
  width: 4.5rem;
  height: 4.5rem;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* ── Confirmed + add to calendar ── */
.confirmed-page {
  max-width: 640px;
  margin-inline: auto;
}

.card--confirmed-hero {
  text-align: center;
  padding: 2rem 1.5rem 1.75rem;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #f2f7f4 0%, var(--surface) 100%);
  border: 1px solid rgba(109, 152, 128, 0.25);
}

.confirmed-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--success);
  color: #fff;
  box-shadow: 0 8px 24px rgba(109, 152, 128, 0.35);
}

.card--confirmed-hero h1 {
  margin: 0 0 0.5rem;
  font-size: 1.625rem;
  color: var(--text);
}

.card--confirmed-hero .lead {
  margin: 0;
  max-width: 28rem;
  margin-inline: auto;
}

.card--calendar-add {
  padding: 0;
  overflow: hidden;
  margin-bottom: 1rem;
}

.calendar-add__appointment {
  padding: 1.5rem 1.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(4, 71, 139, 0.06) 0%, rgba(4, 71, 139, 0.02) 100%);
}

.calendar-add__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.calendar-add__datetime {
  margin: 0 0 0.25rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.calendar-add__time {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.calendar-add__meta,
.calendar-add__ref {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.calendar-add__ref {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
}

.calendar-add__divider {
  height: 1px;
  background: var(--border);
}

.calendar-add__actions {
  padding: 1.25rem 1.5rem 1.5rem;
}

.calendar-add__label {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar-add__grid {
  display: grid;
  gap: 0.625rem;
}

.calendar-add__btn {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  box-shadow: var(--shadow-sm);
}

.calendar-add__btn:hover {
  border-color: var(--brand-blue);
  box-shadow: 0 4px 16px rgba(4, 71, 139, 0.1);
  transform: translateY(-1px);
}

.calendar-add__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--surface-muted);
}

.calendar-add__btn--google .calendar-add__icon { background: #f8faff; }
.calendar-add__btn--apple .calendar-add__icon { color: var(--text); }
.calendar-add__btn--outlook .calendar-add__icon { background: #f0f7ff; }

.calendar-add__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.calendar-add__text strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.calendar-add__text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.card--confirmed-note {
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
}

.card--confirmed-note p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.confirmed-page__continue {
  text-align: center;
  padding-bottom: 1rem;
}

.confirmed-page__continue .btn-lg {
  min-width: min(100%, 18rem);
}

@media (max-width: 640px) {
  .field-grid,
  .upload-grid { grid-template-columns: 1fr; }

  .phone-field {
    flex-direction: column;
  }

  .phone-field select {
    width: 100%;
  }

  .header-phone { font-size: 0.8125rem; }

  .btn-lg { width: 100%; max-width: 20rem; }

  .upload-zone { padding: 1.5rem 1rem; }

  .card--center {
    padding: 1.75rem 1.125rem;
  }

  .success-actions .btn {
    width: 100%;
    max-width: 20rem;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-bottom: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(1.375rem, 6vw, 1.75rem);
  }

  .lead {
    font-size: 0.9375rem;
    max-width: none;
    padding-inline: 0.25rem;
  }

  .card {
    padding: 1.25rem 1rem;
  }

  .card--center {
    padding: 1.5rem 1rem;
  }

  .success-copy {
    max-width: none;
  }

  .success-copy__note {
    font-size: 0.875rem;
  }

  .success-copy__note a {
    white-space: normal;
  }

  .btn {
    width: 100%;
    max-width: 20rem;
    min-height: 2.75rem;
  }

  .actions .btn,
  .success-actions .btn {
    width: 100%;
    max-width: none;
  }

  .site-footer {
    padding: 1rem 0 1.5rem;
    font-size: 0.75rem;
  }
}

/* ── 3-step enquiry form ── */
.form-stepper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.form-stepper__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  min-width: 0;
}

.form-stepper__item span {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  border: 2px solid var(--border-strong);
  flex-shrink: 0;
}

.form-stepper__item.is-active {
  color: var(--brand-blue);
  font-weight: 600;
}

.form-stepper__item.is-active span {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

.form-stepper__item.is-done span {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.form-step__title {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-blue);
  line-height: 1.35;
}

.form-step:not([hidden]) {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-step[hidden] {
  display: none !important;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.form-submit {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.form-submit[hidden],
.form-nav[hidden] {
  display: none !important;
}

.form-submit__nav {
  margin-bottom: 1.25rem;
}

.zoho-wait {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
}

.zoho-wait[hidden] {
  display: none !important;
}

body.is-zoho-wait {
  overflow: hidden;
}

.zoho-wait__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  max-width: min(22rem, 90vw);
  text-align: center;
}

.zoho-wait__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--brand-blue);
  border-radius: 50%;
  animation: booking-spin 0.7s linear infinite;
}

.zoho-wait__message {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}

.field-error {
  margin: 0.375rem 0 0;
  font-size: 0.8125rem;
  color: var(--error);
}

.field--checkbox {
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--brand-blue);
}

.checkbox-label a {
  color: var(--brand-blue);
  font-weight: 500;
}

@media (max-width: 640px) {
  .form-stepper__item {
    flex-direction: column;
    font-size: 0.6875rem;
    gap: 0.375rem;
  }
}
