:root {
	--hn-color-primary: #245f9a;
	--hn-color-primary-strong: #1c496a;
	--hn-color-accent: #ab8d6c;
	--hn-color-ink: #161c1f;
	--hn-color-muted: #5e5e5c;
	--hn-color-surface: #f8f3f5;
	--hn-color-surface-alt: #d7eefc;
	--hn-color-white: #ffffff;
	--hn-container: 1160px;
	--hn-radius: 14px;
	--hn-shadow: 0 16px 30px rgba(16, 28, 39, 0.12);
}

.hn-home {
	font-family: 'Montserrat', sans-serif;
	color: var(--hn-color-ink);
	background: var(--hn-color-white);
	line-height: 1.55;
}

.hn-home * {
	box-sizing: border-box;
}

.hn-container {
	width: min(100% - 48px, var(--hn-container));
	margin-inline: auto;
}

.hn-overline {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hn-color-primary);
}

.hn-home h1,
.hn-home h2,
.hn-home h3 {
	margin: 0;
	line-height: 1.2;
	font-family: 'Playfair Display', serif;
}

.hn-home p {
	margin: 0;
}

.hn-topbar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: 100%;
	color: #eaf3ff;
	font-size: 13px;
	font-weight: 500;
	padding-top: 18px;
}

.hn-topbar__left {
	display: flex;
	align-items: center;
	gap: 18px;
}

.hn-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #eaf3ff;
	font-size: 13px;
	line-height: 1;
	text-decoration: none;
	opacity: 1;
	padding: 3px 7px;
	border-radius: 999px;
	transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.hn-topbar__item + .hn-topbar__item {
	padding-left: 16px;
}

.hn-topbar__item:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.14);
	transform: translateY(-1px);
}

.hn-topbar__item:focus-visible {
	outline: 1px solid rgba(255, 255, 255, 0.45);
	outline-offset: 2px;
}

.hn-icon {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	font-size: 11px;
}

.hn-topbar__lang {
	justify-self: end;
	border: 0;
	padding: 0;
	background: transparent;
	font-family: inherit;
	font-size: 13px;
	color: #cde3ff;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(205, 227, 255, 0.9);
	box-shadow: none;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.hn-topbar__lang span {
	opacity: 0.55;
}

.hn-topbar__lang span.is-active {
	opacity: 1;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hn-topbar__lang:hover,
.hn-topbar__lang:focus-visible {
	color: #ffffff;
	text-decoration-color: #ffffff;
	background: transparent;
	outline: none;
	box-shadow: none;
}


/* ── Hamburger toggle (hidden on desktop) ─────────────────── */
.hn-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 8px;
	background: rgba(8, 24, 38, 0.58);
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 8px;
	cursor: pointer;
	margin-top: 16px;
	align-self: flex-end;
	backdrop-filter: blur(6px);
	box-shadow: 0 10px 20px rgba(7, 18, 29, 0.3);
}

.hn-menu-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.hn-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hn-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hn-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sticky / scrolled header */
.hn-hero__header.is-sticky {
	position: fixed;
	top: 0;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	z-index: 50;
	background: transparent;
	backdrop-filter: none;
	padding: 6px 20px;
	width: min(100% - 48px, var(--hn-container));
	max-width: none;
	border-radius: 0 0 12px 12px;
}

.hn-hero__header.is-sticky::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	width: 100vw;
	height: 100%;
	transform: translateX(-50%);
	background: rgba(10, 29, 45, 0.92);
	backdrop-filter: blur(8px);
	z-index: -1;
}

.hn-hero__header.is-sticky .hn-topbar {
	display: none;
}

.hn-hero__header.is-sticky .hn-nav-row {
	justify-content: space-between;
	margin-top: 0;
}

.hn-hero__header.is-sticky .hn-nav-row__logo {
	display: inline-flex;
}

.hn-hero__header.is-sticky .hn-nav-row__logo img {
	width: 126px;
}

.hn-hero__header.is-sticky .hn-menu {
	margin-top: 0;
	justify-content: flex-end;
	gap: 24px;
	font-size: 12px;
}

.hn-hero__header.is-sticky .hn-menu .hn-button {
	padding: 9px 20px;
	font-size: 13px;
}

.hn-menu__breadcrumb {
	display: none;
}

.hn-menu-close {
	display: none;
}


.hn-hero {
	min-height: 100vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: background-image 0.6s ease-in-out;
	color: var(--hn-color-white);
	position: relative;
	padding-bottom: 40px;
}

.hn-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 29, 45, 0.28) 0%, rgba(10, 29, 45, 0.05) 48%, rgba(10, 29, 45, 0.25) 100%);
}

.hn-hero__header {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(100% - 48px, var(--hn-container));
	margin-inline: auto;
	padding-top: 8px;
}

.hn-logo img {
	display: block;
	width: 200px;
	height: auto;
}

.hn-logo {
	display: inline-flex;
	margin-top: 0;
}

.hn-nav-row {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 12px;
	width: 100%;
	gap: 44px;
}

.hn-nav-row__logo {
	display: none;
}

.hn-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 44px;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.hn-menu a {
	color: #f2f7ff;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.hn-menu a:hover {
	opacity: 0.85;
}

.hn-menu .hn-button {
	padding: 12px 30px;
	border-radius: 6px;
	background: #f8f3f5;
	color: #1f4f8d;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.hn-menu .hn-button:hover {
	color: #1f4f8d;
	background: #ffffff;
}

.hn-hero__bottom {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	z-index: 2;
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.hn-dot {
	padding: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid rgba(255, 255, 255, 0.9);
	cursor: pointer;
}

.hn-dot--active {
	background: #2c67c5;
	border-color: #2c67c5;
}

.hn-whatsapp {
	position: fixed;
	right: 42px;
	bottom: 34px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #1f4f8d;
	display: grid;
	place-items: center;
	box-shadow: 0 14px 25px rgba(10, 28, 47, 0.35);
	z-index: 100;
}

.hn-whatsapp svg {
	width: 34px;
	height: 34px;
	fill: #ffffff;
}

.hn-booking {
	position: relative;
	z-index: 1;
	scroll-margin-top: 120px;
	margin-top: 0;
	padding: clamp(10px, 1.5vw, 20px) 0 clamp(18px, 2.6vw, 30px);
	background-color: #d7ebf9;
}

.hn-booking--focus .hn-booking__form {
	animation: hnBookingFocus 1s ease;
}

@keyframes hnBookingFocus {
	0% {
		box-shadow: 0 0 0 0 rgba(36, 95, 154, 0.42);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(36, 95, 154, 0.18);
	}
	100% {
		box-shadow: var(--hn-shadow);
	}
}

.hn-booking__form {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	padding: 14px 16px 12px;
	border-radius: 16px;
	background: #f2e9ee;
	box-shadow: var(--hn-shadow);
	align-items: end;
}

.hn-booking__form label,
.hn-contact__form label {
	display: flex;
	flex-direction: column;
	gap: 7px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--hn-color-muted);
}

.hn-booking__form input,
.hn-booking__form select,
.hn-contact__form input,
.hn-contact__form select,
.hn-contact__form textarea {
	width: 100%;
	padding: 13px 12px;
	border: 1px solid #cbd6df;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--hn-color-ink);
	background: var(--hn-color-white);
}

.hn-booking__form button,
.hn-contact__form button {
	border: 0;
	border-radius: 10px;
	background: var(--hn-color-primary);
	color: var(--hn-color-white);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	padding: 0 16px;
	transition: background 0.2s ease;
}

.hn-booking__form button:hover,
.hn-contact__form button:hover {
	background: var(--hn-color-primary-strong);
}

.hn-booking__form label {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: none;
	color: #202a45;
}

.hn-booking__form input,
.hn-booking__form select {
	border: 0;
	border-radius: 4px;
	padding: 9px 10px;
	height: 36px;
	font-size: 12px;
	font-weight: 600;
	color: #eaf1ff;
	background: #183f93;
}

.hn-booking__form input::placeholder {
	color: #d9e4ff;
	opacity: 0.95;
}

.hn-booking__form button {
	height: 36px;
	border-radius: 4px;
	background: #f6f2f5;
	color: #18479d;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.hn-booking__field {
	gap: 6px;
	position: relative;
}

.hn-booking__field--date,
.hn-booking__field--guests {
	min-width: 0;
}

.hn-booking__date-card,
.hn-booking__guests-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 36px;
	padding: 4px 8px;
	background: #183f93;
	border-radius: 4px;
	color: #ffffff;
	border: 0;
	width: 100%;
	cursor: pointer;
}

.hn-booking__date-main {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.hn-booking__date-main strong {
	font-size: 34px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.hn-booking__date-main p,
.hn-booking__date-main small {
	margin: 0;
	line-height: 1;
	white-space: nowrap;
}

.hn-booking__date-main p {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.hn-booking__date-main small {
	font-size: 9px;
	opacity: 0.9;
}

.hn-booking__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	line-height: 1;
	opacity: 0.9;
}

.hn-booking__icon--calendar svg {
	width: 20px;
	height: 20px;
	display: block;
}

.hn-booking__icon--arrow {
	font-size: 16px;
	font-weight: 700;
}

.hn-booking__dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	background: #f4eef2;
	border: 1px solid rgba(24, 63, 147, 0.2);
	border-radius: 8px;
	box-shadow: 0 10px 18px rgba(10, 28, 47, 0.15);
	padding: 6px;
	z-index: 12;
}

.hn-booking__field.is-open .hn-booking__dropdown {
	display: grid;
	gap: 4px;
}

.hn-booking__dropdown button {
	height: auto;
	padding: 8px 10px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: #173c8f;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	text-align: left;
	cursor: pointer;
}

.hn-booking__dropdown button:hover {
	background: rgba(24, 63, 147, 0.1);
}

.hn-booking__dropdown--date {
	padding: 10px;
}

.hn-booking__calendar-controls {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.hn-booking__calendar-controls label {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	color: #173c8f;
}

.hn-booking__calendar-controls select {
	width: 100%;
	box-sizing: border-box;
	height: 32px;
	border-radius: 6px;
	border: 1px solid rgba(24, 63, 147, 0.25);
	background: #ffffff;
	color: #173c8f;
	padding: 0 24px 0 8px;
	font-size: 12px;
	font-weight: 600;
	text-overflow: ellipsis;
	overflow: hidden;
}

.hn-booking__apply {
	margin-top: 9px;
	width: 100%;
	height: 34px;
	border: 0;
	border-radius: 6px;
	background: #183f93;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.hn-booking__form button:hover {
	background: #ffffff;
	color: #18479d;
}

.hn-about,
.hn-values,
.hn-rooms,
.hn-experiences,
.hn-gallery,
.hn-contact {
	padding: 92px 0;
}

.hn-about {
	padding: clamp(34px, 5vw, 56px) 0 clamp(58px, 8vw, 96px);
	background-color: #d7ebf9;
	background-image: url(../images/Mapa.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.hn-about__content {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 40px;
	align-items: center;
}

.hn-about h2 {
	margin-top: 0;
	max-width: 520px;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(22px, 3vw, 40px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #18479d;
}

.hn-about__copy {
	max-width: 560px;
	text-align: left;
}

.hn-about__location {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 10px;
	font-size: clamp(11px, 1.4vw, 13px);
	font-weight: 500;
	color: #5f85be;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(95, 133, 190, 0.45);
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.hn-about__location:hover {
	color: #2355b2;
	text-decoration-color: rgba(35, 85, 178, 0.7);
}

.hn-about__copy p:last-child {
	margin-top: 14px;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(14px, 1.6vw, 18px);
	line-height: 1.75;
	color: #3d6fab;
}

.hn-about__map {
	position: relative;
	width: min(100%, 420px);
	aspect-ratio: 1 / 1;
	margin-left: auto;
	margin-right: 0;
}



.hn-values h2,
.hn-values h2,
.hn-rooms h2,
.hn-experiences h2,
.hn-gallery h2,
.hn-contact h2 {
	margin-top: 10px;
	font-size: clamp(34px, 4.5vw, 52px);
	color: var(--hn-color-ink);
}
.hn-about p:last-child,
.hn-values__intro,
.hn-rooms__meta,
.hn-contact__copy p:last-child {
	margin-top: 16px;
	font-size: 18px;
	color: var(--hn-color-muted);
}

.hn-values {
	background: var(--hn-color-surface);
	text-align: center;
}

.hn-values--story {
	padding: clamp(44px, 5vw, 62px) 0;
	background: #d4e6f4;
	text-align: left;
}

.hn-values--story .hn-container {
	max-width: 1200px;
}

.hn-values__title-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 10px;
}

.hn-values__title-icon {
	width: auto;
	height: clamp(36px, 4vw, 56px);
	flex: 0 0 auto;
}

.hn-values--story h2 {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(30px, 4.1vw, 52px);
	font-weight: 500;
	line-height: 1.03;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #2355b2;
}

.hn-values--story .hn-values__intro {
	max-width: 930px;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(13px, 1.2vw, 17px);
	line-height: 1.45;
	color: #5579ab;
}

.hn-values__slider-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: clamp(26px, 3.2vw, 42px);
}

.hn-values__slider {
	display: flex;
	gap: 20px;
	overflow: hidden;
	flex: 1;
	min-width: 0;
}

.hn-values--story .hn-value-card {
	padding: 0;
	border-radius: 14px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 5px 10px rgba(33, 61, 95, 0.26);
	align-self: stretch;
	display: flex;
	flex-direction: column;
	flex: 0 0 calc(33.333% - 14px);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hn-values--story .hn-value-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 22px rgba(33, 61, 95, 0.32);
}

.hn-value-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #bfd8ec;
}

.hn-value-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hn-value-card__body {
	padding: 14px 22px 16px;
	min-height: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 8px;
}

.hn-values--story .hn-value-card h3 {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(14px, 1.55vw, 28px);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #2454ad;
}

.hn-values--story .hn-value-card p {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(10px, 0.82vw, 13px);
	line-height: 1.32;
	color: #355b93;
}

.hn-values__intro {
	max-width: 860px;
	margin-inline: auto;
}

.hn-values__grid,
.hn-rooms__grid,
.hn-experiences__grid,
.hn-gallery__grid {
	display: grid;
	gap: 24px;
	margin-top: 40px;
}

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

.hn-values:not(.hn-values--story) .hn-values__grid article,
.hn-rooms__grid article,
.hn-experiences__grid article {
	padding: 28px;
	border-radius: var(--hn-radius);
	background: var(--hn-color-white);
	box-shadow: var(--hn-shadow);
}

.hn-values__grid h3,
.hn-rooms__grid h3,
.hn-experiences__grid h3 {
	font-size: 26px;
	color: var(--hn-color-primary-strong);
}

.hn-values__grid p,
.hn-rooms__grid p,
.hn-experiences__grid p {
	margin-top: 10px;
	font-size: 15px;
	color: var(--hn-color-muted);
}

.hn-rooms {
	background: #d4e6f4;
	text-align: left;
}

.hn-rooms__title-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
}

.hn-rooms__title-icon {
	width: auto;
	height: clamp(40px, 4.5vw, 62px);
	flex: 0 0 auto;
}

.hn-rooms__head h2 {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(32px, 4.4vw, 54px);
	font-weight: 500;
	line-height: 1.03;
	text-transform: uppercase;
	color: #2355b2;
}

.hn-rooms__meta-row {
	margin-top: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 16px;
}

.hn-rooms__includes {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.hn-rooms__includes > span {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(16px, 1.2vw, 18px);
	font-weight: 700;
	color: #2a56ad;
}

.hn-rooms__includes ul {
	list-style: none;
	margin: 0;
	padding: 10px 28px 10px 22px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 8px 32px;
	align-items: center;
	background: #fce8e4;
	border-radius: 40px;
}

.hn-rooms__includes li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(12px, 0.9vw, 15px);
	font-weight: 500;
	color: #4f6ca0;
	white-space: nowrap;
}

.hn-rooms__includes li img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.hn-rooms__more {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(18px, 1.35vw, 22px);
	font-weight: 500;
	color: #2355b2;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.hn-rooms__catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 26px);
	margin-top: 24px;
}

.hn-room-card {
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 5px 10px rgba(33, 61, 95, 0.26);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.hn-room-card__media {
	position: relative;
	padding: 0;
	background: #ffffff;
}

.hn-room-card__tag {
	position: absolute;
	top: 16px;
	right: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	height: 30px;
	padding: 0 16px;
	border-radius: 6px;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #ffffff;
	background: #2454ad;
	z-index: 2;
}

.hn-room-card__slides {
	position: relative;
	border-radius: 0;
	overflow: hidden;
	aspect-ratio: 16 / 15;
	background: #c2d8ec;
}

.hn-room-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.hn-room-slide.is-active {
	opacity: 1;
}

.hn-room-card__dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	padding: 9px 0 2px;
}

.hn-room-card__dots button {
	padding: 0;
	width: 8px;
	height: 8px;
	border: 1px solid rgba(36, 84, 173, 0.65);
	border-radius: 50%;
	background: #d2ddf1;
	cursor: pointer;
}

.hn-room-card__dots button.is-active {
	background: #2454ad;
	border-color: #2454ad;
}

.hn-room-card__body {
	padding: 14px 16px 16px;
	background: #f1f3f6;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.hn-room-card__body h3 {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(28px, 2.1vw, 36px);
	font-weight: 700;
	line-height: 1.04;
	text-transform: uppercase;
	color: #111111;
}

.hn-room-card__body p {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(11px, 0.82vw, 13px);
	line-height: 1.36;
	color: #355b93;
	min-height: 54px;
}

.hn-room-card__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 10px;
}

.hn-room-card__features li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(12px, 0.9vw, 14px);
	line-height: 1.2;
	color: #355b93;
}

.hn-room-card__features li img {
	width: 16px;
	height: 16px;
	object-fit: contain;
	flex: 0 0 16px;
}

.hn-room-card__body a,
.hn-room-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	width: 100%;
	height: 42px;
	border-radius: 6px;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(13px, 0.9vw, 16px);
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	background: #2454ad;
	color: #ffffff;
	border: none;
	cursor: pointer;
}

.hn-room-card__body a:hover,
.hn-room-card__cta:hover {
	background: #1f4a99;
}

/* ── Modal habitación ────────────────────────────────────────── */
.hn-room-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(10, 25, 45, 0.72);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.hn-room-modal[hidden] {
	display: none;
}

.hn-room-modal__panel {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	max-width: 1100px;
	width: 100%;
	max-height: 92vh;
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(10, 25, 45, 0.38);
}

.hn-room-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(10, 25, 45, 0.5);
	border: none;
	color: #fff;
	font-size: 17px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: background 0.15s;
}

.hn-room-modal__close:hover {
	background: rgba(10, 25, 45, 0.8);
}

.hn-room-modal__gallery {
	position: relative;
	background: #c2d8ec;
	overflow: hidden;
}

.hn-room-modal__slides {
	width: 100%;
	height: 100%;
	min-height: 420px;
}

.hn-room-modal__slides img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.hn-room-modal__slides img.is-active {
	opacity: 1;
}

.hn-room-modal__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.85);
	color: #2355b2;
	font-size: 22px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	transition: background 0.15s;
}

.hn-room-modal__arrow:hover {
	background: #ffffff;
}

.hn-room-modal__arrow--prev { left: 10px; }
.hn-room-modal__arrow--next { right: 10px; }

.hn-room-modal__dots {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
}

.hn-room-modal__dots button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	padding: 0;
	transition: background 0.2s;
}

.hn-room-modal__dots button.is-active {
	background: #ffffff;
}

.hn-room-modal__info {
	padding: clamp(24px, 3vw, 40px);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.hn-room-modal__tag {
	display: inline-flex;
	align-self: flex-start;
	padding: 4px 14px;
	border-radius: 6px;
	background: #2454ad;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 600;
}

.hn-room-modal__title {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(20px, 2.2vw, 30px);
	font-weight: 700;
	text-transform: uppercase;
	color: #111111;
	line-height: 1.1;
}

.hn-room-modal__desc {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(12px, 0.9vw, 14px);
	line-height: 1.6;
	color: #355b93;
}

.hn-room-modal__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 12px;
	flex: 1;
}

.hn-room-modal__features li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(11px, 0.85vw, 13px);
	color: #355b93;
}

.hn-room-modal__features li img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	flex-shrink: 0;
}

.hn-room-modal__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 44px;
	border-radius: 8px;
	background: #2355b2;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(13px, 0.9vw, 15px);
	font-weight: 700;
	text-decoration: none;
	margin-top: auto;
	transition: background 0.15s;
}

.hn-room-modal__cta:hover {
	background: #355b93;
}

@media (max-width: 768px) {
	.hn-room-modal__panel {
		grid-template-columns: 1fr;
		max-height: 92vh;
		overflow-y: auto;
	}

	.hn-room-modal__gallery {
		min-height: 280px;
	}

	.hn-room-modal__slides {
		min-height: 280px;
	}
}

/* ── Experiencias ───────────────────────────────────────────── */
.hn-experiences {
	background: #d4e6f4;
	padding: clamp(44px, 5vw, 62px) 0;
}

.hn-experiences__head {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	align-items: start;
	column-gap: 24px;
	row-gap: 8px;
	margin-bottom: clamp(24px, 3vw, 36px);
}

.hn-experiences__title-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	grid-column: 1;
	grid-row: 1;
}

.hn-experiences__title-icon {
	width: auto;
	height: clamp(32px, 3.5vw, 52px);
	flex-shrink: 0;
}

.hn-experiences__head h2 {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(24px, 3.2vw, 44px);
	font-weight: 500;
	line-height: 1.03;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #2355b2;
}

.hn-experiences__intro {
	grid-column: 1;
	grid-row: 2;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(12px, 1.1vw, 15px);
	color: #5579ab;
	line-height: 1.5;
	max-width: 680px;
}

.hn-experiences__more {
	grid-column: 2;
	grid-row: 1 / 3;
	align-self: center;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(13px, 1vw, 15px);
	font-weight: 600;
	color: #2355b2;
	text-decoration: underline;
	text-underline-offset: 3px;
	white-space: nowrap;
}

.hn-experiences__more:hover {
	color: #1a3e8a;
}

/* slider wrapper */
.hn-experiences__slider-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.hn-experiences__slider {
	display: flex;
	gap: 20px;
	overflow: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	flex: 1;
	min-width: 0;
}

/* arrows */
.hn-exp-arrow {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: #ffffff;
	color: #2355b2;
	font-size: 26px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(33, 61, 95, 0.18);
	transition: background 0.18s, color 0.18s;
	z-index: 2;
	padding: 0;
	user-select: none;
}

.hn-exp-arrow:hover {
	background: #2355b2;
	color: #ffffff;
}

.hn-exp-arrow:disabled {
	opacity: 0.35;
	pointer-events: none;
}

/* cards */
.hn-exp-card {
	flex: 0 0 calc(33.333% - 14px);
	min-width: 0;
	scroll-snap-align: start;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 5px 14px rgba(33, 61, 95, 0.15);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* card gallery */
.hn-exp-card__gallery {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.hn-exp-card__photos {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.4s ease;
}

.hn-exp-card__photo {
	flex: 0 0 100%;
	height: 100%;
}

.hn-exp-card__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hn-exp-card__dots {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
}

.hn-exp-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.hn-exp-dot.is-active {
	background: #ffffff;
	transform: scale(1.25);
}

/* card body */
.hn-exp-card__body {
	padding: 16px 18px 18px;
}

.hn-exp-card__body h3 {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(14px, 1.2vw, 18px);
	font-weight: 600;
	color: #2355b2;
	line-height: 1.3;
}

.hn-gallery {
	text-align: center;
	background: #eff6fb;
}

.hn-gallery__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 200px;
}

.hn-gallery__grid div {
	border-radius: var(--hn-radius);
	background-image: linear-gradient(160deg, rgba(36, 95, 154, 0.82), rgba(16, 28, 39, 0.72)), url('../../recursos/cabecera-slider.png');
	background-size: cover;
	background-position: center;
	box-shadow: var(--hn-shadow);
}

.hn-gallery__grid div:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
}

/* ── Reservacion ────────────────────────────────────────────── */
.hn-reservation {
	background: #d4e6f4;
	padding: clamp(44px, 5vw, 62px) 0;
}

.hn-reservation__title-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: clamp(28px, 3.5vw, 44px);
}

.hn-reservation__title-icon {
	width: auto;
	height: clamp(40px, 4.5vw, 62px);
	flex-shrink: 0;
}

.hn-reservation__title-wrap h2 {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(28px, 3.8vw, 52px);
	font-weight: 500;
	line-height: 1.03;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #2355b2;
}

.hn-reservation__card {
	max-width: 600px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 20px;
	padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 40px);
	box-shadow: 0 8px 32px rgba(33, 61, 95, 0.12);
}

.hn-reservation__form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hn-res-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.hn-res-label {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hn-res-label > span {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #2355b2;
	letter-spacing: 0.01em;
}

.hn-res-label input,
.hn-res-label select,
.hn-res-label textarea {
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	color: #2355b2;
	background: #e8f3fb;
	border: 1.5px solid transparent;
	border-radius: 8px;
	padding: 11px 14px;
	outline: none;
	transition: border-color 0.18s;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.hn-res-label input::placeholder,
.hn-res-label textarea::placeholder {
	color: #8baac8;
}

.hn-res-label input:focus,
.hn-res-label select:focus,
.hn-res-label textarea:focus {
	border-color: #2355b2;
	background: #f0f7fd;
}

.hn-res-label select {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%232355b2' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding: 5px 5px;
}
/* ── Country selector ─────────────────────────────────────── */
.hn-country-select {
	position: relative;
	width: 100%;
}

.hn-country-select__trigger {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	color: #2355b2;
	background: #e8f3fb;
	border: 1.5px solid transparent;
	border-radius: 8px;
	padding: 11px 14px;
	cursor: pointer;
	text-align: left;
	outline: none;
	transition: border-color 0.18s, background 0.18s;
	box-sizing: border-box;
}

.hn-country-select__trigger:focus,
.hn-country-select--open .hn-country-select__trigger {
	border-color: #2355b2;
	background: #f0f7fd;
}

.hn-country-select__flag {
	font-size: 18px;
	line-height: 1;
	flex-shrink: 0;
}

.hn-country-select__name {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hn-country-select__arrow {
	margin-left: auto;
	flex-shrink: 0;
	transition: transform 0.2s;
}

.hn-country-select--open .hn-country-select__arrow {
	transform: rotate(180deg);
}

.hn-country-select__dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 200;
	background: #fff;
	border: 1.5px solid #2355b2;
	border-radius: 10px;
	box-shadow: 0 8px 32px rgba(35, 85, 178, 0.15);
	display: flex;
	flex-direction: column;
	max-height: 280px;
	overflow: hidden;
}

.hn-country-select__dropdown[hidden] {
	display: none;
}

.hn-country-select__search-wrap {
	padding: 8px 10px;
	border-bottom: 1px solid #d0e3f5;
}

.hn-country-select__search {
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	color: #2355b2;
	background: #e8f3fb;
	border: 1.5px solid transparent;
	border-radius: 6px;
	padding: 7px 10px;
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.18s;
}

.hn-country-select__search:focus {
	border-color: #2355b2;
}

.hn-country-select__search::placeholder {
	color: #8baac8;
}

.hn-country-select__list {
	list-style: none;
	margin: 0;
	padding: 4px 0;
	overflow-y: auto;
	flex: 1;
	scrollbar-width: thin;
	scrollbar-color: #b0cceb transparent;
}

.hn-country-select__list::-webkit-scrollbar {
	width: 5px;
}

.hn-country-select__list::-webkit-scrollbar-thumb {
	background: #b0cceb;
	border-radius: 4px;
}

.hn-country-select__item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	color: #2355b2;
	cursor: pointer;
	transition: background 0.12s;
}

.hn-country-select__item:hover,
.hn-country-select__item[aria-selected="true"] {
	background: #e8f3fb;
}

.hn-country-select__item[aria-selected="true"] {
	font-weight: 600;
}

.hn-country-select__item-flag {
	font-size: 18px;
	line-height: 1;
	flex-shrink: 0;
}

.hn-res-label textarea {
	resize: vertical;
	min-height: 100px;
	line-height: 1.5;
}

.hn-res-datepickers {
	display: flex;
	align-items: center;
	gap: 0;
	background: #e8f3fb;
	border: 1.5px solid transparent;
	border-radius: 8px;
	overflow: visible;
	transition: border-color 0.18s;
}

.hn-res-datepickers__sep {
	flex-shrink: 0;
	color: #8baac8;
	font-size: 16px;
	padding: 0 2px;
	user-select: none;
}

.hn-booking__field--inline {
	position: relative;
	flex: 1;
	min-width: 0;
}

.hn-booking__field--inline .hn-booking__date-card {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	background: transparent;
	border: none;
	padding: 10px 12px;
	cursor: pointer;
	color: #2355b2;
	font-family: 'Montserrat', sans-serif;
}

.hn-booking__field--inline .hn-booking__date-main {
	display: flex;
	align-items: center;
	gap: 6px;
}

.hn-booking__field--inline .hn-booking__date-main strong {
	font-size: 18px;
	font-weight: 700;
	color: #2355b2;
	min-width: 22px;
	text-align: center;
}

.hn-booking__field--inline .hn-booking__date-main p {
	font-size: 10px;
	font-weight: 600;
	color: #2355b2;
	margin: 0;
	line-height: 1.3;
}

.hn-booking__field--inline .hn-booking__date-main small {
	font-size: 9px;
	color: #4e78b8;
	display: block;
	line-height: 1;
}

.hn-booking__field--inline .hn-booking__icon--calendar svg {
	width: 18px;
	height: 18px;
}

.hn-booking__field--inline .hn-booking__dropdown {
	left: 0;
	right: 0;
	min-width: 300px;
}

.hn-booking__field--inline .hn-booking__calendar-controls {
	grid-template-columns: repeat(3, minmax(60px, 1fr));
}



.hn-res-submit {
	width: 100%;
	margin-top: 6px;
	padding: 15px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffffff;
	background: #2355b2;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.18s, transform 0.12s;
}

.hn-res-submit:hover {
	background: #1a3e8a;
}

.hn-res-submit:active {
	transform: scale(0.98);
}

/* ── Footer ─────────────────────────────────────────────────── */
.hn-footer {
	background: #ede8e8;
	padding: clamp(80px, 12vw, 200px) 0 0;
	position: relative;
	overflow: hidden;
}

.hn-footer__main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: clamp(32px, 5vw, 80px);
	padding-bottom: clamp(80px, 12vw, 200px);
}

.hn-footer__brand {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hn-footer__logo {
	display: block;
	width: clamp(140px, 30vw, 300px);
	height: auto;
}

.hn-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hn-footer__contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #2355b2;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(13px, 1.1vw, 15px);
	font-weight: 500;
	transition: opacity 0.15s;
}

.hn-footer__contact-item:hover {
	opacity: 0.72;
}

.hn-footer__contact-item svg {
	flex-shrink: 0;
	color: #2355b2;
	opacity: 0.85;
}

.hn-footer__bottom {
	border-top: 1px solid rgba(35, 85, 178, 0.2);
	padding: 18px 0;
	display: flex;
	justify-content: center;
}

.hn-footer__terms {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #2355b2;
	text-decoration: none;
	letter-spacing: 0.01em;
	opacity: 0.8;
	transition: opacity 0.15s;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.hn-footer__terms:hover {
	opacity: 1;
}

.hn-footer__modal {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 50%;
	background: rgba(22, 52, 88, 0.97);
	color: #eaf3ff;
	padding: clamp(48px, 5vw, 72px) clamp(24px, 4vw, 52px) clamp(32px, 4vw, 48px);
	overflow-y: auto;
	z-index: 10;
}

.hn-footer__modal[hidden] {
	display: none;
}

.hn-footer__modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.12);
	border: none;
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s;
}

.hn-footer__modal-close:hover {
	background: rgba(255, 255, 255, 0.22);
}

.hn-footer__modal-content h3 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(16px, 2vw, 22px);
	line-height: 1.3;
	margin: 0 0 20px;
	color: #fff;
}

.hn-footer__modal-content p {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(12px, 1vw, 14px);
	line-height: 1.7;
	margin: 0 0 12px;
	color: #c8ddf2;
}

.hn-footer__modal-content p strong {
	color: #fff;
}

/* ── Modal detalle valores ───────────────────────────────────── */
.hn-val-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(12, 30, 50, 0.72);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.hn-val-modal[hidden] {
	display: none;
}

.hn-val-modal__panel {
	position: relative;
	max-width: 680px;
	width: 100%;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 50px rgba(12, 30, 50, 0.4);
}

.hn-val-modal__img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}

.hn-val-modal__body {
	padding: clamp(18px, 3vw, 28px) clamp(20px, 3.5vw, 32px) clamp(22px, 3vw, 32px);
}

.hn-val-modal__title {
	margin: 0 0 12px;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(16px, 2vw, 24px);
	font-weight: 600;
	text-transform: uppercase;
	color: #2355b2;
	line-height: 1.15;
}

.hn-val-modal__text {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(13px, 1.1vw, 16px);
	line-height: 1.72;
	color: #3a3a3a;
}

.hn-val-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(12, 30, 50, 0.55);
	border: none;
	color: #fff;
	font-size: 17px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s;
	z-index: 1;
}

.hn-val-modal__close:hover {
	background: rgba(12, 30, 50, 0.82);
}

/* ── Servicios e instalaciones ─────────────────────────────── */
.hn-home .hn-services {
	background: #cfe6f5;
	padding: clamp(16px, 2vw, 26px) 0;
}

.hn-home .hn-services .hn-services__inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: clamp(24px, 3.5vw, 56px);
}

.hn-home .hn-services .hn-services__title {
	flex: 0 0 auto;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(13px, 1.2vw, 17px);
	font-weight: 700;
	color: #2355b2;
	line-height: 1.28;
	min-width: 115px;
	max-width: 130px;
}

.hn-home .hn-services ul.hn-services__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	gap: clamp(10px, 2.2vw, 32px);
	flex: 1;
}

.hn-home .hn-services ul.hn-services__list li.hn-service-item {
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	padding: 0;
	margin: 0;
}

.hn-home .hn-services ul.hn-services__list li.hn-service-item::before,
.hn-home .hn-services ul.hn-services__list li.hn-service-item::marker {
	display: none;
	content: none;
}

.hn-home .hn-services .hn-service-item__icon {
	width: 76px;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f9fe;
	border-radius: 50%;
	border: 1.5px solid rgba(36, 95, 154, 0.18);
	box-shadow: 0 2px 10px rgba(33, 61, 95, 0.1);
	flex-shrink: 0;
}

.hn-home .hn-services .hn-service-item__icon img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	display: block;
}

.hn-home .hn-services .hn-service-item__name {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(10px, 0.78vw, 12px);
	font-weight: 500;
	color: #2355b2;
	text-align: center;
	line-height: 1.3;
	max-width: 90px;
}

}

/* ── Próximamente – Nuevas Habitaciones ─────────────────────── */
.hn-next-rooms {
	padding: clamp(20px, 2.5vw, 32px) 0 !important;
	background: #1c3650 !important;
}

section.hn-next-rooms {
  background: #cfe6f5;
}

.hn-next-rooms__inner {
	position: relative;
	background-image: url('../images/next_rooms.svg');
	background-size: cover;
	background-position: center center;
	overflow: hidden;
	border-radius: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 48px);
	gap: 24px;
	min-height: clamp(140px, 14vw, 200px);
}

.hn-next-rooms__inner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 29, 50, 0.5) 0%, rgba(10, 29, 50, 0.2) 55%, rgba(10, 29, 50, 0.12) 100%);
	pointer-events: none;
	border-radius: inherit;
}

.hn-next-rooms__logo img {
	display: block;
	width: clamp(100px, 10vw, 140px);
	height: auto;
	filter: brightness(0) invert(1);
}

.hn-next-rooms__content {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 14px;
}

.hn-next-rooms__label {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(22px, 2.6vw, 36px);
	font-weight: 800;
	color: #ffffff;
	letter-spacing: 0.01em;
	line-height: 1;
}

.hn-next-rooms__cta {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(13px, 1.1vw, 16px);
	font-weight: 600;
	color: #ffffff;
	background: #2355b2;
	padding: 10px 28px;
	border-radius: 6px;
	letter-spacing: 0.02em;
	line-height: 1;
}

@media (max-width: 1199px) {
	.hn-menu {
		gap: 28px;
		font-size: 12px;
	}

	.hn-hero {
		min-height: 660px;
	}

	.hn-menu .hn-button {
		font-size: 14px;
	}

	.hn-values__grid h3,
	.hn-rooms__grid h3,
	.hn-experiences__grid h3 {
		font-size: 22px;
	}
}

@media (max-width: 991px) {
	.hn-container {
		width: min(100% - 34px, var(--hn-container));
	}

	.hn-hero__header {
		width: min(100% - 34px, var(--hn-container));
	}

	.hn-topbar {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
	}

	.hn-topbar__left {
		display: flex;
		align-items: center;
		gap: 10px;
		min-width: 0;
	}

	.hn-topbar__item {
		font-size: 12px;
		padding: 2px 5px;
	}

	.hn-topbar__item span:last-child {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		max-width: 220px;
	}

	.hn-topbar__lang {
		margin-left: auto;
		flex: 0 0 auto;
	}

	.hn-menu {
		gap: 14px;
		overflow-x: visible;
		white-space: nowrap;
		padding-bottom: 8px;
		max-width: 100%;
		justify-content: center;
		width: 100%;
		font-size: 12px;
	}

	.hn-hero__header.is-sticky {
		padding: 8px 16px;
		gap: 10px;
		width: min(100% - 34px, var(--hn-container));
	}

	.hn-hero__header.is-sticky .hn-menu {
		gap: 12px;
		font-size: 11px;
	}

	.hn-hero__header.is-sticky .hn-menu .hn-button {
		padding: 8px 14px;
		font-size: 12px;
	}

	.hn-menu .hn-button {
		font-size: 13px;
		padding: 9px 16px;
	}

	.hn-booking__form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hn-booking__field--message,
	.hn-booking__form button {
		grid-column: span 2;
	}

	.hn-booking__form button {
		min-height: 46px;
	}

	.hn-booking__calendar-controls {
		grid-template-columns: 1fr;
	}

	.hn-about {
		padding: 44px 0 82px;
	}

	.hn-about__content {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.hn-about h2,
	.hn-about__copy,
	.hn-about__copy p:last-child {
		max-width: 100%;
	}

	.hn-values__grid,
	.hn-rooms__grid,
	.hn-experiences__grid,
	.hn-gallery__grid,
	.hn-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hn-reservation__card {
		max-width: 100%;
	}

	.hn-gallery__grid div:nth-child(1) {
		grid-column: span 2;
		grid-row: span 1;
	}

	.hn-footer__contact {
		text-align: left;
	}

	.hn-home .hn-services .hn-services__inner {
		gap: 24px;
	}

	.hn-home .hn-services .hn-service-item__icon {
		width: 64px;
		height: 64px;
	}

	.hn-home .hn-services .hn-service-item__icon img {
		width: 34px;
		height: 34px;
	}

	.hn-next-rooms__logo img {
		width: 110px;
	}

	.hn-next-rooms__label {
		font-size: 26px;
	}

	.hn-exp-card {
		flex: 0 0 calc(50% - 10px);
	}

	.hn-values--story .hn-value-card {
		flex: 0 0 calc(50% - 10px);
	}
}

@media (max-width: 767px) {
	.hn-menu-toggle {
		display: flex;
		margin-top: 0;
		align-self: center;
	}

	.hn-nav-row {
		margin-top: 4px;
		justify-content: flex-end;
	}

	.hn-topbar {
		padding-top: 14px;
		gap: 8px;
	}

	.hn-topbar__left {
		display: flex;
		align-items: center;
		gap: 8px;
		min-width: 0;
		overflow: hidden;
	}

	.hn-topbar__item {
		white-space: nowrap;
	}

	.hn-topbar__lang {
		margin-left: auto;
		flex: 0 0 auto;
	}

	.hn-menu {
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100dvh;
		z-index: 1200;
		background: rgba(10, 29, 45, 0.97);
		padding: 72px 24px 32px;
		overflow-y: auto;
	}

	.hn-menu__breadcrumb {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		font-size: 12px;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: #c8d9ef;
		padding-bottom: 12px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		width: 100%;
		margin-bottom: 10px;
	}

	.hn-menu.is-open {
		display: flex;
	}

	body.hn-menu-open .hn-menu {
		position: fixed !important;
		inset: 0 !important;
		width: 100vw !important;
		height: 100dvh !important;
		max-width: none !important;
		max-height: none !important;
		margin: 0 !important;
		border-radius: 0 !important;
		z-index: 9999 !important;
	}

	body.hn-menu-open .hn-hero__bottom,
	body.hn-menu-open .hn-whatsapp {
		display: none !important;
	}

	.hn-menu a {
		font-size: 18px;
		padding: 14px 0;
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.hn-menu-close {
		display: inline-flex;
		position: absolute;
		top: 18px;
		right: 24px;
		width: 40px;
		height: 40px;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(255, 255, 255, 0.24);
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.06);
		color: #ffffff;
		font-size: 30px;
		line-height: 1;
		cursor: pointer;
	}

	.hn-menu .hn-button {
		margin-top: 20px;
		width: 100%;
		text-align: center;
		padding: 14px 30px;
		font-size: 15px;
	}

	.hn-logo img {
		width: 160px;
		filter: drop-shadow(0 6px 16px rgba(7, 17, 28, 0.45));
	}

	.hn-logo {
		padding: 0;
		border-radius: 0;
		background: transparent;
		backdrop-filter: none;
		margin-top: 0;
	}

	.hn-hero__header.is-sticky {
		padding: 6px 14px;
		width: min(100% - 20px, var(--hn-container));
	}

	.hn-hero__header.is-sticky .hn-nav-row__logo {
		display: inline-flex;
	}

	.hn-hero__header.is-sticky .hn-nav-row__logo img {
		width: 100px;
	}

	.hn-hero__header.is-sticky .hn-menu {
		justify-content: flex-start;
	}

	.hn-hero__header.is-sticky .hn-menu-toggle {
		display: flex;
		margin-top: 0;
		border-color: rgba(255, 255, 255, 0.42);
	}

	.hn-hero {
		min-height: 100svh;
		padding-bottom: 30px;
	}

	.hn-topbar__item {
		font-size: 11px;
	}

	.hn-topbar__item + .hn-topbar__item {
		padding-left: 8px;
	}

	.hn-topbar__lang {
		font-size: 13px;
		display: inline-flex;
		padding: 3px 8px;
		border-radius: 8px;
		background: transparent;
	}

	.hn-booking {
		scroll-margin-top: 92px;
		margin-top: 0;
		padding: 14px 0 20px;
	}

	.hn-whatsapp {
		right: 16px;
		bottom: 16px;
		width: 56px;
		height: 56px;
	}

	.hn-whatsapp svg {
		width: 30px;
		height: 30px;
	}

	.hn-booking {
		margin-top: 22px;
		padding: 22px 0 22px;
	}

	.hn-booking__form {
		grid-template-columns: 1fr;
		padding: 14px;
	}

	.hn-booking__form button {
		height: 42px;
	}

	.hn-booking__field--message,
	.hn-booking__form button {
		grid-column: auto;
	}

	.hn-booking__date-main strong {
		font-size: 28px;
	}

	.hn-booking__calendar-controls {
		grid-template-columns: 1fr;
	}

	.hn-about,
	.hn-values,
	.hn-rooms,
	.hn-experiences,
	.hn-gallery,
	.hn-contact {
		padding: 70px 0;
	}

	.hn-about {
		padding: 34px 0 64px;
		background-attachment: scroll;
	}

	.hn-about h2,
	.hn-values h2,
	.hn-rooms h2,
	.hn-experiences h2,
	.hn-gallery h2,
	.hn-contact h2 {
		font-size: clamp(30px, 8.5vw, 38px);
	}

	.hn-about p:last-child,
	.hn-values__intro,
	.hn-rooms__meta,
	.hn-contact__copy p:last-child {
		font-size: 16px;
	}

	.hn-values__grid,
	.hn-rooms__grid,
	.hn-experiences__grid,
	.hn-gallery__grid {
		grid-template-columns: 1fr;
	}

	.hn-res-row {
		grid-template-columns: 1fr;
	}

	.hn-reservation__card {
		padding: 24px 18px;
	}

	.hn-rooms__head h2 {
		font-size: clamp(28px, 8vw, 38px);
	}

	.hn-rooms__title-wrap {
		gap: 10px;
	}

	.hn-rooms__title-icon {
		width: auto;
		height: clamp(28px, 7vw, 40px);
	}

	.hn-rooms__includes ul {
		gap: 6px 14px;
	}

	.hn-rooms__more {
		font-size: 18px;
	}

	.hn-rooms__catalog-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.hn-next-rooms__inner {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 28px 20px;
		gap: 16px;
	}

	.hn-next-rooms__content {
		align-items: center;
	}

	.hn-next-rooms__logo img {
		width: 96px;
	}

	.hn-next-rooms__label {
		font-size: 22px;
	}

	.hn-next-rooms__cta {
		font-size: 13px;
		padding: 9px 22px;
	}

	.hn-experiences__head {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
	}

	.hn-experiences__more {
		grid-column: 1;
		grid-row: 3;
		margin-top: 4px;
	}

	.hn-exp-card {
		flex: 0 0 calc(80vw - 34px);
	}

	.hn-exp-arrow {
		display: none;
	}

	.hn-home .hn-services {
		padding: 24px 0;
	}

	.hn-home .hn-services .hn-services__inner {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.hn-home .hn-services .hn-services__title {
		min-width: unset;
		max-width: none;
		text-align: center;
		font-size: 15px;
	}

	.hn-home .hn-services ul.hn-services__list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px 12px;
		width: 100%;
		justify-items: center;
	}

	.hn-home .hn-services .hn-service-item__icon {
		width: 64px;
		height: 64px;
	}

	.hn-home .hn-services .hn-service-item__icon img {
		width: 34px;
		height: 34px;
	}

	.hn-home .hn-services .hn-service-item__name {
		font-size: 11px;
		max-width: 80px;
	}

	.hn-room-card__media {
		padding: 10px 10px 8px;
	}

	.hn-room-card__tag {
		font-size: 12px;
		height: 26px;
		min-width: 56px;
		top: 10px;
		right: 16px;
	}

	.hn-room-card__body {
		padding: 12px 12px 14px;
	}

	.hn-room-card__body h3 {
		font-size: clamp(28px, 8vw, 34px);
	}

	.hn-room-card__features li,
	.hn-room-card__body p {
		font-size: 12px;
	}

	.hn-rooms__includes li img,
	.hn-room-card__features li img {
		width: 15px;
		height: 15px;
	}

	.hn-values--story {
		padding: 44px 0;
	}

	.hn-values--story .hn-values__title-wrap {
		gap: 10px;
	}

	.hn-values--story h2 {
		font-size: clamp(30px, 6vw, 40px);
	}

	.hn-values--story .hn-values__intro {
		font-size: clamp(13px, 1.7vw, 16px);
		max-width: 760px;
	}

	.hn-values--story .hn-values__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.hn-value-card__body {
		padding: 13px 16px 14px;
	}

	.hn-values--story .hn-value-card h3 {
		font-size: clamp(18px, 2.5vw, 24px);
	}

	.hn-values--story .hn-value-card p {
		font-size: clamp(11px, 1.2vw, 13px);
	}

	.hn-gallery__grid {
		grid-auto-rows: 170px;
	}

	.hn-gallery__grid div:nth-child(1) {
		grid-column: auto;
		grid-row: auto;
	}

	.hn-contact__form {
		padding: 20px;
	}

	.hn-footer__main {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 40px;
		padding-bottom: clamp(48px, 8vw, 100px);
	}

	.hn-footer__contact {
		align-items: flex-start;
		width: 100%;
		max-width: 360px;
	}

	.hn-footer__logo {
		width: 300px;
	}

	.hn-footer__contact-item {
		font-size: 14px;
	}

	.hn-footer {
		padding-top: clamp(48px, 8vw, 100px);
	}

	.hn-footer__modal {
		left: 0;
	}
}

@media (max-width: 640px) {
	.hn-next-rooms {
		min-height: 160px;
	}

	.hn-next-rooms__inner {
		padding: 24px 0;
		gap: 12px;
	}

	.hn-next-rooms__logo img {
		width: 76px;
	}

	.hn-next-rooms__label {
		font-size: 18px;
	}

	.hn-next-rooms__cta {
		font-size: 12px;
		padding: 8px 18px;
	}

	.hn-footer__logo {
		width: 130px;
	}

	.hn-footer__contact {
		gap: 12px;
		max-width: 100%;
	}

	.hn-footer__contact-item {
		font-size: 13px;
	}

	.hn-home .hn-services .hn-service-item__icon {
		width: 56px;
		height: 56px;
	}

	.hn-home .hn-services .hn-service-item__icon img {
		width: 28px;
		height: 28px;
	}

	.hn-values--story {
		padding: 36px 0;
	}

	.hn-values--story .hn-values__title-wrap {
		align-items: flex-start;
		gap: 8px;
	}

	.hn-values--story .hn-values__title-icon {
		margin-top: 2px;
	}

	.hn-values--story h2 {
		font-size: clamp(24px, 7.6vw, 34px);
	}

	.hn-values--story .hn-values__intro {
		font-size: clamp(12px, 3.5vw, 15px);
		line-height: 1.48;
	}

	.hn-values__slider-wrap {
		margin-top: 20px;
	}

	.hn-values--story .hn-value-card {
		flex: 0 0 calc(85vw - 20px);
	}

	.hn-value-card {
		border-radius: 12px;
	}

	.hn-value-card__body {
		padding: 12px 13px 14px;
		min-height: auto;
	}

	.hn-values--story .hn-value-card h3 {
		font-size: clamp(16px, 5.4vw, 24px);
	}

	.hn-values--story .hn-value-card p {
		font-size: clamp(11px, 3.3vw, 13px);
		line-height: 1.35;
	}
}
/* ══════════════════════════════════════════════════════════════
   Galería – sección con menú de filtros
   ══════════════════════════════════════════════════════════════ */

/* Override center-align del bloque genérico */
.hn-gallery {
	text-align: left;
	padding: clamp(44px, 5vw, 72px) 0;
	background: #eff6fb;
}

/* ── Encabezado ──────────────────────────────────────────────── */
.hn-gallery__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px 24px;
	margin-bottom: clamp(22px, 2.8vw, 36px);
}

.hn-gallery__head-left {
	flex: 1;
	min-width: 0;
}

.hn-gallery__title-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 10px;
}

.hn-gallery__title-icon {
	width: auto;
	height: clamp(40px, 4.5vw, 62px);
	flex: 0 0 auto;
}

.hn-gallery__head h2 {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(28px, 3.8vw, 52px);
	font-weight: 500;
	line-height: 1.03;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #2355b2;
}

.hn-gallery__intro {
	flex-basis: 100%;
	max-width: 680px;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(13px, 1.2vw, 17px);
	line-height: 1.55;
	color: #5579ab;
	margin: 0;
}

/* ── Tabs Foto / Video ─────────────────────────────────────── */
.hn-gallery__tabs {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	align-self: flex-start;
	margin-top: 6px;
}

.hn-gallery__tab {
	background: none;
	border: none;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(14px, 1.1vw, 17px);
	font-weight: 500;
	color: #8baccc;
	cursor: pointer;
	line-height: 1;
	transition: color 0.18s;
	text-decoration: none;
}

.hn-gallery__tab.is-active {
	color: #2355b2;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-color: rgba(35, 85, 178, 0.5);
}

.hn-gallery__tab:hover:not(.is-active) {
	color: #4e78b8;
}

.hn-gallery__tab-sep {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(14px, 1.1vw, 17px);
	font-weight: 400;
	color: #8baccc;
	user-select: none;
}

/* ── Barra de filtros ────────────────────────────────────────── */
.hn-gallery__filters-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: clamp(20px, 2.8vw, 36px);
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.hn-gallery__filters-wrap::-webkit-scrollbar {
	display: none;
}

.hn-gallery__filters {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	background: #fce8e4;
	border-radius: 999px;
	padding: 6px 8px;
	box-shadow: 0 2px 8px rgba(36, 95, 154, 0.10);
	flex-shrink: 0;
}

.hn-gal-btn {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 0 0 auto;
	padding: 8px 18px;
	border: none;
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
	font-family: 'Montserrat', sans-serif;
}

.hn-gal-btn:hover {
	background: rgba(255, 255, 255, 0.6);
}

.hn-gal-btn:focus-visible {
	outline: 2px solid var(--hn-color-primary);
	outline-offset: 2px;
}

.hn-gal-btn.is-active {
	background: var(--hn-color-primary);
}

.hn-gal-btn__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: #245f9a;
	flex: 0 0 auto;
}

.hn-gal-btn.is-active .hn-gal-btn__icon {
	color: #fff;
}

.hn-gal-btn__icon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.hn-gal-btn.is-active .hn-gal-btn__icon img {
	filter: brightness(0) invert(1);
}

.hn-gal-btn__icon svg {
	display: block;
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
}

.hn-gal-btn__label {
	font-size: clamp(11px, 0.82vw, 13px);
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #2c5282;
	line-height: 1;
	white-space: nowrap;
}

.hn-gal-btn.is-active .hn-gal-btn__label {
	color: #fff;
}

/* ── Grid e ítems ────────────────────────────────────────────── */
.hn-gallery__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 220px;
	margin-top: 0;
}

.hn-gallery__item {
	margin: 0;
	border-radius: var(--hn-radius);
	overflow: hidden;
	box-shadow: var(--hn-shadow);
	position: relative;
	cursor: pointer;
	background: #b8cfe8;
}

.hn-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hn-gallery__item:hover img {
	transform: scale(1.08);
}

.hn-gallery__item figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 36px 16px 14px;
	background: linear-gradient(to top, rgba(12, 37, 56, 0.75) 0%, transparent 100%);
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(11px, 0.9vw, 13px);
	font-weight: 500;
	line-height: 1.3;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.hn-gallery__item:hover figcaption {
	opacity: 1;
	transform: translateY(0);
}

/* Ítem destacado (lago, primera posición) */
.hn-gallery__item--feat {
	grid-column: span 2;
	grid-row: span 2;
}

/* Grids de galería: solo visible el activo */
.hn-gallery__grid {
	display: none;
}
.hn-gallery__grid.is-active {
	display: grid;
}

/* Ocultar ítems filtrados */
.hn-gallery__item.is-hidden {
	display: none;
}

/* Al filtrar por categoría, quitar el span del ítem destacado */
.hn-gallery__grid--filtered .hn-gallery__item--feat {
	grid-column: span 1;
	grid-row: span 1;
}

/* Animación al aparecer ítems */
@keyframes hn-gal-fadein {
	from { opacity: 0; transform: scale(0.96); }
	to   { opacity: 1; transform: scale(1); }
}

.hn-gallery__item:not(.is-hidden) {
	animation: hn-gal-fadein 0.3s ease both;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1023px) {
	.hn-gallery__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-auto-rows: 190px;
	}

	.hn-gallery__item--feat {
		grid-column: span 2;
		grid-row: span 2;
	}

	.hn-gal-btn {
		min-width: 76px;
		padding: 10px 12px 12px;
	}
}

@media (max-width: 767px) {
	.hn-gallery__head h2 {
		font-size: clamp(24px, 7.5vw, 34px);
	}

	.hn-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 170px;
	}

	.hn-gallery__item--feat {
		grid-column: span 2;
		grid-row: span 1;
	}

}

@media (max-width: 479px) {
	.hn-gallery {
		padding: 40px 0 50px;
	}

	.hn-gallery__filters {
		padding: 5px 6px;
	}

	.hn-gal-btn {
		padding: 7px 11px;
		gap: 6px;
	}

	.hn-gal-btn__icon img,
	.hn-gal-btn__icon svg {
		width: 16px;
		height: 16px;
	}

	.hn-gal-btn__label {
		font-size: 10px;
	}

	.hn-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 130px;
	}

	.hn-gallery__item--feat {
		grid-column: span 2;
		grid-row: span 1;
	}
}

/* ── Lightbox ────────────────────────────────────────────────── */
.hn-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(8, 22, 35, 0.92);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.hn-lightbox[hidden] {
	display: none;
}

.hn-lightbox__stage {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	max-width: min(90vw, 1100px);
	max-height: 90dvh;
}

.hn-lightbox__img {
	display: block;
	max-width: 100%;
	max-height: calc(90dvh - 60px);
	width: auto;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
	object-fit: contain;
	transition: opacity 0.22s ease;
}

.hn-lightbox__img.is-loading {
	opacity: 0;
}

.hn-lightbox__caption {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: rgba(220, 235, 248, 0.85);
	text-align: center;
	line-height: 1.4;
	max-width: 680px;
}

.hn-lightbox__close {
	position: fixed;
	top: 20px;
	right: 24px;
	width: 44px;
	height: 44px;
	border: 1.5px solid rgba(255, 255, 255, 0.28);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 22px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
	z-index: 9001;
}

.hn-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.55);
}

.hn-lightbox__arrow {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	border: 1.5px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 36px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
	z-index: 9001;
	user-select: none;
}

.hn-lightbox__arrow--prev {
	left: 24px;
}

.hn-lightbox__arrow--next {
	right: 24px;
}

.hn-lightbox__arrow:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.55);
}

.hn-lightbox__arrow--prev:hover {
	transform: translateY(-50%) translateX(-2px);
}

.hn-lightbox__arrow--next:hover {
	transform: translateY(-50%) translateX(2px);
}

.hn-lightbox__arrow:disabled {
	opacity: 0.25;
	cursor: default;
	pointer-events: none;
}

@media (max-width: 767px) {
	.hn-lightbox__arrow {
		width: 40px;
		height: 40px;
		font-size: 28px;
	}

	.hn-lightbox__arrow--prev {
		left: 10px;
	}

	.hn-lightbox__arrow--next {
		right: 10px;
	}

	.hn-lightbox__close {
		top: 12px;
		right: 12px;
		width: 38px;
		height: 38px;
		font-size: 20px;
	}
}

/* ══════════════════════════════════════════════════════════════
   Galería – Video card + Video modal
   ══════════════════════════════════════════════════════════════ */

.hn-gallery__item--video {
	cursor: pointer;
	position: relative;
}

.hn-gallery__item--video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hn-gallery__play-btn {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 25, 45, 0.38);
	transition: background 0.2s;
}

.hn-gallery__item--video:hover .hn-gallery__play-btn {
	background: rgba(10, 25, 45, 0.58);
}

.hn-gallery__play-btn svg {
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
	transition: transform 0.18s;
}

.hn-gallery__item--video:hover .hn-gallery__play-btn svg {
	transform: scale(1.12);
}

.hn-video-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(5, 15, 30, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.hn-video-modal[hidden] {
	display: none;
}

.hn-video-modal__close {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	border: none;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: background 0.15s;
}

.hn-video-modal__close:hover {
	background: rgba(255, 255, 255, 0.3);
}

.hn-video-modal__stage {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	width: 100%;
	max-width: 960px;
}

.hn-video-modal__iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	border: none;
	background: #000;
}

.hn-video-modal__title {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(14px, 1.4vw, 18px);
	font-weight: 500;
	color: #cde3ff;
	text-align: center;
}

@media (max-width: 767px) {
	.hn-gallery__head {
		flex-direction: column;
		gap: 10px;
	}

	.hn-gallery__tabs {
		align-self: flex-start;
		margin-top: 0;
	}
}