  :root {
    --green: #0F2E1F;
    --green-deep: #081a11;
    --green-soft: #1a4a33;
    --red: #E63946;
    --red-deep: #b8222e;
    --sand: #EEF0EC;
    --sand-warm: #F5F2EB;
    --cream: #FAF8F3;
    --ink: #1a1a1a;
    --muted: #6b6b6b;
    --line: rgba(15, 46, 31, 0.12);
    --line-strong: rgba(15, 46, 31, 0.25);

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
  }

  .bo-root {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.5;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .bo-root *, .bo-root *::before, .bo-root *::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }

  /* ======== THANK YOU PAGE ======== */
  .bo-root .thankyou-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
  }

  .bo-root .hero-image {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #4a3a2a, #2a1f15);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bo-root .hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 25% 30%, rgba(230, 57, 70, 0.15), transparent 50%),
      radial-gradient(circle at 75% 70%, rgba(15, 46, 31, 0.3), transparent 60%);
  }

  .bo-root .hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 40px 20px;
    max-width: 640px;
  }

  .bo-root .success-check {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: white;
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
  }

  .bo-root .hero-content h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }

  .bo-root .hero-content .lead {
    font-size: 17px;
    margin-bottom: 6px;
    font-weight: 500;
  }

  .bo-root .hero-content .sub {
    font-size: 15px;
    opacity: 0.85;
  }

  /* Stacked layout: Book-online hero CTA stacks ABOVE "What happens next" */
  .bo-root .next-steps {
    max-width: 780px;
    margin: 0 auto;
  }

  .bo-root .next-steps h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 32px;
    color: var(--green);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    font-weight: 700;
  }

  .bo-root .step-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
  }

  .bo-root .step-num-circle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 14px;
  }

  .bo-root .step-content h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    color: var(--green);
    margin-bottom: 4px;
    font-weight: 600;
  }

  .bo-root .step-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
  }

  /* The CTA banner — full-width, hero of the page */
  .bo-root .book-online-card {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: white;
    padding: 40px 48px;
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
    margin-bottom: 56px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .bo-root .book-online-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.25), transparent 70%);
    pointer-events: none;
  }

  .bo-root .book-online-card::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08), transparent 70%);
    pointer-events: none;
  }

  .bo-root .book-online-content {
    position: relative;
  }

  .bo-root .book-online-cta-wrap {
    position: relative;
  }

  .bo-root .discount-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: var(--r-sm);
    margin-bottom: 18px;
  }

  .bo-root .book-online-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }

  .bo-root .book-online-card h3 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #FFB3B8;
    font-weight: 400;
  }

  .bo-root .book-online-card > .book-online-content > p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.55;
    max-width: 520px;
  }

  .bo-root .book-online-card ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
    margin: 0;
    padding: 0;
  }

  .bo-root .book-online-card ul li {
    font-size: 13px;
    padding-left: 22px;
    position: relative;
    opacity: 0.9;
    line-height: 1.5;
  }

  .bo-root .book-online-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFB3B8;
    font-weight: 700;
  }

  .bo-root .btn-book-online {
    display: block;
    width: 100%;
    background: var(--red);
    color: white;
    border: none;
    padding: 20px 24px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
    cursor: pointer;
    border-radius: var(--r-md);
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.35);
  }

  .bo-root .btn-book-online:hover {
    background: var(--red-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(230, 57, 70, 0.45);
  }

  .bo-root .book-online-card .or-wait {
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
    margin-top: 14px;
  }

  /* ======== BOOKING MODAL ======== */
  .bo-root .modal-overlay {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: fixed;
    inset: 0;
    background: rgba(15, 46, 31, 0.65);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 16px;
    backdrop-filter: blur(4px);
    animation: bo-fadeIn 0.25s ease;
  }

  @keyframes bo-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .bo-root .modal {
    background: white;
    border-radius: var(--r-xl);
    max-width: 960px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    animation: bo-slideUp 0.35s ease;
  }

  @keyframes bo-slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .bo-root .modal-header {
    background: var(--green);
    color: white;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .bo-root .modal-header h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .bo-root .modal-header h2 .discount-inline {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 4px 10px;
    border-radius: var(--r-sm);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: 8px;
    vertical-align: middle;
  }

  .bo-root .modal-close {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
  }

  .bo-root .modal-close:hover {
    background: rgba(255,255,255,0.15);
  }

  /* Stepper */
  .bo-root .mini-stepper {
    display: flex;
    background: var(--sand-warm);
    padding: 16px 32px;
    gap: 8px;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .bo-root .mini-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    flex: 1;
  }

  .bo-root .mini-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
  }

  .bo-root .mini-step.active .mini-step-num {
    background: var(--green);
    color: white;
    border-color: var(--green);
  }

  .bo-root .mini-step.done .mini-step-num {
    background: var(--red);
    color: white;
    border-color: var(--red);
  }

  .bo-root .mini-step.active,
  .bo-root .mini-step.done { color: var(--green); }

  .bo-root .mini-step-line {
    width: 100%;
    height: 1px;
    background: var(--line-strong);
  }

  /* Modal body */
  .bo-root .modal-body {
    padding: 32px;
    max-height: 70vh;
    overflow-y: auto;
  }

  .bo-root .panel { display: none; }
  .bo-root .panel.active {
    display: block;
    animation: bo-panelFade 0.25s ease;
  }

  @keyframes bo-panelFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .bo-root .panel-header {
    margin-bottom: 24px;
  }

  .bo-root .panel-header h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px;
    color: var(--green);
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    font-weight: 700;
  }

  .bo-root .panel-header p {
    font-size: 14px;
    color: var(--muted);
  }

  /* Tiles */
  .bo-root .tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 28px;
  }

  .bo-root .tile {
    padding: 20px 14px;
    border: 2px solid var(--line);
    background: white;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s ease;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
    border-radius: var(--r-md);
  }

  .bo-root .tile:hover {
    border-color: var(--green);
    transform: translateY(-1px);
  }

  .bo-root .tile.selected {
    background: var(--green);
    color: white;
    border-color: var(--green);
  }

  .bo-root .tile strong {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .bo-root .tile small {
    display: block;
    font-size: 12px;
    opacity: 0.75;
    margin-top: 4px;
  }

  /* Calendar layout */
  .bo-root .calendar-wrap {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 28px;
    align-items: start;
  }

  .bo-root .cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .bo-root .cal-month {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
  }

  .bo-root .cal-nav {
    display: flex;
    gap: 6px;
  }

  .bo-root .cal-nav button {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line-strong);
    background: white;
    cursor: pointer;
    font-size: 16px;
    color: var(--green);
    border-radius: var(--r-sm);
    transition: all 0.15s ease;
  }

  .bo-root .cal-nav button:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
  }

  .bo-root .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }

  .bo-root .cal-dow {
    padding: 8px 4px;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .bo-root .cal-day {
    background: white;
    border: 1px solid var(--line);
    aspect-ratio: 1;
    padding: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.12s ease;
    position: relative;
    border-radius: var(--r-sm);
  }

  .bo-root .cal-day:hover:not(.disabled):not(.empty) {
    background: var(--sand-warm);
    border-color: var(--green);
  }

  .bo-root .cal-day.empty {
    cursor: default;
    background: transparent;
    border: none;
  }

  .bo-root .cal-day.disabled {
    cursor: not-allowed;
    color: #ccc;
    background: #fafafa;
  }

  .bo-root .cal-day.disabled .cal-price {
    display: none;
  }

  .bo-root .cal-day.selected {
    background: var(--green);
    color: white;
    border-color: var(--green);
  }

  .bo-root .cal-day.selected .cal-price {
    color: rgba(255,255,255,0.8);
  }

  .bo-root .cal-day .cal-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
  }

  .bo-root .cal-day .cal-price {
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
    margin-top: 3px;
    line-height: 1;
  }

  .bo-root .cal-day.surge::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
  }

  .bo-root .cal-legend {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-size: 11px;
    color: var(--muted);
    flex-wrap: wrap;
  }

  .bo-root .cal-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .bo-root .cal-legend-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
  }

  .bo-root .legend-standard {
    background: white;
    border: 1px solid var(--line-strong);
  }
  .bo-root .legend-surge { background: var(--red); }

  /* Arrival window slots */
  .bo-root .time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 10px;
  }

  .bo-root .time-slot {
    padding: 10px 6px;
    border: 1px solid var(--line-strong);
    background: white;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.15s ease;
    border-radius: var(--r-sm);
  }

  .bo-root .time-slot:hover {
    border-color: var(--green);
  }

  .bo-root .time-slot.selected {
    background: var(--green);
    color: white;
    border-color: var(--green);
  }

  .bo-root .time-slot.unavailable {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
    background: #fafafa;
  }

  /* Price panel */
  .bo-root .price-panel {
    background: var(--green);
    color: white;
    padding: 24px;
    border-radius: var(--r-lg);
    position: sticky;
    top: 20px;
  }

  .bo-root .price-panel h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
  }

  .bo-root .price-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .bo-root .price-line.discount {
    color: #FFB3B8;
  }

  .bo-root .price-line .muted {
    opacity: 0.65;
    font-size: 12px;
  }

  .bo-root .price-highlight {
    background: rgba(255,255,255,0.08);
    padding: 14px 16px;
    border-radius: var(--r-md);
    margin-top: 16px;
    text-align: center;
  }

  .bo-root .price-highlight .label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
  }

  .bo-root .price-highlight .rate {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .bo-root .price-highlight .rate sup {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
    vertical-align: top;
    margin-left: 3px;
  }

  .bo-root .price-highlight .sub-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
  }

  .bo-root .min-hours-note {
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.4);
    padding: 12px 14px;
    border-radius: var(--r-sm);
    font-size: 12px;
    margin-top: 14px;
    line-height: 1.5;
  }

  .bo-root .min-hours-note strong {
    color: #FFB3B8;
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .bo-root .deposit-row {
    background: var(--red);
    padding: 12px 16px;
    margin-top: 14px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--r-sm);
  }

  .bo-root .deposit-row strong {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
  }

  /* Actions */
  .bo-root .actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .bo-root .btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    letter-spacing: 0.02em;
    border-radius: var(--r-md);
  }

  .bo-root .btn-primary {
    background: var(--green);
    color: white;
  }

  .bo-root .btn-primary:hover {
    background: var(--green-deep);
  }

  .bo-root .btn-secondary {
    background: transparent;
    color: var(--green);
    border: 1px solid var(--line-strong);
  }

  .bo-root .btn-secondary:hover {
    border-color: var(--green);
    background: var(--sand-warm);
  }

  .bo-root .btn-pay {
    background: var(--red);
    color: white;
    font-size: 16px;
    padding: 18px 36px;
    width: 100%;
    border-radius: var(--r-md);
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
  }

  .bo-root .btn-pay:hover {
    background: var(--red-deep);
  }

  .bo-root .btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  /* Review */
  .bo-root .review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
  }

  .bo-root .review-block {
    padding: 16px 18px;
    background: var(--sand-warm);
    border-radius: var(--r-md);
  }

  .bo-root .review-block h5 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
  }

  .bo-root .review-block p {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
  }

  .bo-root .review-block p strong {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
  }

  .bo-root .pricing-summary {
    background: var(--sand-warm);
    padding: 20px;
    border-radius: var(--r-md);
    margin-bottom: 24px;
  }

  .bo-root .pricing-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
  }

  .bo-root .pricing-summary-row.discount {
    color: var(--red);
    font-weight: 600;
  }

  .bo-root .pricing-summary-row.total {
    border-top: 2px solid var(--green);
    margin-top: 8px;
    padding-top: 12px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
  }

  /* Airbnb-style payment option radio cards */
  .bo-root .payment-options {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
  }

  .bo-root .pay-option {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border: 2px solid var(--line);
    background: white;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .bo-root .pay-option:hover {
    border-color: var(--line-strong);
  }

  .bo-root .pay-option.selected {
    border-color: var(--green);
    background: rgba(15, 46, 31, 0.02);
  }

  .bo-root .pay-option .radio-dot {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--line-strong);
    margin-top: 2px;
    transition: all 0.15s ease;
    position: relative;
  }

  .bo-root .pay-option.selected .radio-dot {
    border-color: var(--green);
  }

  .bo-root .pay-option.selected .radio-dot::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
  }

  .bo-root .pay-option-body {
    flex: 1;
  }

  .bo-root .pay-option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
    flex-wrap: wrap;
  }

  .bo-root .pay-option-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
  }

  .bo-root .pay-option-amount {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
  }

  .bo-root .pay-option-amount .struck {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 500;
    margin-right: 6px;
  }

  .bo-root .pay-option-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }

  .bo-root .pay-option-savings {
    display: inline-block;
    background: var(--red);
    color: white;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--r-sm);
    margin-left: 6px;
    vertical-align: middle;
  }

  .bo-root .pay-option-note {
    margin-top: 8px;
    font-size: 12px;
    color: var(--muted);
    font-style: italic;
  }

  /* Card form */
  .bo-root .payment-shell {
    padding: 20px;
    border: 1px solid var(--line-strong);
    background: white;
    border-radius: var(--r-md);
  }

  .bo-root .payment-shell h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 6px;
  }

  .bo-root .payment-shell .sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px;
  }

  .bo-root .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }

  .bo-root label {
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.02em;
  }

  .bo-root input[type="text"] {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    background: white;
    color: var(--ink);
    border-radius: var(--r-sm);
    width: 100%;
    transition: border-color 0.15s ease;
  }

  .bo-root input[type="text"]:focus {
    outline: none;
    border-color: var(--green);
  }

  .bo-root .card-input-row {
    display: grid;
    grid-template-columns: 1fr 100px 100px;
    gap: 10px;
  }

  /* Success */
  .bo-root .booking-success {
    text-align: center;
    padding: 40px 20px;
  }

  .bo-root .booking-success-check {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
  }

  .bo-root .booking-success h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 32px;
    color: var(--green);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }

  .bo-root .booking-success h3 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--red);
    font-weight: 400;
  }

  .bo-root .booking-success .msg {
    color: var(--muted);
    max-width: 440px;
    margin: 0 auto 20px;
    font-size: 14px;
  }

  .bo-root .confirmation-code {
    display: inline-block;
    padding: 10px 18px;
    background: var(--sand-warm);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    color: var(--green);
    font-size: 13px;
    letter-spacing: 0.08em;
    border-radius: var(--r-sm);
  }

  /* ==================== RESPONSIVE ==================== */

  /* Tablet (≤880px) */
  @media (max-width: 880px) {
    .bo-root .thankyou-wrap { padding: 24px 16px 60px; }

    .bo-root .hero-image {
      min-height: 300px;
      margin-bottom: 36px;
      border-radius: var(--r-lg);
    }

    .bo-root .hero-content { padding: 32px 20px; }

    .bo-root .book-online-card {
      grid-template-columns: 1fr;
      padding: 32px 28px;
      gap: 24px;
      border-radius: var(--r-lg);
      margin-bottom: 44px;
    }
    .bo-root .book-online-card h3 { font-size: 26px; }
    .bo-root .book-online-card ul { grid-template-columns: repeat(2, 1fr); }

    .bo-root .next-steps h2 { font-size: 26px; margin-bottom: 20px; }

    /* Modal adjustments */
    .bo-root .modal-overlay { padding: 20px 12px; }
    .bo-root .modal {
      border-radius: var(--r-lg);
      max-width: 100%;
    }
    .bo-root .modal-header { padding: 18px 20px; }
    .bo-root .modal-header h2 { font-size: 18px; }
    .bo-root .modal-header h2 .discount-inline {
      display: block;
      margin-left: 0;
      margin-top: 6px;
      width: fit-content;
    }
    .bo-root .modal-body {
      padding: 24px 20px;
      max-height: calc(100vh - 180px);
      max-height: calc(100dvh - 180px);
    }
    .bo-root .mini-stepper { padding: 12px 20px; gap: 4px; }
    .bo-root .mini-step-label { display: none; }

    /* Calendar stacks */
    .bo-root .calendar-wrap { grid-template-columns: 1fr; gap: 24px; }
    .bo-root .price-panel {
      position: static;
      order: -1;
    }

    /* Review & forms */
    .bo-root .review-grid { grid-template-columns: 1fr; gap: 10px; }
    .bo-root .card-input-row { grid-template-columns: 1fr 1fr; gap: 10px; }
    .bo-root .card-input-row .field:first-child { grid-column: 1 / -1; }

    .bo-root .tile-grid {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 8px;
    }
    .bo-root .tile { padding: 16px 10px; }
    .bo-root .tile strong { font-size: 17px; }

    /* Panel headers tighter */
    .bo-root .panel-header h3 { font-size: 19px; }

    /* Actions */
    .bo-root .actions { margin-top: 24px; padding-top: 20px; }
    .bo-root .btn { padding: 13px 20px; font-size: 13px; }
  }

  /* Mobile (≤600px) */
  @media (max-width: 600px) {
    .bo-root { font-size: 14px; }
    .bo-root .thankyou-wrap { padding: 16px 12px 48px; }

    .bo-root .hero-image {
      min-height: 260px;
      margin-bottom: 28px;
      border-radius: var(--r-md);
    }
    .bo-root .hero-content { padding: 24px 16px; }
    .bo-root .hero-content h1 { font-size: 28px; }
    .bo-root .hero-content .lead { font-size: 15px; }
    .bo-root .hero-content .sub { font-size: 13px; }
    .bo-root .success-check { width: 48px; height: 48px; font-size: 22px; margin-bottom: 14px; }

    /* Book online card — keep it punchy */
    .bo-root .book-online-card {
      padding: 28px 22px;
      margin-bottom: 36px;
      gap: 20px;
    }
    .bo-root .book-online-card::before { width: 180px; height: 180px; top: -60px; right: -60px; }
    .bo-root .book-online-card::after { display: none; }
    .bo-root .book-online-card h3 { font-size: 22px; line-height: 1.2; }
    .bo-root .book-online-card > .book-online-content > p { font-size: 14px; margin-bottom: 16px; }
    .bo-root .book-online-card ul { grid-template-columns: 1fr; gap: 6px; }
    .bo-root .book-online-card ul li { font-size: 13px; padding-left: 20px; }
    .bo-root .discount-badge {
      font-size: 10px;
      padding: 6px 12px;
      margin-bottom: 14px;
    }
    .bo-root .btn-book-online {
      padding: 16px 20px;
      font-size: 15px;
    }

    /* What happens next */
    .bo-root .next-steps h2 { font-size: 22px; }
    .bo-root .step-item { gap: 12px; margin-bottom: 16px; }
    .bo-root .step-content h3 { font-size: 15px; }
    .bo-root .step-content p { font-size: 13px; }
    .bo-root .step-num-circle { width: 28px; height: 28px; font-size: 12px; }

    /* Modal — full screen on mobile, scroll on overlay */
    .bo-root .modal-overlay {
      padding: 0;
      align-items: stretch;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
    }
    .bo-root .modal {
      border-radius: 0;
      min-height: 100vh;
      min-height: 100dvh;
      max-width: 100%;
      display: flex;
      flex-direction: column;
    }
    .bo-root .modal-body {
      padding: 20px 16px;
      max-height: none;
      flex: 1;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
    }
    .bo-root .modal-header { padding: 14px 16px; border-radius: 0; }
    .bo-root .modal-header h2 { font-size: 16px; }
    .bo-root .modal-header h2 .discount-inline { font-size: 10px; padding: 3px 8px; }
    .bo-root .mini-stepper { padding: 10px 16px; }
    .bo-root .mini-step-num { width: 22px; height: 22px; font-size: 10px; }
    .bo-root .modal-close { width: 32px; height: 32px; font-size: 16px; }

    /* Panel header */
    .bo-root .panel-header { margin-bottom: 18px; }
    .bo-root .panel-header h3 { font-size: 18px; margin-bottom: 4px; }
    .bo-root .panel-header p { font-size: 13px; }

    /* Tiles */
    .bo-root .tile-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .bo-root .tile { padding: 14px 8px; }
    .bo-root .tile strong { font-size: 14px; }
    .bo-root .tile small { font-size: 11px; }

    /* Calendar */
    .bo-root .cal-header { margin-bottom: 12px; }
    .bo-root .cal-month { font-size: 16px; }
    .bo-root .cal-nav button { width: 32px; height: 32px; font-size: 14px; }
    .bo-root .cal-grid { gap: 3px; }
    .bo-root .cal-dow { padding: 6px 2px; font-size: 9px; }
    .bo-root .cal-day { padding: 4px 2px; }
    .bo-root .cal-day .cal-num { font-size: 13px; }
    .bo-root .cal-day .cal-price { font-size: 9px; margin-top: 2px; }
    .bo-root .cal-day.surge::after { width: 5px; height: 5px; top: 3px; right: 3px; }
    .bo-root .cal-legend { gap: 12px; margin-top: 10px; font-size: 10px; }

    /* Time slots — 2 columns */
    .bo-root .time-slots { grid-template-columns: repeat(2, 1fr); gap: 5px; }
    .bo-root .time-slot { padding: 10px 4px; font-size: 11px; }

    /* Price panel */
    .bo-root .price-panel { padding: 20px 18px; border-radius: var(--r-md); }
    .bo-root .price-panel h4 { font-size: 11px; margin-bottom: 12px; }
    .bo-root .price-highlight { padding: 12px 14px; }
    .bo-root .price-highlight .rate { font-size: 30px; }
    .bo-root .price-highlight .rate sup { font-size: 12px; }
    .bo-root .min-hours-note { padding: 10px 12px; font-size: 11px; }

    /* Pay options */
    .bo-root .payment-options { gap: 10px; margin-bottom: 18px; }
    .bo-root .pay-option { padding: 14px 14px; gap: 11px; }
    .bo-root .pay-option .radio-dot { width: 18px; height: 18px; }
    .bo-root .pay-option.selected .radio-dot::after { top: 2px; left: 2px; width: 10px; height: 10px; }
    .bo-root .pay-option-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      margin-bottom: 6px;
    }
    .bo-root .pay-option-title { font-size: 14px; }
    .bo-root .pay-option-amount { font-size: 16px; }
    .bo-root .pay-option-amount .struck { font-size: 12px; }
    .bo-root .pay-option-desc { font-size: 12px; }
    .bo-root .pay-option-note { font-size: 11px; }
    .bo-root .pay-option-savings { font-size: 9px; padding: 2px 6px; }

    /* Review */
    .bo-root .review-block { padding: 14px 16px; }
    .bo-root .review-block p { font-size: 13px; }

    /* Pricing summary */
    .bo-root .pricing-summary { padding: 16px; }
    .bo-root .pricing-summary-row { font-size: 13px; }
    .bo-root .pricing-summary-row.total { font-size: 15px; }

    /* Payment shell */
    .bo-root .payment-shell { padding: 16px; }
    .bo-root input[type="text"] { font-size: 16px; padding: 11px 13px; } /* 16px prevents iOS zoom */
    .bo-root .btn-pay { padding: 16px; font-size: 15px; }

    /* Actions — stack vertically on small mobile */
    .bo-root .actions { flex-direction: column-reverse; gap: 10px; }
    .bo-root .actions > div { display: none; }
    .bo-root .btn { width: 100%; padding: 14px 20px; }

    /* Booking success */
    .bo-root .booking-success { padding: 32px 16px; }
    .bo-root .booking-success h3 { font-size: 26px; }
    .bo-root .booking-success-check { width: 60px; height: 60px; font-size: 26px; }
    .bo-root .booking-success .msg { font-size: 13px; }
  }

  /* Very small mobile (≤380px) */
  @media (max-width: 380px) {
    .bo-root .hero-content h1 { font-size: 24px; }
    .bo-root .book-online-card h3 { font-size: 20px; }

    .bo-root .tile-grid { grid-template-columns: repeat(2, 1fr); }

    .bo-root .cal-day .cal-price { display: none; }
    .bo-root .cal-day { padding: 2px; }

    .bo-root .time-slots { grid-template-columns: 1fr; }

    .bo-root .price-highlight .rate { font-size: 26px; }
    .bo-root .pay-option-title { font-size: 13px; }
    .bo-root .pay-option { padding: 14px 12px; }
  }
