/* ==========================================================================
   Hostal Zaguán — estilos de los widgets
   Paleta rural cálida + tipografía serif/sans.
   ========================================================================== */

.hz-rooms,
.hz-contact,
.hz-hero,
.hz-page-hero,
.hz-room-detail,
.hz-site-header,
.hz-site-footer,
.hz-highlights,
.hz-experience,
.hz-entorno,
.hz-search,
.hz-map,
.hz-places {
	--hz-cream: #faf7f1;
	--hz-cream-2: #f3ede1;
	--hz-ink: #2b2622;
	--hz-muted: #6f675d;
	--hz-green: #3a5a40;
	--hz-green-dark: #2c4632;
	--hz-accent: #bc6c25; /* terracota */
	--hz-accent-dark: #a85c1c;
	--hz-sand: #e9c9a3;
	--hz-line: #e7e0d4;
	--hz-radius: 16px;
	--hz-radius-sm: 12px;
	--hz-shadow: 0 18px 40px rgba(43, 38, 34, 0.10);
	--hz-shadow-lg: 0 30px 60px rgba(43, 38, 34, 0.18);
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	box-sizing: border-box;
}

.hz-rooms *,
.hz-contact *,
.hz-hero *,
.hz-page-hero *,
.hz-room-detail *,
.hz-site-header *,
.hz-site-footer *,
.hz-highlights *,
.hz-experience *,
.hz-entorno *,
.hz-search *,
.hz-map *,
.hz-places * {
	box-sizing: border-box;
}

/* ---- Tipografía compartida ---- */
.hz-eyebrow {
	margin: 0 0 0.6rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hz-accent);
}

.hz-section-title {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 600;
	font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
	line-height: 1.1;
	color: var(--hz-ink);
}

/* ---- Botones ---- */
.hz-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.6rem;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	line-height: 1;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.hz-btn:hover {
	transform: translateY(-2px);
}

.hz-btn--primary {
	background-color: var(--hz-accent);
	color: #fff;
	box-shadow: 0 10px 24px rgba(188, 108, 37, 0.32);
}

.hz-btn--primary:hover {
	background-color: #a85c1c;
	color: #fff;
}

.hz-btn--ghost {
	background-color: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
}

.hz-btn--ghost:hover {
	background-color: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.hz-btn--small {
	padding: 0.6rem 1.1rem;
	font-size: 0.85rem;
	background-color: var(--hz-green);
	color: #fff;
}

.hz-btn--small:hover {
	background-color: #2f4734;
	color: #fff;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hz-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: clamp(2rem, 5vw, 5rem);
	background-size: cover;
	background-position: center;
	border-radius: var(--hz-radius);
	overflow: hidden;
	isolation: isolate;
}

.hz-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(20, 18, 15, 0.15) 0%, rgba(20, 18, 15, 0.85) 100%);
	opacity: 0.45;
}

/* Capa de fondo independiente: permite el parallax al hacer scroll. */
.hz-hero__bg,
.hz-page-hero__bg {
	position: absolute;
	inset: -12% 0;
	z-index: -2;
	background-size: cover;
	background-position: center;
	will-change: transform;
}

.hz-hero__inner {
	position: relative;
	max-width: 640px;
	color: #fff;
}

/* Título del hero con líneas "enmascaradas" que suben al cargar. */
.hz-hero__title .hz-mask {
	display: block;
	overflow: hidden;
}
.hz-hero__title .hz-mask__inner {
	display: block;
}
.hz-anim-ready .hz-hero__title .hz-mask__inner {
	transform: translateY(110%);
}

.hz-hero__eyebrow {
	margin: 0 0 1rem;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
}

.hz-hero__title {
	margin: 0 0 1rem;
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 700;
	font-size: clamp(2.4rem, 1.2rem + 4.5vw, 4.5rem);
	line-height: 1.04;
}

.hz-hero__subtitle {
	margin: 0 0 2rem;
	font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
	max-width: 48ch;
}

.hz-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* ==========================================================================
   HABITACIONES
   ========================================================================== */
.hz-rooms {
	padding: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 5vw, 4rem);
	background-color: var(--hz-cream);
}

.hz-rooms__head {
	max-width: 720px;
	margin: 0 auto clamp(2rem, 4vw, 3.5rem);
	text-align: center;
}

.hz-rooms__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.2rem, 2.5vw, 2rem);
	max-width: 1200px;
	margin: 0 auto;
}

.hz-room {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border: 1px solid var(--hz-line);
	border-radius: var(--hz-radius);
	overflow: hidden;
	box-shadow: var(--hz-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hz-room:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 50px rgba(43, 38, 34, 0.16);
}

.hz-room__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.hz-room__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.hz-room:hover .hz-room__media img {
	transform: scale(1.06);
}

.hz-room__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.4rem 1.5rem 1.5rem;
}

.hz-room__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--hz-muted);
	margin-bottom: 0.7rem;
}

.hz-room__meta span {
	position: relative;
	padding-left: 1rem;
}

.hz-room__meta span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--hz-accent);
	transform: translateY(-50%);
}

.hz-room__name {
	margin: 0 0 0.6rem;
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 600;
	font-size: 1.4rem;
	color: var(--hz-ink);
}

.hz-room__desc {
	margin: 0 0 1.4rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--hz-muted);
}

.hz-room__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--hz-line);
}

.hz-room__price {
	margin: 0;
	font-size: 0.85rem;
	color: var(--hz-muted);
}

.hz-room__price strong {
	font-size: 1.35rem;
	color: var(--hz-ink);
	font-weight: 700;
	margin: 0 0.15rem;
}

.hz-room__price-prefix {
	display: block;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.hz-contact {
	padding: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 5vw, 4rem);
	background-color: var(--hz-green);
	color: #fff;
	border-radius: var(--hz-radius);
}

.hz-contact__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}

.hz-contact .hz-eyebrow {
	color: #e9c9a3;
}

.hz-contact .hz-section-title {
	color: #fff;
	margin-bottom: 1rem;
}

.hz-contact__text {
	margin: 0 0 2rem;
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
	max-width: 46ch;
}

.hz-contact__details {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.2rem;
}

.hz-contact__details li {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-bottom: 1.2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hz-contact__details li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.hz-contact__label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #e9c9a3;
}

.hz-contact__value {
	font-size: 1.15rem;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
}

a.hz-contact__value:hover {
	text-decoration: underline;
}

/* ==========================================================================
   BANNER DE PÁGINA (Page Hero)
   ========================================================================== */
.hz-page-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 56vh;
	padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.2rem, 5vw, 4rem);
	background-size: cover;
	background-position: center;
	border-radius: var(--hz-radius);
	overflow: hidden;
	isolation: isolate;
}
.hz-page-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(20, 18, 15, 0.28) 0%, rgba(20, 18, 15, 0.78) 100%);
	opacity: 0.55;
}
.hz-page-hero__inner {
	position: relative;
	max-width: 760px;
	color: #fff;
}
.hz-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	align-items: center;
	margin: 0 0 0.6rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.82);
}
.hz-breadcrumb a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
}
.hz-breadcrumb a:hover {
	color: #fff;
	text-decoration: underline;
}
.hz-breadcrumb__sep {
	opacity: 0.55;
}
.hz-breadcrumb__current {
	color: var(--hz-sand);
}
.hz-page-hero__eyebrow {
	margin: 0 0 0.7rem;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--hz-sand);
}
.hz-page-hero__title {
	margin: 0 0 0.8rem;
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 700;
	font-size: clamp(2.2rem, 1.2rem + 4vw, 4rem);
	line-height: 1.05;
}
.hz-page-hero__subtitle {
	margin: 0;
	font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
	max-width: 54ch;
}

/* ==========================================================================
   DETALLE DE HABITACIÓN
   ========================================================================== */
.hz-room-detail {
	padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.2rem, 5vw, 4rem);
	background-color: var(--hz-cream);
	color: var(--hz-ink);
}
.hz-room-detail__grid {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
	max-width: 1200px;
	margin: 0 auto;
}
.hz-room-detail__body h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 600;
	font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
	color: var(--hz-ink);
	margin: 2.4rem 0 1rem;
}
.hz-lead {
	font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
	line-height: 1.5;
	color: var(--hz-ink);
	margin: 0 0 1.3rem;
}
.hz-prose {
	color: var(--hz-muted);
	line-height: 1.65;
	max-width: 62ch;
}
.hz-prose p {
	margin: 0 0 1.1rem;
}

/* Datos rápidos (chips) */
.hz-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 0.7rem;
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
}
.hz-facts li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--hz-cream-2);
	border: 1px solid var(--hz-line);
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--hz-ink);
}
.hz-facts li b {
	color: var(--hz-accent);
	font-weight: 700;
}

/* Equipamiento */
.hz-amenities {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.9rem 1.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.hz-amenities li {
	position: relative;
	padding-left: 1.7rem;
	color: var(--hz-ink);
	font-size: 0.95rem;
}
.hz-amenities li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--hz-green);
	box-shadow: 0 0 0 4px rgba(58, 90, 64, 0.14);
}

/* Info práctica */
.hz-info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.hz-info__item {
	background: #fff;
	border: 1px solid var(--hz-line);
	border-radius: var(--hz-radius-sm);
	padding: 1rem 1.1rem;
}
.hz-info__label {
	display: block;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--hz-accent);
	font-weight: 600;
	margin-bottom: 0.25rem;
}
.hz-info__value {
	font-size: 0.98rem;
	color: var(--hz-ink);
}

/* Galería */
.hz-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(0.7rem, 1.4vw, 1.1rem);
	margin-top: 1.4rem;
}
.hz-gallery__item {
	aspect-ratio: 4 / 3;
	border-radius: var(--hz-radius-sm);
	overflow: hidden;
	cursor: pointer;
	border: 0;
	padding: 0;
	background: var(--hz-cream-2);
	transition: transform 0.5s ease, box-shadow 0.4s ease;
}
.hz-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.hz-gallery__item:hover {
	transform: scale(1.03);
	box-shadow: var(--hz-shadow);
}
.hz-gallery__item:focus-visible {
	outline: 3px solid var(--hz-accent);
	outline-offset: 3px;
}
.hz-gallery__item--wide {
	grid-column: span 2;
}

/* Ficha de reserva (sticky) */
.hz-booking {
	position: sticky;
	top: 1.5rem;
	background: #fff;
	border: 1px solid var(--hz-line);
	border-radius: var(--hz-radius);
	box-shadow: var(--hz-shadow-lg);
	padding: 1.6rem 1.5rem;
}
.hz-booking__price {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
	margin: 0 0 0.3rem;
}
.hz-booking__price strong {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 2.2rem;
	color: var(--hz-ink);
	line-height: 1;
}
.hz-booking__price span {
	color: var(--hz-muted);
	font-size: 0.9rem;
}
.hz-booking__sub {
	margin: 0 0 1.3rem;
	color: var(--hz-muted);
	font-size: 0.85rem;
}
.hz-booking .hz-btn {
	width: 100%;
}
.hz-booking__note {
	margin: 1rem 0 0;
	font-size: 0.8rem;
	color: var(--hz-muted);
	text-align: center;
}
.hz-booking__divider {
	height: 1px;
	background: var(--hz-line);
	margin: 1.3rem 0;
}
.hz-booking__contact {
	margin: 0;
	font-size: 0.88rem;
	color: var(--hz-muted);
}
.hz-booking__contact a {
	color: var(--hz-accent);
	font-weight: 600;
	text-decoration: none;
}

/* ==========================================================================
   HIGHLIGHTS (datos destacados)
   ========================================================================== */
.hz-highlights {
	padding: clamp(3.5rem, 6vw, 6rem) clamp(1.2rem, 5vw, 4rem);
	background-color: var(--hz-cream);
}
.hz-highlights__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1.2rem, 2.5vw, 2rem);
	max-width: 1200px;
	margin: 0 auto;
}
.hz-highlight {
	padding: 1.6rem 1.4rem;
	border-left: 2px solid var(--hz-line);
}
.hz-highlight__num {
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 2.6rem;
	color: var(--hz-accent);
	line-height: 1;
	margin-bottom: 0.6rem;
}
.hz-highlight__num small {
	font-size: 1rem;
	margin-left: 2px;
}
.hz-highlight h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 600;
	font-size: 1.2rem;
	margin: 0 0 0.4rem;
	color: var(--hz-ink);
}
.hz-highlight p {
	margin: 0;
	color: var(--hz-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

/* ==========================================================================
   BUSCADOR
   ========================================================================== */
.hz-search {
	padding: clamp(2rem, 4vw, 3rem) clamp(1.2rem, 5vw, 4rem);
	background-color: var(--hz-cream);
}
.hz-search__bar {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr auto;
	gap: 1rem;
	align-items: end;
	background: #fff;
	padding: 1.4rem;
	border-radius: var(--hz-radius);
	box-shadow: var(--hz-shadow-lg);
	border: 1px solid var(--hz-line);
	max-width: 1100px;
	margin: 0 auto;
}
.hz-search__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.hz-search__field label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--hz-muted);
}
.hz-search__field input,
.hz-search__field select {
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--hz-line);
	border-radius: var(--hz-radius-sm);
	font: inherit;
	color: var(--hz-ink);
	background: var(--hz-cream);
	width: 100%;
}
.hz-search__field input:focus,
.hz-search__field select:focus {
	outline: 2px solid var(--hz-accent);
	border-color: transparent;
}
.hz-search__submit {
	height: 100%;
	white-space: nowrap;
}

/* ==========================================================================
   EXPERIENCIA (sección fijada con barra de progreso)
   ========================================================================== */
.hz-experience {
	background-color: var(--hz-green);
	color: #fff;
}
.hz-exp__pin {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 5vw, 4rem);
}
.hz-exp__inner {
	width: min(1200px, 100%);
	margin: 0 auto;
}
.hz-exp__head {
	max-width: 720px;
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.hz-exp__head .hz-eyebrow {
	color: var(--hz-sand);
}
.hz-exp__head .hz-section-title {
	color: #fff;
}
.hz-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.5rem, 3vw, 3rem);
	margin-top: 2.5rem;
}
.hz-step {
	padding-top: 1.4rem;
	border-top: 2px solid rgba(255, 255, 255, 0.25);
}
.hz-step__num {
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 2.4rem;
	color: var(--hz-sand);
	margin-bottom: 0.6rem;
}
.hz-step h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 600;
	font-size: 1.6rem;
	margin: 0 0 0.6rem;
}
.hz-step p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.55;
}
.hz-exp__progress {
	margin-top: 3rem;
	height: 3px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 3px;
	overflow: hidden;
}
.hz-exp__progress span {
	display: block;
	height: 100%;
	width: 0;
	background: var(--hz-sand);
}

/* ==========================================================================
   ENTORNO (imagen + texto)
   ========================================================================== */
.hz-entorno {
	padding: clamp(3.5rem, 6vw, 6.5rem) clamp(1.2rem, 5vw, 4rem);
	background-color: var(--hz-cream);
}
.hz-entorno__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.hz-entorno__media {
	border-radius: var(--hz-radius);
	overflow: hidden;
	box-shadow: var(--hz-shadow-lg);
	aspect-ratio: 4 / 3;
}
.hz-entorno__img {
	width: 100%;
	height: 120%;
	margin-top: -10%;
	background-size: cover;
	background-position: center;
	background-color: var(--hz-cream-2);
	will-change: transform;
}
.hz-entorno__text .hz-section-title {
	margin: 0 0 0.4rem;
}
.hz-entorno__text p {
	color: var(--hz-muted);
	margin: 1rem 0 1.8rem;
	max-width: 50ch;
	line-height: 1.65;
}

/* ==========================================================================
   LUGARES / QUÉ VER (tarjetas con foto)
   ========================================================================== */
.hz-places {
	padding: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 5vw, 4rem);
	background-color: var(--hz-cream);
}
.hz-places__head {
	max-width: 720px;
	margin: 0 auto clamp(2rem, 4vw, 3.5rem);
	text-align: center;
}
.hz-places__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.2rem, 2.5vw, 2rem);
	max-width: 1200px;
	margin: 0 auto;
}
.hz-place {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 320px;
	border-radius: var(--hz-radius);
	overflow: hidden;
	box-shadow: var(--hz-shadow);
	text-decoration: none;
	color: #fff;
	isolation: isolate;
}
.hz-place__img {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-size: cover;
	background-position: center;
	background-color: var(--hz-cream-2);
	transition: transform 0.6s ease;
}
.hz-place::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(20, 18, 15, 0) 28%, rgba(20, 18, 15, 0.85) 100%);
}
a.hz-place:hover .hz-place__img {
	transform: scale(1.06);
}
.hz-place__body {
	padding: 1.4rem 1.4rem 1.5rem;
}
.hz-place__tag {
	display: inline-block;
	background: rgba(250, 247, 241, 0.92);
	color: var(--hz-ink);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	padding: 0.32rem 0.7rem;
	border-radius: 999px;
	margin-bottom: 0.7rem;
}
.hz-place__title {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 600;
	font-size: 1.4rem;
	margin: 0 0 0.4rem;
}
.hz-place__text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
}

/* ==========================================================================
   MAPA / UBICACIÓN
   ========================================================================== */
.hz-map {
	padding: clamp(3rem, 6vw, 5.5rem) clamp(1.2rem, 5vw, 4rem);
	background-color: var(--hz-cream);
}
.hz-map__grid {
	display: grid;
	grid-template-columns: 1fr 0.85fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.hz-map__frame {
	border-radius: var(--hz-radius);
	overflow: hidden;
	border: 1px solid var(--hz-line);
	box-shadow: var(--hz-shadow);
	aspect-ratio: 16 / 11;
	background: var(--hz-cream-2);
}
.hz-map__frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.hz-map__text .hz-section-title {
	margin: 0 0 0.4rem;
}
.hz-map__text p {
	color: var(--hz-muted);
	margin: 1rem 0 1.4rem;
	line-height: 1.65;
	max-width: 52ch;
}
.hz-map__points {
	list-style: none;
	margin: 0 0 1.6rem;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}
.hz-map__points li {
	position: relative;
	padding-left: 1.7rem;
	color: var(--hz-ink);
	font-size: 0.95rem;
}
.hz-map__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--hz-accent);
	box-shadow: 0 0 0 4px rgba(188, 108, 37, 0.14);
}

/* ==========================================================================
   HEADER (cabecera global — Theme Builder)
   ========================================================================== */
.hz-site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
	height: 76px;
	display: flex;
	align-items: center;
	transition: background-color 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}
.hz-site-header.is-scrolled,
.hz-site-header--solid {
	background: rgba(250, 247, 241, 0.92);
	backdrop-filter: blur(10px);
	box-shadow: 0 1px 0 var(--hz-line), 0 10px 30px rgba(43, 38, 34, 0.06);
	height: 64px;
}
.hz-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: min(1200px, 100% - 3rem);
	margin-inline: auto;
}
.hz-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: #fff;
	font-weight: 600;
}
.hz-site-header.is-scrolled .hz-brand,
.hz-site-header--solid .hz-brand {
	color: var(--hz-ink);
}
.hz-brand__mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--hz-accent);
	color: #fff;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.2rem;
}
.hz-brand__name {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.15rem;
}
.hz-brand__logo {
	display: block;
	max-height: 42px;
	width: auto;
}
.hz-nav {
	display: flex;
	align-items: center;
	gap: 1.8rem;
}
.hz-nav__link {
	position: relative;
	text-decoration: none;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.3s ease;
}
.hz-site-header.is-scrolled .hz-nav__link,
.hz-site-header--solid .hz-nav__link {
	color: var(--hz-ink);
}
.hz-nav__link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 2px;
	background: var(--hz-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.hz-nav__link:hover::after,
.hz-nav__link.is-active::after {
	transform: scaleX(1);
}
.hz-nav__cta {
	padding: 0.6rem 1.15rem;
	font-size: 0.85rem;
}
.hz-nav__cta::after {
	display: none;
}
.hz-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 10px;
}
.hz-nav-toggle span {
	height: 2px;
	width: 100%;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.hz-site-header.is-scrolled .hz-nav-toggle span,
.hz-site-header--solid .hz-nav-toggle span {
	background: var(--hz-ink);
}

/* ==========================================================================
   FOOTER (pie global — Theme Builder)
   ========================================================================== */
.hz-site-footer {
	background: var(--hz-ink);
	color: rgba(255, 255, 255, 0.7);
	padding: 2.5rem 0;
}
.hz-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	text-align: center;
	width: min(1200px, 100% - 3rem);
	margin-inline: auto;
}
.hz-site-footer .hz-brand,
.hz-site-footer .hz-brand__name {
	color: #fff;
}
.hz-footer__note {
	margin: 0;
	font-size: 0.9rem;
}
.hz-footer__copy {
	margin: 0;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   LIGHTBOX (galería)
   ========================================================================== */
.hz-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	background: rgba(20, 18, 15, 0.92);
	padding: clamp(1rem, 4vw, 3rem);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}
.hz-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}
.hz-lightbox__img {
	max-width: min(1100px, 100%);
	max-height: 82vh;
	width: 100%;
	aspect-ratio: 3 / 2;
	border-radius: var(--hz-radius, 16px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
	background-size: cover;
	background-position: center;
	background-color: #2b2622;
}
.hz-lightbox__close,
.hz-lightbox__nav {
	position: absolute;
	background: rgba(255, 255, 255, 0.14);
	border: 0;
	color: #fff;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	display: grid;
	place-items: center;
	transition: background-color 0.3s ease, transform 0.3s ease;
}
.hz-lightbox__close:hover,
.hz-lightbox__nav:hover {
	background: rgba(255, 255, 255, 0.28);
}
.hz-lightbox__close {
	top: 1.2rem;
	right: 1.2rem;
}
.hz-lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
}
.hz-lightbox__nav--prev {
	left: 1.2rem;
}
.hz-lightbox__nav--next {
	right: 1.2rem;
}

/* ==========================================================================
   ANIMACIONES — estado inicial (solo si GSAP va a animar).
   La clase .hz-anim-ready la añade el JS; así, sin JS, todo se ve igual.
   ========================================================================== */
.hz-anim-ready [data-hz-anim],
.hz-anim-ready [data-hz-card],
.hz-anim-ready [data-hz-reveal],
.hz-anim-ready .hz-rooms__head {
	opacity: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
	.hz-room-detail__grid {
		grid-template-columns: 1fr;
	}
	.hz-booking {
		position: static;
		max-width: 460px;
	}
}

@media (max-width: 900px) {
	.hz-rooms__grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.hz-contact__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.hz-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(320px, 80vw);
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 1.6rem;
		background: var(--hz-green-dark);
		padding: 2rem;
		transform: translateX(100%);
		transition: transform 0.45s ease;
		box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
		z-index: 1001;
	}
	.hz-nav.is-open {
		transform: translateX(0);
	}
	.hz-nav__link,
	.hz-site-header.is-scrolled .hz-nav__link,
	.hz-site-header--solid .hz-nav__link {
		color: #fff;
		font-size: 1.2rem;
	}
	.hz-nav-toggle {
		display: flex;
	}
}

@media (max-width: 1024px) {
	.hz-highlights__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hz-places__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 860px) {
	.hz-steps {
		grid-template-columns: 1fr;
	}
	.hz-entorno__grid,
	.hz-map__grid {
		grid-template-columns: 1fr;
	}
	.hz-exp__pin {
		min-height: auto;
	}
	.hz-info {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 720px) {
	.hz-amenities {
		grid-template-columns: 1fr;
	}
	.hz-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
	.hz-info {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.hz-search__bar {
		grid-template-columns: 1fr;
	}
	.hz-highlights__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.hz-rooms__grid {
		grid-template-columns: 1fr !important;
	}
	.hz-places__grid {
		grid-template-columns: 1fr;
	}
	.hz-hero {
		align-items: center;
	}
}

/* Respeta a quien prefiere menos movimiento. */
@media (prefers-reduced-motion: reduce) {
	.hz-anim-ready [data-hz-anim],
	.hz-anim-ready [data-hz-card],
	.hz-anim-ready [data-hz-reveal],
	.hz-anim-ready .hz-rooms__head {
		opacity: 1;
	}
	.hz-anim-ready .hz-hero__title .hz-mask__inner {
		transform: none;
	}
	.hz-exp__pin {
		min-height: auto;
	}
	.hz-exp__progress span {
		width: 100% !important;
	}
	.hz-btn,
	.hz-room,
	.hz-room__media img,
	.hz-gallery__item {
		transition: none;
	}
}
