:root {
	--bg: #050e14;
	--bg-2: #0b1a24;
	--panel: rgba(11, 26, 36, 0.62);
	--panel-strong: rgba(16, 39, 54, 0.80);
	--panel-accent: linear-gradient(180deg, rgba(245, 184, 92, 0.12), rgba(11, 26, 36, 0.25));
	--text: #f5f2eb;
	--muted: #b8c5d6;
	--accent: #f5b85c;
	--accent-2: #54c6b5;
	--line: rgba(84, 198, 181, 0.16);
	--line-hover: rgba(84, 198, 181, 0.32);
	--shadow: 0 20px 40px rgba(2, 6, 9, 0.45);
	--shadow-hover: 0 22px 45px rgba(2, 6, 9, 0.55);
	--radius-lg: 1.6rem;
	--radius-md: 1.15rem;

	/* Semantic z-index scale */
	--z-base: 0;
	--z-surface: 10;
	--z-overlay: 50;
	--z-modal: 200;
}

:root[data-theme="light"] {
	--bg: #f5efe4;
	--bg-2: #ebe3d3;
	--panel: rgba(255, 255, 255, 0.86);
	--panel-strong: rgba(255, 255, 255, 0.96);
	--panel-accent: linear-gradient(180deg, rgba(201, 103, 2, 0.08), rgba(255, 255, 255, 0.45));
	--text: #1c1511;
	--muted: #4f423a;
	--accent: #c96702;
	--accent-2: #097791;
	--line: rgba(28, 21, 17, 0.12);
	--line-hover: rgba(28, 21, 17, 0.24);
	--shadow: 0 20px 45px rgba(28, 21, 17, 0.07);
	--shadow-hover: 0 22px 45px rgba(28, 21, 17, 0.12);
}

[data-theme="light"] .stat,
[data-theme="light"] .hero-card,
[data-theme="light"] .booking-form,
[data-theme="light"] .booking-aside,
[data-theme="light"] .card,
[data-theme="light"] .rate-card,
[data-theme="light"] .food-feature,
[data-theme="light"] .mini-card,
[data-theme="light"] .contact-card,
[data-theme="light"] .highlight-card {
	border: 1px solid var(--line);
	background: var(--panel);
	backdrop-filter: blur(10px) saturate(1.2);
	box-shadow: var(--shadow);
}


* {
	box-sizing: border-box;
}

img,
picture,
video,
canvas,
svg {
	max-width: 100%;
	height: auto;
}

html {
	scroll-behavior: smooth;
	background-color: var(--bg);
}

html,
body,
.page,
.section-shell,
.card,
.nav,
.theme-toggle,
input,
button,
header,
footer,
.stat,
.hero-card,
.booking-form,
.booking-aside,
.rate-card,
.food-feature,
.mini-card,
.contact-card,
.highlight-card,
.search-result-card,
.search-inline-banner {
	transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	font-weight: 500;
	color: var(--text);
	background-color: transparent;
	overflow-x: hidden;
}

.scroll-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 0;
	background-color: var(--bg);
	background-image:
		linear-gradient(180deg, rgba(5, 14, 19, 0.24), rgba(5, 14, 19, 0.74)),
		url("../images/assets/mainbg.webp");
	background-image:
		linear-gradient(180deg, rgba(5, 14, 19, 0.24), rgba(5, 14, 19, 0.74)),
		-webkit-image-set(url("../images/assets/mainbg.webp") 1x,
			url("../images/assets/mainbg.jpg") 1x);
	background-image:
		linear-gradient(180deg, rgba(5, 14, 19, 0.24), rgba(5, 14, 19, 0.74)),
		image-set(url("../images/assets/mainbg.webp") 1x,
			url("../images/assets/mainbg.jpg") 1x);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	will-change: transform;
	transform: translate3d(0, 0, 0);
	pointer-events: none;
}

.scroll-bg::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 8rem;
	background: linear-gradient(180deg, transparent, rgba(5, 14, 19, 0.52));
}

[data-theme="light"] .scroll-bg {
	background-image:
		linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(26, 20, 16, 0.18)),
		url("../images/assets/mainbglight.webp");
	background-image:
		linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(26, 20, 16, 0.18)),
		-webkit-image-set(url("../images/assets/mainbglight.webp") 1x);
	background-image:
		linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(26, 20, 16, 0.18)),
		image-set(url("../images/assets/mainbglight.webp") 1x);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

[data-theme="light"] .scroll-bg::after {
	background: linear-gradient(180deg, transparent, rgba(26, 20, 16, 0.18));
}

.page {
	position: relative;
	z-index: 1;
	backdrop-filter: blur(2px);
	background: transparent;
	transition: background-color 0.3s ease;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	flex-grow: 1;
}


.topbar,
.section-shell,
.footer {
	width: min(1200px, calc(100% - 2rem));
	margin-inline: auto;
}

.topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 0 0;
	margin-bottom: 0.95rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none;
	color: var(--text);
	transition: transform 0.25s ease, opacity 0.25s ease;
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform;
}

.brand:hover {
	transform: translateY(-1px);
}

.brand-logo {
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 999px;
	object-fit: cover;
	object-position: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 24px rgba(0, 0, 0, 0.2);
}

.brand-text {
	display: grid;
	gap: 0.1rem;
}

.brand-text strong {
	font-family: "Playfair Display", "Cormorant Garamond", serif;
	font-size: 1.55rem;
	line-height: 1;
}

.brand-text span {
	font-size: 0.82rem;
	color: var(--muted);
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.nav {
	font-family: "Satoshi", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(7, 22, 29, 0.35);
	backdrop-filter: blur(8px);
	box-shadow: var(--shadow);
	contain: layout style paint;
	transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
}

.nav-drawer-footer {
	display: none;
}

.nav-search {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(7, 22, 29, 0.25);
	color: var(--text);
	position: relative;
}

.nav-search input {
	border: 0;
	background: transparent;
	color: inherit;
	font-size: 0.85rem;
	width: 8rem;
	outline: none;
}

.nav-search input::placeholder {
	color: var(--muted);
}

.nav-search button {
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font-size: 0.95rem;
	padding: 0;
}

.search-results-shell .section-heading p {
	color: var(--muted);
}

.search-results-list {
	display: grid;
	gap: 0.9rem;
}

.search-result-card {
	display: grid;
	gap: 0.35rem;
	padding: 1rem 1.1rem;
	border-radius: 1rem;
	text-decoration: none;
	color: var(--text);
	background: var(--panel);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-result-card:hover,
.search-result-card.is-active {
	transform: translateY(-2px);
	border-color: var(--accent);
	box-shadow: var(--shadow-hover);
}

.search-result-title {
	font-weight: 700;
	font-size: 1.1rem;
}

.search-result-snippet {
	color: var(--muted);
	line-height: 1.6;
}

.search-inline-banner {
	position: fixed;
	left: 50%;
	top: 1.05rem;
	transform: translateX(-50%);
	width: min(640px, calc(100% - 2rem));
	border: 1px solid var(--line);
	background: var(--panel-strong);
	box-shadow: var(--shadow);
	backdrop-filter: blur(10px);
	border-radius: 1rem;
	padding: 0.85rem 1rem;
	margin-bottom: 0;
	z-index: var(--z-overlay);
}

.search-inline-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
	color: var(--text);
	font-size: 0.95rem;
}

.search-inline-content strong {
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.78rem;
}

.search-inline-content span {
	color: var(--muted);
}

.search-inline-clear {
	margin-left: auto;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--panel);
	color: var(--text);
	padding: 0.35rem 0.85rem;
	font: inherit;
	font-size: 0.9rem;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.search-inline-clear:hover {
	background: var(--panel-strong);
	border-color: var(--line-hover);
}

@media (max-width: 640px) {
	.search-inline-banner {
		top: 0.85rem;
		padding: 0.7rem 0.85rem;
	}

	.search-inline-content {
		gap: 0.45rem;
		font-size: 0.88rem;
	}

	.search-inline-clear {
		padding: 0.3rem 0.7rem;
		font-size: 0.85rem;
	}
}

.search-empty {
	text-align: center;
	color: var(--muted);
	padding: 1rem;
}

.nav-search-controls {
	display: none;
	align-items: center;
	gap: 0.25rem;
	margin-left: 0.25rem;
}

.nav-search.has-results .nav-search-controls {
	display: inline-flex;
}

.search-nav-btn {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--panel);
	color: var(--text);
	font-size: 1rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.search-nav-btn:hover:not(:disabled) {
	background: var(--panel-strong);
	border-color: var(--line-hover);
}

.search-nav-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.search-count {
	font-size: 0.7rem;
	letter-spacing: 0.02em;
	color: var(--muted);
	min-width: 2.3rem;
	text-align: center;
}

.search-results {
	position: absolute;
	top: calc(100% + 0.4rem);
	right: 0;
	width: min(320px, 85vw);
	background: var(--panel-strong);
	border: 1px solid var(--line);
	border-radius: 0.85rem;
	box-shadow: var(--shadow);
	padding: 0.6rem;
	display: grid;
	gap: 0.4rem;
	z-index: var(--z-overlay);
	backdrop-filter: blur(12px);
}

.search-results-title {
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	padding: 0.1rem 0.35rem;
}

.search-result-item {
	display: grid;
	gap: 0.15rem;
	padding: 0.45rem 0.55rem;
	border-radius: 0.7rem;
	text-decoration: none;
	color: var(--text);
	background: var(--panel);
	border: 1px solid var(--line);
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.search-result-item:hover {
	border-color: var(--line-hover);
	background: var(--panel-strong);
}

.search-result-name {
	font-weight: 700;
	font-size: 0.85rem;
}

.search-result-meta {
	font-size: 0.72rem;
	color: var(--muted);
}

mark.search-hit {
	background: rgba(245, 184, 92, 0.3);
	color: var(--text);
	padding: 0.05em 0.15em;
	border-radius: 0.25rem;
	transition: background-color 0.2s ease;
}

mark.search-hit.is-active {
	background: rgba(84, 198, 181, 0.3);
}

[data-theme="light"] mark.search-hit {
	background: rgba(201, 103, 2, 0.2);
}

[data-theme="light"] mark.search-hit.is-active {
	background: rgba(9, 119, 145, 0.2);
}

.nav-search--compact {
	gap: 0.2rem;
}

.nav-search--compact input {
	width: 0;
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
	transition: width 0.2s ease, opacity 0.2s ease;
}

.nav-search--compact.is-open input {
	width: 6.25rem;
	opacity: 1;
	pointer-events: auto;
}

.nav-search--compact button {
	width: 1.8rem;
	height: 1.8rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .nav-search--compact button {
	background: rgba(6, 20, 27, 0.08);
}

.nav-links .nav-search--drawer {
	display: none;
}

@media (max-width: 760px) {
	.nav-search--drawer .search-results {
		right: auto;
		left: 0;
		width: 100%;
	}
}

[data-theme="light"] .nav-search {
	background: rgba(255, 255, 255, 0.8);
	border-color: rgba(6, 20, 27, 0.18);
	color: rgba(26, 20, 16, 0.9);
}

.nav-hamburger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(7, 22, 29, 0.2);
	color: var(--text);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
	padding: 0;
}

.nav-hamburger:hover {
	background: rgba(234, 180, 110, 0.1);
	color: var(--accent);
	transform: scale(1.05);
}

.nav-hamburger:active {
	transform: scale(0.95);
}

.nav-hamburger-icon {
	position: relative;
	width: 1.1rem;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	display: block;
}

.nav-hamburger-icon::before,
.nav-hamburger-icon::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.nav-hamburger-icon::before {
	top: -6px;
}

.nav-hamburger-icon::after {
	top: 6px;
}

[data-theme="light"] .nav {
	background: rgba(255, 255, 255, 0.66);
	backdrop-filter: blur(10px) saturate(1.2);
}

[data-theme="light"] .theme-toggle {
	background: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .nav-hamburger {
	background: rgba(255, 255, 255, 0.6);
}

.nav a {
	font-family: inherit;
	color: var(--text);
	text-decoration: none;
	font-size: 0.86rem;
	font-weight: 500;
	opacity: 0.95;
	transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.nav a:hover {
	color: var(--accent);
	transform: translateY(-1px);
}

.theme-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(7, 22, 29, 0.2);
	color: var(--text);
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
	padding: 0;
	font-family: "Satoshi", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.theme-toggle:hover {
	background: rgba(234, 180, 110, 0.1);
	color: var(--accent);
	transform: scale(1.05);
}

.theme-toggle:active {
	transform: scale(0.95);
}

main {
	display: grid;
	gap: 1.5rem;
	padding-bottom: 2rem;
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

.section-shell {
	padding: clamp(2.5rem, 5vw, 4rem);
	border: 1px solid var(--line);
	border-radius: 2rem;
	background: linear-gradient(180deg, rgba(7, 22, 29, 0.46), rgba(7, 22, 29, 0.7));
	box-shadow: var(--shadow);
	backdrop-filter: blur(8px);
	contain: layout style paint;
	content-visibility: auto;
	contain-intrinsic-size: 1000px;
	transition: background 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .section-shell {
	background: rgba(255, 255, 255, 0.68);
	backdrop-filter: blur(12px) saturate(1.2);
}

[data-theme="light"] .home-page .hero.section-shell {
	border-top-color: rgba(26, 20, 16, 0.08);
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	align-items: center;
	gap: 1.3rem;
	min-height: calc(100vh - 7rem);
	padding-top: clamp(1.5rem, 3vw, 2.5rem);
	padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
	background: linear-gradient(180deg, rgba(7, 22, 29, 0.36), rgba(7, 22, 29, 0.7));
}

[data-theme="light"] .hero {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(26, 20, 16, 0.18));
}

[data-theme="light"] .experience-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.58));
	border-color: rgba(6, 20, 27, 0.16);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .experience-head p {
	color: rgba(26, 20, 16, 0.78);
}

[data-theme="light"] .experience-pill-group {
	border-color: rgba(6, 20, 27, 0.12);
	background: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .experience-pill-title {
	color: rgba(26, 20, 16, 0.75);
}

[data-theme="light"] .experience-pill {
	border-color: rgba(6, 20, 27, 0.14);
	background: rgba(255, 255, 255, 0.62);
}

[data-theme="light"] .pill-icon {
	background: rgba(8, 145, 178, 0.12);
	border-color: rgba(8, 145, 178, 0.22);
}

.hero-copy {
	max-width: 42rem;
	animation: rise 0.85s ease both;
}

.eyebrow,
.section-kicker,
.card-tag,
.food-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.48rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.07);
	color: var(--muted);
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
}

a.card-tag {
	text-decoration: none;
}

[data-theme="light"] .eyebrow,
[data-theme="light"] .section-kicker,
[data-theme="light"] .card-tag,
[data-theme="light"] .food-badge {
	border: 1px solid rgba(6, 20, 27, 0.14);
	background: rgba(255, 255, 255, 0.72);
}

.eyebrow::before,
.section-kicker::before,
.card-tag::before,
.food-badge::before {
	content: "";
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	background: var(--accent-2);
	box-shadow: 0 0 0 0.35rem rgba(143, 208, 197, 0.14);
}

h1,
.section-heading h2,
.mini-header h2,
.card h3,
.rate-top h3,
.food-feature h3,
.contact-card h3,
.highlight-card strong {
	font-family: "Playfair Display", "Cormorant Garamond", serif;
	letter-spacing: -0.02em;
}

h1 {
	margin: 0.7rem 0 0.75rem;
	font-size: clamp(3.3rem, 7vw, 6.8rem);
	line-height: 0.94;
	text-wrap: balance;
}

.lead {
	margin: 0;
	max-width: 35rem;
	font-size: clamp(1.03rem, 1.5vw, 1.15rem);
	line-height: 1.76;
	color: var(--muted);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 1.2rem;
}

.btn {
	font-family: "Satoshi", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 3.25rem;
	padding: 0.85rem 1.35rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	border: 1px solid transparent;
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform;
	contain: layout style paint;
}

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

.btn-primary {
	color: #0d1c22;
	background: linear-gradient(135deg, var(--accent), #f6d39c);
	box-shadow: 0 16px 40px rgba(234, 180, 110, 0.);
}

.btn-secondary {
	color: var(--text);
	border-color: var(--line);
	background: rgba(7, 22, 29, 0.32);
	backdrop-filter: blur(6px);
}

[data-theme="light"] .btn-secondary {
	background: rgba(255, 255, 255, 0.7);
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 1.4rem;
}

.stat,
.hero-card,
.booking-form,
.booking-aside,
.card,
.rate-card,
.food-feature,
.mini-card,
.contact-card,
.highlight-card {
	border: 1px solid var(--line);
	background: var(--panel);
	backdrop-filter: blur(10px) saturate(1.2);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;

	contain: layout style paint;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.stat:hover,
.hero-card:hover,
.booking-form:hover,
.booking-aside:hover,
.card:hover,
.rate-card:hover,
.food-feature:hover,
.mini-card:hover,
.contact-card:hover,
.highlight-card:hover,
.info-tile:hover,
.feature:hover,
.timeline-item:hover,
.experience-card:hover,
.rental-card:hover,
.discount-card:hover {
	transform: translateY(-3px);
	border-color: var(--line-hover);
	box-shadow: var(--shadow-hover);
}

.stat {
	padding: 1rem 1rem 1.1rem;
	border-radius: 1.2rem;
}

.stat strong,
.info-tile strong,
.rate-top strong,
.mini-card strong,
.contact-lines span,
.highlight-card strong {
	display: block;
}

.stat strong {
	font-size: 1.3rem;
	margin-bottom: 0.3rem;
}

.stat span,
.hero-card p,
.section-heading p,
.card p,
.rate-card p,
.food-feature p,
.mini-card span,
.contact-card p,
.highlight-card p,
.info-tile span {
	color: var(--muted);
	line-height: 1.7;
}

.hero-panel {
	align-self: stretch;
	display: flex;
	justify-content: flex-end;
	animation: floatIn 0.95s ease 0.15s both;
}

.hero-card {
	width: min(100%, 27rem);
	padding: 1rem;
	border-radius: var(--radius-lg);
	display: grid;
	gap: 0.7rem;
	background: linear-gradient(180deg, rgba(8, 24, 31, 0.46), rgba(8, 24, 31, 0.68));
}

.experience-card {
	width: min(100%, 31rem);
	padding: 1.15rem;
	border-radius: 1.4rem;
	display: grid;
	gap: 0.95rem;
	background: linear-gradient(180deg, rgba(5, 13, 18, 0.62), rgba(10, 20, 27, 0.78));
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(8px);
	box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
	color: var(--text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	position: relative;
	overflow: hidden;
	contain: layout style paint;
	will-change: transform;
}

.experience-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(143, 208, 197, 0.14), transparent 40%), radial-gradient(circle at bottom left, rgba(234, 180, 110, 0.1), transparent 35%);
	pointer-events: none;
}

.experience-card>* {
	position: relative;
	z-index: 1;
}

.experience-head {
	display: grid;
	gap: 0.5rem;
}

.experience-head h2 {
	margin: 0;
	font-family: "Playfair Display", "Cormorant Garamond", serif;
	font-size: 2.05rem;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--text);
}

.experience-head p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--muted);
}

.experience-pillar-grid {
	display: grid;
	gap: 0.8rem;
}

.experience-pill-group {
	display: grid;
	gap: 0.5rem;
	padding: 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.045);
}

.experience-pill-title {
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.experience-pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.experience-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 0.8rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	background: rgba(255, 255, 255, 0.05);
	font: inherit;
	color: var(--text);
	font-size: 0.86rem;
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.experience-pill:hover {
	transform: translateY(-1px);
	border-color: rgba(234, 180, 110, 0.35);
	background: rgba(255, 255, 255, 0.08);
}

/* Distinct styling for clickable experience buttons */
button.experience-pill {
	border-color: rgba(234, 180, 110, 0.25) !important;
	background: rgba(234, 180, 110, 0.04) !important;
}

button.experience-pill:hover {
	border-color: rgba(234, 180, 110, 0.45) !important;
	background: rgba(234, 180, 110, 0.08) !important;
}

[data-theme="light"] button.experience-pill {
	border-color: rgba(201, 103, 2, 0.18) !important;
	background: rgba(201, 103, 2, 0.04) !important;
}

[data-theme="light"] button.experience-pill:hover {
	border-color: rgba(201, 103, 2, 0.35) !important;
	background: rgba(201, 103, 2, 0.08) !important;
}

/* Click hint and Click me sticker styling */
.click-hint {
	display: block;
	font-size: 0.65rem;
	color: var(--muted);
	margin-top: 0.5rem;
}

/* Playful hand-drawn silly sticker */
.silly-sticker {
	position: absolute;
	font-family: 'Caveat', 'Comic Sans MS', cursive, sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
	background: #ffd43b;
	/* Playful banana yellow */
	color: #0b1a24;
	/* Dark contrasting text */
	padding: 0.25rem 0.5rem;
	border-radius: 8px;
	border: 2px dashed #f08c00;
	/* dashed dark orange */
	box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.18);
	pointer-events: none;
	/* Make sure it doesn't block clicking underneath */
	z-index: 10;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	line-height: 1.1;
}

.silly-sticker--bonfire {
	top: -1.45rem;
	right: -3.8rem;
	transform: rotate(-8deg);
	animation: silly-sticker-bounce 2s infinite ease-in-out;
}

.silly-sticker--restrooms {
	top: -1.2rem;
	left: 50%;
	transform: translate(-50%, 0) rotate(8deg);
	animation: silly-sticker-bounce-alt 2.2s infinite ease-in-out;
}

@keyframes silly-sticker-bounce {

	0%,
	100% {
		transform: rotate(-8deg) translateY(0);
	}

	50% {
		transform: rotate(-8deg) translateY(-5px);
	}
}

@keyframes silly-sticker-bounce-alt {

	0%,
	100% {
		transform: translate(-50%, 0) rotate(8deg) translateY(0);
	}

	50% {
		transform: translate(-50%, 0) rotate(8deg) translateY(-5px);
	}
}

@media (max-width: 600px) {
	.silly-sticker {
		font-size: 0.76rem;
		padding: 0.15rem 0.35rem;
	}

	.silly-sticker--bonfire {
		right: -3.2rem;
		top: -1.2rem;
	}
}

.pill-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.35rem;
	height: 1.35rem;
	font-size: 0.9rem;
	border-radius: 999px;
	background: rgba(143, 208, 197, 0.14);
	border: 1px solid rgba(143, 208, 197, 0.24);
	flex: 0 0 auto;
}

.soon-ribbon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.72rem 0.95rem;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(234, 180, 110, 0.18), rgba(143, 208, 197, 0.1));
	border: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--text);
}

.amenity-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.55rem;
}

.amenity-item {
	display: grid;
	justify-items: center;
	gap: 0.45rem;
	padding: 0.8rem 0.45rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text);
	line-height: 1.3;
}

.amenity-item--clickable {
	border-color: rgba(234, 180, 110, 0.25) !important;
	background: rgba(234, 180, 110, 0.04) !important;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.amenity-item--clickable:hover {
	transform: translateY(-1px);
	border-color: rgba(234, 180, 110, 0.45) !important;
	background: rgba(234, 180, 110, 0.08) !important;
}

[data-theme="light"] .amenity-item--clickable {
	border-color: rgba(201, 103, 2, 0.18) !important;
	background: rgba(201, 103, 2, 0.04) !important;
}

[data-theme="light"] .amenity-item--clickable:hover {
	border-color: rgba(201, 103, 2, 0.35) !important;
	background: rgba(201, 103, 2, 0.08) !important;
}

.amenity-preview-btn {
	display: grid;
	justify-items: center;
	gap: 0.45rem;
	padding: 0;
	border: none;
	border-radius: 1rem;
	background: none;
	text-align: center;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	line-height: inherit;
	cursor: pointer;
	width: 100%;
}

.amenity-preview-btn:hover {
	opacity: 0.8;
}

.amenity-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 1rem;
}

.mini-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.mini-header h2 {
	margin: 0;
	font-size: 1.8rem;
	line-height: 1;
}

.badge {
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(143, 208, 197, 0.14);
	color: #e5fbf7;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.feature-list {
	display: grid;
	gap: 0.85rem;
}

.feature {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.9rem 1rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature i {
	width: 0.85rem;
	height: 0.85rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	box-shadow: 0 0 0 0.35rem rgba(234, 180, 110, 0.12);
	flex: 0 0 auto;
}

.feature span {
	font-weight: 600;
}

.highlight-card {
	padding: 1rem 1.05rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(234, 180, 110, 0.12), rgba(143, 208, 197, 0.08));
}

.highlight-card strong {
	font-size: 1.05rem;
	margin-bottom: 0.25rem;
}

.section-shell {
	display: grid;
	gap: 1.4rem;
}

.scroll-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 1.5rem;
	align-items: end;
}

.section-heading h2 {
	margin: 0.8rem 0 0;
	font-size: clamp(2.2rem, 4vw, 3.5rem);
	line-height: 1;
}

/* Simple About section shown on the home page */
.about-simple {
	margin-top: 1.5rem;
}

.about-simple .about-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.about-simple .btn {
	text-decoration: none;
}

.about-heading p {
	margin: 0;
	max-width: 34rem;
	justify-self: end;
}

/* two-column layout: image left, content right */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	align-items: center;
}

.about-image {
	width: 100%;
}

.about-image img {
	width: 100%;
	height: 100%;
	max-height: 340px;
	object-fit: cover;
	border-radius: 1rem;
	display: block;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-content {
	text-align: left;
}

.about-content p {
	margin: 0 0 1rem;
	color: var(--muted);
	line-height: 1.7;
}

.about-content .muted {
	color: var(--muted);
	margin-top: 0.25rem;
}

/* Card wrapper for the Home About section to match other boxed panels */

.about-card {
	display: grid;
	grid-template-columns: 2.4fr 1fr;
	gap: 1rem;
	align-items: center;
	padding: 1rem;
	border-radius: 1rem;
	background: linear-gradient(180deg, rgba(8, 24, 31, 0.36), rgba(8, 24, 31, 0.6));
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(6px);
}

[data-theme="light"] .about-card {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(6, 20, 27, 0.14);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.about-card .about-image img {
	border-radius: 0.85rem;
	width: 100%;
	height: 100%;
	min-height: 290px;
	object-fit: cover;
	display: block;
}

@media (max-width: 640px) {
	.home-page .section-heading h2 {
		font-size: clamp(1.8rem, 7vw, 2.4rem);
	}

	.home-page .home-social-copy {
		margin: 0.8rem 0 0.6rem;
	}

	.home-page .package-feature-card {
		padding: 0.85rem;
	}

	.home-page .package-feature-content {
		gap: 0.6rem;
	}

	.home-page .package-feature-meta {
		font-size: 0.9rem;
	}

	.about-card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.about-card .about-content {
		text-align: center;
	}

	.about-card .about-image img {
		min-height: 0;
		max-height: 260px;
	}

	body {
		background-color: var(--bg);
	}

	[data-theme="light"] body {
		background-color: #f5f1ea;
	}

	.scroll-bg {
		background-position: center bottom;
		background-size: cover;
		background-repeat: no-repeat;
	}

	.scroll-bg {
		background-image:
			linear-gradient(180deg, rgba(5, 14, 19, 0.36) 0%, rgba(5, 14, 19, 0.24) 45%, rgba(5, 14, 19, 0.66) 100%),
			radial-gradient(circle at 15% 10%, rgba(234, 180, 110, 0.09), transparent 30%),
			linear-gradient(120deg, rgba(255, 255, 255, 0.025), transparent 35%, rgba(255, 255, 255, 0.01)),
			url("../images/assets/mobile dark.webp");
		background-color: var(--bg);
	}

	.scroll-bg::after {
		background: linear-gradient(180deg, rgba(11, 24, 32, 0.08) 0%, rgba(11, 24, 32, 0.28) 55%, var(--bg) 100%);
	}

	[data-theme="light"] .scroll-bg {
		background-image:
			linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(26, 20, 16, 0.1) 65%, rgba(26, 20, 16, 0.12) 100%),
			radial-gradient(circle at 15% 10%, rgba(217, 119, 6, 0.06), transparent 30%),
			linear-gradient(120deg, rgba(26, 20, 16, 0.01), transparent 35%, rgba(26, 20, 16, 0.005)),
			url("../images/assets/mobile light.webp");
		background-color: #f5f1ea;
	}

	[data-theme="light"] .scroll-bg::after {
		background: linear-gradient(180deg, rgba(245, 241, 234, 0.01) 0%, rgba(245, 241, 234, 0.06) 55%, #f5f1ea 100%);
	}

	.about-card .about-content {
		display: grid;
		gap: 0.5rem;
	}
}

@media (max-width: 820px) {
	.about-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.about-content {
		text-align: center;
	}

	.about-image img {
		max-height: 260px;
	}
}

/* Simple home packages slider */
.packages-simple {
	margin-top: 1.5rem;
}

.packages-heading p {
	margin: 0;
	max-width: 34rem;
	justify-self: end;
}

.package-slider {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	gap: 0.85rem;
}

.package-feature-image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.slider-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(5, 14, 19, 0.55);
	color: var(--text);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: var(--z-overlay);
}

.slider-arrow .icon-chevron {
	width: 1.2rem;
	height: 1.2rem;
	display: block;
}

.slider-arrow:hover {
	background: rgba(234, 180, 110, 0.12);
	border-color: rgba(234, 180, 110, 0.32);
}

[data-theme="light"] .slider-arrow {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(6, 20, 27, 0.18);
	color: rgba(26, 20, 16, 0.92);
}

[data-theme="light"] .slider-arrow:hover {
	background: rgba(255, 255, 255, 0.95);
	border-color: rgba(217, 119, 6, 0.35);
}

@media (hover: hover) and (pointer: fine) {
	.slider-arrow:hover {
		transform: translateY(-50%) scale(1.05);
	}

	.slider-arrow:active {
		transform: translateY(-50%) scale(0.97);
	}
}

@media (hover: none) and (pointer: coarse) {

	.slider-arrow:hover,
	.slider-arrow:active {
		transform: translateY(-50%);
	}
}

.slider-arrow[data-slider-prev] {
	left: 0.5rem;
}

.slider-arrow[data-slider-next] {
	right: 0.5rem;
}

.package-feature-card {
	display: grid;
	grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
	gap: 1rem;
	align-items: center;
	padding: 1rem;
	border-radius: 1.4rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--shadow);
	backdrop-filter: blur(8px);
}

[data-theme="light"] .package-feature-card {
	background: rgba(255, 255, 255, 0.78);
	border-color: rgba(6, 20, 27, 0.14);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.package-feature-image {
	width: 100%;
	height: 100%;
	min-height: 250px;
	max-height: 320px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 1rem;
	display: block;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.package-feature-card.is-changing .package-feature-image {
	opacity: 0.75;
	transform: scale(0.99);
}

.package-feature-content {
	display: grid;
	gap: 0.65rem;
	text-align: left;
	padding: 0.25rem 0.5rem 0;
}

.package-feature-content .card-tag {
	font-size: 0.72rem;
	letter-spacing: 0.1em;
}

.package-feature-content h3 {
	margin: 0;
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	line-height: 1.05;
	letter-spacing: -0.01em;
}

.package-feature-content p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
	font-size: clamp(0.92rem, 1.4vw, 1.02rem);
}

.package-feature-meta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.01em;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	background: rgba(234, 180, 110, 0.1);
	border: 1px solid rgba(234, 180, 110, 0.2);
	width: fit-content;
}

[data-theme="light"] .package-feature-meta {
	background: rgba(217, 119, 6, 0.08);
	border-color: rgba(217, 119, 6, 0.18);
	color: var(--accent);
}

.package-feature-content .btn {
	margin-top: 0.25rem;
	width: fit-content;
}

@media (max-width: 820px) {
	.package-slider {
		grid-template-columns: 1fr;
		position: relative;
		padding-inline: 0;
	}

	.slider-arrow {
		background: rgba(5, 14, 19, 0.5);
		border-color: rgba(255, 255, 255, 0.22);
		backdrop-filter: blur(10px);
	}

	[data-theme="light"] .slider-arrow {
		background: rgba(255, 255, 255, 0.7);
		border-color: rgba(6, 20, 27, 0.18);
		color: rgba(26, 20, 16, 0.92);
	}

	.slider-arrow[data-slider-prev] {
		left: 0.15rem;
	}

	.slider-arrow[data-slider-next] {
		right: 0.15rem;
	}

	.package-feature-card {
		grid-template-columns: 1fr;
	}

	.package-feature-image {
		height: auto;
		aspect-ratio: 16 / 10;
		min-height: 200px;
		max-height: 280px;
	}

	.package-feature-content {
		text-align: center;
	}

	.package-feature-content .card-tag {
		justify-self: center;
	}

	.package-feature-meta {
		justify-self: center;
	}

	.package-feature-content .btn {
		justify-self: center;
	}

	.packages-heading p {
		justify-self: center;
		text-align: center;
	}
}

/* Home reviews section */
.home-reviews {
	margin-top: 1.5rem;
}

.home-location {
	margin-top: 1.5rem;
}

.home-location .btn,
.home-social .btn,
.home-reviews .btn {
	justify-self: center;
	width: fit-content;
}

@media (min-width: 900px) {
	.home-location .location-map {
		max-width: 48rem;
		height: 26rem;
		margin: 0 auto;
	}
}

.home-reviews-heading p {
	margin: 0;
	max-width: 34rem;
	justify-self: end;
}

.home-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}

.home-review-card {
	padding: 1.25rem 1.15rem;
	border-radius: 1.2rem;
	border: 1px solid var(--line);
	background: var(--panel);
	backdrop-filter: blur(8px);
	box-shadow: var(--shadow);
	display: grid;
	gap: 0.6rem;
	opacity: 1;
	transform: translateX(0);
	cursor: pointer;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.home-review-card.slide-out {
	opacity: 0;
	transform: translateX(-35px);
}

.home-review-card.slide-in-prepare {
	opacity: 0 !important;
	transform: translateX(35px) !important;
	transition: none !important;
}

.home-review-card:hover {
	transform: translateY(-3px);
	border-color: var(--line-hover);
	box-shadow: var(--shadow-hover);
}

.home-review-top {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.home-review-avatar {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.78rem;
	font-weight: 700;
	background: rgba(234, 180, 110, 0.16);
	border: 1px solid rgba(234, 180, 110, 0.34);
	color: var(--text);
}

.home-review-card h3 {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.1;
}

.home-review-profile,
.home-review-location {
	margin: 0;
	font-size: 0.9rem;
	color: var(--muted);
}

.home-review-stars {
	margin: 0.15rem 0 0;
	letter-spacing: 0.08em;
	color: #f5bf75;
	font-size: 1rem;
	font-weight: 700;
}

@media (max-width: 900px) {
	.home-reviews-grid {
		grid-template-columns: 1fr;
	}

	.home-reviews-heading p {
		justify-self: center;
		text-align: center;
	}
}

/* Home social section */
.home-social {
	margin-top: 1.5rem;
}

.home-social-heading {
	margin-bottom: 0.35rem;
}

.home-gallery-slider {
	position: relative;
	width: 100%;
}

.home-gallery-link {
	display: block;
	width: 100%;
	max-width: min(520px, 100%);
	margin-inline: auto;
	position: relative;
	z-index: 1;
	border-radius: 1.2rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
	text-decoration: none;
	color: inherit;
}

.home-gallery-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	height: auto;
	object-fit: cover;
	object-position: center;
	display: block;
}

.home-gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(5, 14, 19, 0.65);
	color: var(--text);
	font-size: 1.4rem;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.home-gallery-arrow:hover {
	transform: translateY(-50%) scale(1.05);
	border-color: rgba(234, 180, 110, 0.55);
}

[data-theme="light"] .home-gallery-arrow {
	border-color: rgba(6, 20, 27, 0.18);
	background: rgba(255, 255, 255, 0.92);
	color: rgba(26, 20, 16, 0.9);
}

[data-theme="light"] .home-gallery-arrow:hover {
	border-color: rgba(217, 119, 6, 0.5);
	color: rgba(217, 119, 6, 0.9);
}

.home-gallery-prev {
	left: 0.35rem;
}

.home-gallery-next {
	right: 0.35rem;
}

.social-collage {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	grid-auto-flow: dense;
	align-items: start;
	gap: 0;
	max-width: min(980px, 100%);
	margin-inline: auto;
	border-radius: 1.2rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

/* Fixed collage mode: explicitly placed tiles so the box is fully filled (no holes). */
[data-social-collage="fixed"].social-collage {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-flow: row;
	grid-auto-rows: clamp(88px, 10vw, 118px);
	align-items: stretch;
}

[data-social-collage="fixed"].social-collage .social-collage-tile {
	aspect-ratio: auto;
	height: 100%;
}

[data-social-collage="fixed"].social-collage .social-collage-tile--landscape-xl,
[data-social-collage="fixed"].social-collage .social-collage-tile--landscape-md,
[data-social-collage="fixed"].social-collage .social-collage-tile--landscape-sm,
[data-social-collage="fixed"].social-collage .social-collage-tile--portrait-lg,
[data-social-collage="fixed"].social-collage .social-collage-tile--portrait-md,
[data-social-collage="fixed"].social-collage .social-collage-tile--portrait-sm {
	grid-column: auto;
}

[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(1) {
	grid-column: 1 / span 2;
	grid-row: 1 / span 2;
}

[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(2) {
	grid-column: 3;
	grid-row: 1 / span 2;
}

[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(3) {
	grid-column: 4;
	grid-row: 1;
}

[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(4) {
	grid-column: 4;
	grid-row: 2;
}

[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(5) {
	grid-column: 1;
	grid-row: 3;
}

[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(6) {
	grid-column: 2;
	grid-row: 3;
}

[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(7) {
	grid-column: 3;
	grid-row: 3;
}

[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(8) {
	grid-column: 4;
	grid-row: 3;
}

.social-collage-tile {
	position: relative;
	overflow: hidden;
	border-radius: 0;
	box-shadow: none;
	background: rgba(255, 255, 255, 0.02);
	border: 0;
	aspect-ratio: 4 / 3;
	transition: transform 0.25s ease;
}

.social-collage-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.social-collage-tile--landscape-xl {
	grid-column: span 2;
	aspect-ratio: 3 / 2;
}

.social-collage-tile--landscape-md {
	grid-column: span 1;
	aspect-ratio: 16 / 10;
}

.social-collage-tile--landscape-sm {
	grid-column: span 1;
	aspect-ratio: 4 / 3;
}

.social-collage-tile--portrait-lg {
	grid-column: span 1;
	aspect-ratio: 4 / 5;
}

.social-collage-tile--portrait-md {
	grid-column: span 1;
	aspect-ratio: 4 / 5;
}

.social-collage-tile--portrait-sm {
	grid-column: span 1;
	aspect-ratio: 4 / 5;
}

.social-collage-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: inherit;
	transform: scale(1.01);
	transition: transform 0.35s ease;
}

.social-collage-tile:hover img {
	transform: scale(1.05);
}

.home-social-copy {
	margin: 1rem 0 0.8rem;
	text-align: center;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-weight: 600;
	color: var(--text);
}

.home-social-row {
	justify-content: center;
}

@media (max-width: 820px) {

	.home-gallery-arrow {
		width: 2.2rem;
		height: 2.2rem;
		font-size: 1.2rem;
	}

	.social-collage {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	[data-social-collage="fixed"].social-collage {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: clamp(96px, 28vw, 150px);
	}

	[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(1) {
		grid-column: 1 / span 2;
		grid-row: 1 / span 2;
	}

	[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(2) {
		grid-column: 1;
		grid-row: 3;
	}

	[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(3) {
		grid-column: 2;
		grid-row: 3;
	}

	[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(4) {
		grid-column: 1;
		grid-row: 4;
	}

	[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(5) {
		grid-column: 2;
		grid-row: 4;
	}

	[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(6) {
		grid-column: 1;
		grid-row: 5;
	}

	[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(7) {
		grid-column: 2;
		grid-row: 5;
	}

	[data-social-collage="fixed"].social-collage .social-collage-tile:nth-child(8) {
		grid-column: 1 / span 2;
		grid-row: 6;
	}

	.social-collage-tile--landscape-xl {
		grid-column: span 2;
		aspect-ratio: 3 / 2;
	}

	.social-collage-tile--landscape-md {
		grid-column: span 1;
		aspect-ratio: 16 / 10;
	}

	.social-collage-tile--portrait-lg,
	.social-collage-tile--portrait-md,
	.social-collage-tile--portrait-sm {
		grid-column: span 1;
		aspect-ratio: 4 / 5;
	}
}

@media (max-width: 560px) {
	.social-collage {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.section-heading p {
	margin: 0;
	max-width: 34rem;
	justify-self: end;
}

.booking-layout,
.food-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.2rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	grid-template-rows: auto auto;
	gap: 1.2rem;
}

.contact-grid>div:nth-child(1),
.contact-grid>div:nth-child(2) {
	grid-column: 1;
}

.contact-grid>div:nth-child(3) {
	grid-column: 2;
	grid-row: 1 / span 2;
}

.booking-form,
.booking-aside,
.contact-card,
.food-feature {
	padding: 1.2rem;
	border-radius: var(--radius-md);
}

.booking-form {
	display: grid;
	gap: 0.9rem;
}

.booking-form label {
	display: grid;
	gap: 0.45rem;
	font-size: 0.92rem;
	color: var(--muted);
}

.booking-form span {
	font-weight: 600;
	color: var(--text);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
	width: 100%;
	padding: 0.95rem 1rem;
	border-radius: 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(5, 14, 19, 0.36);
	color: var(--text);
	font: inherit;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

[data-theme="light"] .booking-form input,
[data-theme="light"] .booking-form select,
[data-theme="light"] .booking-form textarea {
	border-color: rgba(6, 20, 27, 0.14);
	background: rgba(255, 255, 255, 0.8);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
	color: rgba(246, 241, 232, 0.65);
}

[data-theme="light"] .booking-form input::placeholder,
[data-theme="light"] .booking-form textarea::placeholder {
	color: rgba(26, 20, 16, 0.72);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
	border-color: rgba(234, 180, 110, 0.6);
	box-shadow: 0 0 0 3px rgba(234, 180, 110, 0.14);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.form-button {
	font-family: "Satoshi", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	justify-self: start;
	margin-top: 0.35rem;
	border: 0;
	cursor: pointer;
}

.info-stack {
	display: grid;
	gap: 0.9rem;
}

.info-tile {
	padding: 1rem 1.05rem;
	border-radius: 1rem;
	background: var(--panel);
	border: 1px solid var(--line);
	backdrop-filter: blur(10px);
}

.info-tile strong {
	font-size: 1.1rem;
	margin-bottom: 0.2rem;
}

.card-grid,
.rate-grid,
.gallery-grid {
	display: grid;
	gap: 1rem;
}

.card-grid.three-up {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four-up {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.two-up {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.2rem;
}

#rules .card-grid {
	gap: 0.85rem;
}

#rules .card {
	padding: 1rem 1.05rem;
}

#rules .card h3 {
	margin-top: 0.4rem;
	font-size: 1.15rem;
	line-height: 1.2;
}

#rules .rule-list {
	margin: 0.7rem 0 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 0.4rem;
	font-size: 0.92rem;
	line-height: 1.45;
	color: var(--muted);
}

#rules .rule-list li strong {
	color: var(--text);
}

#packages .card {
	padding: 1.2rem;
}

.card {
	padding: 1.35rem;
	border-radius: var(--radius-md);
}

.package-media {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	border-radius: 0.95rem;
	border: 1px solid var(--line);
	margin-bottom: 0;
	display: block;
	transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform;
}

.package-media.is-fading {
	opacity: 0.25;
}

.package-media-shell {
	position: relative;
	border-radius: 0.95rem;
	overflow: hidden;
	margin-bottom: 0.95rem;
}

.package-link:hover .package-media {
	transform: scale(1.015);
	filter: brightness(1.04);
}

.package-link {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: left;
	border-radius: 0.95rem;
	overflow: hidden;
	position: relative;
}

.package-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.15rem;
	height: 2.15rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--panel-strong);
	color: var(--text);
	font-size: 1.5rem;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
	padding: 0;
}

.package-nav.prev {
	left: 0.6rem;
}

.package-nav.next {
	right: 0.6rem;
}

.package-nav:hover {
	border-color: var(--line-hover);
	color: var(--accent);
}

.image-lightbox {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	min-height: 100vh;
	z-index: var(--z-modal);
	display: none;
	place-items: center;
	align-items: center;
	align-content: center;
	padding: 1rem;
}

.image-lightbox.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 14, 19, 0.7);
	backdrop-filter: blur(10px);
}

.lightbox-panel {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: var(--z-overlay);
	width: min(1000px, calc(100% - 2rem));
	max-height: 92vh;
	padding: 0.9rem;
	border-radius: 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: linear-gradient(180deg, rgba(7, 22, 29, 0.8), rgba(7, 22, 29, 0.95));
	box-shadow: var(--shadow);
	overflow: auto;
}

.lightbox-panel img {
	display: block;
	width: 100%;
	max-height: 76vh;
	object-fit: contain;
	border-radius: 0.95rem;
	background: rgba(0, 0, 0, 0.35);
	opacity: 1;
	transition: opacity 0.25s ease-in-out;
}

/* Lightbox Loading & Skeleton State */
.lightbox-panel.is-loading img {
	opacity: 0;
	aspect-ratio: 4 / 3;
	width: 100%;
	animation: lightbox-skeleton-pulse 1.5s infinite ease-in-out;
}

/* Loader Spinner Overlay */
.lightbox-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 2.5rem;
	height: 2.5rem;
	border: 3px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--accent);
	border-radius: 50%;
	animation: lightbox-spin 0.8s linear infinite;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	z-index: 2010;
	pointer-events: none;
}

[data-theme="light"] .lightbox-loader {
	border-color: rgba(0, 0, 0, 0.08);
	border-top-color: var(--accent);
}

.lightbox-panel.is-loading .lightbox-loader {
	opacity: 1;
	visibility: visible;
}

@keyframes lightbox-spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes lightbox-skeleton-pulse {
	0% {
		background-color: rgba(255, 255, 255, 0.05);
	}

	50% {
		background-color: rgba(255, 255, 255, 0.12);
	}

	100% {
		background-color: rgba(255, 255, 255, 0.05);
	}
}

[data-theme="light"] .lightbox-panel.is-loading img {
	animation-name: lightbox-skeleton-pulse-light;
}

@keyframes lightbox-skeleton-pulse-light {
	0% {
		background-color: rgba(0, 0, 0, 0.04);
	}

	50% {
		background-color: rgba(0, 0, 0, 0.1);
	}

	100% {
		background-color: rgba(0, 0, 0, 0.04);
	}
}

/* Slider Loader & Skeleton Styling */
.package-feature-image-wrapper,
.package-media-shell,
.home-gallery-link {
	position: relative;
	/* Contain absolute loading spinner */
}

/* Spinner overlay for card sliders */
.image-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 2.2rem;
	height: 2.2rem;
	border: 3px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--accent);
	border-radius: 50%;
	animation: slider-loader-spin 0.8s linear infinite;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	z-index: 10;
	pointer-events: none;
}

[data-theme="light"] .image-loader {
	border-color: rgba(0, 0, 0, 0.08);
	border-top-color: var(--accent);
}

.package-feature-image-wrapper.is-loading .image-loader,
.package-media-shell.is-loading .image-loader,
.home-gallery-link.is-loading .image-loader {
	opacity: 1;
	visibility: visible;
}

@keyframes slider-loader-spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* Pulse skeleton effect during card slide loads */
.package-feature-image-wrapper.is-loading .package-feature-image,
.package-media-shell.is-loading .package-media,
.home-gallery-link.is-loading .home-gallery-image {
	opacity: 0 !important;
}

.package-feature-image-wrapper.is-loading,
.package-media-shell.is-loading,
.home-gallery-link.is-loading {
	animation: slider-skeleton-pulse 1.5s infinite ease-in-out;
	background: rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .package-feature-image-wrapper.is-loading,
[data-theme="light"] .package-media-shell.is-loading,
[data-theme="light"] .home-gallery-link.is-loading {
	animation-name: slider-skeleton-pulse-light;
	background: rgba(0, 0, 0, 0.04);
}

@keyframes slider-skeleton-pulse {
	0% {
		background-color: rgba(255, 255, 255, 0.05);
	}

	50% {
		background-color: rgba(255, 255, 255, 0.12);
	}

	100% {
		background-color: rgba(255, 255, 255, 0.05);
	}
}

@keyframes slider-skeleton-pulse-light {
	0% {
		background-color: rgba(0, 0, 0, 0.04);
	}

	50% {
		background-color: rgba(0, 0, 0, 0.10);
	}

	100% {
		background-color: rgba(0, 0, 0, 0.04);
	}
}

@media (min-width: 900px) {
	.image-lightbox {
		padding: 2rem;
	}

	.lightbox-panel {
		max-height: 84vh;
	}

	.lightbox-panel img {
		max-height: 70vh;
	}
}

.lightbox-close {
	position: absolute;
	right: 1.15rem;
	top: 1.05rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.15rem;
	height: 2.15rem;
	padding: 0;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(5, 14, 19, 0.72);
	font-weight: 700;
	color: var(--text);
	cursor: pointer;
}

.lightbox-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(5, 14, 19, 0.72);
	color: var(--text);
	font-size: 1.4rem;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.lightbox-arrow .icon-chevron {
	width: 1.1rem;
	height: 1.1rem;
	display: block;
}

.lightbox-prev {
	left: 0.75rem;
}

.lightbox-next {
	right: 0.75rem;
}

.lightbox-close:hover {
	border-color: rgba(234, 180, 110, 0.55);
	color: var(--accent);
}

.lightbox-arrow:hover {
	border-color: rgba(234, 180, 110, 0.55);
	color: var(--accent);
}

[data-theme="light"] .lightbox-backdrop {
	background: rgba(248, 246, 242, 0.72);
	backdrop-filter: blur(10px);
}

[data-theme="light"] .lightbox-panel {
	border-color: rgba(6, 20, 27, 0.16);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 241, 234, 0.98));
	box-shadow: 0 22px 50px rgba(26, 20, 16, 0.18);
}

[data-theme="light"] .lightbox-panel img {
	background: rgba(26, 20, 16, 0.08);
}

[data-theme="light"] .lightbox-close {
	border-color: rgba(6, 20, 27, 0.18);
	background: rgba(255, 255, 255, 0.9);
	color: rgba(26, 20, 16, 0.9);
}

[data-theme="light"] .lightbox-arrow {
	border-color: rgba(6, 20, 27, 0.18);
	background: rgba(255, 255, 255, 0.9);
	color: rgba(26, 20, 16, 0.9);
}

[data-theme="light"] .lightbox-close:hover {
	border-color: rgba(217, 119, 6, 0.5);
	color: rgba(217, 119, 6, 0.9);
}

.card h3,
.rate-top h3,
.food-feature h3,
.contact-card h3 {
	margin: 0.85rem 0 0.6rem;
	font-size: 1.9rem;
	line-height: 0.98;
}

.card ul,
.food-feature ul {
	margin: 1rem 0 0;
	padding-left: 1.1rem;
	color: var(--text);
	line-height: 1.75;
}

.package-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
}

.price-header {
	display: flex;
	align-items: baseline;
	gap: 0.3rem;
	margin: 0.6rem 0 0.9rem;
}

.price-currency {
	font-size: 1.4rem;
	color: var(--accent);
	font-weight: 600;
}

.price-amount {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--accent);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.capacity-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	padding: 0.8rem 0;
}

.capacity-item {
	padding: 0.75rem;
	border-radius: 0.85rem;
	background: var(--panel);
	border: 1px solid var(--line);
	text-align: center;
}

.capacity-label {
	font-size: 0.8rem;
	color: var(--muted);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 0.3rem;
}

.capacity-value {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.capacity-note {
	font-size: 0.75rem;
	color: var(--muted);
	margin-top: 0.2rem;
}

.addon-info {
	font-size: 0.92rem;
	color: var(--muted);
	padding: 0.5rem 0;
}

.addon-info strong {
	color: var(--text);
	font-weight: 600;
}

.free-label {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 0.6rem;
	margin-bottom: 0.8rem;
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.free-label::after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: linear-gradient(90deg, var(--accent), transparent);
}

.inclusions-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding-top: 0.8rem;
	border-top: 1px solid var(--line);
}

.inclusion-tag {
	display: inline-block;
	font-size: 0.75rem;
	padding: 0.35rem 0.6rem;
	border-radius: 999px;
	background: var(--panel);
	border: 1px solid var(--line);
	color: var(--muted);
	letter-spacing: 0.03em;
	text-transform: capitalize;
}

.accent-card {
	background: var(--panel-accent);
}

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

.rental-discount-grid {
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: start;
}

.rate-card {
	padding: 1.2rem;
	border-radius: var(--radius-md);
}

.rate-top {
	display: grid;
	gap: 0.45rem;
	margin-bottom: 0.6rem;
}

.rate-top h3 {
	margin: 0;
	font-size: 1.75rem;
}

.rate-top strong {
	color: var(--accent);
	font-size: 1.1rem;
}

.rate-card span {
	display: inline-flex;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--muted);
	font-size: 0.92rem;
}

.rate-note {
	background: linear-gradient(180deg, rgba(143, 208, 197, 0.12), rgba(255, 255, 255, 0.06));
}

.rental-card {
	display: grid;
	gap: 0.8rem;
}

.discount-card {
	display: grid;
	gap: 0.8rem;
	background: linear-gradient(180deg, rgba(143, 208, 197, 0.12), rgba(255, 255, 255, 0.06));
}

.rental-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rental-list li {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.7rem;
	align-items: center;
	padding: 0.78rem 0.85rem;
	border-radius: 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	font-size: 0.88rem;
	line-height: 1.35;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rental-list li:hover {
	transform: translateY(-2px);
	border-color: rgba(234, 180, 110, 0.22);
	background: rgba(255, 255, 255, 0.06);
}

.rental-list span {
	color: var(--text);
	font-weight: 600;
}

.rental-list strong {
	color: var(--accent);
	font-weight: 800;
	white-space: nowrap;
	justify-self: end;
}

.discount-list {
	display: grid;
	gap: 0.55rem;
}

.discount-item {
	padding: 0.78rem 0.85rem 0.78rem 0.95rem;
	border-radius: 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-left: 3px solid var(--accent-2);
	background: rgba(255, 255, 255, 0.04);
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.discount-item:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.06);
}

.discount-item p {
	margin: 0;
	display: grid;
	gap: 0.12rem;
	color: var(--text);
	line-height: 1.35;
	font-size: 0.9rem;
}

.discount-item strong {
	color: var(--accent);
}

.discount-item span {
	color: var(--muted);
	font-weight: 600;
}

.discount-tier-two {
	border-left-color: var(--accent);
}

.discount-tier-three {
	border-left-color: #d6f0ff;
}

.food-feature {
	display: grid;
	align-content: start;
	gap: 0.5rem;
	background: linear-gradient(180deg, rgba(8, 24, 31, 0.44), rgba(8, 24, 31, 0.64));
}

.food-feature h3 {
	font-size: 2.15rem;
	margin-top: 0.5rem;
}

.food-cards {
	display: grid;
	gap: 0.9rem;
}

.mini-card {
	padding: 1rem 1.05rem;
	border-radius: 1rem;
}

.mini-card strong {
	font-size: 1.08rem;
	margin-bottom: 0.2rem;
}

/* Gallery Carousel - Infinite Marquee */
@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.gallery-section-full {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	margin-left: calc(-1 * (100vw - 100%) / 2);
	margin-right: calc(-1 * (100vw - 100%) / 2);
}

.gallery-section-full .section-heading {
	width: min(1200px, calc(100% - 2rem));
	margin-inline: auto;
	padding-inline: 1rem;
}

.gallery-carousel-wrapper {
	padding-inline: 1rem;
	max-width: 100%;
	margin-bottom: 2rem;
	cursor: grab;
	content-visibility: auto;
	contain-intrinsic-size: 1px 340px;
}

.gallery-carousel-wrapper.dragging {
	cursor: grabbing;
}

.gallery-carousel {
	overflow-x: auto;
	overflow-y: hidden;
	border-radius: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
	background: rgba(255, 255, 255, 0.05);
	height: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	touch-action: pan-y;
	overscroll-behavior-x: contain;
	user-select: none;
}

.gallery-carousel::-webkit-scrollbar {
	display: none;
}

.gallery-track {
	display: flex;
	align-items: center;
	animation: marquee linear infinite 22.5s;
	animation-play-state: running;
	will-change: transform;
	transform: translateZ(0);
}

.gallery-track.dragging-mode {
	animation: none;
}

.gallery-slide {
	flex: 0 0 calc(100% / 5);
	margin: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem;
	min-width: calc(100% / 5);
}

.gallery-slide img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
	max-height: none;
	object-fit: contain;
	border-radius: 0.6rem;
	background: rgba(0, 0, 0, 0.14);
	-webkit-user-drag: none;
	user-select: none;
	transition: transform 0.35s ease;
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform;
}

.gallery-slide:hover img {
	transform: scale(1.08);
}

/* Pause on hover */
.gallery-carousel-wrapper:hover .gallery-track {
	animation-play-state: paused;
}

/* Pause on touch/active on mobile */
.gallery-carousel-wrapper.is-dragging .gallery-track {
	animation-play-state: paused;
}

@media (hover: none),
(pointer: coarse) {

	:root {
		--panel: rgba(9, 22, 31, 0.94);
		--panel-strong: rgba(14, 32, 44, 0.98);
	}

	:root[data-theme="light"] {
		--panel: rgba(255, 255, 255, 0.97);
		--panel-strong: rgba(250, 248, 243, 0.99);
	}

	body,
	[data-theme="light"] body,
	.hero,
	[data-theme="light"] .hero {
		background-attachment: scroll;
	}

	body {
		overflow-x: hidden;
		overflow-y: auto;
		overflow-anchor: none;
		overscroll-behavior-y: none;
	}

	.page,
	.nav,
	.section-shell,
	.stat,
	.card,
	.rate-card,
	.food-feature,
	.mini-card,
	.contact-card,
	.highlight-card,
	.booking-form,
	.booking-aside,
	.experience-card,
	.search-result-card,
	.search-inline-banner,
	.footer {
		backdrop-filter: none !important;
	}

	.gallery-track {
		animation: none;
	}
}

@media (max-width: 1024px) {
	.gallery-carousel {
		height: auto;
	}

	.gallery-slide {
		flex: 0 0 calc(100% / 4);
		padding: 0.3rem;
		min-width: calc(100% / 4);
	}
}

@media (max-width: 640px) {
	.gallery-carousel-wrapper {
		padding-inline: 0.5rem;
		margin-bottom: 1.5rem;
	}

	.gallery-carousel {
		height: auto;
	}

	.gallery-slide {
		flex: 0 0 calc(100% / 2.5);
		padding: 0.25rem;
		min-width: calc(100% / 2.5);
	}
}

/* Location & Directions Section */
.location-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 2rem;
	align-items: start;
}

.location-map {
	width: 100%;
	height: 35rem;
	border-radius: 1.2rem;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.location-map iframe {
	width: 100% !important;
	height: 100% !important;
}


.location-guide {
	display: grid;
	gap: 1.3rem;
}

.location-guide h3 {
	font-family: "Playfair Display", "Cormorant Garamond", serif;
	font-size: 2rem;
	margin: 0;
	color: var(--text);
	line-height: 1;
}

.timeline {
	display: grid;
	gap: 0;
}

.timeline-item {
	display: grid;
	grid-template-columns: 4rem 1fr;
	gap: 1.2rem;
	padding: 1.5rem;
	position: relative;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 1rem;
	contain: layout style paint;
	content-visibility: auto;
	contain-intrinsic-size: 1px 180px;
	animation: floatIn 0.95s ease both;
}

.timeline-item:nth-child(2) {
	animation-delay: 0.15s;
}

.timeline-item:nth-child(3) {
	animation-delay: 0.3s;
}

.timeline-item:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 2rem;
	top: 100%;
	width: 2px;
	height: 1rem;
	background: linear-gradient(180deg, var(--accent-2), transparent);
}

.timeline-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	width: 4rem;
	height: 4rem;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(143, 208, 197, 0.2), rgba(234, 180, 110, 0.1));
	border: 2px solid var(--accent-2);
	flex-shrink: 0;
}

.timeline-content h4 {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	color: var(--text);
	font-weight: 700;
}

.timeline-content p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--muted);
	line-height: 1.6;
}

.contact-card {
	display: grid;
	gap: 1rem;
}

.contact-lines {
	display: grid;
	gap: 0.6rem;
	padding-top: 0.8rem;
	border-top: 1px solid var(--line);
}

.contact-lines span {
	font-size: 0.95rem;
	color: var(--text);
}

.facebook-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	background: linear-gradient(135deg, #0a66c2, #0952b4);
	color: white;
	font-weight: 900;
	font-size: 1.3rem;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.facebook-link:hover {
	transform: scale(1.08);
	box-shadow: 0 8px 20px rgba(10, 102, 194, 0.3);
}


.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	color: white;
	font-weight: 700;
	font-size: 1.1rem;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.social-row {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.social-link .social-icon {
	width: 1.05rem;
	height: 1.05rem;
	display: block;
}

.instagram-link {
	background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}

.youtube-link {
	background: linear-gradient(135deg, #ff0000 0%, #c40000 100%);
	font-size: 1.1rem;
}

.tiktok-link {
	background: #000;
	color: #fff;
}

.instagram-link:hover {
	transform: scale(1.06);
	box-shadow: 0 8px 20px rgba(221, 42, 123, 0.2);
}

.youtube-link:hover {
	transform: scale(1.06);
	box-shadow: 0 8px 20px rgba(255, 0, 0, 0.18);
}

.tiktok-link:hover {
	transform: scale(1.06);
	box-shadow: 0 8px 20px rgba(105, 201, 208, 0.18);
}

.contact-quote {
	background: linear-gradient(180deg, rgba(234, 180, 110, 0.11), rgba(255, 255, 255, 0.06));
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-quote h3 {
	margin: 0 0 0.2rem 0;
}

.contact-quote p {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.contact-quote p strong {
	color: var(--accent);
	min-width: 60px;
}

.footer {
	padding: 2.5rem 0 1.75rem;
	color: var(--muted);
	font-size: 0.70rem;
	letter-spacing: 0.04em;
	text-align: center;
	border-top: 1px solid var(--line);
	margin-top: 3rem;
	position: relative;
	background: var(--panel-strong);
	backdrop-filter: blur(12px);
	width: 100%;
	margin-inline: 0;
}

.footer p {
	margin: 0;
	max-width: 1200px;
	margin-inline: auto;
}

.footer-credit {
	text-align: right;
	font-size: 0.65rem;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: var(--muted);
}

/* Hide old static back-to-top button in footer */
.back-to-top {
	display: none !important;
}

/* Floating Back-To-Top Button with Scroll Progress */
.floating-back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 3rem;
	/* 48px */
	height: 3rem;
	/* 48px */
	border-radius: 50%;
	border: none;
	outline: none;
	cursor: pointer;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(9, 22, 31, 0.7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);

	/* Hidden state for animation */
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px) scale(0.85);
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		background-color 0.3s ease,
		box-shadow 0.3s ease;
}

.floating-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.floating-back-to-top:hover {
	transform: scale(1.08);
	background: rgba(9, 22, 31, 0.85);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

/* Light Theme overrides */
[data-theme="light"] .floating-back-to-top {
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 8px 30px rgba(28, 21, 17, 0.12);
}

[data-theme="light"] .floating-back-to-top:hover {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 12px 35px rgba(28, 21, 17, 0.18);
}

/* Progress Ring SVG Styling */
.floating-back-to-top .progress-ring {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
	/* Start at 12 o'clock */
	transform-origin: 50% 50%;
	pointer-events: none;
}

.floating-back-to-top .progress-ring__bg {
	stroke: rgba(255, 255, 255, 0.08);
	transition: stroke 0.3s ease;
}

[data-theme="light"] .floating-back-to-top .progress-ring__bg {
	stroke: rgba(0, 0, 0, 0.06);
}

.floating-back-to-top .progress-ring__circle {
	stroke: var(--accent);
	stroke-linecap: round;
	stroke-dasharray: 132;
	stroke-dashoffset: 132;
	transition: stroke-dashoffset 0.1s linear, stroke 0.3s ease;
}

/* Arrow/Chevron Icon */
.floating-back-to-top .arrow-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, color 0.2s ease;
	pointer-events: none;
}

[data-theme="light"] .floating-back-to-top .arrow-icon {
	color: var(--text);
}

.floating-back-to-top:hover .arrow-icon {
	transform: translate(-50%, -60%);
	/* Subtle upward shift */
	color: var(--accent);
}

/* Responsive design adjustments for mobile devices */
@media (max-width: 760px) {
	.floating-back-to-top {
		bottom: 1.5rem;
		right: 1.5rem;
		width: 2.65rem;
		/* 42.4px */
		height: 2.65rem;
		/* 42.4px */
	}

	/* Scale down the SVG and center icon */
	.floating-back-to-top svg.progress-ring {
		width: 100%;
		height: 100%;
	}
}

footer a {
	color: #ffffff;
	/* theme color */
	text-decoration: none;
	/* Removes the default underline */
	font-weight: 600;
	transition: all 0.3s ease;
	/* color change smooth */
}

/* When the user moves their mouse over it */
footer a:hover {
	color: #00d4ff;
	/* highlight color */
	text-decoration: underline;
}

/* Ensure footer text has high visibility in light mode */
[data-theme="light"] .footer {
	color: var(--text);
	border-top-color: var(--line);
}

[data-theme="light"] .footer-credit {
	color: var(--muted);
}

[data-theme="light"] footer a {
	color: var(--accent-2);
}

[data-theme="light"] footer a:hover {
	color: var(--accent);
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes floatIn {
	from {
		opacity: 0;
		transform: translateX(24px) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@media (max-width: 1080px) {

	.section-heading,
	.booking-layout,
	.food-layout,
	.contact-grid,
	.rate-grid,
	.card-grid.three-up,
	.card-grid.four-up,
	.card-grid.two-up,
	.location-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid>div:nth-child(1),
	.contact-grid>div:nth-child(2),
	.contact-grid>div:nth-child(3) {
		grid-column: auto;
		grid-row: auto;
	}

	.rental-discount-grid {
		grid-template-columns: 1fr;
	}

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

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

	.hero-panel {
		justify-content: flex-start;
	}

	.experience-card {
		width: min(100%, 36rem);
	}

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

	.section-heading p {
		justify-self: start;
		max-width: none;
	}

	.gallery-carousel {
		height: 14rem;
	}

	.gallery-slide {
		flex: 0 0 calc(100% / 3);
		padding: 0.4rem;
	}

	.location-map {
		height: 28rem;
	}
}

@media (max-width: 760px) {
	.topbar {
		align-items: flex-start;
	}

	[data-theme="light"] .nav {
		background: transparent;
		border: 0;
		box-shadow: none;
		backdrop-filter: none;
	}

	.nav {
		position: fixed;
		top: 0.9rem;
		right: 1rem;
		z-index: var(--z-overlay);
		contain: none;
		width: auto;
		justify-content: flex-start;
		flex-wrap: nowrap;
		flex-direction: column;
		align-items: flex-end;
		gap: 0.55rem;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
	}

	.nav-backdrop {
		position: fixed;
		inset: 0;
		background: rgba(2, 6, 9, 0.55);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.25s ease;
		z-index: 0;
	}

	[data-theme="light"] .nav-backdrop {
		background: rgba(28, 21, 17, 0.25);
	}

	.nav.is-open .nav-backdrop {
		opacity: 1;
		pointer-events: auto;
	}

	.nav-hamburger {
		display: inline-flex;
		width: 2.85rem;
		height: 2.85rem;
		background: var(--panel-strong);
		border: 1px solid var(--line);
		position: relative;
		z-index: 2;
	}

	.theme-toggle {
		width: 2.85rem;
		height: 2.85rem;
		background: var(--panel-strong);
		border: 1px solid var(--line);
		position: relative;
		z-index: 2;
	}

	.nav-links {
		position: fixed;
		top: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		gap: 0.45rem;
		width: min(82vw, 18rem);
		height: 100vh;
		overflow: auto;
		padding: 1.2rem 0.9rem 1.4rem;
		border-right: 1px solid var(--line);
		border-radius: 0;
		background: var(--panel-strong);
		backdrop-filter: blur(16px) saturate(1.2);
		box-shadow: var(--shadow);
		transform: translateX(-100%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
		z-index: 1;
	}

	.nav.is-open .nav-links {
		transform: translateX(0);
		opacity: 1;
		pointer-events: auto;
	}

	.nav-links a {
		padding: 0.55rem 0.65rem;
		border-radius: 0.95rem;
		width: 100%;
		background: var(--panel);
		border: 1px solid var(--line);
		box-shadow: var(--shadow);
		font-weight: 600;
		transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
	}

	.nav-links a:hover {
		background: var(--panel-strong);
		border-color: var(--line-hover);
		color: var(--accent);
	}

	.nav>.nav-search--bar {
		display: none;
	}

	.nav-links .nav-search--bar {
		display: none;
	}

	.nav-links .nav-search--drawer {
		display: flex;
		width: 100%;
		border-radius: 0.95rem;
		padding: 0.55rem 0.65rem;
		background: var(--panel);
		border: 1px solid var(--line);
		box-shadow: var(--shadow);
	}

	.nav-links .nav-search--drawer input {
		width: 100%;
	}

	.nav-drawer-footer {
		display: grid;
		gap: 0.25rem;
		margin-top: 0.6rem;
		padding-top: 0.45rem;
		border-top: 1px solid var(--line);
	}

	.nav-drawer-contact {
		display: grid;
		gap: 0.1rem;
		font-size: 0.88rem;
		color: var(--muted);
	}

	.nav-drawer-contact strong {
		color: var(--text);
		font-size: 0.95rem;
	}

	.nav-drawer-contact a {
		color: inherit;
		text-decoration: none;
	}

	.nav-drawer-contact a:hover {
		color: var(--accent);
	}

	.nav-drawer-social {
		gap: 0.35rem;
	}

	[data-theme="light"] .nav-drawer-social .social-icon {
		filter: invert(1) grayscale(1);
		opacity: 0.9;
	}

	.nav-hamburger {
		order: 1;
	}

	.theme-toggle {
		order: 2;
	}

	.nav-links {
		order: 3;
	}

	.section-shell {
		padding: 1.35rem;
		border-radius: 1.4rem;
	}

	.home-page .section-shell {
		padding: 1.2rem;
	}

	.home-page .topbar {
		gap: 0.6rem;
		margin-bottom: 0.6rem;
		padding-top: 0.8rem;
	}

	.home-page .hero {
		gap: 1rem;
	}

	.home-page .section-heading {
		gap: 1rem;
	}

	.home-page .hero-actions {
		gap: 0.6rem;
		margin-top: 0.9rem;
	}

	.home-page .stats {
		gap: 0.6rem;
		margin-top: 0.9rem;
	}

	h1 {
		font-size: clamp(2.8rem, 14vw, 4.5rem);
	}

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

	.hero {
		min-height: auto;
	}

	.experience-head h2 {
		font-size: 1.7rem;
	}

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

	.gallery-carousel-wrapper {
		gap: 0.5rem;
		margin-bottom: 1.5rem;
	}

	.gallery-track {
		height: auto;
	}

	.gallery-slide {
		flex: 0 0 50%;
		padding: 0.3rem;
	}

	.gallery-arrow {
		width: 2.2rem;
		height: 2.2rem;
		font-size: 0.9rem;
	}

	.location-map {
		height: 22rem;
	}

	.location-guide h3 {
		font-size: 1.5rem;
	}

	.discount-item {
		padding: 0.72rem 0.8rem 0.72rem 0.9rem;
	}

	.rental-list li {
		grid-template-columns: 1fr;
		gap: 0.3rem;
		padding: 0.72rem 0.8rem;
	}

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

	.rental-list strong {
		justify-self: start;
	}

	.timeline-item {
		grid-template-columns: 3.2rem 1fr;
		gap: 1rem;
		padding: 1.2rem;
	}

	.timeline-icon {
		width: 3.2rem;
		height: 3.2rem;
		font-size: 1.4rem;
	}

	.timeline-content h4 {
		font-size: 1rem;
	}

	.timeline-content p {
		font-size: 0.9rem;
	}

	.footer {
		padding-inline: 1rem;
	}

	[data-theme="light"] .footer {
		backdrop-filter: blur(2px);
	}
}

@media (max-width: 420px) {

	body,
	[data-theme="light"] body,
	.hero,
	[data-theme="light"] .hero {
		background-size: 100% auto;
	}

	.brand-logo {
		width: 2.4rem;
		height: 2.4rem;
	}

	.brand-text strong {
		font-size: 1.25rem;
	}

	.brand-text span {
		display: none;
	}

	.section-shell {
		padding: 1.1rem;
	}
}

.home-contact {
	margin-top: 1.5rem;
}

.home-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 1.5rem;
}

@media (max-width: 760px) {
	.home-contact-grid {
		grid-template-columns: 1fr;
	}
}

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

	.scroll-reveal,
	.scroll-reveal.is-visible {
		opacity: 1;
		transform: none;
		transition: none;
	}
}