html, body {
	color: var(--fontColor);
	font-family: var(--fontFamily);
	font-size: var(--fontNormal);
	text-align: var(--layOutAlign);
	padding: 0;
	margin: 0;
	min-height: 100%;
	background:
		radial-gradient(circle at top left, rgba(244, 168, 86, 0.22), transparent 34%),
		radial-gradient(circle at top right, rgba(229, 187, 118, 0.14), transparent 30%),
		linear-gradient(180deg, #2b3340 0%, #161f28 52%, #10161d 100%);
	background-attachment: fixed;
	scroll-behavior: smooth;
}

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

table, tbody {
	vertical-align: top;
	border-spacing: 0;
	border-width: 0;
	padding: 0;
	background-repeat: repeat;
}

td {
	padding: 0;
	box-sizing: border-box;
}

div, ul {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	color: var(--fontColor);
	cursor: pointer;
	text-decoration: none;
}

h1, h2 {
	font-family: var(--fontDisplay);
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--lightestColor);
	margin: 0;
}

h1 {
	margin-bottom: 24px;
	font-size: var(--fontBigger);
	line-height: 0.95;
}

h2 {
	margin: 0 0 18px;
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1;
}

body {
	position: relative;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(7, 12, 18, 0.42) 0%, rgba(7, 12, 18, 0.62) 100%),
		url('../img/bg.png') center center / cover no-repeat;
	filter: blur(18px) saturate(0.95);
	transform: scale(1.06);
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
}

body::after {
	content: "";
	position: fixed;
	inset: 0;
	background:
		radial-gradient(circle at top, rgba(255, 184, 104, 0.15), transparent 30%),
		linear-gradient(180deg, rgba(255, 240, 218, 0.05) 0%, rgba(12, 18, 24, 0.14) 22%, rgba(12, 18, 24, 0.5) 100%);
	pointer-events: none;
	z-index: 0;
}

.siteShell {
	position: relative;
	z-index: 1;
}

.siteHeaderWrap {
	padding: 24px clamp(16px, 3vw, 32px) 12px;
}

.siteHeader {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	text-align: center;
	align-items: center;
	gap: 18px;
	padding: clamp(18px, 3.2vw, 34px) clamp(18px, 4vw, 44px);
	border: 1px solid var(--borderColor);
	border-radius: 22px;
	background: linear-gradient(145deg, rgba(16, 27, 35, 0.88), rgba(40, 67, 78, 0.54));
	box-shadow: var(--shadowSoft);
	backdrop-filter: blur(18px);
}

.headerMain {
	display: grid;
	gap: 16px;
	justify-items: center;
	width: 100%;
}

.headerBrand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}

.headerBrandLink {
	position: relative;
	display: grid;
	gap: 10px;
	justify-items: center;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
	color: inherit;
	text-decoration: none;
}

.headerKicker,
.eyebrow {
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--sandColor);
	font-weight: 700;
}

.headerTitle {
	position: relative;
	margin-bottom: 0;
	text-wrap: balance;
	line-height: 0.9;
	letter-spacing: 0.01em;
	padding: 8px 18px 10px;
	isolation: isolate;
}

.headerTitle::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: min(92%, 520px);
	height: calc(100% + 16px);
	border-radius: 999px;
	background:
		radial-gradient(circle at 28% 50%, rgba(214, 231, 229, 0.18), transparent 36%),
		radial-gradient(circle at 68% 44%, rgba(229, 187, 118, 0.18), transparent 34%),
		linear-gradient(90deg, rgba(20, 34, 44, 0.2), rgba(255, 243, 225, 0.06), rgba(22, 36, 46, 0.2));
	filter: blur(14px);
	transform: translate(-50%, -50%);
	opacity: 0.95;
	z-index: -1;
}

.headerWordmark {
	display: inline-block;
	vertical-align: baseline;
}

.headerWordmarkBase,
.headerWordmarkTld {
	font-family: var(--fontFamily);
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 700;
	letter-spacing: 0.015em;
	text-transform: lowercase;
	color: rgba(244, 245, 240, 0.95);
	text-shadow: 0 10px 24px rgba(8, 14, 18, 0.16);
}

.headerWordmarkAccent {
	margin: 0 0.04em;
	font-family: var(--fontDisplay);
	font-size: clamp(46px, 6.4vw, 82px);
	font-weight: 600;
	font-style: italic;
	letter-spacing: 0.024em;
	text-transform: lowercase;
	color: #9fd4ef;
	background: linear-gradient(180deg, #d8f4ff 0%, #86d1f2 38%, #4fa7d8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 12px 28px rgba(7, 18, 28, 0.24);
	filter: drop-shadow(0 0 18px rgba(96, 186, 232, 0.18));
	transform: translateY(1px) scale(1.06);
	transform-origin: center;
}

.headerWordmarkTld {
	font-size: clamp(22px, 2.7vw, 34px);
	font-weight: 600;
	letter-spacing: 0.03em;
	color: rgba(230, 236, 234, 0.76);
}

.headerSubtitle {
	color: rgba(236, 241, 239, 0.84);
	line-height: 1.28;
	max-width: 24ch;
	font-size: clamp(17px, 1.35vw, 21px);
	text-shadow: 0 6px 18px rgba(8, 14, 18, 0.12);
}

.headerMetaRow,
.headerActions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	width: min(100%, 430px);
	max-width: 100%;
	margin: 0 auto;
}

.headerMetaPill,
.headerContactLink {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	min-height: 44px;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(18, 27, 35, 0.72);
	color: var(--lightestColor);
	border: 1px solid rgba(229, 187, 118, 0.12);
	font-size: 14px;
	letter-spacing: 0.02em;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.headerContactLink {
	background: rgba(17, 26, 34, 0.82);
	font-weight: 600;
}

.headerContactLink:hover {
	background: rgba(24, 35, 45, 0.92);
	border-color: rgba(229, 187, 118, 0.2);
	transform: translateY(-1px);
}

.headerBookingLink {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	min-height: 44px;
	padding: 10px 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(193, 175, 132, 0.58), rgba(144, 149, 135, 0.68));
	color: var(--lightestColor);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 240, 218, 0.12);
	box-shadow: inset 0 1px 0 rgba(255, 240, 218, 0.2), 0 12px 24px rgba(5, 10, 14, 0.16);
	transition: background 0.25s ease, transform 0.25s ease;
}

.headerBookingLink:hover {
	background: linear-gradient(135deg, rgba(209, 191, 146, 0.68), rgba(159, 164, 149, 0.78));
	transform: translateY(-1px);
}

.headerOrnament {
	height: clamp(70px, 10vw, 120px);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.92;
	filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
}

.headerOrnamentShell {
	width: clamp(60px, 8vw, 90px);
	justify-self: start;
}

.headerOrnamentHouse {
	width: clamp(108px, 14vw, 156px);
	justify-self: end;
}

.fontHuge {
	font-size: var(--fontHuge);
}

.fontBigger {
	font-size: var(--fontBigger);
}

.fontBig {
	font-size: var(--fontBig);
}

.pageMain {
	max-width: 1440px;
	margin: 0 auto;
	padding-bottom: 32px;
}

.box {
	background-clip: content-box;
	padding: 28px clamp(16px, 4vw, 64px) 0;
}

.pageSectionStack {
	display: grid;
	gap: 24px;
}

.staticSection {
	display: block;
}

.onePageStack,
.sectionStack,
.anchorSectionWrap {
	display: grid;
	gap: 24px;
}

.anchorSectionWrap {
	gap: 0;
}

.accordionSection {
	border-radius: 16px;
	background: linear-gradient(145deg, rgba(16, 26, 33, 0.64), rgba(36, 54, 63, 0.44));
	border: 1px solid rgba(229, 187, 118, 0.14);
	box-shadow: 0 22px 48px rgba(3, 13, 17, 0.2);
	overflow: hidden;
	backdrop-filter: blur(12px);
}

.accordionToggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	cursor: pointer;
	user-select: none;
	background: linear-gradient(135deg, rgba(222, 201, 165, 0.12), rgba(198, 214, 217, 0.04));
	border-bottom: 1px solid rgba(255, 240, 218, 0.04);
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: inset 0 1px 0 rgba(255, 240, 218, 0.06);
}

.accordionToggle:hover {
	background: linear-gradient(135deg, rgba(229, 187, 118, 0.18), rgba(214, 223, 222, 0.08));
}

.accordionTitle {
	font-family: var(--fontDisplay);
	font-size: clamp(24px, 3.4vw, 34px);
	line-height: 0.98;
	color: var(--lightestColor);
	text-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.accordionIndicator {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	border: 1px solid rgba(229, 187, 118, 0.22);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	line-height: 1;
	color: var(--sandColor);
	background: rgba(14, 22, 29, 0.32);
	box-shadow: inset 0 1px 0 rgba(255, 240, 218, 0.06);
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.accordionPanel {
	display: grid;
	grid-template-rows: 1fr;
	max-height: 0;
	overflow: hidden;
	padding: 0;
	background: rgba(255, 255, 255, 0.02);
	transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1), padding 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordionSectionOpen .accordionPanel {
	gap: 24px;
	padding: 0 0 8px;
	overflow: visible;
}

.accordionSectionOpen .accordionIndicator {
	transform: rotate(45deg);
	background: rgba(221, 200, 164, 0.18);
	color: var(--lightestColor);
}

.contentCard,
.heroIntro {
	position: relative;
	padding: clamp(22px, 4vw, 36px);
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(15, 24, 31, 0.82), rgba(34, 52, 60, 0.46));
	border: 0;
	box-shadow: 0 14px 36px rgba(3, 13, 17, 0.18);
	backdrop-filter: blur(12px);
	overflow: hidden;
}

.heroIntroStatic {
	padding: clamp(28px, 7vw, 56px);
	background:
		radial-gradient(circle at top right, rgba(239, 168, 95, 0.28), transparent 30%),
		linear-gradient(145deg, rgba(16, 25, 32, 0.9), rgba(48, 73, 85, 0.62));
	box-shadow: 0 28px 80px rgba(3, 13, 17, 0.36);
}

.homeHeroSection {
	padding: clamp(24px, 5vw, 42px);
	border-radius: 18px;
}

.homeHeroGrid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
	gap: clamp(20px, 4vw, 36px);
	align-items: center;
}

.homeHeroMedia,
.homeHeroCopy {
	position: relative;
	z-index: 1;
}

.homeHeroCopy {
	display: grid;
	gap: 14px;
	align-content: center;
}

.homeHeroEyebrow {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 30px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(217, 226, 225, 0.08);
	border: 1px solid rgba(217, 226, 225, 0.12);
	color: rgba(232, 237, 235, 0.82);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
}

.homeHeroTitle {
	margin: 0;
	font-size: clamp(34px, 4.2vw, 54px);
	line-height: 0.94;
	letter-spacing: 0.01em;
	text-wrap: balance;
}

.homeHeroLead,
.homeHeroText {
	max-width: 34ch;
	font-size: clamp(16px, 1.28vw, 18px);
	line-height: 1.7;
	color: rgba(243, 241, 235, 0.9);
}

.homeHeroText {
	color: rgba(221, 229, 227, 0.76);
	font-size: clamp(15px, 1.18vw, 17px);
	line-height: 1.72;
}

.introHighlightGrid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 10px;
}

.introHighlightCard {
	padding: 14px 16px;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(20, 31, 40, 0.84), rgba(31, 49, 58, 0.54));
	border: 1px solid rgba(220, 230, 227, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	text-align: left;
}

.introHighlightValue {
	font-family: var(--fontDisplay);
	font-size: clamp(24px, 2.4vw, 34px);
	line-height: 0.95;
	color: var(--lightestColor);
	margin-bottom: 4px;
}

.introHighlightLabel {
	font-size: 13px;
	line-height: 1.45;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(220, 228, 226, 0.7);
}

.houseTitleImage {
	height: clamp(260px, 44vw, 430px);
	margin: 0 0 24px;
	border-radius: 14px;
	box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}

.heroIntro::before,
.contentCard::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%);
	pointer-events: none;
}

.leadText,
.sectionText,
.entryText {
	position: relative;
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.75;
	color: rgba(247, 245, 239, 0.92);
}

.sectionTextTight {
	margin-bottom: 18px;
	max-width: 60ch;
}

.sectionTitle {
	position: relative;
	margin-bottom: 14px;
	font-family: var(--fontDisplay);
	font-size: clamp(30px, 4vw, 44px);
	color: var(--lightestColor);
	line-height: 0.95;
}

.storyGrid,
.amenityGrid,
.factChipRow,
.footerInner {
	display: grid;
	gap: 16px;
}

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

.storyBlock {
	padding: 8px 0;
}

.factChipRow {
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	margin-top: 20px;
}

.factChip {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 12px 16px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(255, 225, 192, 0.12), rgba(212, 223, 222, 0.06));
	border: 0;
	box-shadow: inset 0 1px 0 rgba(255, 240, 218, 0.08);
	font-size: 15px;
	line-height: 1.45;
	color: var(--lightestColor);
	text-align: center;
}

.amenityGrid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 18px;
	gap: 20px 22px;
}

.amenityItem {
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr);
	background-size: 34px 34px;
	gap: 18px;
	padding: 18px 8px 18px 0;
	border-radius: 12px;
	background: transparent;
	border: 0;
	box-shadow: none;
	min-height: 96px;
	align-items: center;
}

.amenityIcon {
	width: 60px;
	height: 60px;
	flex: 0 0 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 16px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
		rgba(22, 34, 42, 0.34);
	padding: 10px;
	border: 1px solid rgba(226, 234, 231, 0.1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 26px rgba(3, 10, 14, 0.08);
	background-position: center;
	background-size: 30px 30px;
	background-repeat: no-repeat;
}

.amenityIconImage {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	filter: brightness(0) saturate(100%) invert(82%) sepia(21%) saturate(409%) hue-rotate(352deg) brightness(91%) contrast(88%);
}

.amenityIconOutdoor {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cg stroke='%23d8ccb0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3Cpath d='M12 3.75v2.1'/%3E%3Cpath d='M12 18.15v2.1'/%3E%3Cpath d='M20.25 12h-2.1'/%3E%3Cpath d='M5.85 12h-2.1'/%3E%3Cpath d='m17.83 6.17-1.49 1.49'/%3E%3Cpath d='m7.66 16.34-1.49 1.49'/%3E%3Cpath d='m17.83 17.83-1.49-1.49'/%3E%3Cpath d='m7.66 7.66-1.49-1.49'/%3E%3C/g%3E%3C/svg%3E");
}

.amenityIconGuests {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cg stroke='%23d8ccb0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3E%3Ccircle cx='9' cy='9' r='2.5'/%3E%3Cpath d='M4.75 18a4.25 4.25 0 0 1 8.5 0'/%3E%3Ccircle cx='16.5' cy='10' r='2'/%3E%3Cpath d='M13.75 18a3.5 3.5 0 0 1 5 0'/%3E%3C/g%3E%3C/svg%3E");
}

.amenityIconCouch {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cg stroke='%23d8ccb0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3E%3Cpath d='M6 11.25A2.25 2.25 0 0 1 8.25 9h7.5A2.25 2.25 0 0 1 18 11.25v3.5H6z'/%3E%3Cpath d='M4 12.5h2v4.25h12V12.5h2a1.5 1.5 0 0 1 1.5 1.5v2.75h-19V14A1.5 1.5 0 0 1 4 12.5Z'/%3E%3Cpath d='M6.5 16.75v2'/%3E%3Cpath d='M17.5 16.75v2'/%3E%3C/g%3E%3C/svg%3E");
}

.amenityIconBath {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cg stroke='%23d8ccb0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3E%3Cpath d='M4.25 13.75h15.5v1a3.5 3.5 0 0 1-3.5 3.5h-8.5a3.5 3.5 0 0 1-3.5-3.5v-1Z'/%3E%3Cpath d='M7.5 18.25v1.5'/%3E%3Cpath d='M16.5 18.25v1.5'/%3E%3Cpath d='M14.75 8.25V6.5a2.25 2.25 0 0 0-4.5 0v7.25'/%3E%3Cpath d='M14.75 8.25h3'/%3E%3C/g%3E%3C/svg%3E");
}

.amenityIconKitchen {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cg stroke='%23d8ccb0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3E%3Cpath d='M5 4.75h14v14.5H5z'/%3E%3Cpath d='M5 9.25h14'/%3E%3Cpath d='M8 7h.01'/%3E%3Cpath d='M11 7h.01'/%3E%3Cpath d='M14 7h.01'/%3E%3Cpath d='M8 17.25v-5.5'/%3E%3Cpath d='M16 17.25v-5.5'/%3E%3Cpath d='M8 14.5h8'/%3E%3C/g%3E%3C/svg%3E");
}

.amenityIconTv {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cg stroke='%23d8ccb0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3E%3Crect x='3.75' y='5.5' width='16.5' height='10.5' rx='2'/%3E%3Cpath d='M9 19.5h6'/%3E%3Cpath d='M12 16v3.5'/%3E%3Cpath d='M9 3.75 12 5.5l3-1.75'/%3E%3C/g%3E%3C/svg%3E");
}

.amenityIconParking {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cg stroke='%23d8ccb0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3E%3Crect x='5' y='3.75' width='14' height='16.5' rx='2.5'/%3E%3Cpath d='M9.25 16.5v-8h4a2.75 2.75 0 0 1 0 5.5h-4'/%3E%3C/g%3E%3C/svg%3E");
}

.amenityText {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: rgba(236, 238, 234, 0.9);
}

.unitSectionStack {
	gap: 14px;
}

.unitBadgeRow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}

.unitEyebrow,
.storyBlockAccent,
.galleryModeBadge,
.galleryHint,
.gallerySlideIndex,
.gallerySlideLabel {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 12px;
	border-radius: 10px;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1;
}

.unitEyebrow,
.storyBlockAccent,
.galleryModeBadge,
.gallerySlideIndex {
	color: #10262f;
	background: rgba(221, 200, 164, 0.9);
	box-shadow: 0 8px 18px rgba(221, 200, 164, 0.16);
}

.galleryHint,
.gallerySlideLabel {
	color: var(--lightestColor);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.unitContentCard {
	background: linear-gradient(145deg, rgba(16, 25, 32, 0.72), rgba(34, 52, 60, 0.42));
}

.unitSectionBlock {
	margin-top: 22px;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.unitSectionBlock + .unitSectionBlock {
	padding-top: 22px;
	border-top: 1px solid rgba(223, 231, 228, 0.08);
}

.unitGalleryInline {
	margin: 8px 0 18px;
}

.unitIntroText {
	max-width: 58ch;
	margin-bottom: 2px;
	font-size: clamp(15px, 1.12vw, 17px);
	line-height: 1.72;
	color: rgba(234, 239, 237, 0.84);
}

.unitGalleryShell {
	margin-top: 18px;
	padding-top: 10px;
	border-radius: 12px;
	background: transparent;
	box-shadow: none;
}

.galleryDesktopShell {
	display: none;
}

.galleryRailMobile {
	display: block;
}

.galleryRailHeader,
.galleryStatusRow,
.gallerySlideTop,
.gallerySlideBottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.gallerySlideBottom {
	justify-content: flex-end;
}

.galleryRailHeader {
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.galleryHeadlineBadge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(221, 200, 164, 0.18);
	border: 1px solid rgba(221, 200, 164, 0.3);
	color: var(--sandColor);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
}

.galleryStatusRow {
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.galleryHintSoft {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.08);
	color: rgba(247, 245, 239, 0.72);
}

.galleryRail {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(82%, 1fr);
	gap: 14px;
	overflow-x: auto;
	padding-bottom: 4px;
	scroll-snap-type: x mandatory;
	overscroll-behavior-x: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.32) transparent;
}

.galleryRailViewport {
	position: relative;
	overflow: hidden;
	padding-bottom: 6px;
}

.galleryRailViewport::before,
.galleryRailViewport::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 10px;
	width: 34px;
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.galleryRailViewport::before {
	left: 0;
	background: linear-gradient(90deg, rgba(13, 22, 29, 0.82), rgba(13, 22, 29, 0));
}

.galleryRailViewport::after {
	right: 0;
	background: linear-gradient(270deg, rgba(13, 22, 29, 0.82), rgba(13, 22, 29, 0));
}

.galleryRailViewportLeft::before,
.galleryRailViewportRight::after {
	opacity: 1;
}

.galleryRailIndicator {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 28px;
	height: 28px;
	margin-top: -18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(7, 18, 26, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	color: rgba(248, 240, 229, 0.86);
	font-size: 18px;
	line-height: 1;
	pointer-events: auto;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.galleryRailIndicatorLeft {
	left: 8px;
	transform: translateX(-4px);
}

.galleryRailIndicatorRight {
	right: 8px;
	transform: translateX(4px);
}

.galleryRailViewportLeft .galleryRailIndicatorLeft,
.galleryRailViewportRight .galleryRailIndicatorRight {
	opacity: 1;
	transform: translateX(0);
}

.galleryRailIndicatorChevron {
	font-family: var(--fontDisplay);
	font-size: 24px;
	transform: translateY(-1px);
}

.galleryMobileDots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
}

.galleryMobileDot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(248, 240, 229, 0.24);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	transition: transform 0.2s ease, background 0.2s ease;
}

.galleryMobileDotActive {
	background: rgba(221, 200, 164, 0.88);
	transform: scale(1.18);
}

.galleryRail::-webkit-scrollbar {
	height: 8px;
}

.galleryRail::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.28);
	border-radius: 999px;
}

.gallerySlideCard {
	position: relative;
	display: block;
	min-height: 340px;
	border-radius: 12px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: 0;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
	scroll-snap-align: start;
	transform: translateY(0);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallerySlideCard:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.gallerySlideShade {
	min-height: 340px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: linear-gradient(180deg, rgba(8, 24, 32, 0.16) 0%, rgba(8, 24, 32, 0.08) 30%, rgba(8, 24, 32, 0.78) 100%);
}

.gallerySlideShadeMinimal {
	min-height: 340px;
	background: linear-gradient(180deg, rgba(8, 24, 32, 0.06) 0%, rgba(8, 24, 32, 0.02) 42%, rgba(8, 24, 32, 0.18) 100%);
}

.gallerySlideTop {
	align-items: flex-start;
}

.gallerySlideBottom {
	align-items: flex-end;
}

.gallerySlideTitle {
	font-family: var(--fontDisplay);
	font-size: clamp(28px, 4vw, 42px);
	line-height: 0.95;
	color: var(--lightestColor);
	text-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
	max-width: 8ch;
}

.gallerySlideAction {
	padding: 10px 14px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: var(--lightestColor);
	font-size: 13px;
	line-height: 1;
	backdrop-filter: blur(8px);
}

.gallerySlideActionIcon {
	width: 36px;
	height: 36px;
	padding: 0;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
}

.galleryFeaturedCard,
.galleryThumbCard {
	position: relative;
	display: block;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	border: 0;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.galleryFeaturedCard:hover,
.galleryThumbCard:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.galleryFeaturedCard {
	min-height: 420px;
	border-radius: 16px;
}

.galleryFeaturedStage {
	cursor: zoom-in;
}

.galleryFeaturedStageNav {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 52px;
	height: 52px;
	margin-top: -26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(9, 20, 27, 0.46);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	color: rgba(248, 240, 229, 0.94);
	font-family: var(--fontDisplay);
	font-size: 34px;
	line-height: 1;
	transition: background 0.2s ease, transform 0.2s ease;
}

.galleryFeaturedStageNav:hover {
	background: rgba(9, 20, 27, 0.62);
	transform: translateY(-1px);
}

.galleryFeaturedStageNavPrev {
	left: 18px;
}

.galleryFeaturedStageNavNext {
	right: 18px;
}

.galleryFeaturedShade {
	min-height: 420px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: linear-gradient(180deg, rgba(7, 18, 26, 0.14) 0%, rgba(7, 18, 26, 0.06) 30%, rgba(7, 18, 26, 0.72) 100%);
}

.galleryFeaturedTop,
.galleryFeaturedBottom {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.galleryFeaturedBottom {
	justify-content: flex-end;
	align-items: flex-end;
}

.galleryFeaturedMeta {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.galleryFeaturedCount {
	padding: 10px 12px;
	border-radius: 999px;
	background: rgba(9, 20, 27, 0.54);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(248, 240, 229, 0.9);
}

.galleryFeaturedActionButton {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	background: rgba(248, 240, 229, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(10px);
	color: var(--lightestColor);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	transition: background 0.2s ease, transform 0.2s ease;
}

.galleryFeaturedActionButton:hover {
	background: rgba(248, 240, 229, 0.2);
	transform: translateY(-1px);
}

.galleryThumbRail {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	align-content: start;
}

.galleryThumbCard {
	aspect-ratio: 1 / 1;
	border-radius: 14px;
	cursor: pointer;
}

.galleryThumbCardActive {
	box-shadow: 0 0 0 2px rgba(221, 200, 164, 0.8), 0 22px 44px rgba(0, 0, 0, 0.24);
	transform: translateY(-2px);
}

.galleryLightbox {
	position: fixed;
	inset: 0;
	z-index: 90;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.24s ease;
}

.galleryLightboxOpen {
	opacity: 1;
	pointer-events: auto;
}

.galleryLightboxBackdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 11, 16, 0.78);
	backdrop-filter: blur(10px);
}

.galleryLightboxDialog {
	position: relative;
	width: min(1220px, calc(100vw - 32px));
	height: calc(100vh - 32px);
	margin: 0;
	padding: 20px;
	border-radius: 24px;
	background: rgba(11, 20, 27, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.galleryLightboxHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.galleryLightboxTitle {
	font-family: var(--fontDisplay);
	font-size: clamp(28px, 3vw, 42px);
	color: var(--lightestColor);
}

.galleryLightboxClose {
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--lightestColor);
	font-size: 13px;
	font-weight: 700;
}

.galleryLightboxViewport {
	flex: 1;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	min-height: 0;
}

.galleryLightboxStage {
	position: relative;
	height: 100%;
	min-height: 0;
	border-radius: 20px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
}

.galleryLightboxItem {
	position: absolute;
	inset: 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.24s ease;
}

.galleryLightboxItemActive {
	opacity: 1;
}

.galleryLightboxNav {
	width: 52px;
	height: 52px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--lightestColor);
	font-family: var(--fontDisplay);
	font-size: 34px;
	line-height: 1;
	backdrop-filter: blur(10px);
}

.galleryThumbBadge {
	position: absolute;
	left: 12px;
	top: 12px;
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(14, 22, 29, 0.54);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(8px);
	color: var(--lightestColor);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

@media (min-width: 680px) {
	.galleryDesktopShell {
		display: grid;
		grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.9fr);
		gap: 18px;
		align-items: stretch;
	}

	.galleryRailMobile {
		display: none;
	}

	.galleryStatusRow {
		margin-bottom: 18px;
	}

	.unitGalleryInline {
		margin: 4px 0 18px;
	}

	.unitIntroText {
		font-size: 16px;
		line-height: 1.74;
	}

	.galleryThumbRail {
		max-height: 420px;
		overflow: auto;
		padding-right: 4px;
	}
}

@media (max-width: 679px) {
	.galleryDesktopShell,
	.galleryLightbox {
		display: none;
	}
}

.unitSectionBlockStory,
.unitSectionBlockNotes {
	overflow: hidden;
}

.amenitySectionTitle {
	margin-bottom: 6px;
	font-size: clamp(28px, 3.2vw, 38px);
	line-height: 0.98;
	letter-spacing: 0.01em;
}

.unitSectionBlockStory .sectionTitle,
.unitSectionBlockNotes .sectionTitle {
	margin-bottom: 10px;
	font-size: clamp(28px, 3.4vw, 40px);
}

.unitStoryGrid {
	grid-template-columns: 1fr;
	gap: 12px;
	margin-top: 14px;
}

.storyBlockCard {
	padding: 8px 0 10px;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	position: relative;
}

.storyBlockCard + .storyBlockCard {
	border-top: 1px solid rgba(223, 231, 228, 0.06);
	padding-top: 14px;
}

.unitHighlightList {
	margin: 16px 0 0;
	padding-left: 18px;
	display: grid;
	gap: 8px;
	color: rgba(247, 245, 239, 0.88);
	line-height: 1.55;
}

.unitHighlightItem {
	padding-left: 4px;
}

.storyBlockCard::before {
	display: none;
}

.storyBlockAccent {
	margin-bottom: 8px;
	justify-content: flex-start;
	width: fit-content;
}

.storyBlockTitle {
	margin-bottom: 10px;
	font-family: var(--fontDisplay);
	font-size: clamp(24px, 3.6vw, 34px);
	line-height: 0.98;
	color: var(--lightestColor);
}

.storyBlockText {
	max-width: 42ch;
}

.detailCard,
.locationCard,
.overviewCard,
.unitContentCard {
	min-width: 0;
}

.bold {
	font-weight: 700;
}

.entryText {
	padding-left: 0;
	padding-right: 0;
	max-width: 78ch;
}

.entryText a,
.footer a {
	text-underline-offset: 0.18em;
	text-decoration-thickness: 1px;
}

.noteList {
	padding-left: 20px;
	display: grid;
	gap: 12px;
	line-height: 1.7;
}

.unitContentCard .amenityItem {
	padding: 8px 0;
	min-height: 0;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
}

.unitContentCard .amenityIcon {
	background-color: rgba(255, 255, 255, 0.035);
	box-shadow: none;
}

.unitContentCard .noteList {
	margin-top: 8px;
}

.ctaWrap {
	margin-top: 10px;
}

.amenitySectionTitle {
	margin-top: 6px;
	margin-bottom: 14px;
}

.unitBookingButton {
	min-width: 170px;
	height: 52px;
	padding: 0 24px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(221, 200, 164, 0.96), rgba(247, 239, 221, 0.94));
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
	font-size: 17px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.unitBookingButton:hover {
	background: linear-gradient(135deg, #f2e6cb, #fff7eb);
	transform: translateY(-1px);
}

.bookingLayout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	margin-top: 24px;
	align-items: start;
}

.bookingIntroStack {
	display: grid;
	gap: 12px;
	margin-bottom: 4px;
}

.bookingLeadText {
	max-width: 54ch;
}

.bookingContactLine {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.contactInlineIcon {
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	flex: 0 0 18px;
}

.contactInlineIconPhone {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23dcc8a4' d='M6.6 3h3.1c.4 0 .8.3.9.7l.7 3.1c.1.4-.1.8-.4 1l-1.8 1.4a14.2 14.2 0 0 0 5.7 5.7l1.4-1.8c.2-.3.6-.5 1-.4l3.1.7c.4.1.7.5.7.9v3.1c0 .5-.4 1-.9 1C10 20 4 14 4 3.9c0-.5.5-.9 1-.9'/%3E%3C/svg%3E");
}

.bookingContactCopy {
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
	color: rgba(247, 245, 239, 0.7);
}

.bookingContactLink {
	font-weight: 700;
	color: var(--lightestColor);
}

.bookingFormShell,
.bookingSummaryCard,
.bookingPaymentCard {
	padding: 22px;
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(10, 28, 37, 0.9), rgba(27, 64, 78, 0.55));
	border: 0;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 38px rgba(0, 0, 0, 0.18);
}

.bookingFormShell h2 {
	margin-bottom: 10px;
}

.bookingSideColumn {
	display: grid;
	gap: 18px;
}

.bookingAvailabilityLayout {
	grid-template-columns: 1fr;
}

.bookingAvailabilityText {
	color: rgba(247, 245, 239, 0.82);
	line-height: 1.7;
	margin-bottom: 18px;
}

.bookingAvailabilityTextCompact {
	margin-bottom: 22px;
}

.bookingCallButtonWrap {
	margin-top: 22px;
	display: flex;
	justify-content: flex-start;
}

.bookingCallButton {
	width: auto;
	min-width: 0;
	padding-inline: 22px;
	justify-content: center;
}

.bookingAvailabilityCalendarColumn {
	align-self: stretch;
	width: 100%;
}

.bookingSectionCard,
.bookingAvailabilityCheckCard {
	overflow: visible;
}

.bookingAvailabilityCalendarCard {
	height: 100%;
}

.bookingAvailabilityCheckCard {
	padding: 22px;
	border: 1px solid rgba(221, 200, 164, 0.12);
}

.bookingAvailabilityCheckContent {
	overflow: visible;
}

.bookingAvailabilityCheckCard .datePicker {
	z-index: 44;
}

.availabilityCheckGrid {
	margin-bottom: 20px;
}

.availabilityFieldHidden {
	display: none;
}

.availabilityCheckerSource {
	display: none;
}

.bookingStatusPill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bookingStatusPending {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(247, 245, 239, 0.88);
}

.bookingStatusAvailable {
	background: rgba(67, 156, 113, 0.24);
	color: #d9f7e7;
	border: 1px solid rgba(91, 195, 141, 0.26);
}

.bookingStatusOccupied {
	background: rgba(190, 87, 76, 0.22);
	color: #ffe3de;
	border: 1px solid rgba(226, 118, 107, 0.26);
}

.bookingStatusInvalid {
	background: rgba(225, 171, 85, 0.2);
	color: #fff2d8;
	border: 1px solid rgba(225, 171, 85, 0.28);
}

.publicCalendarModal {
	position: fixed;
	inset: 0;
	z-index: 70;
	display: none;
	visibility: hidden;
	pointer-events: none;
	padding: 18px;
	box-sizing: border-box;
}

.publicCalendarModal.publicCalendarModalOpen {
	display: block;
	visibility: visible;
	pointer-events: auto;
}

.publicCalendarModalBackdrop {
	position: absolute;
	inset: 0;
	background: rgba(6, 12, 16, 0.58);
	backdrop-filter: blur(5px);
}

.publicCalendarModalDialog {
	position: relative;
	width: min(520px, calc(100vw - 36px));
	margin: min(10vh, 80px) auto 0;
	padding: 26px;
	border-radius: 24px;
	border: 1px solid rgba(229, 187, 118, 0.22);
	background: linear-gradient(180deg, rgba(9, 24, 31, 0.98), rgba(15, 36, 46, 0.98));
	box-shadow: 0 30px 72px rgba(0, 0, 0, 0.34);
	transform: translateY(16px);
	transition: transform 0.24s ease;
	overflow: hidden;
}

.publicCalendarModalOpen .publicCalendarModalDialog {
	transform: translateY(0);
}

.publicCalendarModalHeader {
	position: relative;
	padding-right: 84px;
	margin-bottom: 18px;
}

.publicCalendarModalEyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(221, 200, 164, 0.88);
	margin-bottom: 10px;
}

.publicCalendarModalClose {
	position: absolute;
	top: 0;
	right: 0;
}

.publicCalendarModalBody {
	display: grid;
	gap: 18px;
}

.publicCalendarStatusList {
	display: grid;
	gap: 12px;
}

.publicCalendarStatusRow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 16px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.publicCalendarStatusLabel {
	font-size: 15px;
	font-weight: 600;
	color: var(--lightestColor);
}

.publicCalendarModalHint {
	margin: 0;
}

.floatingInfoTooltip {
	position: fixed;
	z-index: 120;
	display: none;
	max-width: min(360px, calc(100vw - 24px));
	padding: 14px 16px;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(9, 24, 31, 0.98), rgba(15, 36, 46, 0.98));
	border: 1px solid rgba(229, 187, 118, 0.18);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
	color: var(--lightestColor);
	pointer-events: none;
	backdrop-filter: blur(10px);
}

.publicDayCard,
.calendarMarkerTooltip {
	display: grid;
	gap: 10px;
}

.publicDayCardEyebrow,
.calendarMarkerTooltipTitle {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(221, 200, 164, 0.88);
}

.publicDayCardTitle {
	font-family: var(--fontDisplay);
	font-size: 24px;
	line-height: 1;
	color: var(--lightestColor);
}

.publicDayCardRows {
	display: grid;
	gap: 8px;
}

.publicDayCardRow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
}

.publicDayCardLabel {
	font-size: 14px;
	font-weight: 600;
	color: rgba(247, 245, 239, 0.88);
}

.publicDayCardValue {
	font-size: 13px;
	font-weight: 700;
	padding: 6px 10px;
	border-radius: 999px;
}

.publicDayCardValueFree {
	background: rgba(67, 156, 113, 0.24);
	color: #d9f7e7;
	border: 1px solid rgba(91, 195, 141, 0.22);
}

.publicDayCardValueBusy {
	background: rgba(190, 87, 76, 0.22);
	color: #ffe3de;
	border: 1px solid rgba(226, 118, 107, 0.24);
}

.publicDayCardFootnote,
.calendarMarkerTooltipText {
	font-size: 13px;
	line-height: 1.55;
	color: rgba(247, 245, 239, 0.76);
}

body.publicCalendarModalActive {
	overflow: hidden;
}

.calendarPublic {
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.publicCalendarShell {
	display: grid;
	gap: 16px;
}

.publicCalendarNav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.publicCalendarNavLabel {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(247, 245, 239, 0.88);
	text-align: center;
	flex: 1 1 auto;
}

.publicCalendarNavButton {
	flex: 0 0 auto;
	width: 54px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 44px;
	line-height: 1;
	font-weight: 400;
	color: var(--lightestColor);
	background-image: none !important;
}

.publicCalendarNavButtonDisabled {
	opacity: 0.24;
	cursor: default;
	pointer-events: none;
}

.publicCalendarViewport {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	align-items: start;
	justify-items: center;
}

.publicCalendarMonthShell {
	min-width: 0;
	width: min(100%, 320px);
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

.calendarPublic table {
	transform: none;
	transform-origin: top left;
	max-width: 320px;
	margin: 0 auto;
}

.bookingSubmitWrap {
	display: grid;
	gap: 12px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.footerTrustIntro {
	color: rgba(247, 245, 239, 0.78);
	line-height: 1.6;
}

.bookingConsentField {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 14px 16px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bookingConsentCheckbox {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	accent-color: #dcc8a4;
	cursor: pointer;
}

.bookingConsentText {
	font-size: 13px;
	line-height: 1.6;
	color: rgba(247, 245, 239, 0.84);
}

.locationBulletList {
	margin: 0;
	padding-left: 20px;
	display: grid;
	gap: 12px;
	color: rgba(247, 245, 239, 0.9);
	line-height: 1.65;
}

.bookingConsentText a {
	color: var(--sandColor);
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.bookingSummarySubmitButton {
	width: 100%;
	justify-content: center;
}

.bookingSummaryHeader {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.bookingSummaryTitle,
.bookingPaymentTitle {
	margin-bottom: 0;
	font-size: clamp(28px, 3.3vw, 40px);
}

.bookingSummaryBadge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 10px;
	background: rgba(221, 200, 164, 0.18);
	color: var(--sandColor);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
}

.bookingSummaryStatus,
.bookingPriceHint,
.paymentMethodText,
.footerLegal,
.footerCopy {
	color: rgba(247, 245, 239, 0.78);
	line-height: 1.65;
}

.bookingSummaryGrid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
	margin-bottom: 18px;
}

.bookingSummaryItem {
	padding: 14px 16px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bookingCostList {
	display: grid;
	gap: 8px;
	margin-bottom: 14px;
}

.bookingCostRow {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bookingCostLabel,
.bookingCostValue {
	font-size: 14px;
	color: rgba(247, 245, 239, 0.84);
}

.bookingCostValue {
	font-weight: 700;
}

.bookingSummaryItemLabel,
.bookingPriceLabel,
.footerBlockTitle {
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: rgba(247, 245, 239, 0.58);
	margin-bottom: 8px;
}

.bookingSummaryItemValue {
	font-size: 18px;
	line-height: 1.3;
	color: var(--lightestColor);
	font-weight: 600;
}

.bookingPricePanel {
	padding: 18px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(221, 200, 164, 0.18), rgba(255, 255, 255, 0.04));
	margin-bottom: 18px;
}

.bookingPriceMeta {
	display: grid;
	gap: 10px;
}

.bookingPriceStatus {
	justify-self: start;
	min-height: 36px;
	padding: 8px 12px;
	font-size: 13px;
}

.bookingPriceValue {
	font-family: var(--fontFamily);
	font-size: clamp(30px, 4vw, 42px);
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--lightestColor);
	margin: 10px 0 8px;
}

.bookingPricePanelHidden {
	display: none;
}

.bookingPriceSubline {
	font-size: 14px;
	color: rgba(247, 245, 239, 0.76);
}

.bookingPriceActionWrap {
	margin-top: 10px;
	margin-bottom: 8px;
}

.bookingPriceActionHidden {
	display: none;
}

.bookingPriceFootnote {
	font-size: 12px;
	color: rgba(247, 245, 239, 0.64);
	line-height: 1.55;
}

.bookingTrustRow,
.paymentMethodGrid,
.footerShareRow,
.footerTrustRow,
.footerSealRow,
.footerContactRow {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.bookingTrustChip,
.footerTrustChip,
.footerSeal,
.footerLinkPill,
.footerShareButton {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 10px 14px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.07);
	color: var(--lightestColor);
	font-size: 13px;
	border: 0;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footerShareButton {
	gap: 10px;
	justify-content: flex-start;
}

.footerShareButtonIconOnly {
	width: 48px;
	min-width: 48px;
	height: 48px;
	padding: 0;
	border-radius: 14px;
	justify-content: center;
	background: rgba(255, 255, 255, 0.06);
}

.footerShareIcon {
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	flex: 0 0 18px;
}

.footerShareIconFacebook {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23dcc8a4' d='M13.5 21v-8h2.7l.5-3h-3.2V8.1c0-.9.3-1.6 1.7-1.6H17V3.8c-.3 0-1.3-.1-2.5-.1-2.5 0-4.2 1.5-4.2 4.4V10H7.5v3h2.8v8z'/%3E%3C/svg%3E");
}

.footerShareIconWhatsapp {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23dcc8a4' d='M20 11.9A8 8 0 0 0 6.4 6.4A7.9 7.9 0 0 0 4 12c0 1.4.4 2.8 1.1 4L4 20l4.1-1.1A8 8 0 1 0 20 11.9m-8 6.6c-1.2 0-2.3-.3-3.3-.9l-.2-.1-2.4.6.7-2.3-.1-.2c-.7-1-1-2.2-1-3.5A6.3 6.3 0 1 1 12 18.5m3.5-4.7c-.2-.1-1.1-.5-1.2-.6s-.3-.1-.4.1-.5.6-.6.7-.2.2-.4.1a5.3 5.3 0 0 1-1.6-1a6 6 0 0 1-1.1-1.4c-.1-.2 0-.3.1-.4l.3-.3l.2-.3c.1-.1.1-.3 0-.4l-.6-1.4c-.1-.2-.2-.2-.4-.2h-.3c-.1 0-.4.1-.5.3s-.7.7-.7 1.8.7 2.1.8 2.3s1.5 2.4 3.6 3.3c.5.2.9.4 1.2.5c.5.2 1 .2 1.4.1c.4-.1 1.1-.5 1.2-1s.1-.9 0-1z'/%3E%3C/svg%3E");
}

.footerShareIconMail {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23dcc8a4' d='M3 6.8C3 5.8 3.8 5 4.8 5h14.4C20.2 5 21 5.8 21 6.8v10.4c0 1-.8 1.8-1.8 1.8H4.8C3.8 19 3 18.2 3 17.2zm1.8.2v.3l7.2 4.8l7.2-4.8V7H4.8zm14.4 10.2V9.5l-6.8 4.5c-.3.2-.7.2-1 0L4.8 9.5v7.7z'/%3E%3C/svg%3E");
}

.footerShareIconX {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23dcc8a4' d='M18.9 3H22l-6.8 7.8L23 21h-6.1l-4.8-6.3L6.6 21H3.5l7.3-8.3L3 3h6.2l4.3 5.8zM17.8 19h1.7L8.2 4.9H6.4z'/%3E%3C/svg%3E");
}

.footerShareIconSignal {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23dcc8a4' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3E%3Cpath d='M8 5.2A7.9 7.9 0 0 1 12 4c4.4 0 8 3.6 8 8s-3.6 8-8 8c-.9 0-1.8-.1-2.7-.4L5 21l1.4-3.8A8 8 0 0 1 4 12c0-1.5.4-3 1.2-4.2'/%3E%3Cpath d='M7.1 7.1h0m9.8 0h0m-11.7 3h0m13.6 0h0m-13.6 3.8h0m13.6 0h0m-11.7 3.1h0m9.8 0h0'/%3E%3C/g%3E%3C/svg%3E");
}

.footerShareIconTelegram {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23dcc8a4' d='M21.3 4.4L18 19.7c-.2 1.1-.9 1.4-1.8.9l-4.2-3.1l-2 1.9c-.2.2-.4.4-.8.4l.3-4.4l8-7.2c.3-.3-.1-.5-.5-.2l-9.9 6.2l-4.3-1.3c-.9-.3-.9-.9.2-1.3l16.8-6.5c.8-.3 1.5.2 1.2 1.3'/%3E%3C/svg%3E");
}

.paymentMethodGrid {
	margin-top: 18px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.paymentMethodCard {
	padding: 16px 18px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.paymentMethodTitle,
.footerBrandTitle {
	font-family: var(--fontDisplay);
	font-size: clamp(24px, 3vw, 34px);
	line-height: 0.98;
	color: var(--lightestColor);
	margin-bottom: 8px;
}

.sectionHintBox {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	padding: 10px 14px;
	border-radius: 10px;
	background: rgba(221, 200, 164, 0.92);
	color: #10262f;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 700;
	margin-bottom: 16px;
}

.fitContent {
	width: fit-content;
}

.titleImg {
	height: clamp(280px, 42vw, 420px);
	width: min(100%, 1180px);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 34%;
	border-radius: 18px;
	margin: 0;
	overflow: hidden;
	box-shadow: var(--shadowSoft);
}

.mapSection {
	padding: 18px clamp(16px, 4vw, 64px) 0;
}

.mapouter {
	position: relative;
	text-align: right;
	height: 550px;
	width: 100%;
	border-radius: 28px;
	overflow: hidden;
	border: 1px solid var(--borderColor);
	box-shadow: var(--shadowSoft);
}

.gmap_canvas {
	overflow: hidden;
	background: none !important;
	height: 550px;
	width: 100%;
}

.locationMapWrap {
	margin-top: 18px;
}

.locationMapWrap .mapouter {
	height: 420px;
	border-radius: 14px;
	border: 0;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.locationMapWrap .gmap_canvas {
	height: 420px;
}

.footer {
	padding: 28px clamp(16px, 4vw, 64px) 60px;
	font-size: clamp(14px, 1.2vw, 17px);
}

.footerInner {
	max-width: 1240px;
	margin: 0 auto;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1.1fr);
	align-items: start;
	padding: 26px 24px;
	gap: 18px;
	border-radius: 24px;
	background: rgba(13, 22, 28, 0.74);
	border: 1px solid var(--borderColor);
	box-shadow: var(--shadowSoft);
	backdrop-filter: blur(12px);
}

.footerBrandBlock,
.footerInfoBlock {
	display: grid;
	gap: 14px;
	padding: 18px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	justify-items: center;
	text-align: center;
}

.footerContactRow {
	display: grid;
	gap: 10px;
	justify-items: center;
}

.footerInfoBlock .footerLinkPill {
	justify-content: center;
	width: 100%;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.06);
}

.footerContactCard {
	gap: 12px;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(255, 245, 228, 0.08), rgba(212, 223, 222, 0.04));
}

.footerContactIcon {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.footerContactIconMail {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e5bb76' d='M3 6.8C3 5.8 3.8 5 4.8 5h14.4C20.2 5 21 5.8 21 6.8v10.4c0 1-.8 1.8-1.8 1.8H4.8C3.8 19 3 18.2 3 17.2zm1.8.2v.3l7.2 4.8l7.2-4.8V7H4.8zm14.4 10.2V9.5l-6.8 4.5c-.3.2-.7.2-1 0L4.8 9.5v7.7z'/%3E%3C/svg%3E");
}

.footerContactIconPhone {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e5bb76' d='M6.6 3h3.1c.4 0 .8.3.9.7l.7 3.1c.1.4-.1.8-.4 1L9.1 9.2a14.2 14.2 0 0 0 5.7 5.7l1.4-1.8c.2-.3.6-.5 1-.4l3.1.7c.4.1.7.5.7.9v3.1c0 .5-.4 1-.9 1C10 20 4 14 4 3.9c0-.5.5-.9 1-.9'/%3E%3C/svg%3E");
}

.footerContactMeta {
	display: grid;
	gap: 2px;
	min-width: 0;
	justify-items: start;
}

.footerContactLabel {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(247, 245, 239, 0.56);
	font-weight: 700;
}

.footerContactValue {
	font-size: 14px;
	line-height: 1.35;
	color: var(--lightestColor);
	font-weight: 600;
	word-break: break-word;
	text-align: left;
}

.footerTrustChecklist {
	display: grid;
	gap: 10px;
	margin-top: 4px;
	margin-bottom: 0;
	justify-items: center;
	width: 100%;
}

.footerTrustPoint {
	position: relative;
	padding-top: 18px;
	padding-right: 16px;
	padding-bottom: 14px;
	padding-left: 16px;
	padding-left: 0;
	color: rgba(247, 245, 239, 0.86);
	line-height: 1.55;
	text-align: center;
	max-width: 30ch;
	width: 100%;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(255, 245, 228, 0.08), rgba(212, 223, 222, 0.04));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footerTrustPoint::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--sandColor), rgba(212, 223, 222, 0.9));
	box-shadow: 0 0 0 4px rgba(229, 187, 118, 0.12);
	transform: translateX(-50%);
}

.footerLegal {
	grid-column: 1 / -1;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.footerLogoBelow {
	display: flex;
	justify-content: center;
	padding-top: 18px;
}

.footerLogoBelow a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0.88;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.footerLogoBelow a:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.footerLogoBelow img {
	display: block;
	filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.25));
}

@media (max-width: 960px) {
	.siteHeader {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		padding: 24px 20px;
		gap: 12px;
	}

	.headerMain {
		justify-items: center;
	}

	.headerOrnamentHouse,
	.headerOrnamentShell {
		justify-self: center;
		height: 72px;
	}

	.storyGrid,
	.footerInner {
		grid-template-columns: 1fr;
	}

	.homeHeroGrid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.homeHeroCopy {
		gap: 12px;
	}

	.homeHeroLead,
	.homeHeroText {
		max-width: none;
	}

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

	.bookingLayout {
		grid-template-columns: 1fr;
	}

	.bookingAvailabilityLayout {
		grid-template-columns: 1fr;
	}

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

	.amenityGrid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 720px) {
	.siteHeaderWrap {
		padding: 8px 8px 6px;
	}

	.siteHeader {
		padding: 16px 14px;
		border-radius: 18px;
		gap: 12px;
	}

	.publicCalendarViewport,
	.publicCalendarViewportMobile {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.calendarPublic table {
		max-width: 320px;
	}

	.publicCalendarNav {
		gap: 8px;
	}

	.publicCalendarNavLabel {
		font-size: 14px;
	}

	.publicCalendarNavButton {
		width: 60px;
		height: 60px;
		font-size: 48px;
	}

	.headerMetaRow,
	.headerActions,
	.footerShareRow,
	.footerTrustRow,
	.footerSealRow,
	.footerContactRow,
	.bookingTrustRow {
		justify-content: center;
	}

	.headerMetaRow {
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
		gap: 7px;
	}

	.headerMetaPill {
		min-width: 0;
		flex: 0 1 auto;
		min-height: 34px;
		padding: 8px 12px;
		font-size: 12px;
	}

	.headerActions {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
		gap: 8px;
	}

	.headerContactLink,
	.headerBookingLink {
		min-width: 0;
		flex: 1 1 130px;
		min-height: 42px;
		padding: 10px 12px;
		font-size: 12px;
	}

	.headerTitle {
		font-size: clamp(22px, 7vw, 31px);
		letter-spacing: 0.02em;
		line-height: 0.9;
		padding: 4px 8px 6px;
	}

	.headerTitle::before {
		width: min(100%, 320px);
		height: calc(100% + 8px);
		filter: blur(10px);
	}

	.headerWordmarkBase,
	.headerWordmarkTld {
		font-size: clamp(18px, 4.9vw, 24px);
	}

	.headerWordmarkAccent {
		font-size: clamp(32px, 9vw, 46px);
		margin: 0 0.025em;
		transform: translateY(1px) scale(1.04);
	}

	.headerSubtitle {
		font-size: 10px;
		line-height: 1.25;
		max-width: 20ch;
	}

	.headerOrnamentShell {
		display: none;
	}

	.headerOrnamentHouse {
		display: none;
	}

	.box,
	.mapSection,
	.footer {
		padding-left: 12px;
		padding-right: 12px;
	}

	.h1 {
		line-height: 1;
	}

	.accordionToggle {
		padding: 14px 16px;
	}

	.accordionTitle {
		font-size: 21px;
	}

	.accordionIndicator {
		width: 30px;
		height: 30px;
		font-size: 18px;
	}

	.contentCard,
	.heroIntro {
		padding: 20px 16px;
		border-radius: 12px;
	}

	.bookingSectionCard {
		padding: 18px 12px;
	}

	.heroIntroStatic {
		padding: 24px 16px;
	}

	.homeHeroEyebrow {
		justify-self: flex-start;
	}

	.homeHeroTitle {
		font-size: clamp(30px, 8vw, 40px);
	}

	.homeHeroLead,
	.homeHeroText {
		font-size: 15px;
		line-height: 1.68;
	}

	.introHighlightGrid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.introHighlightCard {
		padding: 12px 12px;
		border-radius: 12px;
	}

	.introHighlightValue {
		font-size: 24px;
	}

	.introHighlightLabel {
		font-size: 11px;
	}

	.houseTitleImage {
		height: 230px;
		border-radius: 12px;
		margin-bottom: 20px;
	}

	.factChipRow,
	.amenityGrid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.amenitySectionTitle,
	.unitSectionBlockStory .sectionTitle,
	.unitSectionBlockNotes .sectionTitle {
		font-size: 24px;
		margin-bottom: 10px;
	}

	.unitSectionBlock + .unitSectionBlock {
		padding-top: 18px;
	}

	.bookingSummaryGrid {
		grid-template-columns: 1fr;
	}

	.factChip {
		min-height: 48px;
		font-size: 14px;
	}

	.amenityItem {
		grid-template-columns: 56px minmax(0, 1fr);
		min-height: 90px;
		gap: 16px;
		padding: 14px 0;
	}

	.amenityIcon {
		width: 56px;
		height: 56px;
		flex-basis: 56px;
		border-radius: 14px;
		background-size: 30px 30px;
	}

	.amenityText,
	.noteList {
		font-size: 15px;
	}

	.unitStoryGrid {
		gap: 10px;
		margin-top: 10px;
	}

	.storyBlockCard {
		padding: 6px 0 8px;
	}

	.storyBlockCard + .storyBlockCard {
		padding-top: 12px;
	}

	.sectionTextTight {
		margin-bottom: 14px;
	}

	.unitGalleryShell {
		padding-top: 10px;
		border-radius: 12px;
	}

	.unitBadgeRow,
	.galleryRailHeader,
	.galleryStatusRow,
	.gallerySlideBottom {
		align-items: flex-start;
	}

	.unitEyebrow,
	.storyBlockAccent,
	.galleryModeBadge,
	.galleryHint,
	.gallerySlideIndex,
	.gallerySlideLabel {
		min-height: 30px;
		padding: 6px 10px;
		font-size: 11px;
		letter-spacing: 0.1em;
	}

	.galleryRail {
		grid-auto-columns: minmax(88%, 1fr);
		gap: 10px;
	}

	.gallerySlideCard,
	.gallerySlideShade {
		min-height: 260px;
	}

	.gallerySlideShade {
		padding: 12px;
	}

	.gallerySlideTitle {
		font-size: 26px;
		max-width: 9ch;
	}

	.gallerySlideAction {
		font-size: 12px;
		padding: 9px 12px;
	}

	.storyBlockCard {
		padding: 4px 0;
	}

	.unitCardImage,
	.sliderImg,
	.sliderImgFS {
		height: 220px;
	}

	.mapouter,
	.gmap_canvas {
		height: 360px;
	}

	.bookingFormShell,
	.bookingSummaryCard,
	.bookingPaymentCard {
		padding: 18px 16px;
		border-radius: 12px;
	}

	.bookingFormShell {
		padding: 14px 12px;
	}

	.footerInner {
		gap: 14px;
		padding: 18px 16px;
	}

	.footerBrandBlock,
	.footerInfoBlock {
		padding: 14px;
	}
}

@media (max-width: 420px) {
	.headerOrnamentHouse {
		display: none;
	}

	.siteHeader {
		padding: 14px 12px;
	}

	.headerActions {
		max-width: 100%;
	}

	.headerContactLink,
	.headerBookingLink {
		flex-basis: 100%;
	}

	.headerTitle {
		font-size: 21px;
	}

	.headerSubtitle {
		font-size: 11px;
		max-width: none;
	}

	.accordionSection {
		border-radius: 14px;
	}

	.galleryRail {
		grid-auto-columns: minmax(92%, 1fr);
	}

	.gallerySlideCard,
	.gallerySlideShade {
		min-height: 232px;
	}

	.houseTitleImage {
		height: 210px;
		background-position: center 32%;
	}

	.bookingSectionCard {
		padding: 14px 8px;
	}

	.bookingFormShell {
		padding: 12px 10px;
	}
}