/* ==========================================================================
   Herbaceous Living — theme styles
   Palette derived from the brand logo: charcoal #414042, green #00A14B,
   blue #064F93 — warmed with cream and sand tones.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
	--hl-cream: #fbf7ef;
	--hl-sand: #f2ebdd;
	--hl-sand-deep: #e6dcc8;
	--hl-paper: #ffffff;

	--hl-ink: #23302a;
	--hl-ink-soft: #4c5952;
	--hl-ink-mute: #77837c;

	--hl-forest: #123c28;
	--hl-forest-deep: #0c2a1c;
	--hl-green: #1f7a4c;
	--hl-green-bright: #00a14b;
	--hl-blue: #064f93;
	--hl-clay: #b8683c;

	--hl-line: rgba(35, 48, 42, 0.12);
	--hl-line-soft: rgba(35, 48, 42, 0.07);

	--hl-font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
	--hl-font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--hl-shadow-sm: 0 1px 2px rgba(18, 60, 40, 0.06), 0 2px 8px rgba(18, 60, 40, 0.05);
	--hl-shadow-md: 0 4px 12px rgba(18, 60, 40, 0.08), 0 12px 32px rgba(18, 60, 40, 0.08);
	--hl-shadow-lg: 0 12px 28px rgba(18, 60, 40, 0.12), 0 32px 64px rgba(18, 60, 40, 0.12);

	--hl-radius: 6px;
	--hl-radius-lg: 16px;
	--hl-radius-xl: 26px;

	--hl-wrap: 1200px;
	--hl-wrap-narrow: 720px;
	--hl-gutter: clamp(1.25rem, 4vw, 3rem);
	--hl-header-h: 86px;

	--hl-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--hl-flip-speed: 0.7s;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

body {
	margin: 0;
	background: var(--hl-cream);
	color: var(--hl-ink);
	font-family: var(--hl-font-body);
	font-size: 1.0625rem;
	line-height: 1.7;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--hl-font-display);
	color: var(--hl-forest);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.015em;
	margin: 0 0 0.6em;
	font-variation-settings: "SOFT" 0, "WONK" 0;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.3em; }
p:last-child { margin-bottom: 0; }

a {
	color: var(--hl-green);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	transition: color 0.2s var(--hl-ease);
}
a:hover { color: var(--hl-forest); }

:focus-visible {
	outline: 2px solid var(--hl-green-bright);
	outline-offset: 3px;
	border-radius: 3px;
}

hr {
	border: 0;
	height: 1px;
	background: var(--hl-line);
	margin: 3rem 0;
}

blockquote {
	margin: 2rem 0;
	padding: 0.4rem 0 0.4rem 1.6rem;
	border-left: 3px solid var(--hl-green-bright);
	font-family: var(--hl-font-display);
	font-size: 1.2rem;
	font-style: italic;
	color: var(--hl-forest);
}

code, pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.9em;
	background: var(--hl-sand);
	border-radius: 4px;
}
code { padding: 0.15em 0.4em; }
pre { padding: 1rem 1.2rem; overflow-x: auto; }

table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	font-size: 0.97rem;
}
th, td { padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--hl-line); text-align: left; }
th { font-weight: 700; color: var(--hl-forest); }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.hl-wrap {
	width: 100%;
	max-width: var(--hl-wrap);
	margin-inline: auto;
	padding-inline: var(--hl-gutter);
}

.hl-wrap--narrow { max-width: var(--hl-wrap-narrow); }
.hl-wrap--wide { max-width: 1440px; }

.hl-section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.hl-section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.hl-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--hl-forest);
	color: #fff;
	padding: 0.8rem 1.4rem;
	border-radius: 0 0 var(--hl-radius) 0;
	text-decoration: none;
}
.hl-skip-link:focus { left: 0; color: #fff; }

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	width: auto;
	padding: 0.8rem 1.2rem;
	background: #fff;
	z-index: 100000;
}

/* --------------------------------------------------------------------------
   4. Buttons & small UI
   -------------------------------------------------------------------------- */
.hl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.85rem 1.7rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--hl-font-body);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s var(--hl-ease), background-color 0.2s var(--hl-ease),
		color 0.2s var(--hl-ease), border-color 0.2s var(--hl-ease), box-shadow 0.2s var(--hl-ease);
}
.hl-btn:hover { transform: translateY(-2px); }
.hl-btn:active { transform: translateY(0); }

.hl-btn--primary {
	background: var(--hl-forest);
	color: #fff;
	box-shadow: var(--hl-shadow-sm);
}
.hl-btn--primary:hover { background: var(--hl-green); color: #fff; box-shadow: var(--hl-shadow-md); }

.hl-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
}
.hl-btn--ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: #fff; }

.hl-btn--outline {
	background: transparent;
	color: var(--hl-forest);
	border-color: var(--hl-line);
}
.hl-btn--outline:hover { background: var(--hl-forest); color: #fff; border-color: var(--hl-forest); }

.hl-btn--sm { padding: 0.6rem 1.2rem; font-size: 0.78rem; }

.hl-eyebrow {
	display: inline-block;
	font-family: var(--hl-font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--hl-green);
	margin-bottom: 1rem;
}
.hl-eyebrow--light { color: rgba(255, 255, 255, 0.85); }

.hl-leaf-rule {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	margin: 1.2rem auto 0;
	max-width: 220px;
	color: var(--hl-green-bright);
}
.hl-leaf-rule::before,
.hl-leaf-rule::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--hl-sand-deep), transparent);
}

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.hl-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(251, 247, 239, 0.86);
	backdrop-filter: saturate(160%) blur(14px);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s var(--hl-ease), background-color 0.3s var(--hl-ease),
		box-shadow 0.3s var(--hl-ease);
}
.hl-header.is-stuck {
	border-bottom-color: var(--hl-line-soft);
	box-shadow: 0 4px 24px rgba(18, 60, 40, 0.06);
}

.hl-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: var(--hl-header-h);
	padding-block: 0.6rem;
}

/* The header floats over the home hero; every other page gets room for it. */
body:not(.hl-front) { padding-top: var(--hl-header-h); }

.admin-bar .hl-header { top: 32px; }
@media screen and (max-width: 782px) {
	.admin-bar .hl-header { top: 46px; }
}

.hl-brand {
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
	transition: opacity 0.35s var(--hl-ease);
}
.hl-brand img { width: auto; max-height: 58px; transition: max-height 0.3s var(--hl-ease); }
.hl-header.is-stuck .hl-brand img { max-height: 46px; }
.hl-brand__light {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.3s var(--hl-ease);
	pointer-events: none;
}

/* Transparent header floating over the home hero, solid once scrolled. */
.hl-front .hl-header:not(.is-stuck) {
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}
.hl-front .hl-header:not(.is-stuck) .hl-brand { opacity: 0; pointer-events: none; }
.hl-front .hl-header:not(.is-stuck) .hl-nav > ul > li > a { color: rgba(255, 255, 255, 0.92); }
.hl-front .hl-header:not(.is-stuck) .hl-nav > ul > li > a:hover { color: #fff; }
.hl-front .hl-header:not(.is-stuck) .hl-icon-btn {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}
.hl-front .hl-header:not(.is-stuck) .hl-icon-btn:hover { background: rgba(255, 255, 255, 0.15); }
.hl-front .hl-header:not(.is-stuck) .hl-burger span { background: #fff; }

@media (max-width: 991px) {
	.hl-front .hl-header:not(.is-stuck) .hl-brand { opacity: 1; pointer-events: auto; }
	.hl-front .hl-header:not(.is-stuck) .hl-brand__dark { opacity: 0; }
	.hl-front .hl-header:not(.is-stuck) .hl-brand__light { opacity: 1; }
	.hl-nav.is-open a { color: var(--hl-ink) !important; }
}
.hl-brand__text {
	font-family: var(--hl-font-display);
	font-size: 1.4rem;
	color: var(--hl-forest);
	letter-spacing: -0.01em;
}

/* Primary navigation */
.hl-nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
}
.hl-nav li { position: relative; }
.hl-nav a {
	display: block;
	padding: 0.6rem 0.9rem;
	color: var(--hl-ink);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 999px;
	transition: color 0.2s var(--hl-ease), background-color 0.2s var(--hl-ease);
}
.hl-nav a::after {
	content: "";
	display: block;
	height: 2px;
	width: 0;
	margin: 4px auto 0;
	border-radius: 2px;
	background: var(--hl-green-bright);
	transition: width 0.28s var(--hl-ease);
}
.hl-nav a:hover { color: var(--hl-forest); }
.hl-nav a:hover::after,
.hl-nav .current-menu-item > a::after,
.hl-nav .current_page_item > a::after,
.hl-nav .current-menu-parent > a::after { width: 60%; }
.hl-nav .current-menu-item > a,
.hl-nav .current_page_item > a { color: var(--hl-forest); }

/* Sub menus */
.hl-nav .sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 210px;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	background: var(--hl-paper);
	border: 1px solid var(--hl-line-soft);
	border-radius: var(--hl-radius-lg);
	box-shadow: var(--hl-shadow-md);
	padding: 0.5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.22s var(--hl-ease), transform 0.22s var(--hl-ease), visibility 0.22s;
}
.hl-nav li:hover > .sub-menu,
.hl-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.hl-nav .sub-menu a { border-radius: var(--hl-radius); letter-spacing: 0.08em; }
.hl-nav .sub-menu a:hover { background: var(--hl-sand); }
.hl-nav .sub-menu a::after { display: none; }

.hl-header__actions { display: flex; align-items: center; gap: 0.5rem; }

.hl-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--hl-line);
	border-radius: 50%;
	background: transparent;
	color: var(--hl-forest);
	cursor: pointer;
	transition: background-color 0.2s var(--hl-ease), border-color 0.2s var(--hl-ease);
}
.hl-icon-btn:hover { background: var(--hl-sand); border-color: var(--hl-sand-deep); }
.hl-icon-btn svg { width: 19px; height: 19px; }

/* Mobile toggle */
.hl-burger { display: none; }
.hl-burger span {
	display: block;
	width: 19px;
	height: 2px;
	background: var(--hl-forest);
	border-radius: 2px;
	transition: transform 0.3s var(--hl-ease), opacity 0.2s var(--hl-ease);
}
.hl-burger span + span { margin-top: 5px; }
.hl-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hl-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hl-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search drawer */
.hl-search-drawer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s var(--hl-ease);
	background: var(--hl-sand);
	border-top: 1px solid var(--hl-line-soft);
}
/* Closed, the drawer must leave no trace — a visible border on a zero-height
   row would draw a hairline under the transparent hero header. */
.hl-search-drawer:not(.is-open) {
	border-top-color: transparent;
	background: transparent;
}
.hl-search-drawer.is-open { grid-template-rows: 1fr; }
.hl-search-drawer > div { overflow: hidden; }
.hl-search-drawer form { display: flex; gap: 0.6rem; padding: 1.2rem 0; }

.hl-field {
	width: 100%;
	padding: 0.85rem 1.1rem;
	font: inherit;
	font-size: 1rem;
	color: var(--hl-ink);
	background: var(--hl-paper);
	border: 1px solid var(--hl-line);
	border-radius: var(--hl-radius);
	transition: border-color 0.2s var(--hl-ease), box-shadow 0.2s var(--hl-ease);
}
.hl-field:focus {
	outline: none;
	border-color: var(--hl-green);
	box-shadow: 0 0 0 3px rgba(0, 161, 75, 0.14);
}
textarea.hl-field { min-height: 150px; resize: vertical; }

@media (max-width: 991px) {
	:root { --hl-header-h: 74px; }
	.hl-burger { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; }
	.hl-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(340px, 86vw);
		background: var(--hl-paper);
		box-shadow: var(--hl-shadow-lg);
		padding: 6rem 1.6rem 2rem;
		transform: translateX(100%);
		transition: transform 0.38s var(--hl-ease);
		overflow-y: auto;
		z-index: 120;
	}
	.hl-nav.is-open { transform: translateX(0); }
	.hl-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
	.hl-nav li { border-bottom: 1px solid var(--hl-line-soft); }
	.hl-nav a { padding: 1rem 0.4rem; border-radius: 0; }
	.hl-nav a::after { margin-left: 0; }
	.hl-nav .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		padding: 0 0 0.5rem 1rem;
		background: transparent;
	}
	.hl-nav__close {
		position: absolute;
		top: 1.4rem;
		right: 1.4rem;
	}
	.hl-overlay {
		position: fixed;
		inset: 0;
		background: rgba(12, 42, 28, 0.45);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.35s var(--hl-ease), visibility 0.35s;
		z-index: 110;
	}
	.hl-overlay.is-visible { opacity: 1; visibility: visible; }
}
@media (min-width: 992px) {
	.hl-nav__close { display: none; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hl-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(520px, 78vh, 780px);
	padding: clamp(4rem, 10vw, 7rem) 0;
	text-align: center;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}
.hl-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.hl-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 55%;
	transform: scale(1.06);
	animation: hl-kenburns 22s ease-in-out infinite alternate;
}
@keyframes hl-kenburns {
	from { transform: scale(1.04) translate3d(0, 0, 0); }
	to { transform: scale(1.13) translate3d(0, -1.5%, 0); }
}
/* A deep botanical gradient with a drawn herb texture over it. Always crisp,
   weighs a few kilobytes, and gives the photo something to dissolve into. */
.hl-hero--botanical {
	background:
		radial-gradient(78% 62% at 18% 8%, rgba(0, 161, 75, 0.26) 0%, rgba(0, 161, 75, 0) 62%),
		radial-gradient(72% 64% at 88% 96%, rgba(6, 79, 147, 0.24) 0%, rgba(6, 79, 147, 0) 62%),
		linear-gradient(158deg, #10402a 0%, #164c33 44%, #0a2318 100%);
}
.hl-hero--botanical::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: url("../img/hero-texture.svg") center / cover no-repeat;
	opacity: 0.85;
	animation: hl-drift 26s ease-in-out infinite alternate;
}
@keyframes hl-drift {
	from { transform: scale(1.02) translate3d(-0.6%, 0, 0); }
	to { transform: scale(1.08) translate3d(0.6%, -1%, 0); }
}
.hl-hero--botanical::before { opacity: 0.55; }

/* The photo, held at a sensible width in the middle of the hero with all four
   edges dissolved into the green. On a wide monitor the green simply extends
   outwards, so a modest photograph never has to stretch or go soft. */
.hl-hero__inset {
	position: absolute;
	inset: 0;
	z-index: -2;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.hl-hero__inset img {
	/* Capped so a modest photograph is never blown up much beyond its own
	   resolution; past this width the green simply takes over. */
	width: min(100%, 1120px);
	height: min(100%, 760px);
	object-fit: cover;
	object-position: center 56%;
	opacity: 0.66;
	transform: scale(1.02);
	animation: hl-kenburns 30s ease-in-out infinite alternate;
	-webkit-mask-image:
		radial-gradient(ellipse 68% 66% at 50% 48%, #000 14%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 76%);
	mask-image:
		radial-gradient(ellipse 68% 66% at 50% 48%, #000 14%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 76%);
}
.hl-hero--faded::before { opacity: 0.72; }

@media (max-width: 700px) {
	/* Narrow screens have no spare width for a vignette — soften the top and
	   bottom only so the photo still fills the frame. */
	.hl-hero__inset img {
		opacity: 0.5;
		-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 68%, transparent 100%);
		mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 68%, transparent 100%);
	}
}

.hl-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(125% 95% at 50% 22%, rgba(12, 42, 28, 0.1) 0%, rgba(12, 42, 28, 0.5) 72%, rgba(12, 42, 28, 0.74) 100%),
		linear-gradient(180deg, rgba(12, 42, 28, 0.45) 0%, rgba(12, 42, 28, 0.08) 38%, rgba(12, 42, 28, 0.68) 100%);
}

.hl-hero__logo {
	width: min(460px, 74vw);
	margin: 0 auto clamp(1.5rem, 4vw, 2.4rem);
	filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35));
}

.hl-hero h1 {
	color: #fff;
	font-size: clamp(2.1rem, 6.4vw, 5rem);
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.08;
	margin: 0;
	text-wrap: balance;
	overflow-wrap: break-word;
	text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hl-hero h1 .hl-hero__sep {
	color: var(--hl-green-bright);
	padding-inline: 0.18em;
	font-style: normal;
}
.hl-hero__tagline {
	margin: 1.4rem auto 0;
	max-width: 52ch;
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}
.hl-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	justify-content: center;
	margin-top: clamp(1.8rem, 4vw, 2.6rem);
}
/* A dark button disappears against the hero — invert it here. */
.hl-hero .hl-btn--primary {
	background: #fff;
	color: var(--hl-forest);
}
.hl-hero .hl-btn--primary:hover {
	background: var(--hl-green-bright);
	color: var(--hl-forest-deep);
}

.hl-hero__scroll {
	position: absolute;
	bottom: 1.8rem;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.7rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}
.hl-hero__scroll svg { animation: hl-bob 2.4s ease-in-out infinite; }
.hl-hero__scroll:hover { color: #fff; }
@keyframes hl-bob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(6px); }
}

/* Page hero (interior pages) */
.hl-pagehead {
	position: relative;
	padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 3.5rem);
	background: linear-gradient(180deg, var(--hl-sand) 0%, var(--hl-cream) 100%);
	text-align: center;
	overflow: hidden;
}
.hl-pagehead::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: var(--hl-line-soft);
}
.hl-pagehead h1 { margin-bottom: 0.3rem; }
.hl-pagehead__sub {
	max-width: 56ch;
	margin: 0.8rem auto 0;
	color: var(--hl-ink-soft);
	font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   7. Intro band
   -------------------------------------------------------------------------- */
.hl-intro {
	position: relative;
	text-align: center;
	background: var(--hl-paper);
}
.hl-intro__inner { max-width: 780px; margin-inline: auto; }
.hl-intro h2 {
	font-size: clamp(1.75rem, 3.4vw, 2.6rem);
	font-weight: 500;
	line-height: 1.22;
}
.hl-intro p {
	font-size: 1.1rem;
	color: var(--hl-ink-soft);
	max-width: 62ch;
	margin-inline: auto;
}

/* --------------------------------------------------------------------------
   8. Feature tiles (Borage / Energy / Parsley)
   -------------------------------------------------------------------------- */
.hl-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(1rem, 2vw, 1.6rem);
}
.hl-feature {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: clamp(340px, 42vw, 480px);
	padding: 1.8rem;
	border-radius: var(--hl-radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	isolation: isolate;
	box-shadow: var(--hl-shadow-sm);
	transition: box-shadow 0.4s var(--hl-ease), transform 0.4s var(--hl-ease);
}
.hl-feature:hover { transform: translateY(-6px); box-shadow: var(--hl-shadow-lg); color: #fff; }
.hl-feature img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
	transition: transform 0.9s var(--hl-ease);
}
.hl-feature:hover img { transform: scale(1.07); }
.hl-feature::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(12, 42, 28, 0.05) 0%, rgba(12, 42, 28, 0.28) 45%, rgba(12, 42, 28, 0.86) 100%);
	transition: background 0.4s var(--hl-ease);
}
.hl-feature:hover::after {
	background: linear-gradient(180deg, rgba(12, 42, 28, 0.12) 0%, rgba(12, 42, 28, 0.4) 45%, rgba(12, 42, 28, 0.92) 100%);
}
.hl-feature__body { position: relative; }
.hl-feature__kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 0.6rem;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.hl-feature__kicker::before {
	content: "";
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: var(--hl-green-bright);
	box-shadow: 0 0 8px rgba(0, 161, 75, 0.6);
}
.hl-feature h3 {
	color: #fff;
	font-size: clamp(1.6rem, 2.6vw, 2.1rem);
	margin-bottom: 0.35rem;
	letter-spacing: 0.01em;
}
.hl-feature p {
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.97rem;
	margin: 0;
	max-width: 34ch;
}
.hl-feature__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 1rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
}
.hl-feature__link svg { transition: transform 0.3s var(--hl-ease); }
.hl-feature:hover .hl-feature__link svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   9. Section headings
   -------------------------------------------------------------------------- */
.hl-sechead { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.hl-sechead h2 { margin-bottom: 0.4rem; }
.hl-sechead p {
	max-width: 60ch;
	margin: 0.8rem auto 0;
	color: var(--hl-ink-soft);
}

/* --------------------------------------------------------------------------
   10. Filter chips
   -------------------------------------------------------------------------- */
.hl-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-bottom: clamp(1.8rem, 3.5vw, 2.6rem);
}
.hl-filter {
	appearance: none;
	background: transparent;
	border: 1px solid var(--hl-line);
	border-radius: 999px;
	padding: 0.55rem 1.25rem;
	font-family: var(--hl-font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hl-ink-soft);
	cursor: pointer;
	transition: all 0.25s var(--hl-ease);
}
.hl-filter:hover { border-color: var(--hl-green); color: var(--hl-forest); }
.hl-filter.is-active {
	background: var(--hl-forest);
	border-color: var(--hl-forest);
	color: #fff;
}

/* --------------------------------------------------------------------------
   11. FLIP CARDS  (the signature element)
   -------------------------------------------------------------------------- */
.hl-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
	gap: clamp(1.1rem, 2.2vw, 1.9rem);
}

.hl-flip {
	perspective: 1600px;
	opacity: 1;
	transition: opacity 0.35s var(--hl-ease), transform 0.35s var(--hl-ease);
}
.hl-flip[hidden] { display: none; }
.hl-flip.is-filtering { opacity: 0; transform: scale(0.96); }

.hl-flip__inner {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	transform-style: preserve-3d;
	transition: transform var(--hl-flip-speed) var(--hl-ease), box-shadow 0.4s var(--hl-ease);
	border-radius: var(--hl-radius-lg);
	box-shadow: var(--hl-shadow-sm);
}
.hl-flip:hover .hl-flip__inner,
.hl-flip:focus-within .hl-flip__inner,
.hl-flip.is-flipped .hl-flip__inner {
	transform: rotateY(180deg);
	box-shadow: var(--hl-shadow-lg);
}

.hl-flip__face {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	border-radius: var(--hl-radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* Front */
.hl-flip__front { background: var(--hl-forest-deep); }
.hl-flip__front img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hl-flip__front::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(12, 42, 28, 0) 35%, rgba(12, 42, 28, 0.5) 65%, rgba(12, 42, 28, 0.9) 100%);
}
.hl-flip__front-body {
	position: relative;
	margin-top: auto;
	padding: 1.5rem;
	z-index: 1;
}
.hl-flip__cat {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 0.5rem;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.hl-flip__cat::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--hl-green-bright);
	box-shadow: 0 0 8px rgba(0, 161, 75, 0.85);
}
.hl-flip__front h3 {
	color: #fff;
	font-size: clamp(1.3rem, 2.1vw, 1.6rem);
	margin: 0;
	letter-spacing: 0.01em;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* Back */
.hl-flip__back {
	transform: rotateY(180deg);
	background:
		radial-gradient(120% 100% at 100% 0%, rgba(0, 161, 75, 0.1) 0%, transparent 55%),
		var(--hl-paper);
	border: 1px solid var(--hl-line-soft);
	padding: 1.7rem;
	justify-content: center;
	text-align: left;
}
.hl-flip__back h3 {
	font-size: 1.2rem;
	margin-bottom: 0.6rem;
	color: var(--hl-forest);
}
.hl-flip__back h3::before {
	content: "";
	display: block;
	width: 34px;
	height: 2px;
	border-radius: 2px;
	background: var(--hl-green-bright);
	margin-bottom: 0.85rem;
}
.hl-flip__excerpt {
	font-size: 0.94rem;
	line-height: 1.62;
	color: var(--hl-ink-soft);
	margin: 0 0 1.2rem;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.hl-flip__more {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hl-green);
	text-decoration: none;
}
.hl-flip__more svg { transition: transform 0.3s var(--hl-ease); }
.hl-flip__more:hover svg { transform: translateX(4px); }

/* Stretched link so the whole front face is clickable */
.hl-flip__cover {
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: var(--hl-radius-lg);
	text-indent: -9999px;
	overflow: hidden;
	white-space: nowrap;
}

/* Touch devices: tap to flip */
.hl-flip__tap {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	z-index: 3;
	display: none;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: var(--hl-forest);
	cursor: pointer;
	box-shadow: var(--hl-shadow-sm);
}
.hl-flip__tap svg { width: 16px; height: 16px; }
@media (hover: none) {
	.hl-flip__tap { display: inline-flex; }
	.hl-flip:hover .hl-flip__inner { transform: none; }
	.hl-flip.is-flipped .hl-flip__inner { transform: rotateY(180deg); }
	.hl-flip.is-flipped .hl-flip__tap { transform: rotateY(180deg); }
}

@media (prefers-reduced-motion: reduce) {
	.hl-flip__inner { transition: none; }
}

/* --------------------------------------------------------------------------
   12. Article cards (archive / blog lists)
   -------------------------------------------------------------------------- */
.hl-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: clamp(1.4rem, 3vw, 2.4rem);
}
.hl-card {
	display: flex;
	flex-direction: column;
	background: var(--hl-paper);
	border: 1px solid var(--hl-line-soft);
	border-radius: var(--hl-radius-lg);
	overflow: hidden;
	transition: transform 0.35s var(--hl-ease), box-shadow 0.35s var(--hl-ease);
}
.hl-card:hover { transform: translateY(-5px); box-shadow: var(--hl-shadow-md); }
.hl-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--hl-sand); }
.hl-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--hl-ease); }
.hl-card:hover .hl-card__media img { transform: scale(1.06); }
.hl-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.hl-card__meta {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--hl-green);
	margin-bottom: 0.6rem;
}
.hl-card h3 { font-size: 1.3rem; margin-bottom: 0.55rem; }
.hl-card h3 a { color: inherit; text-decoration: none; }
.hl-card h3 a:hover { color: var(--hl-green); }
.hl-card p { font-size: 0.96rem; color: var(--hl-ink-soft); margin-bottom: 1.2rem; }
.hl-card__more { margin-top: auto; }

/* --------------------------------------------------------------------------
   13. Single post / page
   -------------------------------------------------------------------------- */
.hl-article__head {
	text-align: center;
	padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2.2rem);
}
.hl-article__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.2rem;
	justify-content: center;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--hl-ink-mute);
	margin-bottom: 1.2rem;
}
.hl-article__meta a { color: var(--hl-green); text-decoration: none; }
.hl-article__meta a:hover { text-decoration: underline; }

.hl-article__hero {
	max-width: 1100px;
	margin: 0 auto clamp(2rem, 5vw, 3.2rem);
	border-radius: var(--hl-radius-lg);
	overflow: hidden;
	box-shadow: var(--hl-shadow-md);
	aspect-ratio: 16 / 9;
	background: var(--hl-sand);
}
.hl-article__hero img { width: 100%; height: 100%; object-fit: cover; }

.hl-prose { font-size: 1.09rem; line-height: 1.78; color: var(--hl-ink-soft); }
.hl-prose > * + * { margin-top: 1.3em; }
.hl-prose h2,
.hl-prose h3,
.hl-prose h4 { margin-top: 2.2em; margin-bottom: 0.5em; color: var(--hl-forest); }
.hl-prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.hl-prose h3 { font-size: 1.3rem; }
.hl-prose strong { color: var(--hl-ink); font-weight: 700; }
.hl-prose a { color: var(--hl-green); }
.hl-prose ul,
.hl-prose ol { padding-left: 1.3em; }
.hl-prose li + li { margin-top: 0.55em; }
.hl-prose ul { list-style: none; padding-left: 0; }
.hl-prose ul > li {
	position: relative;
	padding-left: 1.6em;
}
.hl-prose ul > li::before {
	content: "";
	position: absolute;
	left: 0.15em;
	top: 0.68em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--hl-green-bright);
}
.hl-prose img { border-radius: var(--hl-radius-lg); box-shadow: var(--hl-shadow-sm); }
.hl-prose figure { margin: 2rem 0; }
.hl-prose figcaption {
	margin-top: 0.7rem;
	font-size: 0.86rem;
	color: var(--hl-ink-mute);
	text-align: center;
}
/* First paragraph lead-in */
.hl-prose > p:first-child {
	font-size: 1.2rem;
	line-height: 1.65;
	color: var(--hl-ink);
}

.hl-article__footer {
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	padding-top: 2rem;
	border-top: 1px solid var(--hl-line);
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	align-items: center;
	justify-content: space-between;
}
.hl-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.hl-tag {
	display: inline-block;
	padding: 0.35rem 0.85rem;
	border: 1px solid var(--hl-line);
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-ink-soft);
	text-decoration: none;
}
.hl-tag:hover { background: var(--hl-forest); border-color: var(--hl-forest); color: #fff; }

.hl-share { display: flex; align-items: center; gap: 0.5rem; }
.hl-share span {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--hl-ink-mute);
}

.hl-postnav {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1rem;
	margin-top: 3rem;
}
.hl-postnav a {
	display: block;
	padding: 1.4rem 1.6rem;
	border: 1px solid var(--hl-line-soft);
	border-radius: var(--hl-radius-lg);
	background: var(--hl-paper);
	text-decoration: none;
	transition: border-color 0.25s var(--hl-ease), transform 0.25s var(--hl-ease);
}
.hl-postnav a:hover { border-color: var(--hl-green); transform: translateY(-3px); }
.hl-postnav small {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--hl-ink-mute);
	margin-bottom: 0.4rem;
}
.hl-postnav strong { font-family: var(--hl-font-display); font-size: 1.1rem; color: var(--hl-forest); font-weight: 600; }
.hl-postnav .is-next { text-align: right; }

/* --------------------------------------------------------------------------
   14. Callouts, quote band, disclaimer
   -------------------------------------------------------------------------- */
.hl-band {
	position: relative;
	color: #fff;
	text-align: center;
	background: var(--hl-forest-deep);
	overflow: hidden;
	isolation: isolate;
}
.hl-band img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
	opacity: 0.35;
}
.hl-band::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(12, 42, 28, 0.82), rgba(12, 42, 28, 0.92));
}
.hl-band h2 { color: #fff; }
.hl-band p { color: rgba(255, 255, 255, 0.85); max-width: 58ch; margin-inline: auto; }
.hl-band .hl-btn { margin-top: 1.6rem; }

.hl-note {
	background: var(--hl-sand);
	border: 1px solid var(--hl-sand-deep);
	border-left: 3px solid var(--hl-green-bright);
	border-radius: var(--hl-radius);
	padding: 1.2rem 1.4rem;
	font-size: 0.95rem;
	color: var(--hl-ink-soft);
}

/* --------------------------------------------------------------------------
   15. Contact
   -------------------------------------------------------------------------- */
.hl-contact {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
@media (max-width: 860px) { .hl-contact { grid-template-columns: 1fr; } }
@media (min-width: 861px) {
	.hl-contact > :last-child {
		position: sticky;
		top: calc(var(--hl-header-h) + 1.5rem);
	}
}

.hl-contact__list { list-style: none; padding: 0; margin: 2rem 0 0; }
.hl-contact__list li {
	display: flex;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--hl-line-soft);
}
.hl-contact__list svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--hl-green); margin-top: 0.25rem; }
.hl-contact__list strong { display: block; font-family: var(--hl-font-display); color: var(--hl-forest); }
.hl-contact__list span { color: var(--hl-ink-soft); font-size: 0.96rem; }

.hl-form {
	background: var(--hl-paper);
	border: 1px solid var(--hl-line-soft);
	border-radius: var(--hl-radius-lg);
	padding: clamp(1.5rem, 3vw, 2.4rem);
	box-shadow: var(--hl-shadow-sm);
}
.hl-form__row { margin-bottom: 1.1rem; }
.hl-form__row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .hl-form__row--split { grid-template-columns: 1fr; } }
.hl-form label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hl-ink-soft);
}
.hl-form__hp { position: absolute; left: -9999px; }

.hl-alert {
	padding: 0.9rem 1.2rem;
	border-radius: var(--hl-radius);
	font-size: 0.95rem;
	margin-bottom: 1.4rem;
}
.hl-alert--ok { background: rgba(0, 161, 75, 0.1); color: #0d5c33; border: 1px solid rgba(0, 161, 75, 0.3); }
.hl-alert--err { background: rgba(184, 104, 60, 0.1); color: #8a4623; border: 1px solid rgba(184, 104, 60, 0.3); }

/* --------------------------------------------------------------------------
   16. Pagination
   -------------------------------------------------------------------------- */
.hl-pagination {
	display: flex;
	justify-content: center;
	gap: 0.4rem;
	margin-top: clamp(2.5rem, 5vw, 4rem);
}
.hl-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 0.8rem;
	border: 1px solid var(--hl-line);
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--hl-ink-soft);
	text-decoration: none;
	transition: all 0.25s var(--hl-ease);
}
.hl-pagination .page-numbers:hover { border-color: var(--hl-green); color: var(--hl-forest); }
.hl-pagination .page-numbers.current {
	background: var(--hl-forest);
	border-color: var(--hl-forest);
	color: #fff;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.hl-footer {
	background: var(--hl-forest-deep);
	color: rgba(255, 255, 255, 0.72);
	padding-top: clamp(3rem, 6vw, 4.5rem);
	font-size: 0.95rem;
}
.hl-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
@media (max-width: 900px) {
	.hl-footer__grid { grid-template-columns: 1fr 1fr; }
	.hl-footer__grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
	.hl-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
.hl-footer__logo { width: 260px; max-width: 70%; margin-bottom: 1.2rem; }
.hl-footer h4 {
	color: #fff;
	font-family: var(--hl-font-body);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 1.1rem;
}
.hl-footer ul { list-style: none; margin: 0; padding: 0; }
.hl-footer li + li { margin-top: 0.55rem; }
.hl-footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.hl-footer a:hover { color: var(--hl-green-bright); }

.hl-socials { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.hl-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: all 0.25s var(--hl-ease);
}
.hl-socials a:hover { background: var(--hl-green-bright); border-color: var(--hl-green-bright); color: #fff; }
.hl-socials svg { width: 17px; height: 17px; }

.hl-footer__disclaimer {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1.8rem 0;
	font-size: 0.86rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.55);
	text-align: center;
	max-width: 900px;
	margin-inline: auto;
}
.hl-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1.3rem 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: center;
	justify-content: space-between;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.5);
}

.hl-totop {
	position: fixed;
	right: 1.4rem;
	bottom: 1.4rem;
	z-index: 90;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: var(--hl-forest);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	box-shadow: var(--hl-shadow-md);
	transition: all 0.3s var(--hl-ease);
}
.hl-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.hl-totop:hover { background: var(--hl-green); }

/* --------------------------------------------------------------------------
   18. Reveal on scroll
   -------------------------------------------------------------------------- */
.hl-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s var(--hl-ease), transform 0.7s var(--hl-ease);
}
.hl-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.hl-reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   19. Comments
   -------------------------------------------------------------------------- */
.hl-comments { margin-top: clamp(3rem, 6vw, 4.5rem); }
.hl-comments ol { list-style: none; padding: 0; margin: 0; }
.hl-comments .comment-body {
	padding: 1.4rem 0;
	border-bottom: 1px solid var(--hl-line-soft);
}
.hl-comments .children { padding-left: clamp(1rem, 4vw, 2.5rem); }
.hl-comments .comment-author img { border-radius: 50%; }

/* --------------------------------------------------------------------------
   20. WordPress core classes
   -------------------------------------------------------------------------- */
.alignleft { float: left; margin: 0.4rem 1.6rem 1rem 0; }
.alignright { float: right; margin: 0.4rem 0 1rem 1.6rem; }
.aligncenter { margin-inline: auto; }
.alignwide { width: min(1100px, 92vw); margin-inline: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.sticky .hl-card { border-color: var(--hl-green); }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.gallery-item { margin: 0 !important; }

/* Widgets */
.widget { margin-bottom: 2.5rem; }
.widget-title {
	font-family: var(--hl-font-body);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--hl-ink-mute);
	margin-bottom: 1rem;
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li { padding: 0.45rem 0; border-bottom: 1px solid var(--hl-line-soft); }
.widget a { color: var(--hl-ink-soft); text-decoration: none; }
.widget a:hover { color: var(--hl-green); }

/* --------------------------------------------------------------------------
   21. Empty state
   -------------------------------------------------------------------------- */
.hl-empty {
	text-align: center;
	padding: clamp(3rem, 8vw, 5rem) 1rem;
	border: 1px dashed var(--hl-sand-deep);
	border-radius: var(--hl-radius-lg);
	background: var(--hl-paper);
	color: var(--hl-ink-soft);
}
.hl-empty h2 { margin-bottom: 0.6rem; }
