.square-booking-button {
  white-space: nowrap;
}

.square-booking-section {
  padding: clamp(2.25rem, 5vw, 4rem) 0;
  background: #f4c400;
  color: #101210;
  border-block: 1px solid rgba(16, 18, 16, 0.2);
}

.square-booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.square-booking-copy .eyebrow {
  margin-bottom: 0.7rem;
  color: #101210;
}

.square-booking-copy h2 {
  max-width: 18ch;
  margin: 0;
  color: #101210;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.square-booking-copy > p:not(.eyebrow) {
  max-width: 66ch;
  margin: 1rem 0 0;
  color: rgba(16, 18, 16, 0.82);
  font-size: 1rem;
  line-height: 1.65;
}

.square-booking-actions {
  display: grid;
  min-width: min(100%, 18rem);
  gap: 0.7rem;
}

.square-booking-section .square-booking-actions .button {
  justify-content: center;
  background: #101210;
  color: #f4c400;
  border-color: #101210;
  box-shadow: none;
}

.square-booking-section .square-booking-actions .button:hover {
  background: #252825;
  color: #ffe15a;
}

.square-booking-section .square-booking-actions .button.secondary {
  background: transparent;
  color: #101210;
  border-color: rgba(16, 18, 16, 0.55);
}

.square-booking-section .square-booking-actions .button.secondary:hover {
  background: rgba(16, 18, 16, 0.08);
  color: #101210;
}

.square-booking-trust {
  margin: 0;
  text-align: center;
  color: rgba(16, 18, 16, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 760px) {
  .square-booking-panel {
    grid-template-columns: 1fr;
  }

  .square-booking-copy h2 {
    max-width: none;
  }

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

