: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: flex;
	align-items: center;
	justify-content: space-between;
	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 {
	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 {
	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: 8px 20px;
	width: min(100% - 48px, var(--hn-container));
	max-width: none;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 18px;
	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-logo {
	margin-top: 0;
	justify-self: start;
}

.hn-hero__header.is-sticky .hn-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: 770px;
	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: 22px;
}

.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: -10px;
	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 {
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	color: #173c8f;
}

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

.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/fondo-page-2.svg);
	background-size: contain;
	background-position: center top;
	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 {
	margin-top: 10px;
	font-size: clamp(11px, 1.4vw, 13px);
	font-weight: 500;
	color: #5f85be;
}

.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-inline: auto;
}



.hn-about__pin {
	position: absolute;
	right: 32%;
	top: 42%;
	width: 20px;
	height: 20px;
	border: 2px solid #2a4ea2;
	border-radius: 50%;
	background: transparent;
}

.hn-about__pin::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 48%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #2a4ea2;
	transform: translate(-50%, -50%);
}

.hn-about__pin::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -8px;
	width: 2px;
	height: 10px;
	background: #2a4ea2;
	transform: translateX(-50%) rotate(22deg);
}

.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: clamp(20px, 2vw, 28px);
	height: auto;
	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--story .hn-values__grid {
	margin-top: clamp(26px, 3.2vw, 42px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 2vw, 26px);
}

.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;
}

.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: clamp(22px, 2vw, 30px);
	height: auto;
	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;
	gap: 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 16px;
	background: #ece4ea;
	border-radius: 8px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, auto));
	gap: 26px;
	align-items: center;
}

.hn-rooms__includes li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(13px, 1vw, 16px);
	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: 12px 12px 8px;
	background: #ffffff;
}

.hn-room-card__tag {
	position: absolute;
	top: 12px;
	right: 22px;
	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: 24px;
	font-weight: 500;
	color: #ffffff;
	background: #2454ad;
	z-index: 2;
}

.hn-room-card__slides {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 16 / 14;
	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 {
	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;
}

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

.hn-experiences {
	background: linear-gradient(180deg, #f8f3f5 0%, #d7eefc 100%);
	text-align: center;
}

.hn-experiences__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	text-align: left;
}

.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;
}

.hn-contact {
	background: var(--hn-color-white);
}

.hn-contact__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 30px;
	align-items: start;
}

.hn-contact__copy {
	position: sticky;
	top: 140px;
}

.hn-contact__form {
	padding: 30px;
	border-radius: 16px;
	background: var(--hn-color-surface-alt);
	box-shadow: var(--hn-shadow);
}

.hn-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 14px;
}

.hn-contact__form > label {
	margin-bottom: 14px;
}

.hn-contact__form textarea {
	resize: vertical;
	min-height: 120px;
}

.hn-contact__form button {
	min-height: 48px;
	width: 100%;
}

.hn-footer {
	padding: 52px 0;
	background: var(--hn-color-ink);
	color: #dce7ef;
}

.hn-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 24px;
	align-items: center;
}

.hn-footer__brand img {
	width: 120px;
	height: auto;
	display: block;
	margin-bottom: 10px;
}

.hn-footer__brand p,
.hn-footer__contact p {
	font-size: 14px;
	color: #c1cfdb;
}

.hn-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	justify-content: center;
}

.hn-footer__links a {
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.08em;
	font-weight: 700;
	color: #dce7ef;
}

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

@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-contact__grid,
	.hn-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hn-contact__copy {
		position: static;
	}

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

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

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

	.hn-topbar {
		padding-top: 14px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
	}

	.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: 230px;
		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: 14px;
	}

	.hn-hero__header.is-sticky {
		grid-template-columns: auto auto;
		justify-content: space-between;
		padding: 8px 14px;
		left: 50%;
		transform: translateX(-50%);
		width: min(100% - 20px, var(--hn-container));
	}

	.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: 520px;
		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: -8px;
		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;
	}

	.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,
	.hn-contact__grid,
	.hn-form-row,
	.hn-footer__grid {
		grid-template-columns: 1fr;
	}

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

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

	.hn-rooms__title-icon {
		width: 22px;
	}

	.hn-rooms__includes ul {
		grid-template-columns: 1fr;
		padding: 9px 12px;
	}

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

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

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

	.hn-room-card__tag {
		font-size: 16px;
		height: 26px;
		min-width: 64px;
		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__links {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.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--story .hn-values__grid {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 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;
	}
}
