:root {
	--hrt-botanical: #253b2a;
	--hrt-forest: #1d3022;
	--hrt-sage: #76806b;
	--hrt-ivory: #f7f3ec;
	--hrt-sand: #d6c7af;
	--hrt-gold: #b3935d;
	--hrt-charcoal: #262822;
	--hrt-stone: #e9e3d9;
	--hrt-white: #ffffff;
	--hrt-serif: "Cormorant Garamond", Georgia, serif;
	--hrt-sans: "Manrope", "DM Sans", Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.hrt-site {
	background: var(--hrt-ivory);
	color: var(--hrt-charcoal);
	font-family: var(--hrt-sans);
	margin: 0;
}

.hrt-container {
	margin: 0 auto;
	max-width: 1240px;
	padding-left: clamp(20px, 5vw, 64px);
	padding-right: clamp(20px, 5vw, 64px);
}

.hrt-skip-link {
	background: var(--hrt-gold);
	color: var(--hrt-forest);
	left: 16px;
	padding: 10px 14px;
	position: absolute;
	top: -60px;
	z-index: 9999;
}

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

.hrt-header {
	background: rgba(247, 243, 236, 0.94);
	border-bottom: 1px solid rgba(37, 59, 42, 0.14);
	position: sticky;
	top: 0;
	z-index: 50;
}

.hrt-header__inner {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: auto 1fr auto auto;
	min-height: 78px;
}

.hrt-brand {
	align-items: center;
	color: var(--hrt-charcoal);
	display: flex;
	gap: 12px;
	text-decoration: none;
}

.hrt-brand__mark {
	align-items: center;
	background: var(--hrt-botanical);
	color: var(--hrt-ivory);
	display: inline-flex;
	font-family: var(--hrt-serif);
	font-weight: 700;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.hrt-brand strong {
	display: block;
	font-family: var(--hrt-serif);
	font-size: 20px;
	line-height: 1;
}

.hrt-brand small {
	color: rgba(38, 40, 34, 0.66);
	display: block;
	font-size: 12px;
	margin-top: 4px;
}

.hrt-menu,
.hrt-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hrt-menu a,
.hrt-footer-menu a {
	color: inherit;
	text-decoration: none;
}

.hrt-nav {
	justify-self: end;
}

.hrt-button,
.elementor .hrt-button {
	background: var(--hrt-botanical);
	border: 0;
	color: var(--hrt-white);
	cursor: pointer;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	justify-content: center;
	letter-spacing: .04em;
	min-height: 48px;
	padding: 13px 20px;
	text-decoration: none;
	text-transform: uppercase;
}

.hrt-button:hover,
.hrt-button:focus {
	background: var(--hrt-forest);
	color: var(--hrt-white);
}

.hrt-button--small {
	min-height: 42px;
	padding: 10px 16px;
}

.hrt-menu-toggle {
	background: transparent;
	border: 1px solid rgba(37, 59, 42, 0.22);
	color: var(--hrt-botanical);
	cursor: pointer;
	display: none;
	font-weight: 800;
	min-height: 42px;
	padding: 8px 12px;
}

.hrt-mobile-menu {
	background: var(--hrt-white);
	border-top: 1px solid rgba(37, 59, 42, 0.12);
	padding: 20px;
}

.hrt-mobile-menu .hrt-menu {
	display: grid;
	gap: 14px;
	margin-bottom: 18px;
}

.hrt-main {
	min-height: 60vh;
}

.hrt-content {
	padding-bottom: clamp(70px, 9vw, 120px);
	padding-top: clamp(70px, 9vw, 120px);
}

.hrt-entry-header h1,
.hrt-content h1,
.hrt-content h2,
.hrt-content h3 {
	font-family: var(--hrt-serif);
	letter-spacing: 0;
	line-height: 1.05;
}

.hrt-entry-header h1 {
	font-size: clamp(44px, 7vw, 86px);
}

.hrt-footer {
	background: var(--hrt-botanical);
	color: var(--hrt-ivory);
	padding: 56px 0;
}

.hrt-footer__grid {
	display: grid;
	gap: 36px;
	grid-template-columns: 1.2fr 1fr 1fr;
}

.hrt-footer strong {
	display: block;
	font-family: var(--hrt-serif);
	font-size: 32px;
	margin-bottom: 14px;
}

.hrt-footer a {
	color: var(--hrt-ivory);
}

.hrt-footer p {
	color: rgba(247, 243, 236, 0.78);
}

.hrt-booking-form,
.hrt-card,
.hrt-admin-card {
	background: var(--hrt-white);
	border: 1px solid rgba(37, 59, 42, 0.12);
	box-shadow: 0 18px 48px rgba(29, 48, 34, 0.08);
}

@media (max-width: 1100px) {
	.hrt-header__inner {
		grid-template-columns: 1fr auto;
	}

	.hrt-nav,
	.hrt-header .hrt-button--small {
		display: none;
	}

	.hrt-menu-toggle {
		display: inline-flex;
	}

	.hrt-footer__grid {
		grid-template-columns: 1fr;
	}
}

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

