:root {
	--forest: #17382f;
	--forest-deep: #0e2923;
	--forest-soft: #315449;
	--clay: #b86743;
	--clay-dark: #914a2f;
	--cream: #f4efe4;
	--paper: #fbf9f4;
	--sand: #dfd3c0;
	--ink: #202a26;
	--muted: #68716d;
	--white: #fff;
	--border: rgba(23, 56, 47, 0.16);
	--shadow: 0 24px 70px rgba(15, 39, 33, 0.13);
	--font-display: Georgia, "Times New Roman", serif;
	--font-body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
	--shell: min(1240px, calc(100vw - 48px));
	--header-height: 92px;
	--radius: 2px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

button {
	color: inherit;
}

h1,
h2,
h3,
p,
figure,
ul {
	margin-top: 0;
}

h1,
h2,
h3 {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.06;
}

h1 {
	font-size: clamp(3.7rem, 7.8vw, 8.3rem);
}

h2 {
	font-size: clamp(2.7rem, 5vw, 5.4rem);
}

h3 {
	font-size: clamp(2rem, 3vw, 3.2rem);
}

::selection {
	background: var(--clay);
	color: var(--white);
}

.shell {
	width: var(--shell);
	margin-inline: auto;
}

.section {
	padding-block: clamp(72px, 8vw, 120px);
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	z-index: 99999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	clip: auto;
	padding: 10px 16px;
	background: var(--white);
	color: var(--forest);
}

:focus-visible {
	outline: 3px solid var(--clay);
	outline-offset: 4px;
}

.icon {
	width: 1.35em;
	height: 1.35em;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.icon .is-fill {
	fill: currentColor;
	stroke: none;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 24px;
	color: var(--clay-dark);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1.4;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 32px;
	height: 1px;
	background: currentColor;
	content: "";
}

.eyebrow--light {
	color: #e9c7ac;
}

.button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 14px 24px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--cream {
	background: var(--cream);
	color: var(--forest-deep);
}

.button--cream:hover {
	background: var(--white);
}

.button--dark {
	background: var(--forest);
	color: var(--white);
}

.button--dark:hover {
	background: var(--clay-dark);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 5px;
	border-bottom: 1px solid currentColor;
	color: var(--forest);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	line-height: 1.5;
	text-transform: uppercase;
}

.text-link .icon {
	transition: transform 180ms ease;
}

.text-link:hover .icon {
	transform: translateX(5px);
}

.text-link--light {
	color: var(--cream);
}

.reveal.is-pending {
	opacity: 0;
	transform: translateY(32px);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
	transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--delay.is-visible {
	transition-delay: 120ms;
}

/* Header */
.site-header {
	position: relative;
	z-index: 100;
	width: 100%;
	height: var(--header-height);
	border-bottom: 1px solid var(--border);
	background: rgba(251, 249, 244, 0.95);
	color: var(--forest);
	transition: height 220ms ease, background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header--overlay {
	position: absolute;
	border-color: rgba(255, 255, 255, 0.22);
	background: transparent;
	color: var(--white);
}

.site-header.is-sticky {
	position: fixed;
	top: 0;
	height: 74px;
	border-color: transparent;
	background: rgba(251, 249, 244, 0.96);
	box-shadow: 0 10px 40px rgba(14, 41, 35, 0.08);
	color: var(--forest);
}

.admin-bar .site-header.is-sticky {
	top: 32px;
}

.site-header__inner {
	display: grid;
	height: 100%;
	grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
	align-items: center;
	gap: 32px;
}

.brand {
	position: relative;
	z-index: 101;
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 12px;
	line-height: 1;
}

.brand__mark {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-family: var(--font-display);
	font-size: 0.85rem;
	letter-spacing: -0.05em;
}

.brand__text {
	display: grid;
	gap: 5px;
}

.brand__text strong {
	font-family: var(--font-display);
	font-size: 1.38rem;
	font-weight: 400;
	letter-spacing: -0.035em;
}

.brand__text small {
	font-size: 0.55rem;
	font-weight: 700;
	letter-spacing: 0.19em;
	text-transform: uppercase;
}

.custom-logo-link img {
	width: auto;
	max-width: 220px;
	height: 56px;
	object-fit: contain;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(20px, 2.2vw, 38px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav a {
	position: relative;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.site-nav a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.site-nav a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-cta {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-self: end;
	gap: 12px;
	padding: 0 19px;
	border: 1px solid var(--forest);
	border-radius: 2px;
	background: var(--forest);
	color: var(--white);
	font-size: 0.69rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-header--overlay:not(.is-sticky) .header-cta {
	border-color: rgba(244, 239, 228, 0.88);
	background: rgba(244, 239, 228, 0.94);
	color: var(--forest-deep);
}

.header-cta:hover {
	border-color: var(--clay-dark);
	background: var(--clay-dark);
	color: var(--white);
	transform: translateY(-2px);
}

.header-cta .icon {
	width: 18px;
}

.menu-toggle {
	display: none;
}

/* Hero */
.hero {
	position: relative;
	display: grid;
	min-height: max(760px, 100svh);
	align-items: end;
	overflow: hidden;
	background: var(--forest-deep);
	color: var(--white);
}

.hero__media,
.hero__veil {
	position: absolute;
	inset: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 58%;
}

.hero__veil {
	background: linear-gradient(90deg, rgba(9, 31, 26, 0.92) 0%, rgba(9, 31, 26, 0.67) 45%, rgba(9, 31, 26, 0.18) 76%), linear-gradient(0deg, rgba(7, 24, 20, 0.5), transparent 45%);
}

.hero__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 850px) 190px;
	align-items: end;
	justify-content: space-between;
	gap: 60px;
	padding-bottom: clamp(100px, 12vh, 150px);
}

.hero h1 {
	max-width: 920px;
	margin-bottom: 28px;
	color: var(--cream);
}

.hero__lead {
	max-width: 610px;
	margin-bottom: 38px;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1.05rem, 1.6vw, 1.32rem);
	line-height: 1.65;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 30px;
}

.hero__note {
	padding: 20px 0 20px 25px;
	border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.hero__note-number {
	display: block;
	margin-bottom: 30px;
	color: #e9c7ac;
	font-family: var(--font-display);
	font-size: 2.4rem;
}

.hero__note p {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.8;
	text-transform: uppercase;
}

.hero__scroll {
	position: absolute;
	z-index: 2;
	right: 22px;
	bottom: 37px;
	display: flex;
	align-items: center;
	gap: 13px;
	font-size: 0.63rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	transform: rotate(90deg);
	transform-origin: right center;
}

.hero__scroll i {
	display: block;
	width: 38px;
	height: 1px;
	background: currentColor;
}

/* Welcome */
.welcome {
	background: var(--cream);
}

.welcome__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(50px, 8vw, 110px);
}

.welcome__intro h2 {
	max-width: 750px;
	margin-bottom: 0;
	color: var(--forest);
}

.welcome__body {
	padding-top: 44px;
}

.prose--lead > p:first-child {
	font-size: clamp(1.08rem, 1.6vw, 1.28rem);
	line-height: 1.85;
}

.welcome__signature {
	display: grid;
	margin-top: 44px;
}

.welcome__signature span {
	color: var(--clay-dark);
	font-family: var(--font-display);
	font-size: 2rem;
	font-style: italic;
}

.welcome__signature small {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Shared headings and cards */
.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
	align-items: end;
	gap: 80px;
	margin-bottom: clamp(48px, 6vw, 80px);
}

.section-heading h2 {
	max-width: 820px;
	margin-bottom: 0;
	color: var(--forest);
}

.section-heading > p {
	margin-bottom: 10px;
	color: var(--muted);
}

.stays {
	background: var(--paper);
}

.stays__list {
	display: grid;
	gap: clamp(68px, 8vw, 115px);
}

.stays__swipe {
	display: none;
}

.stay-card {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
	align-items: center;
	gap: clamp(55px, 9vw, 130px);
}

.stay-card:nth-child(even) {
	grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.15fr);
}

.stay-card:nth-child(even) .stay-card__image {
	order: 2;
}

.stay-card__image {
	position: relative;
	display: block;
	aspect-ratio: 1.28;
	overflow: hidden;
	background: var(--sand);
}

.stay-card:nth-child(3n + 2) .stay-card__image {
	aspect-ratio: 1.05;
}

.stay-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stay-card__image:hover img {
	transform: scale(1.045);
}

.stay-card__number {
	position: absolute;
	top: 20px;
	left: 20px;
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	background: var(--cream);
	color: var(--forest);
	font-family: var(--font-display);
	font-size: 1.25rem;
}

.stay-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin-bottom: 26px;
	color: var(--clay-dark);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.stay-card__meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.stay-card__meta .icon {
	width: 19px;
	height: 19px;
}

.stay-card h3 {
	margin-bottom: 24px;
	color: var(--forest);
}

.stay-card h3 a:hover {
	color: var(--clay-dark);
}

.stay-card__body > p {
	margin-bottom: 32px;
	color: var(--muted);
	font-size: 1.03rem;
}

/* Facilities */
.facilities {
	position: relative;
	overflow: hidden;
	background: var(--forest);
	color: rgba(255, 255, 255, 0.72);
}

.facilities::before {
	position: absolute;
	top: -240px;
	right: -180px;
	width: 560px;
	height: 560px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.018);
	content: "";
}

.facilities__inner {
	position: relative;
	display: grid;
	grid-template-columns: 0.72fr 1fr;
	gap: clamp(70px, 11vw, 170px);
}

.facilities h2 {
	margin-bottom: 34px;
	color: var(--cream);
}

.facilities__heading > p:not(.eyebrow) {
	margin-bottom: 35px;
}

.facilities__list {
	padding: 0;
	margin: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	list-style: none;
}

.facilities__list li {
	display: grid;
	grid-template-columns: 44px 1fr auto;
	align-items: center;
	gap: 15px;
	padding: 19px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	color: var(--cream);
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.facilities__list li > span {
	color: #e9c7ac;
	font-family: var(--font-body);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.facilities__list .icon {
	width: 19px;
	color: #e9c7ac;
}

/* Slow life */
.slow-life {
	background: var(--cream);
}

.slow-life__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.72fr);
	align-items: center;
	gap: clamp(65px, 10vw, 150px);
}

.slow-life__images {
	position: relative;
	min-height: 620px;
}

.slow-life__image {
	position: absolute;
	margin: 0;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.slow-life__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slow-life__image--large {
	top: 0;
	left: 0;
	width: 78%;
	height: 82%;
}

.slow-life__image--small {
	right: 0;
	bottom: 0;
	width: 48%;
	height: 42%;
	border: 12px solid var(--cream);
}

.slow-life__copy h2 {
	margin-bottom: 34px;
	color: var(--forest);
}

.slow-life__copy > p:not(.eyebrow) {
	color: var(--muted);
}

.slow-life__fact {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 45px;
	padding-top: 28px;
	border-top: 1px solid var(--border);
}

.slow-life__fact strong {
	color: var(--clay-dark);
	font-family: var(--font-display);
	font-size: 4rem;
	font-weight: 400;
	line-height: 1;
}

.slow-life__fact span {
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.6;
	text-transform: uppercase;
}

/* Location */
.location {
	background: var(--paper);
}

.location__inner {
	display: grid;
	min-height: 530px;
	grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
	box-shadow: var(--shadow);
}

.location__card {
	padding: clamp(45px, 6vw, 85px);
	background: var(--white);
}

.location__card h2 {
	margin-bottom: 26px;
	color: var(--forest);
}

.location__card > p:not(.eyebrow) {
	margin-bottom: 30px;
	color: var(--muted);
}

.location__card .location__aside {
	margin-top: 50px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	font-size: 0.8rem;
}

.location__visual {
	position: relative;
	min-height: 490px;
	overflow: hidden;
	background-color: #dbe2d8;
	background-image: linear-gradient(rgba(23, 56, 47, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 56, 47, 0.08) 1px, transparent 1px);
	background-size: 55px 55px;
}

.location__visual::after {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.6), transparent 35%);
	content: "";
}

.location__river {
	position: absolute;
	z-index: 1;
	top: -15%;
	right: 5%;
	width: 22%;
	height: 140%;
	background: #9ebdbe;
	transform: rotate(20deg);
}

.location__road {
	position: absolute;
	z-index: 2;
	background: var(--paper);
	box-shadow: 0 0 0 1px rgba(23, 56, 47, 0.08);
}

.location__road--one {
	top: 38%;
	left: -10%;
	width: 95%;
	height: 22px;
	transform: rotate(-19deg);
}

.location__road--two {
	top: -5%;
	left: 35%;
	width: 18px;
	height: 115%;
	transform: rotate(11deg);
}

.location__pin {
	position: absolute;
	z-index: 4;
	top: 47%;
	left: 49%;
	display: grid;
	justify-items: center;
	color: var(--clay-dark);
	transform: translate(-50%, -50%);
}

.location__pin .icon {
	width: 54px;
	height: 54px;
	filter: drop-shadow(0 7px 7px rgba(32, 42, 38, 0.2));
	fill: var(--paper);
	stroke-width: 1.25;
}

.location__pin strong {
	padding: 7px 12px;
	background: var(--paper);
	color: var(--forest);
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.location__city {
	position: absolute;
	z-index: 3;
	right: 9%;
	bottom: 10%;
	color: rgba(23, 56, 47, 0.4);
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 4rem);
	letter-spacing: 0.1em;
}

/* Closing CTA */
.closing-cta {
	position: relative;
	display: grid;
	min-height: 560px;
	place-items: center;
	overflow: hidden;
	color: var(--white);
}

.closing-cta__media {
	position: absolute;
	inset: 0;
}

.closing-cta__media::after {
	position: absolute;
	inset: 0;
	background: rgba(9, 31, 26, 0.76);
	content: "";
}

.closing-cta__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.closing-cta__content {
	position: relative;
	z-index: 1;
	max-width: 850px;
	text-align: center;
}

.closing-cta__content .eyebrow {
	justify-content: center;
}

.closing-cta h2 {
	margin-bottom: 25px;
	color: var(--cream);
}

.closing-cta p:not(.eyebrow) {
	max-width: 600px;
	margin-right: auto;
	margin-bottom: 36px;
	margin-left: auto;
	color: rgba(255, 255, 255, 0.76);
}

/* Footer */
.site-footer {
	padding-top: 70px;
	background: var(--forest-deep);
	color: rgba(255, 255, 255, 0.68);
}

.site-footer__main {
	display: grid;
	grid-template-columns: 1.5fr 0.55fr 0.8fr;
	gap: 70px;
	padding-bottom: 60px;
}

.site-footer .brand {
	margin-bottom: 30px;
	color: var(--cream);
}

.site-footer__brand p {
	max-width: 380px;
}

.site-footer__column h2 {
	margin-bottom: 28px;
	color: var(--cream);
	font-family: var(--font-body);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.site-footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer li {
	margin-bottom: 10px;
}

.site-footer a:hover {
	color: var(--white);
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	padding-block: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.site-footer__bottom p {
	margin: 0;
}

.whatsapp-float {
	position: fixed;
	z-index: 90;
	right: 22px;
	bottom: max(34px, calc(env(safe-area-inset-bottom) + 24px));
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 48px;
	padding: 10px 17px;
	border-radius: 30px;
	background: #246b4f;
	box-shadow: 0 10px 30px rgba(14, 41, 35, 0.3);
	color: var(--white);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-float:hover {
	background: #1b563e;
	transform: translateY(-3px);
}

.menu-open .whatsapp-float {
	opacity: 0;
	pointer-events: none;
}

/* Accommodation detail */
.stay-hero {
	position: relative;
	display: grid;
	min-height: min(820px, 82svh);
	align-items: end;
	overflow: hidden;
	background: var(--forest);
	color: var(--white);
}

.stay-hero__media,
.stay-hero__veil {
	position: absolute;
	inset: 0;
}

.stay-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.stay-hero__veil {
	background: linear-gradient(0deg, rgba(8, 29, 24, 0.9) 0%, rgba(8, 29, 24, 0.12) 75%), linear-gradient(90deg, rgba(8, 29, 24, 0.5), transparent 60%);
}

.stay-hero__content {
	position: relative;
	z-index: 1;
	padding-bottom: 80px;
}

.stay-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 75px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.stay-hero__back .icon {
	transform: rotate(180deg);
}

.stay-hero h1 {
	max-width: 1000px;
	margin-bottom: 22px;
	color: var(--cream);
}

.stay-hero__content > p:last-child {
	max-width: 650px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.15rem;
}

.stay-facts {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: repeat(3, 1fr) auto;
	align-items: stretch;
	margin-top: -1px;
	background: var(--white);
	box-shadow: var(--shadow);
}

.stay-facts > div {
	display: grid;
	grid-template-columns: 34px 1fr;
	grid-template-rows: auto auto;
	align-content: center;
	gap: 0 13px;
	min-height: 132px;
	padding: 26px 30px;
	border-right: 1px solid var(--border);
}

.stay-facts > div .icon {
	grid-row: 1 / 3;
	align-self: center;
	width: 27px;
	height: 27px;
	color: var(--clay-dark);
}

.stay-facts span {
	color: var(--muted);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.stay-facts strong {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.3;
}

.stay-facts .button {
	align-self: stretch;
	min-width: 175px;
	border-radius: 0;
}

.stay-content__grid {
	display: grid;
	grid-template-columns: 0.78fr 1fr;
	gap: clamp(70px, 12vw, 180px);
}

.stay-content__heading h2 {
	color: var(--forest);
}

.prose {
	color: var(--muted);
}

.prose > *:first-child {
	margin-top: 0;
}

.prose > *:last-child {
	margin-bottom: 0;
}

.prose h2,
.prose h3 {
	margin-top: 1.8em;
	color: var(--forest);
}

.prose h2 {
	font-size: clamp(2rem, 3vw, 3.3rem);
}

.prose h3 {
	font-size: 1.8rem;
}

.prose p,
.prose li {
	font-size: 1.02rem;
}

.prose ul {
	padding: 0;
	list-style: none;
}

.prose li {
	position: relative;
	padding: 12px 0 12px 28px;
	border-bottom: 1px solid var(--border);
}

.prose li::before {
	position: absolute;
	top: 23px;
	left: 4px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--clay);
	content: "";
}

.stay-gallery {
	background: var(--cream);
}

.stay-gallery__grid {
	display: grid;
	grid-auto-rows: 260px;
	grid-template-columns: repeat(12, 1fr);
	gap: 16px;
}

.stay-gallery__item {
	position: relative;
	grid-column: span 4;
	padding: 0;
	overflow: hidden;
	border: 0;
	background: var(--sand);
	cursor: zoom-in;
}

.stay-gallery__item:nth-child(7n + 1),
.stay-gallery__item:nth-child(7n + 5) {
	grid-column: span 8;
	grid-row: span 2;
}

.stay-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.stay-gallery__item:hover img {
	transform: scale(1.04);
}

.stay-gallery__item > span {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	background: rgba(251, 249, 244, 0.92);
	color: var(--forest);
}

.stay-gallery__item > span .icon {
	width: 18px;
}

.lightbox {
	position: fixed;
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
	padding: 45px 90px;
	border: 0;
	background: rgba(7, 24, 20, 0.96);
	color: var(--white);
}

.lightbox[open] {
	display: grid;
	place-items: center;
}

.lightbox::backdrop {
	background: rgba(7, 24, 20, 0.95);
}

.lightbox img {
	max-width: 100%;
	max-height: calc(100vh - 90px);
	object-fit: contain;
}

.lightbox__close,
.lightbox__nav {
	position: fixed;
	z-index: 2;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	background: transparent;
	color: var(--white);
	cursor: pointer;
}

.lightbox__close {
	top: 24px;
	right: 24px;
}

.lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
}

.lightbox__nav--prev {
	left: 24px;
}

.lightbox__nav--prev .icon {
	transform: rotate(180deg);
}

.lightbox__nav--next {
	right: 24px;
}

.stay-book {
	background: var(--clay-dark);
	color: rgba(255, 255, 255, 0.78);
}

.stay-book__inner {
	display: grid;
	grid-template-columns: 1fr 0.65fr;
	align-items: end;
	gap: 100px;
}

.stay-book h2 {
	margin-bottom: 0;
	color: var(--cream);
}

.stay-book__inner > div:last-child p {
	margin-bottom: 28px;
}

/* Generic pages */
.page-hero {
	padding-block: clamp(100px, 12vw, 170px);
	background: var(--cream);
}

.page-hero h1 {
	max-width: 950px;
	margin-bottom: 25px;
	color: var(--forest);
}

.page-hero p:last-child {
	max-width: 620px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 1.1rem;
}

.standard-page__content {
	max-width: 880px;
}

.not-found {
	display: grid;
	min-height: calc(100svh - var(--header-height));
	place-items: center;
	padding-block: 80px;
	background: var(--cream);
	text-align: center;
}

.not-found__inner {
	max-width: 800px;
}

.not-found__code {
	margin-bottom: -20px;
	color: rgba(184, 103, 67, 0.16);
	font-family: var(--font-display);
	font-size: clamp(8rem, 24vw, 18rem);
	line-height: 0.8;
}

.not-found .eyebrow {
	justify-content: center;
}

.not-found h1 {
	margin-bottom: 40px;
	color: var(--forest);
	font-size: clamp(2.6rem, 5vw, 5rem);
}

@media (max-width: 1080px) {
	:root {
		--header-height: 78px;
	}

	.site-header__inner {
		grid-template-columns: 1fr auto auto;
	}

	.menu-toggle {
		display: grid;
		position: relative;
		z-index: 101;
		width: 44px;
		height: 44px;
		place-items: center;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
	}

	.menu-toggle__close {
		display: none;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__open {
		display: none;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__close {
		display: block;
	}

	.menu-toggle[aria-expanded="true"],
	.menu-open .site-header .brand {
		color: var(--cream);
	}

	.site-nav {
		position: fixed;
		z-index: 100;
		inset: 0 auto auto 0;
		display: grid;
		width: 100vw;
		height: 100vh;
		height: 100dvh;
		place-items: center;
		overflow-y: auto;
		padding: calc(var(--header-height) + 40px) 24px 48px;
		background: var(--forest-deep);
		color: var(--cream);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-20px);
		transition: opacity 240ms ease, transform 240ms ease;
	}

	.site-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.site-nav__list {
		flex-direction: column;
		gap: 22px;
		text-align: center;
	}

	.site-nav a {
		font-family: var(--font-display);
		font-size: clamp(2rem, 5.5vw, 3.4rem);
		font-weight: 400;
		letter-spacing: -0.03em;
		text-transform: none;
	}

	.hero__content {
		grid-template-columns: minmax(0, 760px) 170px;
	}

	.stay-card,
	.stay-card:nth-child(even) {
		grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.8fr);
		gap: 55px;
	}

	.facilities__inner,
	.slow-life__grid {
		gap: 70px;
	}

	.stay-facts {
		grid-template-columns: repeat(3, 1fr);
	}

	.stay-facts .button {
		grid-column: 1 / -1;
		min-height: 65px;
	}
}

@media (max-width: 780px) {
	:root {
		--shell: min(100% - 34px, 640px);
	}

	.admin-bar .site-header.is-sticky {
		top: 46px;
	}

	h1 {
		font-size: clamp(3.25rem, 16vw, 5.5rem);
	}

	h2 {
		font-size: clamp(2.25rem, 9.5vw, 3.45rem);
	}

	.section {
		padding-block: 64px;
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
		gap: 10px;
	}

	.header-cta {
		display: none;
	}

	.brand__text small {
		display: none;
	}

	.brand__text strong {
		font-size: 1.25rem;
	}

	.hero {
		min-height: 760px;
	}

	.hero__media img {
		object-position: 55% center;
	}

	.hero__veil {
		background: linear-gradient(0deg, rgba(8, 29, 24, 0.92) 0%, rgba(8, 29, 24, 0.45) 70%, rgba(8, 29, 24, 0.25));
	}

	.hero__content {
		display: block;
		padding-bottom: 85px;
	}

	.hero__lead {
		font-size: 1rem;
	}

	.hero__actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 24px;
	}

	.hero__note,
	.hero__scroll {
		display: none;
	}

	.welcome__grid,
	.section-heading,
	.facilities__inner,
	.slow-life__grid,
	.location__inner,
	.stay-content__grid,
	.stay-book__inner {
		grid-template-columns: 1fr;
	}

	.welcome__grid,
	.section-heading,
	.facilities__inner,
	.slow-life__grid,
	.stay-content__grid,
	.stay-book__inner {
		gap: 34px;
	}

	.welcome__body {
		padding-top: 0;
	}

	.section-heading {
		margin-bottom: 42px;
	}

	.stay-card,
	.stay-card:nth-child(even) {
		display: flex;
		align-items: stretch;
		flex-direction: column;
		gap: 32px;
	}

	.stay-card:nth-child(even) .stay-card__image {
		order: 0;
	}

	.stay-card__image,
	.stay-card:nth-child(3n + 2) .stay-card__image {
		aspect-ratio: 1.15;
	}

	.stays__swipe {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-top: -18px;
		margin-bottom: 20px;
		color: var(--clay-dark);
		font-size: 0.65rem;
		font-weight: 700;
		letter-spacing: 0.13em;
		text-transform: uppercase;
	}

	.stays__swipe .icon {
		width: 20px;
	}

	.stays__list {
		grid-auto-columns: minmax(280px, 88%);
		grid-auto-flow: column;
		gap: 18px;
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		padding-bottom: 22px;
		scroll-snap-type: inline mandatory;
		scrollbar-color: var(--clay) transparent;
		scrollbar-width: thin;
	}

	.stays__list .stay-card {
		scroll-snap-align: start;
	}

	.stay-card__meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.facilities::before {
	display: none;
	}

	.slow-life__images {
		min-height: 380px;
	}

	.slow-life__image--large {
		width: 85%;
		height: 82%;
	}

	.slow-life__image--small {
		width: 52%;
		height: 43%;
	}

	.location__inner {
		min-height: auto;
	}

	.location__visual {
		min-height: 310px;
	}

	.closing-cta {
		min-height: 520px;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.whatsapp-float span {
		display: none;
	}

	.whatsapp-float {
		width: 52px;
		height: 52px;
		justify-content: center;
		padding: 0;
		bottom: max(42px, calc(env(safe-area-inset-bottom) + 30px));
	}

	.stay-hero {
		min-height: 700px;
	}

	.stay-hero__content {
		padding-bottom: 55px;
	}

	.stay-hero__back {
		margin-bottom: 50px;
	}

	.stay-facts {
		grid-template-columns: 1fr;
		width: 100%;
	}

	.stay-facts > div {
		min-height: 100px;
		border-right: 0;
		border-bottom: 1px solid var(--border);
	}

	.stay-facts .button {
		grid-column: auto;
	}

	.stay-gallery__grid {
		grid-auto-rows: 200px;
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.stay-gallery__item,
	.stay-gallery__item:nth-child(7n + 1),
	.stay-gallery__item:nth-child(7n + 5) {
		grid-column: span 1;
		grid-row: span 1;
	}

	.stay-gallery__item:first-child {
		grid-column: 1 / -1;
		grid-row: span 2;
	}

	.lightbox {
		padding: 60px 10px;
	}

	.lightbox__nav {
		top: auto;
		bottom: 16px;
		transform: none;
	}

	.lightbox__nav--prev {
		left: calc(50% - 60px);
	}

	.lightbox__nav--next {
		right: calc(50% - 60px);
	}
}

@media (max-width: 480px) {
	.hero .button,
	.closing-cta .button,
	.stay-book .button {
		width: 100%;
	}

	.facilities__list li {
		grid-template-columns: 30px 1fr auto;
	}

	.location__card {
		padding: 36px 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.reveal.is-pending {
		opacity: 1;
		transform: none;
	}
}
