:root {
  --background: #f5f1ec;
  --surface: #ffffff;
  --text: #17151a;
  --muted: #706b73;
  --dark: #100c0f;
  --dark-red: #2b0b13;
  --border: #e0d8d3;
  --red: #a70f2d;
  --red-light: #d22949;
  --gold: #f3b33d;
  --gold-soft: #fff1c9;
  --green: #138b48;
  --shadow: 0 22px 60px rgba(30, 10, 16, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.booking-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.booking-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(224, 216, 211, 0.82);
  background: rgba(245, 241, 236, 0.94);
  backdrop-filter: blur(14px);
}

.header-content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.booking-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.booking-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.booking-brand strong,
.booking-brand small {
  display: block;
}

.booking-brand small {
  color: var(--muted);
  font-size: 0.77rem;
}

.back-link {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.booking-intro {
  padding: 62px 0 54px;
  background:
    radial-gradient(circle at 88% 10%, rgba(243, 179, 61, 0.18), transparent 26%),
    linear-gradient(145deg, var(--dark-red), var(--dark));
  color: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 70px;
}

.booking-eyebrow,
.section-copy > span {
  color: var(--red-light);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-intro h1 {
  max-width: 760px;
  margin: 10px 0 14px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.booking-intro p {
  max-width: 720px;
  margin: 0;
  color: #d9cfd1;
  font-size: 1.04rem;
}

.intro-assurance {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: #efe8ea;
  font-size: 0.9rem;
  font-weight: 800;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 28px;
  padding-block: 42px 76px;
}

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

.form-section {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0 18px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(36, 17, 23, 0.055);
}

.section-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  grid-row: 1;
  border-radius: 14px;
  background: var(--gold-soft);
  color: #7d4d00;
  font-weight: 900;
}

.section-copy {
  grid-column: 2;
}

.section-copy h2 {
  margin: 3px 0 24px;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.section-intro {
  margin: -10px 0 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-section > :not(.section-number):not(.section-copy) {
  grid-column: 2;
}

.package-options,
.payment-options {
  display: grid;
  gap: 12px;
}

.package-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.select-card,
.payment-card {
  position: relative;
  display: flex;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.select-card {
  min-height: 390px;
  flex-direction: column;
  padding: 20px;
  border-radius: 18px;
}

.select-card:hover,
.payment-card:hover {
  border-color: rgba(167, 15, 45, 0.45);
  transform: translateY(-2px);
}

.select-card:has(input:checked),
.payment-card:has(input:checked) {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(167, 15, 45, 0.1);
}

.select-card:has(input:focus-visible),
.payment-card:has(input:focus-visible) {
  outline: 3px solid rgba(167, 15, 45, 0.22);
  outline-offset: 2px;
}

.select-card input,
.payment-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.select-card-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: transparent;
  font-size: 0.72rem;
}

.select-card:has(input:checked) .select-card-check {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.select-card-label {
  margin-bottom: 6px;
  padding-right: 28px;
  color: var(--text);
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.package-kicker {
  margin-bottom: 8px;
  padding-right: 32px;
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 13px;
}

.package-price strong {
  font-size: 1.72rem;
  letter-spacing: -0.04em;
}

.package-price small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.package-description {
  min-height: 64px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.83rem;
}

.package-features {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.package-features li {
  position: relative;
  padding-left: 19px;
  font-size: 0.78rem;
  font-weight: 800;
}

.package-features li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.package-ideal {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.76rem;
}

.package-ideal strong {
  color: var(--text);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field-wide {
  grid-column: span 2;
}

.field label,
.payment-fieldset legend {
  display: block;
  margin-bottom: 7px;
  font-size: 0.83rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
  font: inherit;
  line-height: 1.5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(167, 15, 45, 0.1);
}

.picker-field {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #fcf8f4);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.picker-field:hover,
.picker-field:focus-within {
  border-color: rgba(167, 15, 45, 0.55);
  box-shadow: 0 0 0 3px rgba(167, 15, 45, 0.08);
  transform: translateY(-1px);
}

.picker-field input,
.picker-field select {
  min-height: 42px;
  padding: 5px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
}

.picker-field input:focus,
.picker-field select:focus,
.picker-field input:invalid:not(:placeholder-shown) {
  border-color: transparent;
  box-shadow: none;
}

.picker-field input::-webkit-calendar-picker-indicator {
  width: 28px;
  height: 28px;
  cursor: pointer;
  opacity: 0.65;
}

.quick-time-row {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #faf7f4;
}

.quick-time-row > span {
  font-size: 0.77rem;
  font-weight: 900;
}

.quick-time-row > small {
  color: var(--muted);
  font-size: 0.72rem;
}

.quick-time-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-time-options button {
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 900;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.quick-time-options button:hover,
.quick-time-options button[aria-pressed="true"] {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.quick-time-options button:disabled {
  border-color: var(--border);
  background: #eee9e5;
  color: #9b9498;
  cursor: not-allowed;
  opacity: 0.72;
}

.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: #c43434;
}

.field small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.74rem;
}

.field .date-availability {
  position: relative;
  padding-left: 17px;
  font-weight: 800;
}

.date-availability::before {
  position: absolute;
  left: 0;
  content: "•";
}

.date-availability.is-checking {
  color: #78500d;
}

.date-availability.is-available {
  color: #14733d;
}

.date-availability.is-unavailable,
.date-availability.is-error {
  color: #9b1830;
}

.hours-control {
  min-height: 50px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.hours-button {
  height: 100%;
  border: 0;
  background: #f7f2ee;
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 900;
}

#hours-output {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 900;
}

.service-area-badge {
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #e9f7ee;
  color: #106b39;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-area-badge span {
  margin-right: 5px;
}

.address-validation-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 16px;
}

.address-preview {
  margin-top: 16px;
  padding: 13px 15px;
  border: 1px solid rgba(20, 115, 61, 0.25);
  border-radius: 13px;
  background: #f1faf5;
  color: #185b36;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.55;
}

.address-preview::before {
  display: block;
  margin-bottom: 3px;
  content: "Dirección que recibirá el personal";
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.address-validation-button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.address-validation-button:hover:not(:disabled),
.address-validation-button:focus-visible {
  background: #851229;
  box-shadow: 0 0 0 3px rgba(167, 15, 45, 0.12);
  transform: translateY(-1px);
}

.address-validation-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.address-validation-status {
  flex-basis: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.address-validation-status.is-success {
  color: #14733d;
}

.address-validation-status.is-error {
  color: #9b1830;
}

.map-instructions {
  margin: 14px 0 -8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.address-map {
  min-height: 240px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255,255,255,.35), rgba(255,255,255,.35)),
    repeating-linear-gradient(45deg, #ece5de 0, #ece5de 1px, transparent 1px, transparent 18px);
}

.address-map .leaflet-container,
.address-map.leaflet-container {
  min-height: 240px;
  font-family: inherit;
}

.address-map .leaflet-control-attribution {
  font-size: 0.63rem;
}

.address-map:focus-visible {
  outline: 3px solid rgba(167, 15, 45, 0.26);
  outline-offset: 3px;
}

.address-map .leaflet-marker-icon:focus-visible {
  outline: 3px solid rgba(167, 15, 45, 0.45);
  outline-offset: 3px;
}

.map-placeholder {
  min-height: 240px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.map-placeholder > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: #7d4d00;
  font-size: 1.6rem;
}

.map-placeholder strong,
.map-placeholder small {
  display: block;
}

.map-placeholder small {
  margin-top: 4px;
}

.outside-area-help {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.82rem;
}

.outside-area-help a {
  color: var(--red);
  font-weight: 900;
}

.payment-fieldset {
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.payment-options {
  grid-template-columns: minmax(0, 1fr);
}

.payment-card {
  min-height: 88px;
  align-items: center;
  gap: 11px;
  padding: 14px;
  border-radius: 14px;
}

.payment-logo {
  width: 62px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 5px;
  border: 1px solid #ebe5e0;
  border-radius: 10px;
  background: white;
}

.payment-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-logo-card {
  width: 70px;
}

.payment-card strong,
.payment-card small {
  display: block;
}

.payment-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.67rem;
}

.payment-card.is-unavailable {
  cursor: not-allowed;
  opacity: 0.52;
  filter: grayscale(0.65);
}

.payment-card.is-unavailable:hover {
  border-color: var(--border);
  transform: none;
}

.payment-card.is-unavailable small {
  color: var(--red);
  font-weight: 850;
}

.payment-live-note {
  margin: 12px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(167, 15, 45, 0.13);
  border-radius: 13px;
  background: rgba(167, 15, 45, 0.045);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.payment-live-note[hidden] {
  display: none;
}

.payment-contact-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(167, 15, 45, 0.13);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(167, 15, 45, 0.05), rgba(218, 166, 39, 0.08));
}

.payment-contact-note strong,
.payment-contact-note small {
  display: block;
}

.payment-contact-note strong {
  margin-top: 5px;
  color: var(--text);
  font-size: 0.9rem;
}

.payment-contact-note small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.payment-contact-tag {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(167, 15, 45, 0.1);
  color: var(--red);
  font-size: 0.61rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-contact-links {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.payment-contact-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(167, 15, 45, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.payment-contact-links a:hover,
.payment-contact-links a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(30, 22, 25, 0.12);
}

.policy-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 22px;
  padding: 15px;
  border-radius: 14px;
  background: #faf7f4;
  font-size: 0.82rem;
}

.policy-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--red);
}

.policy-check a {
  color: var(--red);
  font-weight: 800;
}

.bot-check {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  min-height: 65px;
}

.bot-check[hidden] {
  display: none;
}

.booking-summary {
  position: sticky;
  top: 102px;
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 0, rgba(243,179,61,.16), transparent 30%),
    linear-gradient(145deg, var(--dark-red), var(--dark));
  color: white;
  box-shadow: var(--shadow);
}

.summary-top .booking-eyebrow {
  color: var(--gold);
}

.summary-top h2 {
  margin: 5px 0 22px;
  font-size: 1.7rem;
}

.summary-details {
  margin: 0;
}

.summary-details > div,
.summary-pricing > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.summary-details > div {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.summary-details dt {
  color: #bfb3b6;
}

.summary-details dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.summary-pricing {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  padding: 17px;
  border: 1px solid rgba(243,179,61,.28);
  border-radius: 16px;
  background: rgba(243,179,61,.08);
}

.summary-pricing span {
  color: #d8ced1;
  font-size: 0.83rem;
}

.summary-deposit {
  color: var(--gold);
}

.summary-deposit span {
  color: var(--gold);
}

.summary-note {
  color: #bfb3b6;
  font-size: 0.78rem;
}

.checkout-button {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: white;
  font-weight: 900;
}

.checkout-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.secure-note {
  margin-top: 14px;
  color: #bfb3b6;
  font-size: 0.72rem;
  text-align: center;
}

.secure-note span {
  color: var(--gold);
}

.inline-alert,
.form-status {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

.inline-alert {
  background: #fff3d6;
  color: #78500d;
}

.form-status {
  margin-bottom: 12px;
  background: #ffe5e8;
  color: #851229;
}

.form-status.is-info {
  background: #fff3d6;
  color: #78500d;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.booking-footer {
  padding: 26px 0;
  background: var(--dark);
  color: #d8ced1;
}

.booking-footer .booking-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.booking-footer p {
  margin: 0;
}

.booking-footer a {
  color: white;
  font-weight: 800;
}

.confirmation-main,
.policy-main {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: start center;
  padding: 58px 20px 80px;
  background:
    radial-gradient(circle at 50% 0, rgba(243, 179, 61, 0.12), transparent 28%),
    var(--background);
}

.confirmation-card {
  width: min(720px, 100%);
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.confirmation-card > h1 {
  margin: 9px 0 10px;
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.confirmation-card > p {
  max-width: 590px;
  margin: 0 auto;
  color: var(--muted);
}

.confirmation-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 900;
}

.confirmation-icon.is-pending {
  background: var(--gold-soft);
  color: #7d4d00;
}

.confirmation-icon.is-success {
  background: #e3f5e9;
  color: var(--green);
}

.confirmation-icon.is-error {
  background: #ffe5e8;
  color: var(--red);
}

.receipt {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: left;
}

.receipt-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  background: var(--dark-red);
  color: white;
}

.receipt-code span {
  color: #d9cfd1;
  font-size: 0.8rem;
}

.receipt-code strong {
  color: var(--gold);
  letter-spacing: 0.04em;
}

.receipt-details {
  margin: 0;
  padding: 8px 20px 16px;
}

.receipt-details > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.receipt-details > div:last-child {
  border-bottom: 0;
}

.receipt-details dt {
  color: var(--muted);
}

.receipt-details dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.confirmation-actions {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.confirmation-actions .checkout-button {
  color: white;
  text-decoration: none;
}

.print-button {
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--text);
  font-weight: 900;
}

.policy-article {
  width: min(850px, 100%);
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.policy-article h1 {
  margin: 8px 0 12px;
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.policy-article h2 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
}

.policy-article p,
.policy-article li {
  color: #4f4850;
}

.policy-notice {
  margin: 24px 0;
  padding: 15px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: #fff7e3;
}

.policy-version {
  color: var(--muted);
  font-size: 0.8rem;
}

.policy-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.policy-contact-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.policy-contact-button:hover,
.policy-contact-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30, 22, 25, 0.16);
}

.policy-contact-button.is-whatsapp {
  background: #128c5a;
}

.policy-contact-button.is-facebook {
  background: #2456a6;
}

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

  .booking-summary {
    position: static;
    order: 2;
  }

  .package-options {
    grid-template-columns: 1fr;
  }

  .select-card {
    min-height: 340px;
  }
}

@media (max-width: 700px) {
  .booking-container {
    width: min(100% - 24px, 1180px);
  }

  .booking-brand small,
  .back-link {
    display: none;
  }

  .booking-intro {
    padding: 42px 0;
  }

  .booking-intro h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .booking-layout {
    padding-top: 22px;
  }

  .form-section {
    display: block;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .section-number {
    margin-bottom: 12px;
  }

  .field-grid,
  .field-grid-three,
  .payment-options {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .quick-time-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-contact-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-contact-links {
    width: 100%;
  }

  .payment-contact-links a {
    flex: 1 1 0;
  }

  .booking-summary {
    padding: 24px 20px;
    scroll-margin-top: 92px;
  }

  .summary-details > div,
  .summary-pricing > div {
    align-items: flex-start;
  }

  .summary-details dd {
    max-width: 62%;
    overflow-wrap: anywhere;
  }

  .summary-pricing strong {
    flex: 0 0 auto;
  }

  .booking-footer .booking-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .confirmation-card,
  .policy-article {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .confirmation-actions {
    grid-template-columns: 1fr;
  }

  .receipt-details > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .receipt-details dd {
    text-align: left;
  }
}

@media print {
  .booking-header,
  .booking-intro,
  .booking-form,
  .booking-footer,
  .checkout-button,
  .secure-note {
    display: none !important;
  }

  .booking-layout {
    display: block;
  }

  .booking-summary {
    box-shadow: none;
  }
}
