.booking-page {
	background: var(--black, #050505);
	color: var(--white, #fbfaf7);
	min-height: 72vh;
	padding: 160px 24px 120px;
}
.booking-inner {
	max-width: 720px;
	margin: 0 auto;
}
.booking-eyebrow {
	text-transform: uppercase;
	letter-spacing: .22em;
	font-size: .72rem;
	color: var(--gold, #b69357);
	margin: 0 0 14px;
}
.booking-title {
	font-family: var(--font-display, "Gilda Display", Georgia, serif);
	font-size: clamp(2rem, 5vw, 3rem);
	line-height: 1.12;
	margin: 0 0 16px;
}
.booking-lead {
	color: var(--gray, #8e8983);
	font-size: 1.05rem;
	margin: 0 0 40px;
}
.booking-muted {
	color: var(--gray, #8e8983);
}

/* tarjetas de elección */
.booking-choice-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
	.booking-choice-grid { grid-template-columns: 1fr; }
}
.booking-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 32px 28px;
	border: 1px solid rgba(182, 147, 87, .28);
	border-radius: 14px;
	background: var(--ink, #151312);
	text-decoration: none;
	color: inherit;
	transition: transform .25s ease, border-color .25s ease;
}
.booking-card:hover {
	transform: translateY(-4px);
	border-color: var(--gold, #b69357);
}
.booking-card-kicker {
	text-transform: uppercase;
	letter-spacing: .18em;
	font-size: .68rem;
	color: var(--gold, #b69357);
}
.booking-card-title {
	font-family: var(--font-display, "Gilda Display", Georgia, serif);
	font-size: 1.5rem;
}
.booking-card-desc {
	color: var(--gray, #8e8983);
	font-size: .95rem;
	margin-bottom: 14px;
}
.booking-card .btn {
	margin-top: auto;
	align-self: flex-start;
}

/* pasos */
.booking-step { margin-bottom: 40px; }
.booking-step-title {
	font-family: var(--font-display, "Gilda Display", Georgia, serif);
	font-size: 1.25rem;
	margin: 0 0 18px;
}
.booking-slots { display: block; }

/* ---- Calendario ---- */
.booking-calendar {
	max-width: 420px;
	background: linear-gradient(180deg, rgba(182,147,87,.06), rgba(21,19,18,0)) , var(--ink, #151312);
	border: 1px solid rgba(182, 147, 87, .22);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 28px 70px rgba(0, 0, 0, .45);
	animation: booking-fade .35s ease;
}
.booking-cal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.booking-cal-month {
	font-family: var(--font-display, "Gilda Display", Georgia, serif);
	font-size: 1.2rem;
	color: var(--white, #fbfaf7);
}
.booking-cal-nav { display: flex; gap: 8px; }
.booking-cal-arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .14);
	background: transparent;
	color: var(--white, #fbfaf7);
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.booking-cal-arrow:hover:not(:disabled) {
	border-color: var(--gold, #b69357);
	color: var(--gold, #b69357);
}
.booking-cal-arrow:disabled { opacity: .22; cursor: default; }
.booking-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
}
.booking-cal-weekday {
	text-align: center;
	font-size: .62rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--gray, #8e8983);
	padding-bottom: 8px;
}
.booking-cal-day {
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-size: .9rem;
	font-family: var(--font-body, "Montserrat", Arial, sans-serif);
	border: 1px solid transparent;
	background: transparent;
	color: var(--white, #fbfaf7);
	position: relative;
}
.booking-cal-day.is-empty { background: transparent; }
.booking-cal-day.is-disabled { color: rgba(255, 255, 255, .16); }
.booking-cal-day.is-available {
	cursor: pointer;
	background: rgba(182, 147, 87, .10);
	border-color: rgba(182, 147, 87, .32);
	transition: transform .15s ease, background .2s ease;
}
.booking-cal-day.is-available::after {
	content: "";
	position: absolute;
	bottom: 6px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gold, #b69357);
}
.booking-cal-day.is-available:hover {
	background: rgba(182, 147, 87, .24);
	transform: translateY(-2px);
}
.booking-cal-day.is-selected {
	background: var(--gold, #b69357);
	color: #1a1208;
	border-color: var(--gold, #b69357);
	font-weight: 600;
}
.booking-cal-day.is-selected::after { background: #1a1208; }

/* ---- Horarios del día ---- */
.booking-times {
	margin-top: 28px;
	animation: booking-fade .3s ease;
}
.booking-times-title {
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--gold, #b69357);
	margin: 0 0 14px;
}
.booking-times-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.booking-time {
	font-family: var(--font-body, "Montserrat", Arial, sans-serif);
	font-size: .92rem;
	padding: 12px 20px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .16);
	background: var(--ink, #151312);
	color: var(--white, #fbfaf7);
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.booking-time:hover { border-color: var(--gold, #b69357); }
.booking-time.is-selected {
	background: var(--gold, #b69357);
	color: #1a1208;
	border-color: var(--gold, #b69357);
	font-weight: 600;
}

@keyframes booking-fade {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* formulario */
.booking-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 460px;
	margin-top: 40px;
	animation: booking-fade .3s ease;
}
.booking-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.booking-field label {
	font-size: .85rem;
	color: var(--gray, #8e8983);
}
.booking-field input {
	font-family: var(--font-body, "Montserrat", Arial, sans-serif);
	font-size: 1rem;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .16);
	background: var(--ink, #151312);
	color: var(--white, #fbfaf7);
}
.booking-field input:focus {
	outline: none;
	border-color: var(--gold, #b69357);
}
.booking-policy {
	font-size: .85rem;
	color: var(--gray, #8e8983);
	border-left: 2px solid var(--gold, #b69357);
	padding-left: 14px;
	margin: 6px 0;
}
.booking-submit { align-self: flex-start; }
.booking-error {
	color: var(--red, #c33b35);
	font-size: .9rem;
	margin: 0;
}

/* resultado */
.booking-result-inner { text-align: center; }
.booking-spinner {
	display: inline-block;
	width: 34px;
	height: 34px;
	margin-top: 24px;
	border: 3px solid rgba(182, 147, 87, .25);
	border-top-color: var(--gold, #b69357);
	border-radius: 50%;
	animation: booking-spin 1s linear infinite;
}
@keyframes booking-spin {
	to { transform: rotate(360deg); }
}
