:root {
	--pine: #173d40;
	--pine-dark: #0c2b2e;
	--aqua: #2f7777;
	--sky: #b8d4d1;
	--sand: #dfc69d;
	--cream: #f4f0e7;
	--paper: #fffdf8;
	--ink: #173336;
	--muted: #657676;
	--line: rgba(23, 51, 54, 0.16);
	--display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--sans: "DM Sans", Arial, sans-serif;
	--pad: clamp(22px, 5.5vw, 88px);
	--shadow: 0 28px 80px rgba(12, 43, 46, 0.16);
}
* {
	box-sizing: border-box;
}
html {
	max-width: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 76px;
}
body {
	min-width: 280px;
	max-width: 100%;
	margin: 0;
	overflow-x: clip;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--sans);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
main,
header,
footer,
section,
nav,
.story-grid > *,
.amenities-intro > *,
.stay > *,
.location > *,
.gallery-heading > * {
	min-width: 0;
}
img,
iframe {
	display: block;
	max-width: 100%;
}
a {
	color: inherit;
}
button {
	font: inherit;
}
.sr-only,
.skip-link:not(:focus) {
	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;
	top: 12px;
	left: 12px;
	z-index: 100;
	padding: 10px 16px;
	color: var(--ink);
	background: #fff;
}
.kicker {
	margin: 0 0 24px;
	color: var(--sand);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}
.kicker.dark {
	color: var(--aqua);
}
.section {
	padding: clamp(90px, 11vw, 170px) var(--pad);
}
h1,
h2,
h3,
p {
	margin-top: 0;
}
h2 {
	margin-bottom: 0;
	font-family: var(--display);
	font-size: clamp(3.1rem, 6.6vw, 6.6rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 0.94;
}
em {
	font-weight: 400;
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 14px 24px;
	border: 1px solid transparent;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		background 0.25s,
		color 0.25s,
		border-color 0.25s,
		transform 0.25s;
}
.button:hover {
	transform: translateY(-3px);
}
.button-light {
	color: var(--pine-dark);
	background: var(--paper);
}
.button-light:hover {
	background: var(--sand);
}
.button-outline {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
}
.button-outline:hover {
	color: var(--pine-dark);
	background: #fff;
	border-color: #fff;
}
.text-link {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	padding-bottom: 5px;
	color: var(--aqua);
	border-bottom: 1px solid currentColor;
	font-size: 0.73rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}
.light-link {
	color: #fff;
}
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: 120px var(--pad) 170px;
	color: #fff;
	background: var(--pine-dark) url("../img/main.jpg") center 70% / cover
		no-repeat;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(6, 30, 32, 0.74),
			rgba(6, 30, 32, 0.2) 65%,
			rgba(6, 30, 32, 0.05)
		),
		linear-gradient(
			180deg,
			rgba(6, 30, 32, 0.42),
			transparent 35%,
			rgba(6, 30, 32, 0.58)
		);
}
.navbar {
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
	width: 100%;
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 var(--pad);
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	transition:
		height 0.3s,
		background 0.3s,
		box-shadow 0.3s;
}
.navbar.is-fixed {
	position: fixed;
	height: 70px;
	background: rgba(12, 43, 46, 0.94);
	backdrop-filter: blur(14px);
	box-shadow: 0 8px 32px rgba(4, 24, 26, 0.16);
}
.brand {
	font-family: var(--display);
	font-size: 1.7rem;
	letter-spacing: 0.02em;
	text-decoration: none;
}
.brand span {
	font-style: italic;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.4vw, 38px);
}
.nav-links a {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-decoration: none;
	text-transform: uppercase;
}
.nav-links a:not(.nav-contact) {
	opacity: 0.78;
}
.nav-links a:hover {
	opacity: 1;
}
.nav-contact {
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.5);
}
.nav-toggle {
	display: none;
}
.hero-copy {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 930px;
	min-width: 0;
	padding-top: 20px;
	animation: hero-in 0.9s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}
.hero h1 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(4.6rem, 9.7vw, 9.4rem);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 0.83;
}
.hero h1 em {
	color: #edf3eb;
}
.hero-intro {
	max-width: 510px;
	margin: 38px 0 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
}
.hero-actions {
	display: flex;
	align-items: center;
	gap: 34px;
	margin-top: 42px;
}
.hero-facts {
	position: absolute;
	z-index: 2;
	right: var(--pad);
	bottom: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(110px, 150px));
	background: var(--paper);
	color: var(--ink);
}
.hero-facts div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 112px;
	padding: 18px 22px;
}
.hero-facts div + div {
	border-left: 1px solid var(--line);
}
.hero-facts strong {
	font-family: var(--sans);
	font-variant-numeric: tabular-nums;
	font-size: 2.2rem;
	font-weight: 400;
	line-height: 1;
}
.hero-facts span {
	margin-top: 8px;
	color: var(--muted);
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}
.story {
	max-width: 1600px;
	margin: auto;
}
.story-heading {
	max-width: 1030px;
	margin-bottom: clamp(70px, 10vw, 145px);
}
.story-grid {
	display: grid;
	grid-template-columns: minmax(250px, 0.62fr) minmax(520px, 1.38fr);
	gap: clamp(60px, 10vw, 160px);
	align-items: center;
}
.story-copy {
	max-width: 470px;
}
.story-copy .lead {
	font-family: var(--display);
	font-size: clamp(1.7rem, 2.6vw, 2.5rem);
	line-height: 1.25;
}
.story-copy > p:not(.lead) {
	color: var(--muted);
	font-size: 1rem;
}
.story-copy .text-link {
	margin-top: 28px;
}
.story-images {
	position: relative;
	min-height: 700px;
}
.story-images figure {
	position: absolute;
	margin: 0;
	overflow: hidden;
	box-shadow: var(--shadow);
}
.story-images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s;
}
.story-images figure:hover img {
	transform: scale(1.025);
}
.image-primary {
	top: 0;
	right: 0;
	width: 77%;
	height: 74%;
	border: 10px solid #fff;
	box-shadow:
		0 38px 95px rgba(12, 43, 46, 0.28),
		0 8px 24px rgba(12, 43, 46, 0.16);
}
.image-secondary {
	left: 0;
	bottom: 0;
	width: 48%;
	height: 42%;
	border: 10px solid var(--paper);
}
.amenities {
	color: #fff;
	background: var(--pine);
}
.amenities-intro {
	max-width: 1180px;
	margin: 0 auto clamp(70px, 9vw, 130px);
}
.amenities-intro h2 {
	font-size: clamp(3.1rem, 6vw, 6rem);
}
.amenity-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	max-width: 1180px;
	margin: auto;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.amenity-card {
	grid-column: span 4;
	min-height: 380px;
	padding: 36px;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	transition: background 0.3s;
}
.amenity-card:hover {
	background: rgba(255, 255, 255, 0.045);
}
.amenity-card.photo-card {
	grid-column: span 6;
	padding: 0;
	display: grid;
	grid-template-rows: 220px 1fr;
}
.card-photo {
	overflow: hidden;
}
.card-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sleep-card .card-photo img {
	object-position: center 75%;
}
.card-content {
	padding: 30px 36px;
}

.amenity-card h3 {
	margin: 56px 0 24px;
	font-family: var(--display);
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 400;
	line-height: 1;
}
.photo-card h3 {
	margin-top: 0;
}
.amenity-card p {
	max-width: 560px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.92rem;
}
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
}
.tags li {
	padding: 7px 12px;
	color: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 0.67rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.access-card {
	grid-column: span 12;
	min-height: 260px;
	display: grid;
	grid-template-columns: auto minmax(220px, 0.7fr) minmax(280px, 1fr);
	align-items: center;
	gap: clamp(28px, 5vw, 80px);
}
.access-card h3 {
	margin: 0;
}
.stay {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(60px, 10vw, 160px);
	align-items: center;
	background: var(--cream);
}
.stay-image {
	height: min(78vh, 820px);
	overflow: hidden;
}
.stay-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.stay-copy {
	max-width: 590px;
}
.stay-copy h2 {
	margin-bottom: 48px;
	font-size: clamp(3.2rem, 5.5vw, 5.7rem);
}
.stay-copy > p:not(.kicker) {
	color: var(--muted);
}
.gallery-section {
	padding: clamp(90px, 11vw, 170px) 0;
	background: var(--paper);
}
.gallery-heading {
	display: flex;
	justify-content: space-between;
	align-items: end;
	padding: 0 var(--pad) 52px;
}
.gallery-heading h2 {
	font-size: clamp(3.6rem, 7vw, 7rem);
}
.gallery-count {
	margin: 0;
	color: var(--muted);
	letter-spacing: 0.13em;
}
.gallery-count span {
	color: var(--ink);
	font-family: var(--sans);
	font-variant-numeric: tabular-nums;
	font-size: 2.2rem;
}
.gallery {
	padding-left: var(--pad);
}
.gallery-frame {
	position: relative;
	height: min(78vh, 860px);
	min-height: 460px;
	overflow: hidden;
	background: var(--pine-dark);
}
.gallery-frame::after {
	position: absolute;
	z-index: 4;
	bottom: 0;
	left: 0;
	width: 32%;
	height: 4px;
	opacity: 0;
	background: var(--sand);
	content: "";
	transform: translateX(-110%);
}
.gallery.is-loading .gallery-frame::after {
	opacity: 1;
	animation: gallery-loading 1s ease-in-out infinite;
}
@keyframes gallery-loading {
	to {
		transform: translateX(420%);
	}
}
.gallery-frame img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition:
		opacity 0.18s,
		transform 0.5s;
}
.gallery-frame img.is-changing {
	opacity: 0;
	transform: scale(0.99);
}
.gallery-button {
	position: absolute;
	top: 50%;
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	padding: 0 0 6px;
	color: #fff;
	background: rgba(12, 43, 46, 0.76);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	cursor: pointer;
	font-family: Georgia, serif;
	font-size: 2.5rem;
	line-height: 1;
	transform: translateY(-50%);
	transition:
		background 0.25s,
		transform 0.25s;
}
.gallery-button:hover {
	background: var(--aqua);
	transform: translateY(-50%) scale(1.06);
}
.gallery-button:disabled {
	opacity: 0.5;
	cursor: wait;
	transform: translateY(-50%);
}
.gallery-button:disabled:hover {
	background: rgba(12, 43, 46, 0.76);
	transform: translateY(-50%);
}
.gallery-button.previous {
	left: 28px;
}
.gallery-button.next {
	right: 28px;
}
.thumbnail-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: 48px;
	padding: 12px 0 0;
	overflow-x: auto;
	scrollbar-width: none;
}
.thumbnail-strip::-webkit-scrollbar {
	display: none;
}
.thumbnail {
	position: relative;
	flex: 0 0 12px;
	width: 12px;
	height: 32px;
	padding: 0;
	overflow: hidden;
	color: transparent;
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: flex-basis 0.3s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.thumbnail::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 5px;
	background: rgba(23, 61, 64, 0.2);
	border-radius: 999px;
	content: "";
	transform: translateY(-50%);
	transition:
		background 0.2s,
		box-shadow 0.2s;
}
.thumbnail:hover::before {
	background: rgba(47, 119, 119, 0.55);
}
.thumbnail.is-active {
	flex-basis: 30px;
}
.thumbnail.is-active::before {
	background: var(--aqua);
	box-shadow: 0 4px 14px rgba(47, 119, 119, 0.28);
}
.thumbnail:focus-visible {
	outline: 2px solid var(--aqua);
	outline-offset: 4px;
}
.thumbnail:disabled {
	cursor: wait;
}
.location {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: clamp(60px, 9vw, 130px);
	align-items: center;
	background: var(--cream);
}
.location-copy {
	max-width: 560px;
}
.location-copy h2 {
	margin-bottom: 38px;
	font-size: clamp(3.1rem, 5.2vw, 5.2rem);
}
.location-copy > p:not(.kicker) {
	color: var(--muted);
}
.distance-list {
	margin-top: 45px;
	border-top: 1px solid var(--line);
}
.distance-list p {
	display: grid;
	grid-template-columns: 95px 1fr;
	align-items: center;
	margin: 0;
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
}
.distance-list strong {
	font-family: var(--sans);
	font-variant-numeric: tabular-nums;
	font-size: 1.45rem;
	font-weight: 400;
}
.distance-list span {
	color: var(--muted);
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.map-frame {
	height: min(72vh, 720px);
	padding: 9px;
	background: var(--paper);
	box-shadow: var(--shadow);
}
.map-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: saturate(0.8) contrast(1.05);
}
.contact {
	position: relative;
	min-height: 720px;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: #fff;
	text-align: center;
	background: var(--pine-dark);
}
.contact-background {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(10, 42, 45, 0.72), rgba(10, 42, 45, 0.78)),
		url("../img/HousePhotos/house26.jpg") center/cover no-repeat;
	transform: scale(1.02);
}
.contact-content {
	position: relative;
	z-index: 1;
}
.contact h2 {
	font-size: clamp(4rem, 8vw, 8rem);
}
.contact-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(260px, 360px));
	justify-content: center;
	gap: 12px;
	margin-top: 54px;
}
.contact-method {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding: 20px 24px;
	color: var(--pine-dark);
	background: var(--paper);
	border: 1px solid var(--paper);
	text-align: left;
	text-decoration: none;
	transition:
		background 0.25s,
		border-color 0.25s,
		transform 0.25s;
}
.contact-method:hover {
	background: var(--sand);
	border-color: var(--sand);
	transform: translateY(-3px);
}
.contact-method:nth-child(2) {
	color: #fff;
	background: transparent;
	border-color: rgba(255, 255, 255, 0.5);
}
.contact-method:nth-child(2):hover {
	color: var(--pine-dark);
	background: #fff;
	border-color: #fff;
}
.facebook-method {
	grid-column: 1/-1;
	justify-self: center;
	width: min(100%, 360px);
	color: #fff !important;
	background: #315e7d !important;
	border-color: #315e7d !important;
}
.facebook-method:hover {
	background: #244b67 !important;
	border-color: #244b67 !important;
}
.contact-label {
	font-size: 0.64rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	opacity: 0.68;
}
.contact-method strong {
	font-size: clamp(0.95rem, 1.4vw, 1.1rem);
	font-weight: 500;
	letter-spacing: 0.01em;
}
footer {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 50px;
	align-items: center;
	justify-items: center;
	padding: 45px var(--pad);
	color: rgba(255, 255, 255, 0.55);
	background: #09272a;
	font-size: 0.68rem;
	text-align: center;
}
.footer-brand {
	color: #fff;
}
footer > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px 28px;
	text-align: center;
}
footer p {
	margin: 0;
}
footer > p:last-child {
	justify-self: center;
	margin: 0;
	text-align: center;
}
footer a {
	color: #fff;
}
.js .reveal {
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 0.75s,
		transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.js .reveal.is-visible {
	opacity: 1;
	transform: none;
}
[hidden] {
	display: none !important;
}
@keyframes hero-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
}
@media (max-width: 1100px) {
	.hero-facts {
		left: var(--pad);
		right: auto;
	}
	.story-grid {
		grid-template-columns: 1fr;
	}
	.story-copy {
		max-width: 720px;
	}
	.story-images {
		min-height: 650px;
	}

	.amenity-card,
	.amenity-card.photo-card,
	.access-card {
		grid-column: span 6;
	}
	.access-card {
		grid-column: span 12;
	}
	.stay,
	.location {
		grid-template-columns: 1fr;
	}
	.stay-copy,
	.location-copy {
		max-width: 760px;
	}
	.location-copy {
		order: 1;
	}
	.map-frame {
		order: 2;
	}
}
@media (max-width: 760px) {
	.section {
		padding-block: clamp(72px, 16vw, 90px);
	}
	.navbar {
		height: 70px;
	}
	.navbar.is-open {
		background: var(--pine-dark);
	}
	.nav-toggle {
		width: 42px;
		height: 42px;
		display: grid;
		place-content: center;
		gap: 5px;
		padding: 0;
		color: #fff;
		background: transparent;
		border: 0;
		cursor: pointer;
	}
	.nav-toggle > span:not(.sr-only) {
		display: block;
		width: 23px;
		height: 1px;
		background: currentColor;
		transition:
			transform 0.2s,
			opacity 0.2s;
	}
	.nav-toggle[aria-expanded="true"] > span:first-child {
		transform: translateY(6px) rotate(45deg);
	}
	.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
		opacity: 0;
	}
	.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}
	.nav-links {
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		display: grid;
		gap: 0;
		padding: 12px var(--pad) 28px;
		background: var(--pine-dark);
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition:
			opacity 0.2s,
			transform 0.2s,
			visibility 0.2s;
	}
	.navbar.is-open .nav-links {
		opacity: 1;
		visibility: visible;
		transform: none;
	}
	.nav-links a,
	.nav-contact {
		padding: 13px 0;
		border: 0;
	}
	.hero {
		min-height: 100svh;
		align-items: flex-start;
		padding: clamp(128px, 20vh, 160px) var(--pad) 230px;
		background-position: 58% center;
	}
	.hero-copy {
		width: 100%;
		padding-top: 0;
	}
	.hero h1 {
		font-size: clamp(3.55rem, 18vw, 6.5rem);
		line-height: 0.86;
	}
	.hero-intro {
		margin-top: 28px;
	}
	.hero-actions {
		width: 100%;
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
		margin-top: 32px;
	}
	.hero-actions .button {
		width: min(100%, 320px);
	}
	.hero-actions .light-link {
		position: relative;
		z-index: 3;
		padding-block: 8px;
		color: #fff;
		text-shadow: 0 1px 12px rgba(6, 30, 32, 0.55);
	}
	.hero-facts {
		left: var(--pad);
		right: var(--pad);
		bottom: 0;
		width: auto;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.hero-facts div {
		min-height: 82px;
		padding: 14px clamp(14px, 4vw, 22px);
	}
	.hero-facts div:nth-child(3) {
		border-left: 0;
		border-top: 1px solid var(--line);
	}
	.hero-facts div:nth-child(4) {
		border-top: 1px solid var(--line);
	}
	.story-heading {
		margin-bottom: 70px;
	}
	.story-images {
		min-height: clamp(330px, 115vw, 440px);
	}
	.image-primary {
		width: 86%;
		height: 76%;
		border-width: 6px;
	}
	.image-secondary {
		width: 58%;
		height: 43%;
		border-width: 6px;
	}
	.amenity-grid {
		border-left: 0;
	}
	.amenity-card,
	.amenity-card.photo-card,
	.access-card {
		grid-column: span 12;
		min-height: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.15);
	}

	.access-card {
		display: block;
	}
	.stay {
		gap: 52px;
	}
	.stay-image {
		height: auto;
		min-height: 0;
		aspect-ratio: 4 / 5;
	}
	.gallery-heading {
		align-items: center;
		gap: 20px;
		padding-bottom: 36px;
	}
	.gallery-heading h2 {
		font-size: clamp(3.2rem, 15vw, 5.5rem);
	}
	.gallery-count {
		flex: 0 0 auto;
	}
	.gallery {
		padding-inline: var(--pad);
	}
	.gallery-frame {
		height: auto;
		min-height: 0;
		aspect-ratio: 4 / 3;
	}
	.gallery-button {
		width: 46px;
		height: 46px;
		font-size: 2rem;
	}
	.gallery-button.previous {
		left: 12px;
	}
	.gallery-button.next {
		right: 12px;
	}
	.thumbnail-strip {
		width: 100%;
		gap: clamp(2px, 0.75vw, 3px);
		overflow: hidden;
	}
	.thumbnail {
		flex: 1 1 0;
		width: auto;
		min-width: 3px;
		max-width: 8px;
	}
	.thumbnail.is-active {
		flex: 3 1 0;
	}
	.map-frame {
		height: clamp(360px, 110vw, 560px);
	}
	.contact {
		min-height: 0;
	}
	.contact-actions {
		width: 100%;
		grid-template-columns: minmax(0, 1fr);
	}
	.contact-method {
		width: 100%;
		min-width: 0;
	}
	.contact-method strong {
		overflow-wrap: anywhere;
	}
	.facebook-method {
		grid-column: auto;
	}
	footer {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	footer > p:last-child {
		justify-self: center;
		text-align: center;
	}
}
@media (max-width: 480px) {
	:root {
		--pad: 18px;
	}
	.navbar .brand {
		font-size: 1.5rem;
	}
	.hero {
		padding-top: 120px;
		padding-bottom: 215px;
	}
	.hero h1 {
		font-size: clamp(3.2rem, 17vw, 4.4rem);
	}
	.hero-intro {
		font-size: 0.95rem;
	}
	.hero-actions .button {
		width: 100%;
	}
	.hero-facts strong {
		font-size: 1.75rem;
	}
	.hero-facts span {
		font-size: 0.56rem;
		letter-spacing: 0.08em;
	}
	h2,
	.amenities-intro h2,
	.stay-copy h2,
	.location-copy h2,
	.contact h2 {
		font-size: clamp(2.8rem, 14vw, 4rem);
	}
	.gallery-heading h2 {
		font-size: clamp(2.9rem, 14vw, 4rem);
	}
	.gallery-count span {
		font-size: 1.75rem;
	}
	.story-images {
		min-height: clamp(310px, 110vw, 390px);
	}
	.amenity-card {
		padding: 28px 24px;
	}
	.card-content {
		padding-inline: 24px;
	}
	.gallery-button {
		width: 40px;
		height: 40px;
	}
	.distance-list p {
		grid-template-columns: 78px minmax(0, 1fr);
	}
	.contact-method {
		padding: 18px;
	}
	footer {
		padding: 36px var(--pad);
	}
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*:before,
	*:after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
	.gallery.is-loading .gallery-frame::after {
		width: 100%;
		animation: none;
		transform: none;
	}
	.js .reveal {
		opacity: 1;
		transform: none;
	}
}
