/*
Theme Name: Himalaya Orchid
Theme URI: https://example.com/
Author: Sandeep Singh Negi
Author URI: https://example.com/
Description: A minimal blank theme scaffold for Himalaya Orchid.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: himalaya-orchid
*/

body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.5;
	color: #0f172a;
	background: #ffffff;
}

.site {
	width: 100%;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.site-header {
	--header-font: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
	font-family: var(--header-font);
	backdrop-filter: blur(14px);
}

.topbar {
	background: var(--topbar-bg, #0a3a2a);
	color: var(--topbar-text, #eafff6);
	font-size: 13px;
}

.topbar-inner {
	min-height: 34px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.topbar-left {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.topbar-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.topbar-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: inherit;
	text-decoration: none;
	font-weight: 650;
	opacity: 0.92;
	padding: 6px 8px;
	border-radius: 999px;
	transition: opacity 180ms ease, background 180ms ease, transform 180ms ease;
}

.topbar-link:hover,
.topbar-link:focus-visible {
	opacity: 1;
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-0.5px);
	outline: none;
}

.topbar-ic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.topbar-ic svg {
	display: block;
}

.topbar-sep {
	opacity: 0.7;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 76px;
}

.header-brand {
	min-width: min(var(--header-logo-width, 220px), 420px);
}

.brand-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: inherit;
	text-decoration: none;
}

.brand-logo-img {
	display: block;
	width: auto;
	height: auto;
	max-height: min(var(--header-logo-height, 56px), 140px);
	max-width: min(var(--header-logo-width, 220px), 420px);
}

.nav-toggle-btn {
	display: none;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	background: #ffffff;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px;
	box-shadow: 0 10px 22px rgba(2, 6, 23, 0.08);
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.nav-toggle-btn span {
	display: block;
	height: 2px;
	width: 100%;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.78);
	transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle-btn:hover,
.nav-toggle-btn:focus-visible {
	border-color: rgba(15, 23, 42, 0.2);
	box-shadow: 0 14px 28px rgba(2, 6, 23, 0.12);
	transform: translateY(-1px);
	outline: none;
}

.nav-backdrop {
	display: none;
}

.header-panel {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	flex: 1;
	min-width: 0;
}

.site-nav {
	min-width: 0;
}

.header-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-wrap: wrap;
}

.header-menu a {
	display: inline-flex;
	align-items: center;
	padding: 10px 12px;
	border-radius: 999px;
	text-decoration: none;
	color: rgba(15, 23, 42, 0.85);
	font-weight: 600;
	font-size: 14px;
}

.header-menu a:hover,
.header-menu a:focus-visible {
	background: rgba(2, 132, 72, 0.08);
	color: #064e3b;
	outline: none;
}

.header-ctas {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 16px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	border: 1px solid transparent;
	white-space: nowrap;
}

.button-primary {
	background: linear-gradient(135deg, #0f6b3f, #0b3d27);
	color: #ffffff;
	box-shadow: 0 10px 22px rgba(5, 46, 22, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
	filter: brightness(1.06);
	outline: none;
}

.button-secondary {
	background: rgba(255, 255, 255, 0.9);
	color: #0b3d27;
	border-color: rgba(11, 61, 39, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
	background: rgba(2, 132, 72, 0.08);
	outline: none;
}

.site-content {
	padding: 26px 0 40px;
}

body.elementor-page .site-content {
	padding: 0;
}

body.elementor-page .site-content > .container.site-content-inner {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.ho-rooms {
	--bg: #f6f5f0;
	--surface: #ffffff;
	--surface2: #f1f4ef;
	--text: #0d1b14;
	--muted: rgba(13, 27, 20, 0.72);
	--muted2: rgba(13, 27, 20, 0.56);
	--line: rgba(13, 27, 20, 0.12);
	--brand-dark: #0d4d22;
	--brand-primary: #1b7c2e;
	--brand-accent: #f57c20;
	--shadow: 0 10px 26px rgba(13, 27, 20, 0.1);
	--radius: 18px;
	--max: 1180px;
	--font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	--pad: clamp(16px, 3.2vw, 28px);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--h2: clamp(28px, 3.2vw, 44px);
	--h3: clamp(18px, 1.6vw, 22px);
	--p: 16px;
	color: var(--text);
	font-family: var(--font-sans);
	background: transparent;
}

.ho-rooms .wrap {
	width: min(var(--max), calc(100% - var(--pad) * 2));
	margin: 0 auto;
}

.ho-rooms.section {
	padding: clamp(48px, 6vw, 84px) 0;
}

.ho-rooms.section-soft {
	background: transparent;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.ho-rooms .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 22px;
}

.ho-rooms .kicker {
	margin: 0 0 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(13, 27, 20, 0.62);
	font-size: 12px;
}

@supports (color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-rooms .kicker {
		color: color-mix(in oklab, var(--brand-dark) 70%, var(--muted2));
	}
}

.ho-rooms .h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h2);
	letter-spacing: -0.6px;
	line-height: 1.18;
}

.ho-rooms .h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h3);
	letter-spacing: -0.2px;
	line-height: 1.25;
}

.ho-rooms .p {
	margin: 12px 0 0;
	font-size: var(--p);
	color: var(--muted);
}

.ho-rooms .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid var(--line);
	font-weight: 700;
	letter-spacing: 0.2px;
	background: var(--surface);
	box-shadow: 0 10px 22px rgba(13, 27, 20, 0.1);
	transition: transform 160ms var(--ease), background 200ms var(--ease), filter 200ms var(--ease),
		box-shadow 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
	user-select: none;
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-rooms .btn {
		border-color: color-mix(in oklab, var(--line) 85%, transparent);
	}
}

.ho-rooms .btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.02);
	box-shadow: 0 14px 28px rgba(13, 27, 20, 0.14);
}

.ho-rooms .btn-primary {
	background: var(--brand-dark);
	border-color: rgba(13, 77, 34, 0.4);
	color: #ffffff;
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-rooms .btn-primary {
		border-color: color-mix(in oklab, var(--brand-dark) 40%, var(--line));
	}
}

.ho-rooms .btn-ghost {
	background: transparent;
	border-color: rgba(13, 77, 34, 0.3);
	color: var(--brand-dark);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-rooms .btn-ghost {
		border-color: color-mix(in oklab, var(--brand-dark) 30%, var(--line));
	}
}

.ho-rooms .btn-ghost:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	color: #ffffff;
}

.ho-rooms .btn-block {
	width: 100%;
}

.ho-rooms .cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.ho-rooms .card {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
	display: grid;
}

.ho-rooms .card-media img {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.ho-rooms .card-body {
	padding: 16px;
	display: grid;
	gap: 12px;
}

.ho-rooms .card-top {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: baseline;
}

.ho-rooms .card-price {
	padding: 7px 10px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(245, 124, 32, 0.14);
	font-weight: 650;
	white-space: nowrap;
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-rooms .card-price {
		background: color-mix(in oklab, var(--brand-accent) 14%, white);
	}
}

.ho-rooms .card-price span {
	color: var(--muted2);
	font-weight: 600;
}

.ho-rooms .card-sub {
	color: var(--muted);
	font-size: 14.5px;
	margin-top: -4px;
}

@media (max-width: 980px) {
	.ho-rooms .cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	.ho-rooms .section-head {
		flex-direction: column;
		align-items: start;
	}
}

.ho-services {
	--surface: #ffffff;
	--surface2: #f1f4ef;
	--text: #0d1b14;
	--muted: rgba(13, 27, 20, 0.72);
	--muted2: rgba(13, 27, 20, 0.56);
	--line: rgba(13, 27, 20, 0.12);
	--brand-dark: #0d4d22;
	--brand-accent: #f57c20;
	--shadow: 0 10px 26px rgba(13, 27, 20, 0.1);
	--radius2: 12px;
	--max: 1180px;
	--font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	--pad: clamp(16px, 3.2vw, 28px);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--h2: clamp(28px, 3.2vw, 44px);
	--p: 16px;
	color: var(--text);
	font-family: var(--font-sans);
	background: transparent;
}

.ho-services .wrap {
	width: min(var(--max), calc(100% - var(--pad) * 2));
	margin: 0 auto;
}

.ho-services.section {
	padding: clamp(48px, 6vw, 84px) 0;
}

.ho-services .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 22px;
}

.ho-services .kicker {
	margin: 0 0 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(13, 27, 20, 0.62);
	font-size: 12px;
}

@supports (color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-services .kicker {
		color: color-mix(in oklab, var(--brand-dark) 70%, var(--muted2));
	}
}

.ho-services .h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h2);
	letter-spacing: -0.6px;
	line-height: 1.18;
}

.ho-services .p {
	margin: 12px 0 0;
	font-size: var(--p);
	color: var(--muted);
}

.ho-services .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid var(--line);
	font-weight: 700;
	letter-spacing: 0.2px;
	background: var(--surface);
	box-shadow: 0 10px 22px rgba(13, 27, 20, 0.1);
	transition: transform 160ms var(--ease), background 200ms var(--ease), filter 200ms var(--ease),
		box-shadow 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
	user-select: none;
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-services .btn {
		border-color: color-mix(in oklab, var(--line) 85%, transparent);
	}
}

.ho-services .btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.02);
	box-shadow: 0 14px 28px rgba(13, 27, 20, 0.14);
}

.ho-services .btn-ghost {
	background: transparent;
	border-color: rgba(13, 77, 34, 0.3);
	color: var(--brand-dark);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-services .btn-ghost {
		border-color: color-mix(in oklab, var(--brand-dark) 30%, var(--line));
	}
}

.ho-services .btn-ghost:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	color: #ffffff;
}

.ho-services .service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.ho-services .service {
	border-radius: var(--radius2);
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
	padding: 18px 14px;
	display: grid;
	justify-items: center;
	gap: 10px;
	text-align: center;
}

.ho-services .service img {
	opacity: 0.92;
}

.ho-services .service-title {
	font-weight: 650;
	letter-spacing: 0.2px;
	color: var(--text);
}

@media (max-width: 820px) {
	.ho-services .section-head {
		flex-direction: column;
		align-items: start;
	}
}

@media (max-width: 680px) {
	.ho-services .service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.ho-gallery {
	--surface: #ffffff;
	--surface2: #f1f4ef;
	--text: #0d1b14;
	--muted: rgba(13, 27, 20, 0.72);
	--muted2: rgba(13, 27, 20, 0.56);
	--line: rgba(13, 27, 20, 0.12);
	--brand-dark: #0d4d22;
	--shadow: 0 10px 26px rgba(13, 27, 20, 0.1);
	--radius2: 14px;
	--max: 1320px;
	--font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	--pad: clamp(16px, 3.2vw, 28px);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--h2: clamp(28px, 3.2vw, 44px);
	--p: 16px;
	--gap: 14px;
	--perview: 4;
	color: var(--text);
	font-family: var(--font-sans);
	background: transparent;
}

.ho-gallery .wrap {
	width: min(var(--max), calc(100% - var(--pad) * 2));
	margin: 0 auto;
}

.ho-gallery.section {
	padding: clamp(48px, 6vw, 84px) 0;
}

.ho-gallery.section-soft {
	background: var(--surface2);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.ho-gallery .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 22px;
}

.ho-gallery .kicker {
	margin: 0 0 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(13, 27, 20, 0.62);
	font-size: 12px;
}

@supports (color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-gallery .kicker {
		color: color-mix(in oklab, var(--brand-dark) 70%, var(--muted2));
	}
}

.ho-gallery .h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h2);
	letter-spacing: -0.6px;
	line-height: 1.18;
}

.ho-gallery .p {
	margin: 12px 0 0;
	font-size: var(--p);
	color: var(--muted);
}

.ho-gallery .gallery {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 12px;
}

.ho-gallery .ho-gallery-photo-link,
.ho-gallery .gallery > img {
	display: block;
	border-radius: var(--radius2);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	width: 100%;
	height: 100%;
	grid-column: span 4;
}

.ho-gallery .ho-gallery-photo-link img,
.ho-gallery .gallery > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	transform: translateZ(0);
	transition: transform 180ms var(--ease), filter 180ms var(--ease);
}

.ho-gallery .ho-gallery-photo-link:hover img {
	transform: scale(1.02);
	filter: saturate(1.02);
}

.ho-gallery .ho-gallery-photo-link:focus-visible {
	outline: 2px solid rgba(13, 77, 34, 0.38);
	outline-offset: 3px;
}

.ho-gallery .gallery > .ho-gallery-photo-link:nth-child(1),
.ho-gallery .gallery > .ho-gallery-photo-link:nth-child(2),
.ho-gallery .gallery > img:nth-child(1),
.ho-gallery .gallery > img:nth-child(2) {
	grid-column: span 6;
}

.ho-gallery .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid var(--line);
	font-weight: 700;
	letter-spacing: 0.2px;
	background: var(--surface);
	box-shadow: 0 10px 22px rgba(13, 27, 20, 0.1);
	transition: transform 160ms var(--ease), background 200ms var(--ease), filter 200ms var(--ease),
		box-shadow 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
	user-select: none;
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-gallery .btn {
		border-color: color-mix(in oklab, var(--line) 85%, transparent);
	}
}

.ho-gallery .btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.02);
	box-shadow: 0 14px 28px rgba(13, 27, 20, 0.14);
}

.ho-gallery .btn-ghost {
	background: transparent;
	border-color: rgba(13, 77, 34, 0.3);
	color: var(--brand-dark);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-gallery .btn-ghost {
		border-color: color-mix(in oklab, var(--brand-dark) 30%, var(--line));
	}
}

.ho-gallery .btn-ghost:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	color: #ffffff;
}

.ho-gallery .btn-primary {
	background: var(--brand-dark);
	border-color: rgba(13, 77, 34, 0.4);
	color: #ffffff;
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-gallery .btn-primary {
		border-color: color-mix(in oklab, var(--brand-dark) 40%, var(--line));
	}
}

.ho-gallery-slider {
	position: relative;
	display: grid;
	gap: 12px;
}

.ho-gallery-link {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: var(--radius2);
}

.ho-gallery-link:focus-visible {
	outline: 2px solid rgba(13, 77, 34, 0.38);
	outline-offset: 3px;
}

.ho-gallery-viewport {
	overflow-x: auto;
	overflow-y: hidden;
	border-radius: var(--radius2);
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.ho-gallery-viewport::-webkit-scrollbar {
	display: none;
}

.ho-gallery-track {
	display: flex;
	gap: var(--gap);
}

.ho-gallery-item {
	flex: 0 0 calc((100% - (var(--gap) * (var(--perview) - 1))) / var(--perview));
	min-width: 0;
	scroll-snap-align: start;
}

.ho-gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: var(--radius2);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.ho-gallery-arrow {
	position: absolute;
	top: calc(50% - 24px);
	width: 48px;
	height: 48px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 14px 28px rgba(13, 27, 20, 0.16);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(13, 27, 20, 0.86);
	transition: transform 160ms var(--ease), filter 200ms var(--ease), background 200ms var(--ease),
		border-color 200ms var(--ease), color 200ms var(--ease);
}

.ho-gallery-arrow svg {
	width: 22px;
	height: 22px;
}

.ho-gallery-arrow:hover,
.ho-gallery-arrow:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.02);
	outline: none;
}

.ho-gallery-arrow[data-dir="prev"] {
	left: -10px;
}

.ho-gallery-arrow[data-dir="next"] {
	right: -10px;
}

.ho-gallery-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.ho-gallery-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(13, 77, 34, 0.12);
	padding: 0;
	transition: transform 160ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}

.ho-gallery-dot[aria-current="true"] {
	background: var(--brand-dark);
	border-color: rgba(13, 77, 34, 0.5);
	transform: scale(1.08);
}

.ho-gallery-more {
	margin-top: 16px;
	display: flex;
	justify-content: center;
}

@media (max-width: 820px) {
	.ho-gallery .section-head {
		flex-direction: column;
		align-items: start;
	}

	.ho-gallery .ho-gallery-photo-link,
	.ho-gallery .gallery > img {
		grid-column: span 6;
	}

	.ho-gallery .gallery > .ho-gallery-photo-link:nth-child(1),
	.ho-gallery .gallery > .ho-gallery-photo-link:nth-child(2),
	.ho-gallery .gallery > img:nth-child(1),
	.ho-gallery .gallery > img:nth-child(2) {
		grid-column: span 12;
	}

	.ho-gallery-arrow[data-dir="prev"] {
		left: 8px;
	}

	.ho-gallery-arrow[data-dir="next"] {
		right: 8px;
	}
}

.ho-properties {
	--bg: #f6f5f0;
	--surface: #ffffff;
	--surface2: #f1f4ef;
	--text: #0d1b14;
	--muted: rgba(13, 27, 20, 0.72);
	--muted2: rgba(13, 27, 20, 0.56);
	--line: rgba(13, 27, 20, 0.12);
	--brand-dark: #0d4d22;
	--brand-primary: #1b7c2e;
	--brand-accent: #f57c20;
	--shadow: 0 10px 26px rgba(13, 27, 20, 0.1);
	--radius: 18px;
	--radius2: 12px;
	--max: 1180px;
	--font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	--pad: clamp(16px, 3.2vw, 28px);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--h2: clamp(28px, 3.2vw, 44px);
	--h3: clamp(18px, 1.6vw, 22px);
	--p: 16px;
	color: var(--text);
	font-family: var(--font-sans);
	background: transparent;
}

.ho-properties .wrap {
	width: min(var(--max), calc(100% - var(--pad) * 2));
	margin: 0 auto;
}

.ho-properties.section {
	padding: clamp(48px, 6vw, 84px) 0;
}

.ho-properties.section-soft {
	background: var(--bg);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.ho-properties .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 22px;
}

.ho-properties .kicker {
	margin: 0 0 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(13, 27, 20, 0.62);
	font-size: 12px;
}

@supports (color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-properties .kicker {
		color: color-mix(in oklab, var(--brand-dark) 70%, var(--muted2));
	}
}

.ho-properties .h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h2);
	letter-spacing: -0.6px;
	line-height: 1.18;
}

.ho-properties .h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h3);
	letter-spacing: -0.2px;
	line-height: 1.25;
}

.ho-properties .p {
	margin: 12px 0 0;
	font-size: var(--p);
	color: var(--muted);
}

.ho-properties .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid var(--line);
	font-weight: 700;
	letter-spacing: 0.2px;
	background: var(--surface);
	box-shadow: 0 10px 22px rgba(13, 27, 20, 0.1);
	transition: transform 160ms var(--ease), background 200ms var(--ease), filter 200ms var(--ease),
		box-shadow 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
	user-select: none;
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-properties .btn {
		border-color: color-mix(in oklab, var(--line) 85%, transparent);
	}
}

.ho-properties .btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.02);
	box-shadow: 0 14px 28px rgba(13, 27, 20, 0.14);
}

.ho-properties .btn-ghost {
	background: transparent;
	border-color: rgba(13, 77, 34, 0.3);
	color: var(--brand-dark);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-properties .btn-ghost {
		border-color: color-mix(in oklab, var(--brand-dark) 30%, var(--line));
	}
}

.ho-properties .btn-ghost:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	color: #ffffff;
}

.ho-properties .cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 32px);
}

.ho-properties .card {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
	display: grid;
}

.ho-properties .card-media img {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.ho-properties .card-body {
	padding: 16px;
	display: grid;
	gap: 12px;
}

.ho-properties .card-top {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: baseline;
}

.ho-properties .card-price {
	padding: 7px 10px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(245, 124, 32, 0.14);
	font-weight: 650;
	white-space: nowrap;
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-properties .card-price {
		background: color-mix(in oklab, var(--brand-accent) 14%, white);
	}
}

.ho-properties .card-sub {
	color: var(--muted);
	font-size: 14.5px;
	margin-top: -4px;
}

.ho-properties .hotel-details {
	margin-top: 12px;
	display: grid;
	gap: 8px;
	font-size: 14.5px;
}

.ho-properties .hotel-address {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.ho-properties .detail-ic {
	width: 30px;
	height: 30px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	color: var(--brand-primary);
	border: 1px solid rgba(13, 27, 20, 0.12);
	background: rgba(27, 124, 46, 0.1);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-properties .detail-ic {
		border-color: color-mix(in oklab, var(--line) 85%, transparent);
	}
}

.ho-properties .detail-ic svg {
	width: 16px;
	height: 16px;
	display: block;
}

.ho-properties .detail-item {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

.ho-properties .detail-label {
	font-weight: 600;
	color: var(--muted2);
	min-width: 50px;
}

.ho-properties .detail-item a {
	color: var(--brand-dark);
	font-weight: 500;
	text-decoration: underline;
	text-decoration-color: rgba(13, 77, 34, 0.2);
	text-underline-offset: 3px;
	transition: text-decoration-color 160ms var(--ease);
}

@supports (text-decoration-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-properties .detail-item a {
		text-decoration-color: color-mix(in oklab, var(--brand-dark) 20%, transparent);
	}
}

.ho-properties .detail-item a:hover {
	text-decoration-color: var(--brand-dark);
}

.ho-properties .hotel-map {
	margin-top: 16px;
	border-radius: var(--radius2);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface2);
}

.ho-properties .hotel-map iframe {
	display: block;
	background: var(--surface2);
}

@media (max-width: 980px) {
	.ho-properties .cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	.ho-properties .section-head {
		flex-direction: column;
		align-items: start;
	}
}

.ho-hero {
	--bg: #f6f5f0;
	--surface: #ffffff;
	--surface2: #f1f4ef;
	--text: #0d1b14;
	--muted: rgba(13, 27, 20, 0.72);
	--muted2: rgba(13, 27, 20, 0.56);
	--line: rgba(13, 27, 20, 0.12);
	--brand-dark: #0d4d22;
	--brand-primary: #1b7c2e;
	--brand-accent: #f57c20;
	--shadow: 0 10px 26px rgba(13, 27, 20, 0.1);
	--radius: 18px;
	--radius2: 12px;
	--max: 1180px;
	--font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	--pad: clamp(16px, 3.2vw, 28px);
	--gap: clamp(14px, 2.4vw, 26px);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--h1: clamp(38px, 4.2vw, 62px);
	color: var(--text);
	font-family: var(--font-sans);
}

.ho-hero .wrap {
	width: min(var(--max), calc(100% - var(--pad) * 2));
	margin: 0 auto;
}

.ho-hero.page-hero {
	padding: clamp(34px, 4.6vw, 62px) 0;
	border-bottom: 1px solid var(--line);
	background: radial-gradient(980px 520px at 10% -10%, rgba(245, 124, 32, 0.16), transparent 60%),
		radial-gradient(980px 520px at 90% 0%, rgba(27, 124, 46, 0.18), transparent 62%),
		linear-gradient(180deg, rgba(13, 77, 34, 0.08), transparent 360px), var(--bg);
}

.ho-hero .page-hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: var(--gap);
	align-items: center;
}

.ho-hero .page-hero-panel {
	padding: 18px;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--shadow);
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-hero .page-hero-panel {
		background: color-mix(in oklab, var(--surface) 82%, white 18%);
	}
}

.ho-hero .page-hero-copy {
	min-width: 0;
}

.ho-hero .kicker {
	margin: 0 0 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(13, 27, 20, 0.62);
	font-size: 12px;
}

@supports (color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-hero .kicker {
		color: color-mix(in oklab, var(--brand-dark) 70%, var(--muted2));
	}
}

.ho-hero .page-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h1);
	letter-spacing: -0.8px;
	line-height: 1.06;
	max-width: 20ch;
}

.ho-hero .page-lead {
	margin: 14px 0 0;
	color: var(--muted);
	max-width: 68ch;
	font-size: 17px;
}

.ho-hero .pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.ho-hero .pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 999px;
	border: 1px solid rgba(13, 27, 20, 0.18);
	background: rgba(255, 255, 255, 0.82);
	color: var(--text);
	font-weight: 550;
	font-size: 13px;
}

.ho-hero .pill svg,
.ho-hero .btn svg {
	flex: 0 0 auto;
	display: block;
}

.ho-hero .pill.pill-light {
	border-color: rgba(27, 124, 46, 0.2);
	background: rgba(27, 124, 46, 0.06);
	box-shadow: 0 10px 20px rgba(13, 27, 20, 0.06);
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-hero .pill.pill-light {
		border-color: color-mix(in oklab, var(--brand-primary) 20%, rgba(13, 27, 20, 0.22));
		background: color-mix(in oklab, white 90%, rgba(27, 124, 46, 0.1) 10%);
	}
}

.ho-hero .hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

.ho-hero .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid rgba(13, 27, 20, 0.12);
	font-weight: 700;
	letter-spacing: 0.2px;
	background: var(--surface);
	box-shadow: 0 10px 22px rgba(13, 27, 20, 0.1);
	transition: transform 160ms var(--ease), background 200ms var(--ease), filter 200ms var(--ease),
		box-shadow 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
	user-select: none;
	text-decoration: none;
	color: inherit;
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-hero .btn {
		border-color: color-mix(in oklab, var(--line) 85%, transparent);
	}
}

.ho-hero .btn:hover,
.ho-hero .btn:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.02);
	box-shadow: 0 14px 28px rgba(13, 27, 20, 0.14);
	outline: none;
}

.ho-hero .btn-primary {
	background: var(--brand-dark);
	color: #ffffff;
	border-color: rgba(13, 27, 20, 0.14);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-hero .btn-primary {
		border-color: color-mix(in oklab, var(--brand-dark) 40%, var(--line));
	}
}

.ho-hero .btn-ghost {
	background: transparent;
	border-color: rgba(13, 77, 34, 0.3);
	color: var(--brand-dark);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-hero .btn-ghost {
		border-color: color-mix(in oklab, var(--brand-dark) 30%, var(--line));
	}
}

.ho-hero .btn-ghost:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	color: #ffffff;
}

.ho-hero .media-card {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.ho-hero .page-hero-media {
	aspect-ratio: 16 / 9;
}

.ho-hero .media-card img {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center;
	display: block;
}

@media (max-width: 980px) {
	.ho-hero .page-hero-grid {
		grid-template-columns: 1fr;
	}

	.ho-hero .page-hero-panel {
		padding: 16px;
	}

	.ho-hero .page-hero-media {
		aspect-ratio: 16 / 10;
	}
}

.ho-hero.ho-wedding {
	--bg: #f8f6f1;
	--surface2: #f3f1ea;
	--text: #1b1417;
	--muted: rgba(27, 20, 23, 0.72);
	--muted2: rgba(27, 20, 23, 0.56);
	--line: rgba(61, 31, 43, 0.14);
	--brand-dark: #3d1f2b;
	--brand-primary: #8b2f55;
	--brand-accent: #c9a15a;
	color: var(--text);
}

.ho-hero.ho-wedding.page-hero {
	background: radial-gradient(980px 520px at 12% -10%, rgba(201, 161, 90, 0.2), transparent 60%),
		radial-gradient(980px 520px at 92% 0%, rgba(47, 107, 87, 0.18), transparent 62%),
		linear-gradient(180deg, rgba(61, 31, 43, 0.08), transparent 380px), var(--bg);
	border-bottom-color: rgba(61, 31, 43, 0.14);
}

@supports (border-bottom-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-hero.ho-wedding.page-hero {
		border-bottom-color: color-mix(in oklab, var(--line) 82%, rgba(61, 31, 43, 0.06));
	}
}

.ho-hero.ho-wedding .kicker {
	color: rgba(61, 31, 43, 0.62);
}

@supports (color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-hero.ho-wedding .kicker {
		color: color-mix(in oklab, var(--brand-dark) 78%, var(--muted2));
	}
}

.ho-hero.ho-wedding .page-title {
	text-shadow: 0 18px 34px rgba(61, 31, 43, 0.12);
}

.ho-hero.ho-wedding .page-hero-panel {
	border-color: rgba(139, 47, 85, 0.22);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 22px 60px rgba(61, 31, 43, 0.18);
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-hero.ho-wedding .page-hero-panel {
		border-color: color-mix(in oklab, var(--brand-primary) 22%, var(--line));
		background: color-mix(in oklab, var(--surface) 78%, white 22%);
	}
}

.ho-hero.ho-wedding .page-hero-media {
	border-color: rgba(139, 47, 85, 0.16);
	box-shadow: 0 18px 50px rgba(61, 31, 43, 0.16);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-hero.ho-wedding .page-hero-media {
		border-color: color-mix(in oklab, var(--brand-primary) 16%, var(--line));
	}
}

.ho-hero.ho-wedding .page-hero-media img {
	filter: saturate(1.08) contrast(1.03);
}

.ho-hero.ho-wedding .pill.pill-light {
	border-color: rgba(201, 161, 90, 0.18);
	background: rgba(47, 107, 87, 0.08);
	box-shadow: 0 10px 20px rgba(61, 31, 43, 0.08);
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-hero.ho-wedding .pill.pill-light {
		border-color: color-mix(in oklab, var(--brand-accent) 18%, var(--line));
		background: color-mix(in oklab, white 86%, rgba(47, 107, 87, 0.08) 14%);
	}
}

.ho-hero.ho-wedding .pill svg,
.ho-hero.ho-wedding .btn svg {
	flex: 0 0 auto;
}

.ho-hero.ho-about .page-title {
	font-size: clamp(34px, 3.8vw, 54px);
	max-width: 22ch;
}

.ho-hero.ho-gallery .page-title {
	max-width: 18ch;
}

.ho-hero.ho-gallery .pill-row {
	margin-top: 14px;
}

.ho-hero.ho-about .pill.pill-light {
	background: rgba(245, 124, 32, 0.1);
	border-color: rgba(245, 124, 32, 0.2);
	box-shadow: 0 8px 16px rgba(13, 27, 20, 0.05);
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-hero.ho-about .pill.pill-light {
		background: color-mix(in oklab, white 88%, rgba(245, 124, 32, 0.1) 12%);
		border-color: color-mix(in oklab, var(--brand-accent) 22%, rgba(13, 27, 20, 0.14));
	}
}

.ho-welcome {
	--bg: #f6f5f0;
	--surface: #ffffff;
	--surface2: #f1f4ef;
	--text: #0d1b14;
	--muted: rgba(13, 27, 20, 0.72);
	--muted2: rgba(13, 27, 20, 0.56);
	--line: rgba(13, 27, 20, 0.12);
	--brand-dark: #0d4d22;
	--brand-primary: #1b7c2e;
	--brand-accent: #f57c20;
	--shadow: 0 10px 26px rgba(13, 27, 20, 0.1);
	--radius: 18px;
	--radius2: 12px;
	--max: 1180px;
	--font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	--pad: clamp(16px, 3.2vw, 28px);
	--gap: clamp(14px, 2.4vw, 26px);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--h2: clamp(28px, 3.2vw, 44px);
	--p: 16px;
	color: var(--text);
	font-family: var(--font-sans);
	background: transparent;
}

.ho-welcome .wrap {
	width: min(var(--max), calc(100% - var(--pad) * 2));
	margin: 0 auto;
}

.ho-welcome.section {
	padding: clamp(36px, 4.4vw, 64px) 0;
	background: linear-gradient(180deg, rgba(13, 77, 34, 0.04), transparent 320px), var(--bg);
}

.ho-welcome .split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap);
	align-items: center;
}

.ho-welcome .media-card {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.ho-welcome .media-card img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.ho-welcome .content {
	min-width: 0;
}

.ho-welcome .kicker {
	margin: 0 0 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(13, 27, 20, 0.62);
	font-size: 12px;
}

@supports (color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-welcome .kicker {
		color: color-mix(in oklab, var(--brand-dark) 78%, var(--muted2));
	}
}

.ho-welcome .h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h2);
	letter-spacing: -0.6px;
	line-height: 1.18;
	max-width: 22ch;
}

.ho-welcome .p {
	margin: 12px 0 0;
	font-size: var(--p);
	color: var(--muted);
}

.ho-welcome .feature-list {
	margin-top: 18px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

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

.ho-welcome .feature {
	padding: 16px;
	border-radius: var(--radius2);
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.ho-welcome .feature-title {
	font-weight: 650;
	letter-spacing: 0.2px;
}

.ho-welcome .feature-desc {
	margin-top: 6px;
	color: var(--muted);
	font-size: 14.5px;
}

@media (max-width: 980px) {
	.ho-welcome .split {
		grid-template-columns: 1fr;
	}

	.ho-welcome .feature-list-2 {
		grid-template-columns: 1fr;
	}
}

.ho-home-about {
	--bg: #f6f5f0;
	--surface: #ffffff;
	--surface2: #f1f4ef;
	--text: #0d1b14;
	--muted: rgba(13, 27, 20, 0.72);
	--muted2: rgba(13, 27, 20, 0.56);
	--line: rgba(13, 27, 20, 0.12);
	--brand-dark: #0d4d22;
	--brand-primary: #1b7c2e;
	--brand-accent: #f57c20;
	--shadow: 0 10px 26px rgba(13, 27, 20, 0.1);
	--radius: 18px;
	--radius2: 12px;
	--max: 1180px;
	--font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	--pad: clamp(16px, 3.2vw, 28px);
	--gap: clamp(14px, 2.4vw, 26px);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--h2: clamp(28px, 3.2vw, 44px);
	--p: 16px;
	color: var(--text);
	font-family: var(--font-sans);
	background: transparent;
}

.ho-home-about .wrap {
	width: min(var(--max), calc(100% - var(--pad) * 2));
	margin: 0 auto;
}

.ho-home-about.section {
	padding: clamp(48px, 6vw, 84px) 0;
}

.ho-home-about .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 22px;
}

.ho-home-about .kicker {
	margin: 0 0 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(13, 27, 20, 0.62);
	font-size: 12px;
}

@supports (color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-home-about .kicker {
		color: color-mix(in oklab, var(--brand-dark) 70%, var(--muted2));
	}
}

.ho-home-about .h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h2);
	letter-spacing: -0.6px;
	line-height: 1.18;
	max-width: 22ch;
}

.ho-home-about .p {
	margin: 12px 0 0;
	font-size: var(--p);
	color: var(--muted);
	max-width: 72ch;
}

.ho-home-about .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid var(--line);
	font-weight: 700;
	letter-spacing: 0.2px;
	background: var(--surface);
	box-shadow: 0 10px 22px rgba(13, 27, 20, 0.1);
	transition: transform 160ms var(--ease), background 200ms var(--ease), filter 200ms var(--ease),
		box-shadow 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
	user-select: none;
	text-decoration: none;
	color: inherit;
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-home-about .btn {
		border-color: color-mix(in oklab, var(--line) 85%, transparent);
	}
}

.ho-home-about .btn:hover,
.ho-home-about .btn:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.02);
	box-shadow: 0 14px 28px rgba(13, 27, 20, 0.14);
	outline: none;
}

.ho-home-about .btn-primary {
	background: var(--brand-dark);
	color: #ffffff;
	border-color: rgba(13, 27, 20, 0.14);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-home-about .btn-primary {
		border-color: color-mix(in oklab, var(--brand-dark) 40%, var(--line));
	}
}

.ho-home-about .btn-ghost {
	background: transparent;
	border-color: rgba(13, 77, 34, 0.3);
	color: var(--brand-dark);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-home-about .btn-ghost {
		border-color: color-mix(in oklab, var(--brand-dark) 30%, var(--line));
	}
}

.ho-home-about .btn-ghost:hover,
.ho-home-about .btn-ghost:focus-visible {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	color: #ffffff;
}

.ho-home-about .pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.ho-home-about .pill {
	display: inline-flex;
	align-items: center;
	padding: 9px 12px;
	border-radius: 999px;
	border: 1px solid rgba(13, 27, 20, 0.14);
	background: rgba(255, 255, 255, 0.92);
	color: rgba(13, 27, 20, 0.86);
	font-weight: 650;
	font-size: 13px;
	letter-spacing: 0.1px;
	white-space: nowrap;
}

.ho-home-about .pill.pill-light {
	border-color: rgba(27, 124, 46, 0.2);
	background: rgba(27, 124, 46, 0.06);
	color: var(--text);
	box-shadow: 0 10px 20px rgba(13, 27, 20, 0.06);
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-home-about .pill.pill-light {
		border-color: color-mix(in oklab, var(--brand-primary) 20%, rgba(13, 27, 20, 0.22));
		background: color-mix(in oklab, white 90%, rgba(27, 124, 46, 0.1) 10%);
	}
}

.ho-home-about .home-about-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: var(--gap);
	align-items: start;
}

.ho-home-about .home-about-panel {
	padding: clamp(16px, 2.2vw, 22px);
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--shadow);
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-home-about .home-about-panel {
		background: color-mix(in oklab, var(--surface) 86%, white 14%);
	}
}

.ho-home-about .home-about-panel .pill-row {
	margin-top: 0;
}

.ho-home-about .home-about-panel .feature-list {
	margin-top: 14px;
}

.ho-home-about .home-about-actions {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ho-home-about .home-about-actions .btn {
	padding-left: 26px;
	padding-right: 26px;
}

.ho-home-about .media-card {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.ho-home-about .media-card img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.ho-home-about .home-about-media {
	position: relative;
}

.ho-home-about .home-about-media.media-card img {
	aspect-ratio: 4 / 5;
}

.ho-home-about .home-about-caption {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	padding: 10px 12px;
	border-radius: 999px;
	border: 1px solid rgba(13, 27, 20, 0.12);
	background: rgba(255, 255, 255, 0.92);
	color: var(--text);
	font-weight: 750;
	text-align: center;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-home-about .home-about-caption {
		border-color: color-mix(in oklab, var(--line) 82%, transparent);
		background: color-mix(in oklab, white 86%, var(--surface2) 14%);
	}
}

.ho-home-about .feature-list {
	margin-top: 18px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.ho-home-about .feature-list-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ho-home-about .feature {
	padding: 16px;
	border-radius: var(--radius2);
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.ho-home-about .feature-head {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ho-home-about .feature-icon {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: rgba(27, 124, 46, 0.1);
	color: var(--brand-primary);
	display: grid;
	place-items: center;
	flex: 0 0 auto;
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-home-about .feature-icon {
		background: color-mix(in oklab, white 88%, var(--brand-primary) 12%);
		border-color: color-mix(in oklab, var(--brand-primary) 18%, var(--line));
	}
}

.ho-home-about .feature-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.ho-home-about .feature-title {
	font-weight: 650;
	letter-spacing: 0.2px;
}

.ho-home-about .feature-desc {
	margin-top: 6px;
	color: var(--muted);
	font-size: 14.5px;
}

@media (max-width: 980px) {
	.ho-home-about .home-about-grid {
		grid-template-columns: 1fr;
	}

	.ho-home-about .feature-list-2 {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	.ho-home-about .section-head {
		flex-direction: column;
		align-items: start;
	}
}

.ho-temple-about {
	--bg: #f8f6f1;
	--surface: #ffffff;
	--surface2: #f3f1ea;
	--text: #1b1417;
	--muted: rgba(27, 20, 23, 0.72);
	--muted2: rgba(27, 20, 23, 0.56);
	--line: rgba(61, 31, 43, 0.14);
	--brand-dark: #3d1f2b;
	--brand-primary: #8b2f55;
	--brand-accent: #c9a15a;
	--shadow: 0 18px 46px rgba(61, 31, 43, 0.12);
	--radius: 18px;
	--radius2: 12px;
	--max: 1180px;
	--font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	--pad: clamp(16px, 3.2vw, 28px);
	--gap: clamp(14px, 2.4vw, 26px);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--h2: clamp(28px, 3.2vw, 44px);
	--p: 16px;
	color: var(--text);
	font-family: var(--font-sans);
	background: transparent;
}

.ho-temple-about .wrap {
	width: min(var(--max), calc(100% - var(--pad) * 2));
	margin: 0 auto;
}

.ho-temple-about.section {
	padding: clamp(40px, 5vw, 72px) 0;
}

.ho-temple-about .split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap);
	align-items: center;
}

.ho-temple-about .media-card {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.ho-temple-about .media-card img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.ho-temple-about .content {
	min-width: 0;
}

.ho-temple-about .kicker {
	margin: 0 0 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(61, 31, 43, 0.62);
	font-size: 12px;
}

@supports (color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-temple-about .kicker {
		color: color-mix(in oklab, var(--brand-dark) 78%, var(--muted2));
	}
}

.ho-temple-about .h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h2);
	letter-spacing: -0.6px;
	line-height: 1.18;
}

.ho-temple-about .p {
	margin: 12px 0 0;
	font-size: var(--p);
	color: var(--muted);
}

.ho-temple-about .feature-list {
	margin-top: 18px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.ho-temple-about .feature-list-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ho-temple-about .feature {
	padding: 16px;
	border-radius: var(--radius2);
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.ho-temple-about .feature-head {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ho-temple-about .feature-icon {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: rgba(139, 47, 85, 0.08);
	color: var(--brand-primary);
	display: grid;
	place-items: center;
	flex: 0 0 auto;
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-temple-about .feature-icon {
		background: color-mix(in oklab, white 88%, var(--brand-primary) 12%);
		border-color: color-mix(in oklab, var(--brand-primary) 18%, var(--line));
	}
}

.ho-temple-about .feature-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.ho-temple-about .feature-title {
	font-weight: 650;
	letter-spacing: 0.2px;
}

.ho-temple-about .feature-desc {
	margin-top: 6px;
	color: var(--muted);
	font-size: 14.5px;
}

@media (max-width: 980px) {
	.ho-temple-about .split {
		grid-template-columns: 1fr;
	}

	.ho-temple-about .feature-list-2 {
		grid-template-columns: 1fr;
	}
}

.ho-plan-day {
	--bg: #f8f6f1;
	--surface: #ffffff;
	--surface2: #f3f1ea;
	--wedding-sage: #2f6b57;
	--wedding-mist: #edf2f0;
	--text: #1b1417;
	--muted: rgba(27, 20, 23, 0.72);
	--muted2: rgba(27, 20, 23, 0.56);
	--line: rgba(61, 31, 43, 0.14);
	--brand-dark: #3d1f2b;
	--brand-primary: #8b2f55;
	--brand-accent: #c9a15a;
	--shadow: 0 18px 46px rgba(61, 31, 43, 0.12);
	--radius: 18px;
	--radius2: 12px;
	--max: 1180px;
	--font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	--pad: clamp(16px, 3.2vw, 28px);
	--gap: clamp(14px, 2.4vw, 26px);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--h2: clamp(28px, 3.2vw, 44px);
	--p: 16px;
	color: var(--text);
	font-family: var(--font-sans);
	background: transparent;
}

.ho-plan-day .wrap {
	width: min(var(--max), calc(100% - var(--pad) * 2));
	margin: 0 auto;
}

.ho-plan-day.section {
	padding: clamp(40px, 5vw, 72px) 0;
}

.ho-plan-day.section-soft {
	background: radial-gradient(980px 520px at 10% 0%, rgba(47, 107, 87, 0.1), transparent 60%),
		linear-gradient(180deg, rgba(201, 161, 90, 0.08), transparent 240px), var(--wedding-mist);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

@supports (border-top-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-plan-day.section-soft {
		border-top-color: color-mix(in oklab, var(--line) 82%, rgba(61, 31, 43, 0.06));
		border-bottom-color: color-mix(in oklab, var(--line) 82%, rgba(61, 31, 43, 0.06));
	}
}

.ho-plan-day .split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap);
	align-items: center;
}

.ho-plan-day .media-card {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.ho-plan-day .media-card img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.ho-plan-day .content {
	min-width: 0;
}

.ho-plan-day .kicker {
	margin: 0 0 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(61, 31, 43, 0.62);
	font-size: 12px;
}

@supports (color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-plan-day .kicker {
		color: color-mix(in oklab, var(--brand-dark) 78%, var(--muted2));
	}
}

.ho-plan-day .h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h2);
	letter-spacing: -0.6px;
	line-height: 1.18;
}

.ho-plan-day .p {
	margin: 12px 0 0;
	font-size: var(--p);
	color: var(--muted);
}

.ho-plan-day .feature-list {
	margin-top: 18px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.ho-plan-day .feature-list-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ho-plan-day .feature {
	padding: 16px;
	border-radius: var(--radius2);
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.ho-plan-day .feature-head {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ho-plan-day .feature-icon {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: rgba(139, 47, 85, 0.08);
	color: var(--brand-primary);
	display: grid;
	place-items: center;
	flex: 0 0 auto;
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-plan-day .feature-icon {
		background: color-mix(in oklab, white 88%, var(--brand-primary) 12%);
		border-color: color-mix(in oklab, var(--brand-primary) 18%, var(--line));
	}
}

.ho-plan-day .feature-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.ho-plan-day .feature-title {
	font-weight: 650;
	letter-spacing: 0.2px;
}

.ho-plan-day .feature-desc {
	margin-top: 6px;
	color: var(--muted);
	font-size: 14.5px;
}

.ho-plan-day .cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.ho-plan-day .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid rgba(61, 31, 43, 0.14);
	font-weight: 700;
	letter-spacing: 0.2px;
	background: var(--surface);
	box-shadow: 0 10px 22px rgba(61, 31, 43, 0.12);
	transition: transform 160ms var(--ease), background 200ms var(--ease), filter 200ms var(--ease),
		box-shadow 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
	user-select: none;
	text-decoration: none;
	color: inherit;
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-plan-day .btn {
		border-color: color-mix(in oklab, var(--line) 85%, transparent);
	}
}

.ho-plan-day .btn:hover,
.ho-plan-day .btn:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.02);
	box-shadow: 0 14px 28px rgba(61, 31, 43, 0.18);
	outline: none;
}

.ho-plan-day .btn-primary {
	background: var(--brand-dark);
	color: #ffffff;
	border-color: rgba(61, 31, 43, 0.22);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-plan-day .btn-primary {
		border-color: color-mix(in oklab, var(--brand-dark) 40%, var(--line));
	}
}

.ho-plan-day .btn-ghost {
	background: transparent;
	border-color: rgba(61, 31, 43, 0.28);
	color: var(--brand-dark);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-plan-day .btn-ghost {
		border-color: color-mix(in oklab, var(--brand-dark) 30%, var(--line));
	}
}

.ho-plan-day .btn-ghost:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	color: #ffffff;
}

.ho-plan-day .btn-ic {
	display: inline-flex;
}

.ho-plan-day .btn-ic svg {
	width: 16px;
	height: 16px;
	display: block;
}

@media (max-width: 980px) {
	.ho-plan-day .split {
		grid-template-columns: 1fr;
	}

	.ho-plan-day .feature-list-2 {
		grid-template-columns: 1fr;
	}
}

.ho-get-in-touch {
	--bg: #f6f5f0;
	--surface: #ffffff;
	--surface2: #f1f4ef;
	--text: #0d1b14;
	--muted: rgba(13, 27, 20, 0.72);
	--muted2: rgba(13, 27, 20, 0.56);
	--line: rgba(13, 27, 20, 0.12);
	--brand-dark: #0d4d22;
	--brand-primary: #1b7c2e;
	--brand-accent: #f57c20;
	--shadow: 0 10px 26px rgba(13, 27, 20, 0.1);
	--radius: 18px;
	--radius2: 12px;
	--max: 1180px;
	--font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	--pad: clamp(16px, 3.2vw, 28px);
	--gap: clamp(14px, 2.4vw, 26px);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--h2: clamp(28px, 3.2vw, 44px);
	--p: 16px;
	color: var(--text);
	font-family: var(--font-sans);
	background: transparent;
}

.ho-get-in-touch .wrap {
	width: min(var(--max), calc(100% - var(--pad) * 2));
	margin: 0 auto;
}

.ho-get-in-touch.section {
	padding: clamp(48px, 6vw, 84px) 0;
}

.ho-get-in-touch.section-soft.contact-soft {
	border-top: none;
	border-bottom: none;
	background: #ffffff;
}

.ho-get-in-touch .kicker {
	margin: 0 0 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(13, 27, 20, 0.62);
	font-size: 12px;
}

@supports (color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-get-in-touch .kicker {
		color: color-mix(in oklab, var(--brand-dark) 70%, var(--muted2));
	}
}

.ho-get-in-touch .h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h2);
	letter-spacing: -0.6px;
	line-height: 1.18;
}

.ho-get-in-touch .p {
	margin: 12px 0 0;
	font-size: var(--p);
	color: var(--muted);
}

.ho-get-in-touch .contact-hub {
	position: relative;
	border-radius: calc(var(--radius) + 8px);
	border: 1px solid rgba(13, 27, 20, 0.12);
	background: #ffffff;
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	padding: clamp(16px, 2.2vw, 22px);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-get-in-touch .contact-hub {
		border-color: color-mix(in oklab, var(--line) 86%, transparent);
	}
}

.ho-get-in-touch .contact-hub-head {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid rgba(13, 27, 20, 0.12);
}

@supports (border-bottom-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-get-in-touch .contact-hub-head {
		border-bottom-color: color-mix(in oklab, var(--line) 86%, transparent);
	}
}

.ho-get-in-touch .contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ho-get-in-touch .contact-action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 999px;
	border: 1px solid rgba(13, 27, 20, 0.12);
	background: rgba(27, 124, 46, 0.08);
	color: var(--text);
	font-weight: 700;
	text-decoration: none;
	transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-get-in-touch .contact-action {
		border-color: color-mix(in oklab, var(--line) 86%, transparent);
		background: color-mix(in oklab, #ffffff 88%, rgba(27, 124, 46, 0.08) 12%);
	}
}

.ho-get-in-touch .contact-action svg {
	width: 16px;
	height: 16px;
	display: block;
	fill: none;
}

.ho-get-in-touch .contact-action:hover,
.ho-get-in-touch .contact-action:focus-visible {
	outline: none;
	transform: translateY(-1px);
	border-color: rgba(27, 124, 46, 0.22);
	background: rgba(245, 124, 32, 0.12);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-get-in-touch .contact-action:hover,
	.ho-get-in-touch .contact-action:focus-visible {
		border-color: color-mix(in oklab, var(--brand-primary) 32%, var(--line));
		background: color-mix(in oklab, #ffffff 82%, rgba(245, 124, 32, 0.14) 18%);
	}
}

.ho-get-in-touch .contact-hub-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: var(--gap);
	align-items: start;
}

.ho-get-in-touch .contact-hub-grid.is-single {
	grid-template-columns: 1fr;
}

.ho-get-in-touch .contact-panel {
	border-radius: var(--radius);
	border: 1px solid rgba(13, 27, 20, 0.12);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
	padding: 16px;
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-get-in-touch .contact-panel {
		border-color: color-mix(in oklab, var(--line) 86%, transparent);
		background: color-mix(in oklab, var(--surface) 88%, #ffffff 12%);
	}
}

.ho-get-in-touch .contact-panel .contact-card {
	box-shadow: none;
	background: rgba(255, 255, 255, 0.98);
}

@supports (background: color-mix(in oklab, #000 50%, #fff)) {
	.ho-get-in-touch .contact-panel .contact-card {
		background: color-mix(in oklab, var(--surface) 92%, var(--surface2) 8%);
	}
}

.ho-get-in-touch .contact-panel .hotel-map {
	margin-top: 12px;
}

.ho-get-in-touch .contact-cards {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.ho-get-in-touch .contact-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px;
	border-radius: var(--radius2);
	border: 1px solid var(--line);
	background: var(--surface);
	transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
	text-decoration: none;
	color: inherit;
}

.ho-get-in-touch .contact-card:hover,
.ho-get-in-touch .contact-card:focus-visible {
	outline: none;
	transform: translateY(-1px);
	box-shadow: 0 18px 34px rgba(13, 27, 20, 0.14);
}

@supports (border-color: color-mix(in oklab, #000 50%, #fff)) {
	.ho-get-in-touch .contact-card:hover,
	.ho-get-in-touch .contact-card:focus-visible {
		border-color: color-mix(in oklab, var(--brand-primary) 30%, var(--line));
	}
}

.ho-get-in-touch .contact-ic {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.92);
	background: radial-gradient(22px 22px at 30% 28%, rgba(245, 124, 32, 0.85), transparent 62%),
		radial-gradient(22px 22px at 75% 74%, rgba(27, 124, 46, 0.9), transparent 60%),
		linear-gradient(180deg, rgba(13, 77, 34, 0.88), rgba(7, 34, 20, 0.96));
	box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.ho-get-in-touch .contact-ic svg {
	width: 18px;
	height: 18px;
	display: block;
	fill: none;
}

.ho-get-in-touch .contact-card-body {
	min-width: 0;
}

.ho-get-in-touch .contact-label {
	color: var(--muted2);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
}

.ho-get-in-touch .contact-value {
	margin-top: 8px;
	font-weight: 650;
	word-break: break-word;
}

.ho-get-in-touch .hotel-map {
	margin-top: 16px;
	border-radius: var(--radius2);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface2);
}

.ho-get-in-touch .hotel-map iframe {
	display: block;
	background: var(--surface2);
}

@media (max-width: 920px) {
	.ho-get-in-touch .contact-hub-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.ho-get-in-touch .contact-hub-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.ho-get-in-touch .contact-cards {
		grid-template-columns: 1fr;
	}
}

.ho-room-cards {
	width: 100%;
}

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

.ho-room-card {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.ho-room-media {
	position: relative;
	min-height: 260px;
}

.ho-room-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ho-room-body {
	padding: 22px 22px 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ho-room-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.ho-room-title {
	margin: 0;
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.ho-room-price {
	text-align: right;
	white-space: nowrap;
}

.ho-room-price-amount {
	display: block;
	font-size: 20px;
	font-weight: 800;
	color: #0f6b3f;
	line-height: 1.15;
}

.ho-room-price-suffix {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: rgba(15, 23, 42, 0.55);
	letter-spacing: 0.02em;
	margin-top: 3px;
}

.ho-room-desc {
	font-size: 14px;
	color: rgba(15, 23, 42, 0.75);
}

.ho-room-desc p {
	margin: 0 0 10px;
}

.ho-room-desc p:last-child {
	margin-bottom: 0;
}

.ho-room-btn {
	margin-top: auto;
	align-self: flex-start;
}

.entry-title {
	margin: 0 0 12px;
}

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

@media (max-width: 860px) {
	.site-header {
		z-index: 9999;
	}

	.ho-room-grid {
		grid-template-columns: 1fr;
	}

	.ho-room-card {
		grid-template-columns: 1fr;
	}

	.ho-room-media {
		min-height: 220px;
	}

	.topbar-inner {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		padding: 8px 0;
	}

	.topbar--hide-mobile {
		display: none;
	}

	.header-inner {
		position: relative;
		padding: 10px 0;
		min-height: 64px;
		gap: 12px;
	}

	.header-brand {
		min-width: 0;
	}

	.brand-logo-img {
		max-height: min(var(--header-logo-height, 44px), 90px);
		max-width: min(var(--header-logo-width, 180px), 280px);
	}
}

@media (max-width: 520px) {
}

.site-footer {
	padding: 56px 0 26px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(90deg, var(--footer-bg-start, #06361f) 0%, var(--footer-bg-mid, var(--footer-bg-start, #06361f)) 70%, var(--footer-bg-end, #2a5b22) 100%);
	color: var(--footer-text, #ffffff);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@supports (color: color-mix(in oklab, #000 50%, #fff)) {
	.site-footer {
		border-top: 1px solid color-mix(in oklab, var(--footer-text, #ffffff) 18%, transparent);
	}
}

.site-footer::before {
	content: none;
	pointer-events: none;
}

.site-footer::after {
	content: none;
	pointer-events: none;
}

.site-footer a {
	color: inherit;
	text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--footer-text, #ffffff);
	outline: none;
}

.footer-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.35fr 0.9fr 0.9fr 1.1fr;
	gap: 28px;
	align-items: start;
	padding: 18px 0 26px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	border-bottom-color: color-mix(in srgb, var(--footer-text, #ffffff) 14%, transparent);
}

.footer-col {
	display: grid;
	gap: 12px;
	min-width: 0;
}

.footer-brand-title {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 18px;
	color: var(--footer-text, #ffffff);
}

.footer-desc {
	color: var(--footer-muted, #b9d0c6);
	font-size: 14.5px;
	line-height: 1.7;
	max-width: 420px;
}

.footer-heading {
	color: var(--footer-muted, #b9d0c6);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
}

.footer-links {
	display: grid;
	gap: 8px;
}

.footer-links a {
	color: var(--footer-muted, #b9d0c6);
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	transition: color 200ms var(--ease), transform 200ms var(--ease), opacity 200ms var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible {
	color: var(--footer-text, #ffffff);
	outline: none;
	transform: translateX(1px);
}

.footer-logo-img {
	display: block;
	width: auto;
	height: auto;
	max-height: 54px;
	max-width: 260px;
}

.footer-desc p {
	margin: 0;
}

.footer-social {
	margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.footer-social-link {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	color: var(--footer-text, #ffffff);
	transition: background 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease), border-color 200ms var(--ease);
}

.footer-social-link {
	border-color: color-mix(in srgb, var(--footer-text, #ffffff) 18%, transparent);
	background: color-mix(in srgb, var(--footer-text, #ffffff) 6%, transparent);
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
	background: color-mix(in srgb, var(--footer-accent, #f57c20) 14%, transparent);
	border-color: color-mix(in srgb, var(--footer-accent, #f57c20) 28%, transparent);
	outline: none;
	color: var(--footer-text, #ffffff);
	transform: translateY(-1px);
}

.footer-contact {
	display: grid;
	gap: 10px;
}

.footer-contact-item {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 10px;
	align-items: start;
	color: var(--footer-muted, #b9d0c6);
	font-weight: 600;
}

.footer-contact-item:hover,
.footer-contact-item:focus-visible {
	outline: none;
	color: var(--footer-text, #ffffff);
}

.footer-icon {
	color: var(--footer-accent, #f57c20);
	transform: translateY(1px);
}

.footer-contact-text {
	color: inherit;
	font-weight: 600;
	line-height: 1.55;
}

.footer-bottom {
	position: relative;
	z-index: 1;
	padding-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: space-between;
	color: var(--footer-muted, #b9d0c6);
	font-size: 13.5px;
}

.footer-bottom-links {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.footer-bottom-links a {
	color: var(--footer-muted, #b9d0c6);
	font-weight: 600;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
	color: var(--footer-text, #ffffff);
	outline: none;
}

@media (max-width: 980px) {
	.footer-inner {
		grid-template-columns: 1.2fr 1fr;
		gap: 22px;
	}
}

@media (max-width: 820px) {
	.footer-inner {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		justify-content: start;
	}
}

.ho-abc-animated-headline {
	--surface: #ffffff;
	--text: #0d1b14;
	--muted: rgba(13, 27, 20, 0.72);
	--line: rgba(13, 27, 20, 0.12);
	--brand-dark: #0d4d22;
	--brand-accent: #f57c20;
	--max: 1180px;
	--font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	--pad: clamp(16px, 3.2vw, 28px);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	color: var(--text);
	font-family: var(--font-sans);
	background: transparent;
}

.ho-abc-animated-headline .wrap {
	width: min(var(--max), calc(100% - var(--pad) * 2));
	margin: 0 auto;
}

.ho-abc-animated-headline.section {
	padding: clamp(34px, 4.5vw, 68px) 0;
}

.ho-abc-animated-headline--align-left .ho-ah-inner {
	text-align: left;
}

.ho-abc-animated-headline--align-center .ho-ah-inner {
	text-align: center;
}

.ho-abc-animated-headline--align-right .ho-ah-inner {
	text-align: right;
}

.ho-ah-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(26px, 3vw, 42px);
	line-height: 1.15;
	letter-spacing: -0.5px;
}

.ho-ah-title-text {
	position: relative;
	display: inline-block;
}

.ho-ah-title-text::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 3px;
	border-radius: 999px;
	background: var(--brand-accent);
	transform-origin: left;
	transform: scaleX(0);
}

.ho-ah-desc {
	margin: 18px 0 0;
	font-size: 16px;
	color: var(--muted);
	line-height: 1.7;
}

.ho-abc-animated-headline.is-animated .ho-ah-title {
	animation: hoAhFadeUp 800ms var(--ease) both;
}

.ho-abc-animated-headline.is-animated .ho-ah-desc {
	animation: hoAhFadeUp 900ms var(--ease) both;
	animation-delay: 80ms;
}

.ho-abc-animated-headline.is-animated .ho-ah-title-text::after {
	animation: hoAhUnderline 900ms var(--ease) both;
	animation-delay: 160ms;
}

@keyframes hoAhFadeUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hoAhUnderline {
	from {
		transform: scaleX(0);
		opacity: 0.2;
	}
	to {
		transform: scaleX(1);
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ho-abc-animated-headline.is-animated .ho-ah-title,
	.ho-abc-animated-headline.is-animated .ho-ah-desc,
	.ho-abc-animated-headline.is-animated .ho-ah-title-text::after {
		animation: none;
	}

	.ho-ah-title-text::after {
		transform: scaleX(1);
	}
}

.ho-blogs {
	--surface: #ffffff;
	--surface2: #f1f4ef;
	--text: #0d1b14;
	--muted: rgba(13, 27, 20, 0.72);
	--muted2: rgba(13, 27, 20, 0.56);
	--line: rgba(13, 27, 20, 0.12);
	--brand-dark: #0d4d22;
	--brand-accent: #f57c20;
	--shadow: 0 10px 26px rgba(13, 27, 20, 0.1);
	--radius: 18px;
	--radius2: 12px;
	--max: 1180px;
	--font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	--pad: clamp(16px, 3.2vw, 28px);
	--gap: clamp(12px, 2.4vw, 18px);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	color: var(--text);
	font-family: var(--font-sans);
	background: transparent;
}

.ho-blogs .wrap {
	width: min(var(--max), calc(100% - var(--pad) * 2));
	margin: 0 auto;
}

.ho-blogs.section {
	padding: clamp(40px, 5vw, 72px) 0;
}

.ho-blogs .blog-grid {
	display: grid;
	grid-template-columns: repeat(var(--cols, 1), minmax(0, 1fr));
	gap: var(--gap);
	margin-top: 18px;
}

.ho-blogs .blog-card {
	display: grid;
	grid-template-columns: 1fr;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
	text-decoration: none;
	color: inherit;
	transition: transform 160ms var(--ease), filter 200ms var(--ease), box-shadow 200ms var(--ease);
}

.ho-blogs .blog-card:hover {
	transform: translateY(-1px);
	filter: brightness(1.01);
	box-shadow: 0 14px 28px rgba(13, 27, 20, 0.14);
}

.ho-blogs .blog-media img {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}

.ho-blogs .blog-body {
	padding: 16px;
	display: grid;
	gap: 10px;
}

.ho-blogs .blog-meta {
	font-size: 13px;
	font-weight: 650;
	color: var(--muted2);
}

.ho-blogs .blog-title {
	font-family: var(--font-display);
	font-weight: 760;
	letter-spacing: -0.2px;
	font-size: 20px;
	line-height: 1.2;
}

.ho-blogs .blog-excerpt {
	color: var(--muted);
	font-size: 14.5px;
}

.ho-blogs .blog-read {
	margin-top: 2px;
	justify-self: start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(13, 27, 20, 0.12);
	font-weight: 750;
	letter-spacing: 0.2px;
	background: transparent;
	color: var(--brand-dark);
	box-shadow: 0 10px 22px rgba(13, 27, 20, 0.08);
}

.ho-blogs .blog-card:hover .blog-read {
	background: var(--brand-dark);
	border-color: rgba(13, 77, 34, 0.4);
	color: #ffffff;
}

.ho-blogs .blog-empty {
	margin-top: 18px;
	padding: 14px 16px;
	border-radius: var(--radius2);
	border: 1px solid var(--line);
	background: rgba(27, 124, 46, 0.06);
	font-weight: 650;
}

.ho-blogs .ho-pagination {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ho-blogs .ho-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--surface);
	color: rgba(13, 27, 20, 0.86);
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(13, 27, 20, 0.1);
}

.ho-blogs .ho-pagination .page-numbers.current {
	background: var(--brand-dark);
	border-color: rgba(13, 77, 34, 0.4);
	color: #ffffff;
}

.ho-blogs .ho-pagination .page-numbers:hover {
	transform: translateY(-1px);
}

@media (max-width: 980px) {
	.ho-blogs .blog-grid {
		grid-template-columns: 1fr;
	}
}

body.single-post .site-content {
	padding: 36px 0 64px;
	background: radial-gradient(980px 520px at 10% 0%, rgba(27, 124, 46, 0.1), transparent 60%),
		radial-gradient(820px 460px at 92% 14%, rgba(245, 124, 32, 0.1), transparent 62%),
		linear-gradient(180deg, rgba(245, 124, 32, 0.06), transparent 260px), #f1f4ef;
	border-top: 1px solid rgba(13, 27, 20, 0.12);
	border-bottom: 1px solid rgba(13, 27, 20, 0.12);
}

body.single-post .site-content > .container.site-content-inner {
	max-width: 1280px;
}

.ho-post {
	--surface: #ffffff;
	--surface2: #f6f7f5;
	--text: #0d1b14;
	--muted: rgba(13, 27, 20, 0.72);
	--muted2: rgba(13, 27, 20, 0.56);
	--line: rgba(13, 27, 20, 0.12);
	--brand-dark: #0d4d22;
	--brand-accent: #f57c20;
	--shadow: 0 10px 26px rgba(13, 27, 20, 0.1);
	--radius: 18px;
	--radius2: 12px;
	--gap: clamp(16px, 2.8vw, 28px);
	color: var(--text);
}

.ho-post-hero {
	margin-bottom: var(--gap);
}

.ho-post-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: var(--gap);
	align-items: center;
}

.ho-post-hero-copy {
	min-width: 0;
}

.ho-post-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.9);
	color: var(--brand-dark);
	font-weight: 750;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(13, 27, 20, 0.08);
}

.ho-post-back:hover,
.ho-post-back:focus-visible {
	background: #ffffff;
	transform: translateY(-1px);
	outline: none;
}

.ho-post-hero-title {
	margin: 16px 0 10px;
	font-family: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	font-size: clamp(28px, 3.3vw, 46px);
	letter-spacing: -0.6px;
	line-height: 1.12;
}

.ho-post-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	color: var(--muted);
	font-weight: 650;
	font-size: 14px;
}

.ho-post-author-avatar {
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--surface2);
}

.ho-post-hero-date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.ho-post-hero-media {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface2);
	box-shadow: 0 14px 30px rgba(13, 27, 20, 0.14);
	transform: rotate(1deg);
	transform-origin: 50% 50%;
}

.ho-post-hero-media img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.ho-post-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: var(--gap);
	align-items: start;
}

.ho-post-article {
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
	padding: clamp(18px, 2.4vw, 26px);
}

.ho-post-header {
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--line);
}

.ho-post-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	font-size: 13px;
	color: var(--muted2);
	font-weight: 650;
}

.ho-post-breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.ho-post-breadcrumb a:hover,
.ho-post-breadcrumb a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
	outline: none;
}

.ho-post-cats {
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ho-post-cat {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(245, 124, 32, 0.12);
	color: var(--text);
	font-weight: 750;
	font-size: 12px;
	text-decoration: none;
}

.ho-post-cat:hover {
	filter: brightness(1.03);
}

.ho-post-title {
	margin: 14px 0 10px;
	font-family: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	font-size: clamp(28px, 3.3vw, 46px);
	letter-spacing: -0.6px;
	line-height: 1.12;
}

.ho-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	color: var(--muted);
	font-weight: 650;
	font-size: 14px;
}

.ho-post-featured {
	margin: 16px 0 18px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface2);
}

.ho-post-featured img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.ho-post-content {
	font-size: 16px;
	line-height: 1.85;
	color: rgba(13, 27, 20, 0.88);
}

.ho-post-content h2,
.ho-post-content h3,
.ho-post-content h4 {
	color: var(--text);
	line-height: 1.25;
	margin: 1.4em 0 0.6em;
	font-family: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	letter-spacing: -0.2px;
	scroll-margin-top: 110px;
}

.ho-post-toc-nav {
	margin-top: 6px;
}

.ho-post-toc-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.ho-post-toc-item a {
	display: block;
	padding: 9px 10px;
	border-radius: 14px;
	border: 1px solid transparent;
	background: transparent;
	color: rgba(13, 27, 20, 0.86);
	text-decoration: none;
	font-weight: 650;
	font-size: 14px;
	line-height: 1.35;
}

.ho-post-toc-item.level-3 a {
	padding-left: 18px;
}

.ho-post-toc-item a:hover,
.ho-post-toc-item a:focus-visible {
	background: rgba(2, 132, 72, 0.08);
	border-color: rgba(13, 27, 20, 0.12);
	color: var(--brand-dark);
	outline: none;
}

.ho-post-content h2 {
	font-size: 28px;
}

.ho-post-content h3 {
	font-size: 22px;
}

.ho-post-content p {
	margin: 0 0 1.1em;
}

.ho-post-content a {
	color: var(--brand-dark);
	font-weight: 650;
	text-decoration: underline;
	text-decoration-color: rgba(13, 77, 34, 0.22);
	text-underline-offset: 3px;
}

.ho-post-content ul,
.ho-post-content ol {
	padding-left: 1.15em;
	margin: 0 0 1.1em;
}

.ho-post-content li {
	margin: 0.35em 0;
}

.ho-post-content blockquote {
	margin: 1.2em 0;
	padding: 14px 16px;
	border-radius: var(--radius2);
	border: 1px solid var(--line);
	background: rgba(27, 124, 46, 0.06);
	color: rgba(13, 27, 20, 0.9);
}

.ho-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 14px;
}

.ho-post-tags {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}

.ho-post-tag {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--surface2);
	color: rgba(13, 27, 20, 0.86);
	text-decoration: none;
	font-weight: 700;
	font-size: 12px;
}

.ho-post-tag:hover {
	background: var(--surface);
}

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

.ho-post-nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 16px;
	border-radius: 999px;
	border: 1px solid var(--line);
	font-weight: 750;
	letter-spacing: 0.2px;
	background: transparent;
	color: var(--brand-dark);
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(13, 27, 20, 0.08);
}

.ho-post-nav a:hover {
	background: var(--brand-dark);
	border-color: rgba(13, 77, 34, 0.4);
	color: #ffffff;
	transform: translateY(-1px);
}

.ho-post-aside {
	display: grid;
	gap: 14px;
	position: sticky;
	top: 110px;
}

.ho-post-card {
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
	padding: 16px;
}

.ho-post-card-title {
	font-family: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	font-weight: 760;
	letter-spacing: -0.2px;
	font-size: 18px;
	margin-bottom: 10px;
}

.ho-post-search form {
	display: flex;
	gap: 10px;
	align-items: center;
}

.ho-post-search input[type="search"] {
	flex: 1;
	min-width: 0;
	border-radius: 999px;
	border: 1px solid var(--line);
	padding: 11px 14px;
	font-weight: 600;
}

.ho-post-search input[type="submit"] {
	border-radius: 999px;
	border: 1px solid rgba(13, 77, 34, 0.4);
	background: var(--brand-dark);
	color: #ffffff;
	padding: 11px 14px;
	font-weight: 750;
	cursor: pointer;
}

.ho-post-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.ho-post-list a {
	color: rgba(13, 27, 20, 0.88);
	text-decoration: none;
	font-weight: 650;
}

.ho-post-list a:hover,
.ho-post-list a:focus-visible {
	color: var(--brand-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
	outline: none;
}

.ho-post-pages {
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ho-post-pages a,
.ho-post-pages span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--surface);
	font-weight: 750;
	text-decoration: none;
	color: rgba(13, 27, 20, 0.86);
}

@media (max-width: 980px) {
	.ho-post-hero-grid {
		grid-template-columns: 1fr;
	}

	.ho-post-hero-media {
		transform: rotate(0.6deg);
	}

	.ho-post-grid {
		grid-template-columns: 1fr;
	}

	.ho-post-aside {
		position: static;
		top: auto;
	}

	.ho-post-nav {
		grid-template-columns: 1fr;
	}
}

.ho-google-reviews {
	--surface: #ffffff;
	--surface2: #f1f4ef;
	--text: #0d1b14;
	--muted: rgba(13, 27, 20, 0.72);
	--muted2: rgba(13, 27, 20, 0.56);
	--line: rgba(13, 27, 20, 0.12);
	--brand-dark: #0d4d22;
	--shadow: 0 10px 26px rgba(13, 27, 20, 0.1);
	--radius: 18px;
	--radius2: 14px;
	--max: 1320px;
	--pad: clamp(16px, 3.2vw, 28px);
	--ho-gr-gap: 16px;
	color: var(--text);
	font-family: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.ho-google-reviews.section {
	padding: clamp(48px, 6vw, 84px) 0;
}

.ho-google-reviews .wrap {
	width: min(var(--max), calc(100% - var(--pad) * 2));
	margin: 0 auto;
}

.ho-google-reviews .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 22px;
}

.ho-google-reviews .h2 {
	margin: 0;
	font-family: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	font-size: clamp(28px, 3.2vw, 44px);
	letter-spacing: -0.6px;
	line-height: 1.18;
}

.ho-gr-grid {
	display: grid;
	grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.ho-gr-summary {
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
	padding: 18px;
	display: grid;
	gap: 12px;
}

.ho-gr-summary-title {
	font-weight: 750;
	letter-spacing: -0.2px;
}

.ho-gr-summary-rating {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ho-gr-score {
	font-weight: 850;
	font-size: 36px;
	line-height: 1;
}

.ho-gr-stars {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #fbbf24;
}

.ho-gr-star {
	display: inline-flex;
	width: 18px;
	height: 18px;
	color: rgba(251, 191, 36, 0.28);
}

.ho-gr-star svg {
	width: 100%;
	height: 100%;
	display: block;
}

.ho-gr-star--full {
	color: #fbbf24;
}

.ho-gr-star--half {
	color: #fbbf24;
	opacity: 0.62;
}

.ho-gr-summary-sub {
	color: var(--muted);
	font-weight: 650;
}

.ho-gr-summary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border-radius: 999px;
	border: 1px solid rgba(13, 77, 34, 0.4);
	background: var(--brand-dark);
	color: #ffffff;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(13, 27, 20, 0.1);
	transition: transform 160ms ease, filter 200ms ease;
}

.ho-gr-summary-btn:hover,
.ho-gr-summary-btn:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.02);
	outline: none;
}

.ho-gr-slider {
	position: relative;
}

.ho-gr-viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	border-radius: var(--radius2);
}

.ho-gr-viewport::-webkit-scrollbar {
	display: none;
}

.ho-gr-track {
	display: flex;
	gap: var(--ho-gr-gap);
	padding: 2px 6px 6px;
}

.ho-gr-card {
	flex: 0 0 320px;
	min-width: 0;
	scroll-snap-align: start;
	border-radius: var(--radius2);
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
	padding: 14px;
	display: grid;
	gap: 10px;
}

.ho-gr-card-head {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 22px;
	gap: 10px;
	align-items: center;
}

.ho-gr-avatar {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: rgba(13, 77, 34, 0.12);
	color: var(--brand-dark);
	font-weight: 900;
}

.ho-gr-card-meta {
	min-width: 0;
	display: grid;
	gap: 2px;
}

.ho-gr-name {
	font-weight: 750;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ho-gr-time {
	color: var(--muted);
	font-size: 12.5px;
	font-weight: 650;
}

.ho-gr-google {
	display: grid;
	place-items: center;
	color: rgba(13, 27, 20, 0.62);
}

.ho-gr-google svg {
	width: 18px;
	height: 18px;
	display: block;
}

.ho-gr-card-stars .ho-gr-stars {
	gap: 3px;
}

.ho-gr-text {
	color: rgba(13, 27, 20, 0.84);
	line-height: 1.45;
	font-weight: 550;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ho-gr-more {
	color: var(--brand-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 750;
	font-size: 13px;
}

.ho-gr-arrow {
	position: absolute;
	top: calc(50% - 24px);
	width: 48px;
	height: 48px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 14px 28px rgba(13, 27, 20, 0.16);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(13, 27, 20, 0.86);
	cursor: pointer;
	transition: transform 160ms ease, filter 200ms ease;
}

.ho-gr-arrow svg {
	width: 22px;
	height: 22px;
	display: block;
}

.ho-gr-arrow:disabled {
	opacity: 0.4;
	cursor: default;
	transform: none;
	filter: none;
}

.ho-gr-arrow:hover,
.ho-gr-arrow:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.02);
	outline: none;
}

.ho-gr-arrow[data-ho-gr-dir="prev"] {
	left: -10px;
}

.ho-gr-arrow[data-ho-gr-dir="next"] {
	right: -10px;
}

.ho-google-reviews--empty,
.ho-gr-empty {
	border-radius: var(--radius);
	border: 1px dashed rgba(13, 27, 20, 0.22);
	padding: 16px;
	color: rgba(13, 27, 20, 0.7);
	font-weight: 650;
	background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 980px) {
	.ho-gr-grid {
		grid-template-columns: 1fr;
	}
}

/* --- New Mobile Responsive Header Implementation --- */
:root {
  --bg: #f6f5f0;
  --surface: #ffffff;
  --surface2: #f1f4ef;
  --text: #0d1b14;
  --muted: rgba(13, 27, 20, 0.72);
  --muted2: rgba(13, 27, 20, 0.56);
  --line: rgba(13, 27, 20, 0.12);
  --brand-dark: #0d4d22;
  --brand-primary: #1b7c2e;
  --brand-accent: #f57c20;
  --accent: var(--brand-primary);
  --accent2: var(--brand-accent);
  --shadow: 0 10px 26px rgba(13, 27, 20, 0.1);
  --radius: 18px;
  --radius2: 12px;
  --max: 1180px;
  --font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
  --pad: clamp(16px, 3.2vw, 28px);
  --gap: clamp(14px, 2.4vw, 26px);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

body {
  background: linear-gradient(180deg, rgba(13, 77, 34, 0.06), transparent 360px), var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.topbar {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
}

.topbar-left,
.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255, 255, 255, 0.9);
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 260px;
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 0;
  object-fit: contain;
  box-shadow: none;
}

.site-header .header-panel.nav {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.site-header .header-panel-brand {
  display: none;
}

.site-header .nav-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.1vw, 18px);
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .nav-links ul li a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-header .nav-links ul li a:hover,
.site-header .nav-links ul li a:focus-visible {
  background: rgba(27, 124, 46, 0.1);
  color: var(--text);
  outline: none;
}

.site-header .nav-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-header .nav-actions .btn {
  padding: 10px 16px;
  box-shadow: none;
}

.site-header .nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header .nav-toggle-btn {
  display: none;
  position: relative;
  z-index: 10000;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  padding: 12px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.nav-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--line) 85%, transparent);
  font-weight: 700;
  letter-spacing: 0.2px;
  background: var(--surface);
  box-shadow: 0 10px 22px rgba(13, 27, 20, 0.1);
  transition: transform 160ms var(--ease), background 200ms var(--ease), filter 200ms var(--ease),
    box-shadow 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
  user-select: none;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 14px 28px rgba(13, 27, 20, 0.14);
}

.btn-primary {
  background: var(--brand-dark);
  border-color: color-mix(in oklab, var(--brand-dark) 40%, var(--line));
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  border-color: color-mix(in oklab, var(--brand-dark) 30%, var(--line));
  color: var(--brand-dark);
}

.btn-ghost:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #ffffff;
}

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: start;
  }

  .site-header .nav-toggle-btn {
    display: inline-flex;
    color: #28622F;
  }

  .site-header .header-panel.nav {
    position: fixed;
    inset: 0;
    display: grid;
    gap: 10px;
    width: 100vw;
    height: 100vh;
    padding: 84px 0 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 260ms var(--ease);
    pointer-events: none;
    visibility: hidden;
    grid-template-columns: 1fr;
    overflow: auto;
    z-index: 9998;
  }

  .site-header .header-panel-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 var(--pad);
  }

  .site-header .nav-links ul {
    display: grid;
    gap: 0;
    justify-content: stretch;
    justify-items: start;
    padding: 10px var(--pad) 0;
    flex-direction: column;
  }
  
  .site-header .nav-links ul li {
    width: 100%;
  }

  .site-header .nav-links ul li a {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    justify-content: flex-start;
    text-align: left;
    font-weight: 650;
    color: var(--text);
  }

  .site-header .nav-links ul li a:hover,
  .site-header .nav-links ul li a:focus-visible {
    background: transparent;
  }

  .site-header .nav-links ul li:last-child a {
    border-bottom: none;
  }

  .site-header .nav-toggle:checked ~ .header-panel.nav {
    transform: translateY(0) !important;
    pointer-events: auto;
    visibility: visible;
  }

  .site-header .nav-actions {
    width: 100%;
    display: grid;
    gap: 10px;
    padding: 10px var(--pad) 18px;
  }

  .site-header .nav-actions .btn {
    width: 100%;
  }
}

/* Missing Global Styles from Reference */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 999;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.skip:focus {
  left: 12px;
}
