:root {
  --accent: var(--gold);
  --grey-text: rgba(255, 255, 255, 0.72);
  --muted-text: rgba(255, 255, 255, 0.62);
  --border: rgba(255, 255, 255, 0.16);
  --panel: #050505;
  --field: #0b0b0b;
  --field-border: rgba(255, 255, 255, 0.24);
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100vh - 112px);
}

.info-column {
  padding: 40px 0;
  background: var(--white);
}

.info-shell {
  width: min(100% - 60px, 1160px);
  margin: 12px auto 0;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.info-sticky {
  position: sticky;
  top: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  position: relative;
  min-height: 177px;
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.contact-card h5 {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  color: var(--muted-text);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  word-break: break-word;
}

.brand-card {
  margin-top: 40px;
  min-height: 808px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f9fafb;
  padding: 48px 24px;
}

.brand-card h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.brand-card > p {
  margin: 8px 0 0;
  color: #666666;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: var(--leading-body);
  letter-spacing: 0;
  text-transform: none;
}

.logo-marquee {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 64px;
  align-items: center;
}

.client-logo {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.client-logo img {
  width: min(150px, 82%);
  max-height: 62px;
  object-fit: contain;
  filter: grayscale(0.05);
}

.booking-column {
  padding: 24px;
  background: var(--white);
}

.booking-intro {
  padding: 0;
}

.booking-title {
  margin: 0 0 0;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: var(--leading-display);
  font-weight: 900;
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  user-select: none;
}

.booking-title img {
  display: inline-block;
  width: 144px;
  margin: 0 -8px;
  vertical-align: middle;
}

.booking-intro p {
  margin: 0;
  color: var(--grey-text);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0;
  text-transform: none;
}

.form-card {
  margin-top: 32px;
  display: flex;
  min-height: 1020px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(245, 244, 246, 0.5);
  padding: 40px 31px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.form-step {
  display: none;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
}

.form-step.active {
  display: flex;
}

.step-content {
  width: 100%;
  max-width: 900px;
  margin: 16px auto;
}

.form-step[data-step="1"] .step-content {
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-heading {
  margin: 0;
  color: #424242;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  line-height: var(--leading-display);
  text-align: center;
  font-weight: 900;
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.step-heading.service-step-heading {
  font-size: clamp(34px, 5vw, 52px);
}

.step-subcopy {
  margin: 0 0 40px;
  color: var(--muted-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: var(--leading-body);
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 0;
  border-radius: var(--sq-corner-radius);
  background: #d1d5db;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateZ(0);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.service-card.service-card--hire {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.58) 100%),
    url("../image assets/hire_models_home_page_1189x1323.png") center / cover no-repeat;
}

.service-card.service-card--trade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.58) 100%),
    url("../image assets/ChatGPT Image Jun 25, 2026, 12_16_48 PM.png") center / cover no-repeat;
}

.service-card.service-card--ugc {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.58) 100%),
    url("../image assets/ChatGPT Image Jun 25, 2026, 01_11_48 PM.png") center / cover no-repeat;
}

.service-card.service-card--event {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.58) 100%),
    url("../image assets/ChatGPT Image Jun 25, 2026, 09_01_47 AM.png") center -112px / 175% auto no-repeat;
}

.service-card.service-card--yacht {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.58) 100%),
    url("../image assets/ChatGPT Image Jun 25, 2026, 10_31_27 AM.png") center / cover no-repeat;
}

.service-card.service-card--dj {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.58) 100%),
    url("../image assets/dj_vintage_lut_stronger.png") center / cover no-repeat;
}

.service-card:hover,
.service-card.selected {
  transform: scale(1.05);
}

.service-card.selected {
  z-index: 3;
}

@media (max-width: 959px) {
  .service-card:hover:not(.selected) {
    transform: translateZ(0);
  }
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 36%, rgba(0, 0, 0, 0.35) 100%);
}

.service-label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 34px);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: clamp(18px, 1.8vw, 30px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
  text-transform: none;
}

.booking-brand-strip {
  width: 100%;
  max-width: 1120px;
  margin: 44px auto 28px;
  color: var(--white);
}

.sq-logo-marquee {
  position: relative;
  width: 100%;
  height: 82px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000000 8%, #000000 92%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000000 8%, #000000 92%, rgba(0, 0, 0, 0));
}

.sq-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  gap: clamp(54px, 6vw, 76px);
  animation: sq-logo-marquee 32s linear infinite;
}

.sq-logo-set {
  display: flex;
  align-items: center;
  gap: clamp(54px, 6vw, 76px);
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sq-logo-set li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.sq-logo-image {
  display: block;
  object-fit: contain;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.sq-logo-image-skybar {
  width: 142px;
  height: 28px;
}

.sq-logo-image-cielo {
  width: 122px;
  height: 36px;
}

.sq-logo-image-heat {
  width: 180px;
  height: 54px;
}

.sq-logo-image-bnfnr,
.sq-logo-image-robbys,
.sq-logo-image-care-club,
.sq-logo-image-101-vodka,
.sq-logo-image-bounce-beat {
  width: 156px;
  height: 52px;
}

@keyframes sq-logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - clamp(27px, 3vw, 38px)));
  }
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #111111;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #dddddd;
  border-radius: var(--sq-corner-radius);
  background: var(--white);
  padding: 9px 14px;
  color: #111111;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: var(--leading-body);
  letter-spacing: 0;
  text-transform: none;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field select[multiple] {
  height: 42px;
  min-height: 42px;
  padding: 8px 12px;
}

.field select[multiple] option {
  padding: 8px 6px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #dddddd;
  box-shadow: none;
}

.date-picker {
  position: relative;
}

.date-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.field .date-display {
  padding-right: 46px;
  cursor: pointer;
}

.date-trigger {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: currentColor;
  transform: translateY(-50%);
}

.date-trigger svg {
  width: 18px;
  height: 18px;
}

.date-value-field {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.date-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  width: min(100%, 340px);
  border: 1px solid var(--field-border);
  border-radius: var(--sq-corner-radius);
  background: #050505;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  padding: 12px;
  color: var(--white);
}

.date-popover[hidden] {
  display: none;
}

.date-calendar-head {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.date-month-label {
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  text-align: center;
}

.date-nav {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--field-border);
  border-radius: var(--sq-corner-radius);
  background: var(--field);
  color: var(--white);
}

.date-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.date-weekdays,
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.date-weekdays {
  margin-bottom: 6px;
}

.date-weekday {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  text-align: center;
}

.date-day {
  min-width: 0;
  height: 36px;
  border: 1px solid transparent;
  border-radius: var(--sq-corner-radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.date-day:hover,
.date-day:focus-visible {
  border-color: var(--white);
  color: var(--white);
  outline: none;
}

.date-day.is-today {
  border-color: rgba(255, 255, 255, 0.34);
}

.date-day.is-selected {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.date-day.is-outside {
  color: rgba(255, 255, 255, 0.3);
}

.phone-field {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: stretch;
  gap: 8px;
}

.phone-country-control {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dddddd;
  border-radius: var(--sq-corner-radius);
  background: var(--white);
  color: #111111;
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.phone-country-control:focus-within {
  border-color: #dddddd;
  box-shadow: none;
}

.phone-country-control select {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  padding: 0;
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.phone-country-button {
  width: 100%;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--white);
  cursor: pointer;
}

.phone-country-button:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.32);
  outline-offset: 4px;
}

.phone-country-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: min(280px, calc(100vw - 32px));
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--sq-corner-radius);
  background: var(--black);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.phone-country-list[hidden] {
  display: none;
}

.phone-country-option {
  min-height: 34px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--sq-corner-radius);
  padding: 7px 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: var(--leading-body);
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

.phone-country-option:hover,
.phone-country-option:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  outline: none;
}

.phone-country-option-code {
  display: inline-flex;
  min-width: 24px;
  min-height: 16px;
  align-items: center;
  justify-content: center;
  border-radius: var(--sq-corner-radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.phone-country-option .PhoneInputCountryIconImg {
  width: 24px;
  height: 16px;
  object-fit: cover;
}

.PhoneInputCountryIcon {
  display: inline-flex;
  width: 24px;
  height: 16px;
  overflow: hidden;
  background: #f2f2f2;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.PhoneInputCountryIconImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-select-arrow {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.55;
  transform: rotate(45deg) translateY(-1px);
}

.phone-number-input {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: var(--leading-body);
  letter-spacing: 0;
  text-transform: none;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.choice-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d1d5db;
  border-radius: var(--sq-corner-radius);
  background: var(--white);
  padding: 10px 16px;
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--field-border);
  border-radius: var(--sq-corner-radius);
  padding: 12px 24px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: var(--tracking-button);
  text-transform: uppercase;
  transition: opacity 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease, filter 200ms ease;
}

.form-actions .button {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 13px;
}

.button.secondary {
  border-color: var(--field-border);
  background: var(--field);
  color: rgba(255, 255, 255, 0.62);
}

.button.primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.button.primary.is-submit:not(:disabled) {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.button.primary.is-submit:not(:disabled):hover {
  filter: blur(0.2px);
  backdrop-filter: blur(15px);
}

.button:hover {
  opacity: 0.75;
}

.button:disabled {
  border-color: transparent;
  background: var(--field);
  color: rgba(255, 255, 255, 0.38);
  opacity: 1;
  cursor: not-allowed;
  pointer-events: auto;
}

.button.primary.is-submit:disabled {
  border-color: transparent;
  background: var(--field);
  color: rgba(255, 255, 255, 0.38);
  cursor: not-allowed;
}

.form-status {
  margin: 16px 0 0;
  min-height: 24px;
  color: #14532d;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: var(--leading-body);
  letter-spacing: 0;
  text-transform: none;
  text-align: right;
}

.success-toast {
  position: fixed;
  top: 126px;
  right: clamp(16px, 3vw, 48px);
  z-index: 80;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: min(365px, calc(100vw - 32px));
  padding: 18px 20px;
  border: 2px solid rgba(92, 67, 12, 0.9);
  border-color: color-mix(in srgb, var(--gold) 58%, var(--black));
  border-radius: var(--sq-corner-radius);
  background: rgba(212, 175, 55, 0.64);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.success-toast[hidden] {
  display: none;
}

.success-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.success-toast-mark {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1023px) {
  .page-main {

      grid-template-columns: 1fr;

    }

  .info-column {

      padding-bottom: 16px;

    }

  .info-sticky {

      position: static;

    }

  .brand-card {

      min-height: auto;

    }

  .booking-column {

      padding-top: 40px;

    }
}

@media (max-width: 720px) {
  .page-main {

      min-height: auto;

    }

  .info-column {

      padding-top: 38px;

    }

  .info-shell {

      width: min(100% - 48px, 540px);

      margin-top: 0;

    }

  .contact-grid {

      grid-template-columns: 1fr;

    }

  .contact-card {

      min-height: 158px;

    }

  .brand-card {

      margin-top: 40px;

      padding: 40px 24px;

    }

  .brand-card h2 {

      font-size: 29px;

    }

  .logo-marquee {

      gap: 42px 34px;

    }

  .client-logo {

      min-height: 88px;

    }

  .booking-column {

      padding: 24px;

    }

  .booking-title {

      font-size: 40px;

      line-height: 1.18;

    }

  .booking-intro p {

      font-size: 19px;

      line-height: 1.5;

      margin-top: 18px;

    }

  .form-card {

      min-height: auto;

      padding: 32px 24px;

    }

  .step-heading {

      font-size: 28px;

    }

  .services-grid {

      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 18px 12px;

    }

  .service-card {

      min-height: 162px;

    }

  .service-card.service-card--event {
    background-position: 0% 0%, 50% -48px;
  }

  .service-label {

      min-height: 42px;

      font-size: 14px;

    }

  .field-grid {

      grid-template-columns: 1fr;

    }

  .phone-field {

      grid-template-columns: 74px minmax(0, 1fr);

    }

  .form-actions {

      justify-content: stretch;

    }

  .form-actions .button {

      flex: 1;

    }
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

.page-main {
  min-height: 100vh;
  padding-top: 136px;
  background: var(--black);
}

.info-column,
.booking-column {
  background: var(--black);
}

.info-shell {
  margin-top: 0;
}

.contact-card,
.brand-card,
.form-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--white);
}

.contact-card {
  min-height: auto;
  overflow: visible;
  padding: 0;
}

.brand-card {
  margin-top: 0;
  min-height: auto;
  overflow: visible;
  padding: 0;
  display: flex;
  justify-content: center;
}

.contact-card h5,
.field label {
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 700;
}

.contact-card p,
.brand-card > p,
.booking-intro p,
.step-subcopy {
  color: var(--muted-text);
  font-family: var(--font-body);
}

.brand-card h2,
.booking-title,
.step-heading {
  color: var(--white);
  font-weight: 900;
}

.booking-title {
  max-width: 760px;
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: 0.98;
  text-transform: uppercase;
}

.booking-title-line {
  display: block;
}

.booking-title-line:first-child {
  white-space: nowrap;
}

.brand-highlight {
  color: var(--white);
  transition: color 0.2s ease;
}

.brand-highlight:hover {
  color: var(--gold);
}

.booking-intro p {
  max-width: 720px;
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0;
}

.logo-marquee {
  width: min(100%, 760px);
  margin: 0 auto;
  align-items: center;
  gap: 32px;
}

.client-logo {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.client-logo-mark {
  width: min(150px, 82%);
  height: 48px;
  display: block;
  border-radius: var(--sq-corner-radius);
  background: var(--white);
}

.form-card {
  margin-top: 40px;
  padding: 0;
  background: transparent;
}

@media (min-width: 1024px) {
  .booking-column {

      grid-column: 1 / -1;

    }

  .booking-intro {

      padding: 24px 24px 24px 110px;

    }

  .form-card {

      width: min(calc(100% - 48px), 1180px);

      margin-right: auto;

      margin-left: auto;

    }
}


.field input,
.field select,
.field textarea,
.choice-option,
.phone-country-control {
  border-color: var(--field-border);
  background: var(--field);
  color: var(--white);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--field-border);
  box-shadow: none;
}

.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus,
.field textarea:-webkit-autofill,
.field textarea:-webkit-autofill:hover,
.field textarea:-webkit-autofill:focus,
.field select:-webkit-autofill,
.field select:-webkit-autofill:hover,
.field select:-webkit-autofill:focus {
  border-color: var(--field-border);
  -webkit-box-shadow: 0 0 0 1000px var(--field) inset;
  box-shadow: 0 0 0 1000px var(--field) inset;
  -webkit-text-fill-color: var(--white);
  caret-color: var(--white);
  transition: background-color 9999s ease-in-out 0s;
}

.choice-option input {
  accent-color: var(--gold);
}

.button {
  border-radius: var(--sq-corner-radius);
  font-family: var(--font-ui);
}

.button.secondary {
  border-color: var(--field-border);
  background: var(--field);
  color: rgba(255, 255, 255, 0.62);
}

.button.primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.button.primary.is-submit:not(:disabled) {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.button:disabled,
.button.primary:disabled,
.button.secondary:disabled {
  border-color: transparent;
  background: var(--field);
  color: rgba(255, 255, 255, 0.38);
  opacity: 1;
  cursor: not-allowed;
  pointer-events: auto;
}

.button.primary.is-submit:disabled {
  border-color: transparent;
  background: var(--field);
  color: rgba(255, 255, 255, 0.38);
  cursor: not-allowed;
}

.form-status {
  color: var(--gold);
  font-family: var(--font-body);
}

@media (max-width: 720px) {
  .success-toast {
    top: 82px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-toast {
    transition: none;
    transform: none;
  }

  .success-toast.is-visible {
    transform: none;
  }
}

@media (max-width: 959px) {
  .page-main {

      padding-top: 92px;

    }
}

@media (max-width: 720px) {
  .booking-title {

      font-size: 36px;

      line-height: 1.05;

    }

  .booking-intro p {

      margin-top: 18px;

      font-size: 18px;

      line-height: 1.5;

    }

  .form-card {

      padding: 0;

      max-width: 100%;

    }

  .page-main {

      grid-template-columns: minmax(0, 1fr);

    }

  .booking-column {

      min-width: 0;

    }

  .form-card,
  .form-step,
  .step-content,
  .date-picker,
  .date-input-wrap {

      min-width: 0;

      max-width: 100%;

    }

  .form-step[data-step="1"] .step-content {

      width: 100%;

      max-width: 100%;

    }

  .date-popover {

      width: min(100%, 340px);

      max-width: 100%;

    }

  .step-heading.service-step-heading {

      font-size: 28px;

    }

  .logo-marquee {

      grid-template-columns: repeat(2, minmax(0, 1fr));

    }

  .service-label {

      font-size: clamp(15px, 4.2vw, 21px);

    }

  .booking-brand-strip {

      width: 100%;

      margin-top: 30px;

      margin-bottom: 24px;

    }

  .sq-logo-track,
  .sq-logo-set {

      gap: 34px;

    }
}
