@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/inter-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02FF, U+0300-036F, U+1E00-1EFF, U+20A0-20CF, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/inter-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}

@font-face {
	font-family: "Source Serif 4";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/source-serif-4-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02FF, U+0300-036F, U+1E00-1EFF, U+20A0-20CF, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: "Source Serif 4";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/source-serif-4-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}

:root {
	--ink: #191c1a;
	--ink-soft: #545a55;
	--paper: #fbfaf6;
	--white: #fff;
	--sand: #eee9df;
	--sand-deep: #ded4c3;
	--black: #050505;
	--forest: #050505;
	--forest-2: #1a1a1a;
	--accent: #a97146;
	--line: rgba(25, 28, 26, .14);
	--shadow: 0 24px 70px rgba(24, 31, 27, .11);
	--radius: 3px;
	--container: 1240px;
	--font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-display: "Source Serif 4", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.7;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
body.booking-fullscreen-open { overflow: hidden; }

img,
video,
iframe {
	display: block;
	max-width: 100%;
}

img { height: auto; }

a {
	color: inherit;
	text-decoration-thickness: .08em;
	text-underline-offset: .18em;
}

button,
input,
textarea { font: inherit; }

button { color: inherit; }

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

h1,
h2,
h3 {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: -.035em;
	line-height: 1.05;
	text-wrap: balance;
}

h1 { font-size: clamp(3.1rem, 7vw, 7.2rem); }
h2 { font-size: clamp(2.25rem, 4.6vw, 4.7rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 2rem); }

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

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

.section { padding: clamp(80px, 10vw, 150px) 0; }
.section--soft { background: var(--sand); }

.screen-reader-text {
	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 {
	position: fixed;
	z-index: 10000;
	left: 16px;
	top: -80px;
	padding: 12px 20px;
	background: var(--ink);
	color: var(--white);
}

.skip-link:focus { top: 16px; }

.eyebrow {
	margin-bottom: 22px;
	color: var(--accent);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .2em;
	line-height: 1.35;
	text-transform: uppercase;
}

.eyebrow--light { color: rgba(255, 255, 255, .74); }

.lead {
	color: var(--ink);
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.2vw, 1.8rem);
	line-height: 1.45;
}

.button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	border: 1px solid var(--forest);
	border-radius: var(--radius);
	background: var(--forest);
	color: var(--white);
	cursor: pointer;
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .12em;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.button:hover {
	border-color: var(--forest-2);
	background: var(--forest-2);
	transform: translateY(-2px);
}

.button--small {
	min-height: 42px;
	padding: 10px 18px;
	font-size: .68rem;
}

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

.button--light:hover {
	border-color: var(--sand);
	background: var(--sand);
}

.button--outline-light {
	border-color: rgba(255, 255, 255, .7);
	background: transparent;
	color: var(--white);
}

.button--outline-light:hover {
	border-color: var(--white);
	background: rgba(255, 255, 255, .12);
}

.button--ghost {
	border-color: var(--line);
	background: transparent;
	color: var(--ink);
}

.button--full { width: 100%; }

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 4px;
	border-bottom: 1px solid currentColor;
	color: var(--forest);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .11em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link span {
	font-size: 1.2em;
	transition: transform .2s ease;
}

.text-link:hover span { transform: translateX(4px); }

/* Header */
.site-header {
	position: relative;
	z-index: 1000;
	background: rgba(251, 250, 246, .96);
	box-shadow: 0 1px rgba(25, 28, 26, .08);
}

.site-header.is-stuck {
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	background: rgba(251, 250, 246, .82);
	box-shadow: 0 1px rgba(25, 28, 26, .1);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.topbar {
	padding: 8px 0;
	background: var(--black);
	color: rgba(255, 255, 255, .78);
	font-size: .7rem;
	letter-spacing: .08em;
}

.topbar__inner,
.topbar__contact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.topbar p { margin: 0; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--white); }

.nav-shell {
	display: grid;
	min-height: 92px;
	grid-template-columns: 124px 1fr auto;
	align-items: center;
	gap: 28px;
}

.site-logo {
	display: inline-flex;
	width: 84px;
	height: 84px;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.site-logo img {
	width: 76px;
	height: 76px;
	object-fit: contain;
}

.custom-logo-link img {
	width: 76px;
	height: 76px;
	object-fit: contain;
}

.primary-navigation { justify-self: center; }

.primary-navigation ul {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2.2vw, 34px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation a {
	display: block;
	position: relative;
	padding: 34px 0;
	font-size: .71rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-decoration: none;
	text-transform: uppercase;
}

.primary-navigation a::after {
	position: absolute;
	right: 0;
	bottom: 28px;
	left: 0;
	height: 1px;
	background: var(--forest);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .25s ease;
}

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }

.mobile-menu__footer { display: none; }

.menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	padding: 11px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 24px;
	height: 1px;
	margin: 6px auto;
	background: var(--ink);
	transition: transform .2s ease, opacity .2s ease;
}

body.home .site-header:not(.is-stuck) {
	position: absolute;
	right: 0;
	left: 0;
	background: transparent;
	box-shadow: none;
	color: var(--white);
}

body.home .site-header:not(.is-stuck) .topbar { background: rgba(0, 0, 0, .28); }
body.home .site-header:not(.is-stuck) .site-logo img,
body.home .site-header:not(.is-stuck) .custom-logo-link img { filter: brightness(0) invert(1); }
body.home .site-header:not(.is-stuck) .primary-navigation a::after { background: var(--white); }
body.home .site-header:not(.is-stuck) .menu-toggle > span:not(.screen-reader-text) { background: var(--white); }
body.home .site-header:not(.is-stuck) .nav-cta {
	border-color: rgba(255, 255, 255, .8);
	background: rgba(0, 0, 0, .2);
	color: var(--white);
}

/* Hero */
.hero {
	display: grid;
	position: relative;
	min-height: min(830px, calc(100svh - 125px));
	place-items: end start;
	overflow: hidden;
	background: var(--forest);
	color: var(--white);
}

.hero__poster,
.hero__video,
.hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero__poster,
.hero__video { object-fit: cover; }

.hero__video { z-index: 1; opacity: 0; transition: opacity .8s ease; }
.hero__video.is-ready { opacity: 1; }
.hero__video-play {
	display: none;
	position: absolute;
	z-index: 4;
	top: 22px;
	right: 24px;
	min-height: 42px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, .55);
	background: rgba(20, 35, 30, .58);
	color: var(--white);
	cursor: pointer;
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.hero.is-video-paused .hero__video-play { display: block; }

.hero__shade {
	z-index: 2;
	background:
		linear-gradient(90deg, rgba(12, 19, 16, .76) 0%, rgba(12, 19, 16, .35) 56%, rgba(12, 19, 16, .14) 100%),
		linear-gradient(0deg, rgba(12, 19, 16, .38), transparent 50%);
}

.hero__content {
	z-index: 3;
	padding-top: 120px;
	padding-bottom: clamp(100px, 12vh, 150px);
}

.hero__content h1 {
	max-width: 860px;
	margin-bottom: 28px;
	color: var(--white);
	font-size: clamp(3.6rem, 8.5vw, 8.4rem);
}

.hero__content .hero__statement {
	max-width: 760px;
	margin-bottom: 38px;
	color: var(--white);
	font-family: var(--font-body);
	font-size: clamp(1.25rem, 2.25vw, 1.75rem);
	font-weight: 400;
	letter-spacing: -.018em;
	line-height: 1.48;
}

.hero__content > p:not(.eyebrow) {
	max-width: 650px;
	margin-bottom: 38px;
	color: rgba(255, 255, 255, .88);
	font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll {
	position: absolute;
	z-index: 3;
	right: max(24px, calc((100vw - var(--container)) / 2));
	bottom: 50px;
	width: 30px;
	height: 54px;
	border: 1px solid rgba(255, 255, 255, .55);
	border-radius: 30px;
}

.hero__scroll span {
	position: absolute;
	top: 10px;
	left: 50%;
	width: 3px;
	height: 8px;
	border-radius: 4px;
	background: var(--white);
	animation: scroll-dot 1.7s infinite;
	transform: translateX(-50%);
}

@keyframes scroll-dot {
	0% { opacity: 0; transform: translate(-50%, 0); }
	30% { opacity: 1; }
	100% { opacity: 0; transform: translate(-50%, 22px); }
}

.trust-strip {
	position: relative;
	z-index: 5;
	border-bottom: 1px solid var(--line);
	background: var(--paper);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
	display: grid;
	min-height: 140px;
	padding: 30px;
	border-right: 1px solid var(--line);
	grid-template-columns: 42px minmax(0, 1fr);
	align-content: center;
	column-gap: 16px;
}

.trust-grid > div:first-child { border-left: 1px solid var(--line); }
.trust-grid strong { min-width: 0; align-self: end; overflow-wrap: anywhere; font-family: var(--font-display); font-size: 1.16rem; font-weight: 400; }
.trust-grid small { min-width: 0; grid-column: 2; overflow-wrap: anywhere; color: var(--ink-soft); font-size: .73rem; }
.trust-icon { grid-row: 1 / 3; align-self: center; color: var(--accent); font-family: var(--font-display); font-size: 2rem; text-align: center; }

/* Shared layouts */
.split {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
	align-items: center;
	gap: clamp(55px, 8vw, 120px);
}

.split--reverse { grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr); }
.split__content h2 { margin-bottom: 32px; }
.split__content > p { color: var(--ink-soft); }
.split__content .lead { color: var(--ink); }

.image-frame { position: relative; padding: 0 0 52px 52px; }
.image-frame::before {
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	width: 72%;
	height: 72%;
	background: var(--sand-deep);
	content: "";
}
.image-frame > img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.image-frame__note {
	display: flex;
	position: absolute;
	right: -28px;
	bottom: 18px;
	min-width: 185px;
	align-items: center;
	gap: 14px;
	padding: 22px 25px;
	background: var(--forest);
	color: var(--white);
	box-shadow: var(--shadow);
}
.image-frame__note strong { font-family: var(--font-display); font-size: 3rem; font-weight: 400; line-height: 1; }
.image-frame__note span { font-size: .68rem; letter-spacing: .1em; line-height: 1.45; text-transform: uppercase; }

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 36px;
	margin-bottom: 55px;
}
.section-heading h2 { max-width: 820px; margin-bottom: 0; }

.cabins-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.cabin-card {
	overflow: hidden;
	background: var(--white);
	box-shadow: 0 12px 45px rgba(24, 31, 27, .06);
	transition: box-shadow .3s ease, transform .3s ease;
}
.cabin-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.cabin-card__image { display: block; overflow: hidden; }
.cabin-card__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}
.cabin-card:hover .cabin-card__image img { transform: scale(1.035); }
.cabin-card__body { padding: 32px; }
.cabin-card__body .eyebrow { margin-bottom: 12px; }
.cabin-card__body h2 { margin-bottom: 16px; font-size: 2rem; }
.cabin-card__body h2 a { text-decoration: none; }
.cabin-card__body > p:not(.eyebrow) { min-height: 82px; color: var(--ink-soft); font-size: .9rem; }

.cabin-meta {
	display: grid;
	margin: 26px 0;
	padding: 20px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	grid-template-columns: repeat(3, 1fr);
	list-style: none;
}
.cabin-meta li { padding: 0 12px; border-right: 1px solid var(--line); text-align: center; }
.cabin-meta li:first-child { padding-left: 0; }
.cabin-meta li:last-child { padding-right: 0; border-right: 0; }
.cabin-meta strong,
.cabin-meta span { display: block; }
.cabin-meta strong { font-family: var(--font-display); font-size: 1.16rem; font-weight: 400; }
.cabin-meta span { color: var(--ink-soft); font-size: .6rem; letter-spacing: .05em; }

.amenities-section {
	position: relative;
	background: var(--black);
	color: var(--white);
}
.amenities-layout {
	display: grid;
	grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
	gap: clamp(60px, 9vw, 140px);
}
.amenities-copy {
	position: sticky;
	top: 150px;
	align-self: start;
}
.amenities-copy h2 { margin-bottom: 30px; }
.amenities-copy > p:not(.eyebrow) { margin-bottom: 34px; color: rgba(255, 255, 255, .72); }
.amenities-cards { display: grid; grid-template-columns: repeat(2, 1fr); }
.amenities-cards article {
	min-height: 270px;
	padding: 40px;
	border-top: 1px solid rgba(255, 255, 255, .16);
	border-left: 1px solid rgba(255, 255, 255, .16);
}
.amenities-cards article:nth-child(2n) { border-right: 1px solid rgba(255, 255, 255, .16); }
.amenities-cards article:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .16); }
.amenities-cards span { color: rgba(255, 255, 255, .4); font-size: .68rem; letter-spacing: .15em; }
.amenities-cards h3 { margin: 55px 0 12px; }
.amenities-cards p { margin: 0; color: rgba(255, 255, 255, .66); font-size: .88rem; }

.check-list { margin: 26px 0 38px; padding: 0; list-style: none; }
.check-list li {
	position: relative;
	margin: 11px 0;
	padding-left: 30px;
}
.check-list li::before { position: absolute; left: 0; color: var(--accent); content: "—"; }

.location-gallery {
	display: grid;
	min-height: 660px;
	grid-template-columns: 1.15fr .85fr;
	align-items: end;
	gap: 18px;
}
.location-gallery figure { height: 100%; margin: 0; overflow: hidden; }
.location-gallery figure:nth-child(2) { height: 66%; transform: translateY(-34px); }
.location-gallery figure:nth-child(n+3) { display: none; }
.location-gallery img { width: 100%; height: 100%; object-fit: cover; }
.location-gallery__hint { display: none; }

.cta-section {
	display: grid;
	position: relative;
	min-height: 610px;
	place-items: center;
	overflow: hidden;
	color: var(--white);
	text-align: center;
}
.cta-section > img,
.cta-section__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-section > img { object-fit: cover; }
.cta-section__shade { background: rgba(0, 0, 0, .66); }
.cta-section__content { position: relative; z-index: 1; max-width: 800px; }
.cta-section__content h2 { margin-bottom: 24px; }
.cta-section__content > p:not(.eyebrow) { max-width: 600px; margin: 0 auto 34px; color: rgba(255, 255, 255, .8); }

/* Interior pages */
.page-hero {
	display: grid;
	position: relative;
	min-height: 570px;
	place-items: end start;
	overflow: hidden;
}
.page-hero--image { color: var(--white); }
.page-hero--image > img,
.page-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero--image > img { object-fit: cover; }
.page-hero__shade { background: linear-gradient(90deg, rgba(15, 27, 23, .72), rgba(15, 27, 23, .18)); }
.page-hero__content { position: relative; z-index: 1; padding-bottom: 80px; }
.page-hero__content h1 { max-width: 930px; margin-bottom: 18px; font-size: clamp(3.6rem, 7vw, 7rem); }
.page-hero__content > p:not(.eyebrow) { max-width: 670px; color: rgba(255, 255, 255, .82); }

.page-hero--compact {
	min-height: auto;
	padding: clamp(85px, 10vw, 140px) 0 clamp(70px, 8vw, 110px);
	background: var(--sand);
}
.page-hero--compact h1 { margin-bottom: 24px; font-size: clamp(3.5rem, 7vw, 6.8rem); }
.page-hero--compact .container > p:not(.eyebrow) { max-width: 720px; color: var(--ink-soft); font-size: 1.1rem; }

.page-intro { max-width: 880px; margin-bottom: 65px; }
.page-intro h2 { margin-bottom: 25px; }
.cabins-grid--listing { grid-template-columns: repeat(3, 1fr); }

.faq-layout {
	display: grid;
	grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
	gap: clamp(55px, 9vw, 130px);
}
.faq-layout h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary {
	position: relative;
	padding: 24px 48px 24px 0;
	cursor: pointer;
	font-family: var(--font-display);
	font-size: 1.3rem;
	list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { position: absolute; right: 8px; content: "+"; }
.accordion details[open] summary::after { content: "–"; }
.accordion details p { max-width: 700px; padding: 0 30px 24px 0; color: var(--ink-soft); }

/* Cabin */
.cabin-hero {
	display: grid;
	position: relative;
	min-height: 670px;
	place-items: end start;
	overflow: hidden;
	color: var(--white);
}
.cabin-hero > img,
.cabin-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.cabin-hero > img { object-fit: cover; }
.cabin-hero__shade { background: linear-gradient(0deg, rgba(13, 22, 18, .76), rgba(13, 22, 18, .08) 75%); }
.cabin-hero__content { position: relative; z-index: 1; padding-bottom: 75px; }
.cabin-hero__content h1 { margin-bottom: 18px; }
.cabin-hero__content > p:not(.eyebrow) { max-width: 680px; color: rgba(255, 255, 255, .82); }
.cabin-summary { background: var(--white); }
.cabin-summary__inner {
	display: grid;
	min-height: 135px;
	grid-template-columns: repeat(4, 1fr) auto;
	align-items: center;
}
.cabin-summary__inner > div { padding: 20px 28px; border-right: 1px solid var(--line); }
.cabin-summary__inner strong,
.cabin-summary__inner span { display: block; }
.cabin-summary__inner strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.cabin-summary__inner span { color: var(--ink-soft); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.cabin-summary__inner .button { margin-left: 34px; }

.cabin-details {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
	align-items: start;
	gap: clamp(60px, 9vw, 130px);
}
.prose { max-width: 820px; }
.prose h2 { margin: 52px 0 24px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 42px 0 20px; }
.prose p,
.prose li { color: var(--ink-soft); }
.prose--page { max-width: 880px; }
.prose--page > *:first-child { margin-top: 0; }
.prose--page h2 { padding-top: 35px; }
.amenity-list {
	display: grid;
	padding: 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 34px;
	list-style: none;
}
.amenity-list li { position: relative; padding: 8px 0 8px 25px; border-bottom: 1px solid var(--line); }
.amenity-list li::before { position: absolute; left: 0; color: var(--accent); content: "✓"; }
.booking-note {
	position: sticky;
	top: 140px;
	padding: 38px;
	background: var(--sand);
}
.booking-note h2 { margin-bottom: 20px; font-size: 2.5rem; }
.booking-note p:not(.eyebrow) { color: var(--ink-soft); }
.booking-note small { display: block; margin-top: 15px; color: var(--ink-soft); text-align: center; }

/* Booking */
.booking-section {
	padding: 40px 0 100px;
	background: var(--white);
}
.booking-shell { min-width: 0; }
.booking-help {
	display: grid;
	margin-bottom: 38px;
	padding: 22px 28px;
	background: var(--forest);
	color: var(--white);
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.booking-help span { display: flex; align-items: center; gap: 12px; font-size: .8rem; }
.booking-help i {
	display: inline-grid;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 50%;
	place-items: center;
	font-family: var(--font-display);
	font-style: normal;
}
.booking-toolbar {
	display: flex;
	margin-bottom: 22px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.booking-toolbar p {
	margin: 0;
	color: var(--ink-soft);
	font-size: .82rem;
}
.booking-toolbar p span { margin-right: 6px; color: var(--accent); font-size: 1.1rem; }
.booking-toolbar .button span { margin-right: 7px; font-size: 1.05rem; }
.booking-frame-shell {
	position: relative;
	scroll-margin-top: 92px;
	background: var(--white);
}
.booking-frame__bar { display: none; }
.hotres-container {
	position: relative;
	width: 100%;
	min-width: 0;
	min-height: 520px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-color: var(--accent) var(--sand);
	touch-action: pan-x pan-y pinch-zoom;
}
.hotres-container > * { max-width: 100%; }
.hotres-container iframe {
	width: 100% !important;
	max-width: none;
	border: 0;
}
.booking-loader {
	display: grid;
	position: absolute;
	inset: 0;
	min-height: 420px;
	place-items: center;
	align-content: center;
	gap: 18px;
	background: var(--paper);
	color: var(--ink-soft);
}
.booking-loader span {
	width: 42px;
	height: 42px;
	border: 2px solid var(--sand-deep);
	border-top-color: var(--forest);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hotres-container.is-loaded .booking-loader { display: none; }
.booking-error {
	min-height: 420px;
	padding: 50px 24px;
	align-content: center;
	background: var(--paper);
	text-align: center;
}
.booking-error:not([hidden]) { display: grid; }
.booking-error strong { font-family: var(--font-display); font-size: 2rem; font-weight: 400; }
.booking-error p { max-width: 520px; margin: 8px auto 24px; color: var(--ink-soft); }
.booking-error > div { display: flex; align-items: center; justify-content: center; gap: 22px; }
.booking-frame-shell.is-fullscreen {
	position: fixed;
	z-index: 10000;
	inset: 0;
	padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
	background: var(--white);
}
.booking-frame-shell.is-fullscreen .booking-frame__bar {
	display: flex;
	height: 62px;
	padding: 0 18px;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--line);
	background: var(--forest);
	color: var(--white);
}
.booking-frame__bar strong { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.booking-frame__bar button {
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 50%;
	background: transparent;
	color: var(--white);
	cursor: pointer;
	font-size: 1.7rem;
	place-items: center;
}
.booking-frame-shell.is-fullscreen .hotres-container {
	width: 100%;
	height: calc(100dvh - 62px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
	min-height: 0;
	margin: 0;
	padding: 0;
	overflow: auto;
}
.booking-frame-shell.is-fullscreen #hotresIframe {
	height: calc(100dvh - 62px - env(safe-area-inset-top) - env(safe-area-inset-bottom)) !important;
	min-height: 560px;
}
.booking-contact { padding: 70px 0; background: var(--forest); color: var(--white); }
.booking-contact__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.booking-contact h2 { margin: 0; }
.booking-contact__inner > div:last-child { display: grid; gap: 8px; text-align: right; }
.booking-contact__inner a { font-family: var(--font-display); font-size: clamp(1.35rem, 2.5vw, 2rem); text-decoration: none; }

/* Gallery */
.gallery-grid {
	display: grid;
	grid-auto-rows: 260px;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.gallery-item {
	position: relative;
	padding: 0;
	border: 0;
	background: var(--sand);
	cursor: zoom-in;
	overflow: hidden;
}
.gallery-item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s ease;
}
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item--0,
.gallery-item--4 { grid-column: span 2; grid-row: span 2; }
.gallery-item--2 { grid-row: span 2; }
.gallery-grid--compact { grid-auto-rows: 230px; grid-template-columns: repeat(3, 1fr); }
.gallery-grid--compact .gallery-item { grid-column: auto; grid-row: auto; }
.lightbox {
	width: min(94vw, 1400px);
	max-width: none;
	height: min(92vh, 1000px);
	max-height: none;
	padding: 0;
	border: 0;
	background: transparent;
	overflow: visible;
}
.lightbox::backdrop { background: rgba(10, 14, 12, .92); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }
.lightbox__close {
	position: absolute;
	z-index: 2;
	top: -52px;
	right: 0;
	width: 48px;
	height: 48px;
	border: 0;
	background: transparent;
	color: var(--white);
	cursor: pointer;
	font-size: 2rem;
}
.lightbox__nav {
	position: absolute;
	z-index: 2;
	top: 50%;
	width: 54px;
	height: 54px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 50%;
	background: rgba(20, 35, 30, .55);
	color: var(--white);
	cursor: pointer;
	font-family: var(--font-display);
	font-size: 2.6rem;
	line-height: 1;
	transform: translateY(-50%);
}
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
.lightbox__counter {
	position: absolute;
	right: 0;
	bottom: -38px;
	left: 0;
	margin: 0;
	color: rgba(255, 255, 255, .8);
	font-size: .72rem;
	letter-spacing: .12em;
	text-align: center;
}

/* Contact */
.contact-layout {
	display: grid;
	grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
	gap: clamp(60px, 10vw, 140px);
}
.contact-details h2 { margin-bottom: 40px; }
.contact-details ul { margin: 0 0 38px; padding: 0; list-style: none; }
.contact-details li { padding: 20px 0; border-top: 1px solid var(--line); }
.contact-details li:last-child { border-bottom: 1px solid var(--line); }
.contact-details li > span { display: block; color: var(--ink-soft); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-details li > a,
.contact-details li > p { margin: 4px 0 0; font-family: var(--font-display); font-size: 1.35rem; text-decoration: none; }
.contact-form-shell { padding: clamp(30px, 5vw, 60px); background: var(--white); box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-form label { display: grid; gap: 7px; color: var(--ink-soft); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 0;
	border: 0;
	border-bottom: 1px solid var(--line);
	border-radius: 0;
	background: transparent;
	color: var(--ink);
	outline: 0;
	font-size: 1rem;
	text-transform: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--forest); }
.contact-form .checkbox { display: flex; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; font-size: .68rem; font-weight: 400; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.contact-form .checkbox { min-height: 44px; align-items: start; }
.contact-form .checkbox input { flex: 0 0 auto; width: 24px; height: 24px; margin-top: 0; }
.contact-form .checkbox span { padding-top: 3px; }
.contact-form .button { justify-self: start; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-message { margin-bottom: 24px; padding: 16px 20px; }
.form-message--success { background: #e8f2ec; color: #1f5638; }
.form-message--error { background: #f8e8e4; color: #803624; }
.map-placeholder { display: grid; position: relative; min-height: 520px; place-items: center; overflow: hidden; background: var(--forest); }
.map-placeholder > img,
.map-placeholder iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.map-placeholder > img { opacity: .52; filter: grayscale(.25); }
.map-placeholder .button { position: relative; z-index: 1; }

/* Attractions */
.attractions-list { display: grid; gap: clamp(65px, 10vw, 140px); }
.attraction {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
	align-items: center;
	gap: clamp(45px, 8vw, 120px);
}
.attraction--reverse { grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr); }
.attraction--reverse img { grid-column: 2; }
.attraction--reverse div { grid-row: 1; grid-column: 1; }
.attraction img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.attraction div > span { color: var(--accent); font-size: .68rem; letter-spacing: .14em; }
.attraction h2 { margin: 20px 0 25px; }
.attraction p { margin-bottom: 16px; color: var(--ink-soft); }
.attraction p:last-child { margin-bottom: 0; }
.about-story .split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.about-values article { min-height: 310px; padding: clamp(30px, 4vw, 52px); background: var(--paper); }
.about-values article > span { color: var(--accent); font-size: .68rem; letter-spacing: .14em; }
.about-values h3 { margin: 55px 0 18px; }
.about-values p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.cta-band { padding: 65px 0; background: var(--black); color: var(--white); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { margin: 0; }

/* Footer */
.site-footer {
	padding: 80px 0 0;
	background: var(--white);
	color: var(--ink-soft);
	box-shadow: inset 0 1px var(--line);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr .8fr .8fr;
	gap: 50px;
	padding-bottom: 65px;
}
.footer-brand .site-logo { width: 110px; height: 110px; margin-bottom: 20px; }
.footer-brand .site-logo img { width: 102px; height: 102px; }
.footer-brand p { max-width: 350px; font-size: .85rem; }
.site-footer h2 { margin-bottom: 22px; color: var(--ink); font-family: var(--font-body); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-list { margin: 0; padding: 0; list-style: none; }
.footer-list li { margin: 8px 0; font-size: .8rem; }
.footer-list a { display: inline-flex; min-height: 30px; align-items: center; text-decoration: none; }
.footer-list a:hover { color: var(--ink); }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding: 22px 0;
	border-top: 1px solid var(--line);
	font-size: .68rem;
}
.footer-bottom p { margin: 0; }

.cookie-banner {
	display: flex;
	position: fixed;
	z-index: 5000;
	right: 22px;
	bottom: 22px;
	left: 22px;
	max-width: 850px;
	margin: 0 auto;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	padding: 22px 25px;
	background: var(--white);
	box-shadow: 0 16px 80px rgba(0, 0, 0, .22);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; }
.cookie-banner p { margin: 3px 0 0; color: var(--ink-soft); font-size: .74rem; }
.cookie-banner__actions { display: flex; flex: 0 0 auto; gap: 8px; }

.error-page {
	display: grid;
	min-height: 70vh;
	padding: 100px 0;
	place-items: center;
	background: var(--sand);
	text-align: center;
}
.error-page h1 { margin-bottom: 25px; }
.error-page p:not(.eyebrow) { max-width: 620px; margin: 0 auto 35px; color: var(--ink-soft); }
.error-page .text-link { margin-left: 25px; }

@media (max-width: 1100px) {
	.nav-shell { grid-template-columns: 95px 1fr auto; gap: 16px; }
	.primary-navigation ul { gap: 15px; }
	.primary-navigation a { font-size: .64rem; }
	.nav-cta { display: none; }
	.cabins-grid { gap: 16px; }
	.cabin-card__body { padding: 24px; }
	.cabin-summary__inner { grid-template-columns: repeat(4, 1fr); }
	.cabin-summary__inner .button { grid-column: 1 / -1; margin: 0 0 24px; justify-self: center; }
	.footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 900px) {
	body { font-size: 16px; }
	.container { width: min(calc(100% - 36px), var(--container)); }
	.topbar { display: none; }
	.site-header.is-stuck {
		background: rgba(251, 250, 246, .82);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
	}
	body.menu-open .site-header { position: fixed; top: 0; right: 0; left: 0; background: var(--paper); backdrop-filter: none; }
	body.home.menu-open .site-header { color: var(--ink); }
	body.home.menu-open .site-header .site-logo img,
	body.home.menu-open .site-header .custom-logo-link img { filter: none; }
	body.home.menu-open .site-header:not(.is-stuck) .menu-toggle > span:not(.screen-reader-text) { background: var(--ink); }
	.nav-shell { min-height: 78px; grid-template-columns: 1fr auto; }
	.site-logo,
	.site-logo img,
	.custom-logo-link img { width: 66px; height: 66px; }
	.menu-toggle { display: block; z-index: 2; }
	.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
	.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.primary-navigation {
		display: none;
		position: fixed;
		z-index: 1;
		width: 100%;
		height: calc(100dvh - 78px);
		inset: 78px 0 auto;
		padding: clamp(24px, 5vh, 46px) max(24px, calc((100vw - 560px) / 2)) max(22px, env(safe-area-inset-bottom));
		background: var(--black);
		color: var(--white);
		overflow-y: auto;
		overscroll-behavior: contain;
		justify-self: stretch;
	}
	.primary-navigation.is-open { display: grid; grid-template-rows: auto 1fr; }
	.primary-navigation ul { display: block; width: min(100%, 560px); margin-inline: auto; }
	.primary-navigation a {
		padding: 10px 0;
		border-bottom: 1px solid rgba(255, 255, 255, .16);
		font-family: var(--font-display);
		font-size: clamp(1.42rem, 6vw, 1.75rem);
		font-weight: 400;
		letter-spacing: -.02em;
		text-transform: none;
	}
	.primary-navigation a::after { display: none; }
	.primary-navigation .current-menu-item > a { padding-left: 16px; color: #e5c9ae; }
	.primary-navigation .current-menu-item > a::before {
		position: absolute;
		left: 0;
		color: var(--accent);
		content: "•";
	}
	.mobile-menu__footer {
		display: grid;
		width: min(100%, 560px);
		margin: clamp(22px, 5vh, 42px) auto 0;
		align-self: end;
		gap: 18px;
	}
	.mobile-menu__booking { width: 100%; }
	.mobile-menu__contact { display: flex; flex-wrap: wrap; gap: 8px 24px; }
	.mobile-menu__contact a {
		min-height: 32px;
		padding: 0;
		border: 0;
		color: rgba(255, 255, 255, .72);
		font-family: var(--font-body);
		font-size: .78rem;
		font-weight: 500;
		letter-spacing: .02em;
	}
	.hero { min-height: max(620px, calc(100svh - 78px)); }
	.hero__content { padding-bottom: 90px; }
	.hero__scroll { display: none; }
	.trust-grid { grid-template-columns: repeat(2, 1fr); }
	.trust-grid > div { min-height: 125px; border-bottom: 1px solid var(--line); }
	.split,
	.split--reverse,
	.amenities-layout,
	.faq-layout,
	.cabin-details,
	.contact-layout { grid-template-columns: 1fr; }
	.split--reverse .split__media { grid-row: 1; }
	.image-frame { max-width: 680px; }
	.cabins-grid,
	.cabins-grid--listing { grid-template-columns: 1fr; gap: 24px; }
	.cabin-card { display: grid; grid-template-columns: .9fr 1.1fr; }
	.cabin-card__image,
	.cabin-card__image img { height: 100%; }
	.cabin-card__body > p:not(.eyebrow) { min-height: auto; }
	.amenities-copy { position: static; }
	.location-gallery { min-height: 500px; }
	.cabin-summary__inner { grid-template-columns: repeat(2, 1fr); padding-top: 18px; }
	.cabin-summary__inner > div { border-bottom: 1px solid var(--line); }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.attraction,
	.attraction--reverse { grid-template-columns: 1fr; gap: 35px; }
	.about-values { grid-template-columns: 1fr; }
	.about-values article { min-height: 230px; }
	.about-values h3 { margin-top: 34px; }
	.attraction--reverse img,
	.attraction--reverse div { grid-column: 1; }
	.attraction--reverse img { grid-row: 1; }
	.attraction--reverse div { grid-row: 2; }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	.container { width: min(calc(100% - 28px), var(--container)); }
	.section { padding: 66px 0; }
	h1 { font-size: clamp(2.8rem, 12vw, 3.25rem); line-height: 1; }
	h2 { font-size: clamp(2.25rem, 11vw, 3.6rem); }
	.hero { min-height: max(620px, 100svh); place-items: start; }
	.hero__shade { background: linear-gradient(0deg, rgba(12, 19, 16, .78) 0%, rgba(12, 19, 16, .24) 100%); }
	.hero__content { padding-top: 138px; padding-bottom: 0; }
	.hero__content h1 { max-width: 11ch; font-size: clamp(3rem, 13.5vw, 3.62rem); line-height: .98; }
	.hero__content .hero__statement {
		max-width: 25ch;
		margin-bottom: 28px;
		font-size: clamp(1.08rem, 5vw, 1.3rem);
		line-height: 1.45;
	}
	.hero__actions { display: grid; grid-template-columns: 1fr; }
	.hero__actions .button { width: 100%; }
	.trust-grid { grid-template-columns: 1fr; }
	.trust-grid > div,
	.trust-grid > div:first-child { min-height: 100px; padding: 20px; border-right: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: 34px minmax(0, 1fr); column-gap: 10px; }
	.image-frame { padding: 0 0 32px 28px; }
	.image-frame__note { right: -8px; bottom: 8px; min-width: 150px; padding: 16px 18px; }
	.image-frame__note strong { font-size: 2.3rem; }
	.section-heading { display: block; }
	.desktop-link { display: none; }
	.cabin-card {
		display: grid;
		position: relative;
		min-height: 480px;
		isolation: isolate;
		background: var(--forest);
	}
	.cabin-card__image {
		position: absolute;
		z-index: 0;
		inset: 0;
		width: 100%;
		height: 100%;
	}
	.cabin-card__image::after {
		position: absolute;
		inset: 0;
		background: linear-gradient(0deg, rgba(13, 27, 22, .96) 0%, rgba(13, 27, 22, .68) 42%, rgba(13, 27, 22, .05) 78%);
		content: "";
	}
	.cabin-card__image img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
	.cabin-card__body {
		display: flex;
		position: relative;
		z-index: 1;
		min-height: 480px;
		padding: 24px;
		flex-direction: column;
		justify-content: flex-end;
		background: transparent;
		color: var(--white);
	}
	.cabin-card__body .eyebrow,
	.cabin-card__body > p:not(.eyebrow) { display: none; }
	.cabin-card__body h2 { margin-bottom: 12px; font-size: 1.75rem; }
	.cabin-card__body h2 a,
	.cabin-card__body .text-link { color: var(--white); }
	.cabin-meta {
		margin: 14px 0;
		padding: 12px 0;
		border-color: rgba(255, 255, 255, .3);
	}
	.cabin-meta li { border-color: rgba(255, 255, 255, .25); }
	.cabin-meta span { color: rgba(255, 255, 255, .72); }
	.amenities-cards { grid-template-columns: 1fr; }
	.amenities-cards article,
	.amenities-cards article:nth-child(2n),
	.amenities-cards article:nth-last-child(-n+2) { min-height: 220px; border: 1px solid rgba(255, 255, 255, .16); border-bottom: 0; }
	.amenities-cards article:last-child { border-bottom: 1px solid rgba(255, 255, 255, .16); }
	.amenities-cards h3 { margin-top: 38px; }
	.location-gallery {
		min-height: 0;
		margin-right: -14px;
		padding-right: 14px;
		grid-template-columns: none;
		grid-auto-columns: 88%;
		grid-auto-flow: column;
		align-items: stretch;
		gap: 12px;
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}
	.location-gallery::-webkit-scrollbar { display: none; }
	.location-gallery figure,
	.location-gallery figure:nth-child(2),
	.location-gallery figure:nth-child(n+3) {
		display: block;
		height: auto;
		aspect-ratio: 4 / 5;
		scroll-snap-align: start;
		transform: none;
	}
	.location-gallery__hint {
		display: flex;
		margin: 14px 0 0;
		align-items: center;
		justify-content: center;
		gap: 10px;
		color: var(--ink-soft);
		font-size: .68rem;
		font-weight: 700;
		letter-spacing: .08em;
		text-transform: uppercase;
	}
	.cta-section { min-height: 530px; }
	.page-hero { min-height: 490px; }
	.page-hero__content h1 { font-size: clamp(2.9rem, 13vw, 3.5rem); line-height: 1; }
	.page-hero--compact { min-height: auto; padding: 66px 0 58px; }
	.page-hero--compact h1 { font-size: clamp(2.75rem, 12vw, 3.25rem); line-height: 1; }
	.page-hero__content { padding-bottom: 55px; }
	.cabin-hero { min-height: 550px; }
	.cabin-summary__inner > div { padding: 18px 12px; }
	.cabin-summary__inner .button { width: 100%; }
	.amenity-list { grid-template-columns: 1fr; }
	.booking-note { position: static; }
	.booking-help { grid-template-columns: 1fr; }
	.booking-help span { border-bottom: 1px solid rgba(255, 255, 255, .16); padding-bottom: 12px; }
	.booking-help span:last-child { border: 0; padding-bottom: 0; }
	.booking-section { padding-top: 20px; }
	.booking-toolbar { display: grid; gap: 14px; }
	.booking-toolbar .button { width: 100%; }
	.hotres-container {
		width: calc(100% + 28px);
		margin-left: -14px;
		padding-inline: 14px;
	}
	.booking-frame-shell.is-fullscreen .hotres-container { width: 100%; margin: 0; padding: 0; }
	.booking-error > div { display: grid; justify-items: center; }
	.booking-contact__inner { display: block; text-align: center; }
	.booking-contact__inner > div:last-child { margin-top: 25px; text-align: center; }
	.gallery-grid,
	.gallery-grid--compact {
		grid-auto-rows: auto;
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.gallery-item,
	.gallery-item--0,
	.gallery-item--2,
	.gallery-item--4,
	.gallery-grid--compact .gallery-item {
		min-height: 0;
		aspect-ratio: 4 / 3;
		grid-column: auto;
		grid-row: auto;
	}
	.form-row { grid-template-columns: 1fr; }
	.contact-form-shell { padding: 28px 20px; }
	.map-placeholder { min-height: 400px; }
	.cta-band .container { display: block; text-align: center; }
	.cta-band .button { margin-top: 25px; }
	.footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 22px; }
	.footer-brand,
	.footer-grid > div:nth-child(2) { grid-column: 1 / -1; }
	.footer-brand { padding-bottom: 4px; }
	.footer-list li { margin: 2px 0; }
	.footer-list a { min-height: 44px; }
	.footer-bottom { display: block; text-align: center; }
	.footer-bottom p + p { margin-top: 6px; }
	.cookie-banner { display: block; right: 10px; bottom: 10px; left: 10px; padding: 18px; }
	.cookie-banner[hidden] { display: none; }
	.cookie-banner__actions { margin-top: 15px; }
	.cookie-banner__actions .button { flex: 1; padding-inline: 12px; }
	.error-page .text-link { margin: 22px 0 0; }
	.lightbox { width: 100vw; height: 100dvh; }
	.lightbox__close { top: max(8px, env(safe-area-inset-top)); right: 10px; }
	.lightbox__nav { width: 48px; height: 48px; background: rgba(20, 35, 30, .72); }
	.lightbox__nav--prev { left: 8px; }
	.lightbox__nav--next { right: 8px; }
	.lightbox__counter { bottom: max(12px, env(safe-area-inset-bottom)); }
}

@media (max-width: 900px) and (orientation: landscape) {
	.hero { min-height: max(330px, 100svh); }
	.hero__content { padding-top: 100px; padding-bottom: 26px; }
	.hero__content h1 { max-width: 14ch; margin-bottom: 14px; font-size: clamp(2.75rem, 6vw, 3.25rem); }
	.hero__content .hero__statement { max-width: 610px; margin-bottom: 18px; font-size: .94rem; line-height: 1.45; }
	.hero__content > p:not(.eyebrow) { max-width: 610px; margin-bottom: 18px; font-size: .94rem; line-height: 1.45; }
	.hero__actions .button { min-height: 46px; padding-block: 10px; }
	.page-hero { min-height: max(300px, calc(100svh - 78px)); }
	.page-hero__content { padding-bottom: 28px; }
	.page-hero__content h1 { margin-bottom: 10px; font-size: clamp(2.8rem, 7vw, 3.7rem); }
	.page-hero--compact { min-height: auto; padding: 46px 0 40px; }
	.page-hero--compact h1 { margin-bottom: 14px; font-size: clamp(2.8rem, 7vw, 3.7rem); }
	.primary-navigation { padding-top: 20px; }
	.primary-navigation a { padding-block: 7px; font-size: 1.32rem; }
	.mobile-menu__footer { margin-top: 18px; grid-template-columns: minmax(220px, .8fr) 1fr; align-items: center; }
	.mobile-menu__contact { display: grid; gap: 0; }
	.hotres-container {
		max-height: none;
		overflow: visible;
	}
}

@media (min-width: 360px) and (max-width: 640px) {
	.trust-grid { grid-template-columns: repeat(2, 1fr); }
	.trust-grid > div,
	.trust-grid > div:first-child {
		display: block;
		min-height: 158px;
		padding: 20px 12px;
		text-align: center;
	}
	.trust-icon { display: block; margin-bottom: 8px; line-height: 1; }
	.trust-grid strong,
	.trust-grid small { display: block; overflow-wrap: normal; word-break: normal; }
	.trust-grid strong { font-size: 1.08rem; line-height: 1.2; }
	.trust-grid small { margin-top: 7px; line-height: 1.45; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	.hero__video { display: none; }
}

@media print {
	.site-header,
	.site-footer,
	.cookie-banner,
	.button { display: none !important; }
	body { background: #fff; color: #000; }
}
