/* Native website forms shared by Contact and Confirmed Booking. */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin-top: 18px;
  padding: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}

.form-status:empty {
  display: none;
}

.form-status:not(:empty) {
  padding: 13px 15px;
  border: 1px solid rgba(210,162,58,.28);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}

.form-status p {
  margin: 0;
}

.form-status p + p {
  margin-top: 7px;
}

.form-status--success {
  border-color: rgba(85,214,107,.45) !important;
  background: rgba(85,214,107,.06) !important;
  color: #ccefd3;
}

.form-status--error {
  border-color: rgba(239,107,99,.45) !important;
  background: rgba(239,107,99,.06) !important;
  color: #f3c0bc;
}

.form-status--warning {
  border-color: rgba(244,210,124,.48) !important;
  background: rgba(210,162,58,.07) !important;
}

.form-status--sending {
  color: var(--cream);
}

.form-status__reference {
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: .035em;
}

.form-status__actions {
  margin-top: 11px !important;
}

button[disabled],
.btn[disabled] {
  opacity: .58;
  cursor: wait;
  transform: none !important;
}

/* Native confirmed-booking form */
.booking-page .booking-form-intro {
  max-width: 820px;
  margin-bottom: 26px;
}

.booking-page .booking-native-form {
  display: grid;
  gap: 22px;
}

.booking-page .booking-form-card {
  border: 1px solid var(--line);
  border-radius: var(--booking-radius);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-page .booking-form-card__head {
  padding: 22px 24px 17px;
  border-bottom: 1px solid rgba(210,162,58,.20);
  background: rgba(210,162,58,.035);
}

.booking-page .booking-form-card__head .kicker {
  margin-bottom: 7px;
}

.booking-page .booking-form-card__head h3 {
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.booking-page .booking-form-card__head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.booking-page .booking-form-card__body {
  padding: 24px;
}

.booking-page .booking-form-grid {
  display: grid;
  gap: 17px;
}

.booking-page .booking-form-grid + .booking-form-grid,
.booking-page .booking-form-grid + .booking-field,
.booking-page .booking-field + .booking-form-grid,
.booking-page .booking-field + .booking-field,
.booking-page .booking-field + .booking-check,
.booking-page .booking-check + .booking-check {
  margin-top: 17px;
}

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

.booking-page .booking-form-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-page .booking-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--cream);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .035em;
}

.booking-page .booking-field label span[aria-hidden="true"] {
  color: var(--gold-light);
}

.booking-page .booking-field input,
.booking-page .booking-field select,
.booking-page .booking-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(210,162,58,.42);
  border-radius: 10px;
  background: #090806;
  color: var(--cream);
  font: inherit;
  outline: none;
}

.booking-page .booking-field textarea {
  min-height: 124px;
  resize: vertical;
}

.booking-page .booking-field textarea.booking-textarea-large {
  min-height: 155px;
}

.booking-page .booking-field input::placeholder,
.booking-page .booking-field textarea::placeholder {
  color: #8f877a;
}

.booking-page .booking-field input:focus,
.booking-page .booking-field select:focus,
.booking-page .booking-field textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(210,162,58,.10);
}

.booking-page .booking-field select:disabled {
  opacity: .58;
  cursor: not-allowed;
}

.booking-page .booking-field small {
  display: block;
  margin-top: 6px;
  color: #9d9385;
  font-size: .76rem;
  line-height: 1.5;
}

.booking-page .booking-fee-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.booking-page .booking-fee-summary > div {
  padding: 15px;
  border: 1px solid rgba(210,162,58,.26);
  border-radius: 14px;
  background: rgba(255,255,255,.018);
}

.booking-page .booking-fee-summary span {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-page .booking-fee-summary strong {
  display: block;
  margin-top: 5px;
  color: var(--gold-light);
  font-family: Marcellus, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.booking-page .booking-key-terms {
  margin: 0 0 24px;
  padding: 20px 22px;
  border: 1px solid rgba(210,162,58,.46);
  border-radius: var(--booking-radius-small);
  background: rgba(210,162,58,.055);
}

.booking-page .booking-key-terms h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
}

.booking-page .booking-key-terms ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.booking-page .booking-key-terms li + li {
  margin-top: 6px;
}

.booking-page .booking-check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 14px 15px;
  border: 1px solid rgba(210,162,58,.28);
  border-radius: 12px;
  background: rgba(255,255,255,.018);
  color: var(--cream);
  font-size: .84rem;
  line-height: 1.55;
  cursor: pointer;
}

.booking-page .booking-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.booking-page .booking-check a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.booking-page .booking-submit-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-end;
  padding-top: 4px;
}

.booking-page .booking-submit-copy {
  max-width: 720px;
}

.booking-page .booking-submit-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.55;
}

.booking-page .booking-submit-copy p + p {
  margin-top: 6px;
}

.booking-page [data-alternative-payment][hidden] {
  display: none;
}

.booking-page .booking-after-submit {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.booking-page .booking-after-submit > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--booking-radius-small);
  background: rgba(255,255,255,.018);
}

.booking-page .booking-after-submit strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
}

.booking-page .booking-after-submit p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

@media (max-width: 820px) {
  .booking-page .booking-form-grid-3,
  .booking-page .booking-fee-summary {
    grid-template-columns: 1fr;
  }

  .booking-page .booking-after-submit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-page .booking-form-grid-2 {
    grid-template-columns: 1fr;
  }

  .booking-page .booking-submit-row {
    display: block;
  }

  .booking-page .booking-submit-row .btn {
    margin-top: 16px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .booking-page .booking-form-card__head,
  .booking-page .booking-form-card__body {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Booking form chooser and event-specific form variants - 2026-08-11 */
.booking-page .booking-form-container {
  max-width: 1120px;
}

.booking-page .booking-type-chooser {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 12px;
}

.booking-page .booking-type-choice {
  position: relative;
  min-height: 150px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(210,162,58,.34);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
  transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.booking-page .booking-type-choice:hover,
.booking-page .booking-type-choice:focus-visible {
  border-color: rgba(244,210,124,.72);
  background: rgba(210,162,58,.055);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0,0,0,.26);
  outline: none;
}

.booking-page .booking-type-choice[aria-pressed="true"] {
  border-color: var(--gold-light);
  background: linear-gradient(145deg, rgba(210,162,58,.11), rgba(210,162,58,.035));
  box-shadow: 0 0 0 2px rgba(210,162,58,.08), 0 18px 42px rgba(0,0,0,.24);
}

.booking-page .booking-type-choice__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(210,162,58,.42);
  border-radius: 50%;
  background: rgba(210,162,58,.06);
  color: var(--gold-light);
}

.booking-page .booking-type-choice__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-page .booking-type-choice strong {
  display: block;
  margin-bottom: 7px;
  color: var(--cream);
  font-family: Marcellus, Georgia, serif;
  font-size: 1.18rem;
  font-weight: 400;
}

.booking-page .booking-type-choice > span:last-child {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.booking-page .booking-choice-status {
  margin: 12px 0 0;
  color: #a69b8b;
  font-size: .82rem;
}

.booking-page .booking-variant-panels {
  margin-top: 28px;
}

.booking-page .booking-panel {
  padding-top: 2px;
}

.booking-page.booking-enhanced .booking-panel:not(.is-active) {
  display: none;
}

.booking-page .booking-panel__title {
  margin: 0 0 22px;
  padding: 22px 24px;
  border: 1px solid rgba(210,162,58,.35);
  border-radius: 18px;
  background: #050403;
}

.booking-page .booking-panel__title .kicker {
  margin-bottom: 7px;
}

.booking-page .booking-panel__title h2 {
  margin: 0;
}

.booking-page .booking-panel__title p:last-child {
  max-width: 820px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

/* Keep controls in multi-column rows precisely aligned, even when labels wrap. */
.booking-page .booking-form-grid {
  align-items: start;
}

.booking-page .booking-form-grid > .booking-field {
  display: grid;
  grid-template-rows: 3.05em auto auto;
  align-content: start;
  min-width: 0;
}

.booking-page .booking-form-grid > .booking-field > label {
  display: flex;
  align-items: flex-end;
  height: 3.05em;
  min-height: 3.05em;
  margin-bottom: 7px;
}

.booking-page .booking-field > input:not([type="checkbox"]),
.booking-page .booking-field > select {
  height: 50px;
  min-height: 50px;
}

.booking-page .booking-field textarea {
  min-height: 116px;
}

.booking-page .booking-field--half {
  width: calc(50% - 8.5px);
  margin-top: 17px;
}

.booking-page .booking-form-card__body > .booking-field:first-child,
.booking-page .booking-form-card__body > .booking-check:first-child {
  margin-top: 0;
}

.booking-page .booking-form-card__body > .booking-field + .booking-field,
.booking-page .booking-form-card__body > .booking-field + .booking-form-grid,
.booking-page .booking-form-card__body > .booking-form-grid + .booking-field,
.booking-page .booking-form-card__body > .booking-form-grid + .booking-form-grid,
.booking-page .booking-form-card__body > .booking-check + .booking-check,
.booking-page .booking-form-card__body > .booking-check + .booking-field {
  margin-top: 17px;
}

.booking-page .booking-field[data-alternative-payment] {
  margin-top: 17px;
}

.booking-page .booking-after-section {
  border-top: 1px solid rgba(210,162,58,.12);
}

@media (max-width: 900px) {
  .booking-page .booking-type-chooser {
    grid-template-columns: 1fr;
  }

  .booking-page .booking-type-choice {
    min-height: 0;
    padding: 18px;
  }

  .booking-page .booking-type-choice__number {
    margin-bottom: 10px;
  }
}

@media (max-width: 820px) {
  .booking-page .booking-form-grid > .booking-field {
    display: block;
  }

  .booking-page .booking-form-grid > .booking-field > label {
    min-height: 0;
    display: block;
  }

  .booking-page .booking-field--half {
    width: 100%;
  }

  .booking-page .booking-panel__title {
    padding: 19px 18px;
    border-radius: 16px;
  }
}

@media (max-width: 560px) {
  .booking-page .booking-form-container {
    width: min(100% - 26px, var(--container));
  }

  .booking-page .booking-type-choice strong {
    font-size: 1.08rem;
  }

  .booking-page .booking-form-card__head,
  .booking-page .booking-form-card__body {
    padding-left: 17px;
    padding-right: 17px;
  }

  .booking-page .booking-check {
    font-size: .8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-page .booking-type-choice {
    transition: none;
  }
}

/* A field next to another field is a column, not a new vertical row. */
.booking-page .booking-form-grid > .booking-field + .booking-field {
  margin-top: 0;
}

/* Booking form refinements: two variants, conditional details and wrapped payment choices. */
.booking-page .booking-type-chooser--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-page .booking-person-card,
.booking-page .booking-radio-group,
.booking-page .booking-payment-options {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-page .booking-person-card {
  padding: 19px;
  border: 1px solid rgba(210,162,58,.26);
  border-radius: 15px;
  background: rgba(255,255,255,.016);
}

.booking-page .booking-person-card + .booking-person-card {
  margin-top: 20px;
}

.booking-page .booking-person-card > legend {
  padding: 0 8px;
  color: var(--gold-light);
  font: 700 .88rem/1.2 Lato, Arial, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.booking-page .booking-person-card > .booking-form-grid:first-of-type {
  margin-top: 4px;
}

.booking-page .booking-check--compact {
  margin-top: 17px;
  padding: 11px 13px;
  font-size: .8rem;
}

.booking-page [data-partner-2-address][hidden],
.booking-page [data-ceremony-time-field][hidden],
.booking-page [data-fee-payment-panel][hidden] {
  display: none !important;
}

.booking-page .booking-fee-gate-card {
  border-color: rgba(210,162,58,.42);
}

.booking-page .booking-radio-group,
.booking-page .booking-payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-page .booking-payment-options {
  margin-top: 18px;
}

.booking-page .booking-payment-options > legend {
  grid-column: 1 / -1;
  margin-bottom: 3px;
  color: var(--cream);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .035em;
}

.booking-page .booking-payment-options > legend span[aria-hidden="true"] {
  color: var(--gold-light);
}

.booking-page .booking-radio-card {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid rgba(210,162,58,.30);
  border-radius: 13px;
  background: rgba(255,255,255,.018);
  color: var(--cream);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}

.booking-page .booking-radio-card:hover,
.booking-page .booking-radio-card:focus-within {
  border-color: rgba(244,210,124,.72);
  background: rgba(210,162,58,.055);
}

.booking-page .booking-radio-card:has(input:checked) {
  border-color: var(--gold-light);
  background: rgba(210,162,58,.075);
}

.booking-page .booking-radio-card input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.booking-page .booking-radio-card > span {
  display: block;
  min-width: 0;
}

.booking-page .booking-radio-card strong,
.booking-page .booking-radio-card small {
  display: block;
}

.booking-page .booking-radio-card strong {
  color: var(--cream);
  font-size: .84rem;
  line-height: 1.35;
}

.booking-page .booking-radio-card small {
  margin-top: 4px;
  color: #a69b8b;
  font-size: .75rem;
  line-height: 1.45;
}

.booking-page .booking-fee-due-note {
  margin-top: 14px;
  padding: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.booking-page .booking-fee-due-note:not(:empty) {
  padding: 12px 14px;
  border: 1px solid rgba(210,162,58,.30);
  border-radius: 12px;
  background: rgba(210,162,58,.045);
}

.booking-page .booking-fee-due-note.is-urgent {
  border-color: rgba(244,210,124,.58);
  background: rgba(210,162,58,.095);
  color: var(--cream);
}

.booking-page .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 820px) {
  .booking-page .booking-type-chooser--two,
  .booking-page .booking-radio-group,
  .booking-page .booking-payment-options {
    grid-template-columns: 1fr;
  }

  .booking-page .booking-person-card {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-page .booking-radio-card {
    transition: none;
  }
}


@media (max-width: 560px) {
  .booking-page .booking-after-submit {
    grid-template-columns: 1fr;
  }
}

/* Cloudflare Turnstile protection for native Contact and Booking forms. */
.form-turnstile-block {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(210,162,58,.48);
  border-radius: 12px;
  background: rgba(210,162,58,.035);
}

.form-turnstile-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.form-turnstile-heading strong {
  color: var(--gold-light);
  font-size: .9rem;
}

.form-turnstile-heading span {
  color: #9d9385;
  font-size: .72rem;
}

.form-turnstile-block.is-loading {
  opacity: .86;
}

.form-turnstile-block.is-complete {
  border-color: rgba(85,214,107,.38);
  background: rgba(85,214,107,.035);
}

.form-turnstile-block.has-error {
  border-color: rgba(239,107,99,.42);
  background: rgba(239,107,99,.035);
}

.form-turnstile-widget {
  display: block;
  width: 100%;
  min-height: 65px;
}

.form-turnstile-copy,
.form-turnstile-status {
  margin: 8px 0 0;
  color: #9d9385;
  font-size: .74rem;
  line-height: 1.45;
}

.form-turnstile-status {
  min-height: 1.1em;
}

.form-turnstile-status.is-success {
  color: #a9deb3;
}

.form-turnstile-status.is-warning {
  color: #e6cf96;
}

.form-turnstile-status.is-error {
  color: #efaaa5;
}

.contact-enquiry-form .form-turnstile-block {
  margin-bottom: 18px;
}

@media (max-width: 360px) {
  .form-turnstile-block {
    padding-inline: 10px;
  }
}

@media (max-width: 480px) {
  .form-turnstile-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}
