/*!
 * Lovely's Home — theme.css
 * A production, hand-crafted stylesheet that reproduces the look and feel
 * of the original Tailwind React design without any build tooling.
 */

/* =========================================================================
   1. Design tokens
   ========================================================================= */
:root {
	/* Core palette — warm cream + sage + terracotta accent.
	   These fallbacks are overridden at runtime from the ACF options page. */
	--lh-bg:              #f7f2ea;
	--lh-bg-soft:         #efe8dc;
	--lh-card:            #f3ece0;
	--lh-fg:              #2a1f15;
	--lh-muted:           #645648;
	--lh-muted-2:         #877868;
	--lh-border:          #d8cfc1;

	--lh-primary:         #6a7a52;
	--lh-primary-deep:    #2f3a23;
	--lh-primary-glow:    #a56a3f;
	--lh-accent:          #8f5a34;

	--lh-primary-fg:      #ffffff;

	/* Gradients */
	--lh-gradient-hero:  linear-gradient(135deg, #2b3620 0%, #4c5a38 46%, #b37243 100%);
	--lh-gradient-soft:  linear-gradient(180deg, #e4dccf 0%, #f7f2ea 62%, rgba(165,106,63,0.20) 100%);
	--lh-gradient-deep:  linear-gradient(135deg, #1d160f 0%, #2b3620 58%, #5a4432 100%);

	/* Shadows */
	--lh-shadow-card: 0 4px 22px -6px rgba(45,27,16,0.15);
	--lh-shadow-soft: 0 10px 30px -10px rgba(45,27,16,0.20);
	--lh-shadow-glow: 0 20px 60px -15px rgba(165,106,63,0.38);

	--lh-radius-sm: 0.75rem;
	--lh-radius:    1rem;
	--lh-radius-lg: 1.5rem;
	--lh-radius-xl: 1.75rem;
	--lh-radius-2xl: 2rem;

	--lh-container: 1200px;

	--lh-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

	--lh-font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	--lh-font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

/* =========================================================================
   2. Base & resets
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--lh-font-body);
	background: var(--lh-bg);
	color: var(--lh-fg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.6;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--lh-primary-deep); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--lh-font-display);
	color: var(--lh-primary-deep);
	letter-spacing: -0.01em;
	line-height: 1.15;
	margin: 0 0 0.6em;
	font-weight: 800;
}
p  { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); height: 1px;
	margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
.lh-skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--lh-primary-deep); color: #fff;
	padding: 10px 16px; z-index: 99999;
	border-radius: 0 0 8px 0;
}
.lh-skip-link:focus { left: 0; }

/* =========================================================================
   3. Layout primitives
   ========================================================================= */
.lh-container {
	width: 100%;
	max-width: var(--lh-container);
	margin: 0 auto;
	padding: 0 1.25rem;
}
.lh-section { padding: 4rem 0; position: relative; }
@media (min-width: 768px) { .lh-section { padding: 6rem 0; } }

.lh-section__head {
	max-width: 40rem;
	margin: 0 auto 3.5rem;
	text-align: center;
}
.lh-section__head--left {
	margin-left: 0;
	text-align: left;
}
.lh-section__title {
	font-size: clamp(1.8rem, 3.6vw, 3rem);
	font-weight: 800;
	margin-top: 0.75rem;
}
.lh-section__desc {
	color: var(--lh-muted);
	font-size: 1.05rem;
	margin-top: 0.5rem;
}

.lh-eyebrow {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--lh-primary);
}
.lh-eyebrow--pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--lh-bg-soft);
	color: var(--lh-primary-deep);
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	font-size: 0.72rem;
}
.lh-eyebrow--on-dark { color: rgba(255,255,255,0.85); }

/* =========================================================================
   4. Buttons
   ========================================================================= */
.lh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--lh-font-body);
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--lh-transition);
	text-decoration: none;
	white-space: nowrap;
}
.lh-btn--sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.lh-btn--lg { padding: 0.95rem 1.6rem; font-size: 1rem; }
.lh-btn--block { width: 100%; }

.lh-btn--hero {
	background: var(--lh-gradient-hero);
	color: var(--lh-primary-fg);
	box-shadow: var(--lh-shadow-glow);
}
.lh-btn--hero:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
	color: var(--lh-primary-fg);
}
.lh-btn--outline {
	background: transparent;
	color: var(--lh-primary-deep);
	border-color: var(--lh-border);
}
.lh-btn--outline:hover {
	background: var(--lh-bg-soft);
	border-color: var(--lh-primary-deep);
	color: var(--lh-primary-deep);
}
.lh-btn--deep {
	background: var(--lh-primary-deep);
	color: var(--lh-primary-fg);
}
.lh-btn--deep:hover {
	background: #1c2414;
	color: var(--lh-primary-fg);
}
.lh-btn--ghost {
	background: rgba(255,255,255,0.95);
	color: var(--lh-primary-deep);
}
.lh-btn--ghost:hover { background: #fff; }

/* =========================================================================
   5. Header
   ========================================================================= */
.lh-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(247, 242, 234, 0.88);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid rgba(216, 207, 193, 0.6);
}
.lh-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	height: 80px;
}
.lh-header__brand { display: inline-flex; align-items: center; }
.lh-header__logo {
	height: 56px;
	width: auto;
	max-width: 210px;
	object-fit: contain;
	transition: var(--lh-transition);
}
.lh-header__brand:hover .lh-header__logo { transform: scale(1.04); }
.lh-header__brand-text {
	font-family: var(--lh-font-display);
	font-weight: 800;
	color: var(--lh-primary-deep);
	font-size: 1.25rem;
}

.lh-header__nav { display: none; }
@media (min-width: 900px) { .lh-header__nav { display: block; } }

.lh-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.lh-menu li { position: relative; }
.lh-menu a {
	display: inline-block;
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 500;
	color: rgba(42,31,21,0.85);
	transition: var(--lh-transition);
}
.lh-menu a:hover,
.lh-menu .current-menu-item > a,
.lh-menu .current_page_item > a {
	background: var(--lh-bg-soft);
	color: var(--lh-primary-deep);
}
.lh-menu .sub-menu {
	list-style: none;
	padding: 0.5rem;
	margin: 0;
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 200px;
	background: #fff;
	border: 1px solid var(--lh-border);
	border-radius: var(--lh-radius);
	box-shadow: var(--lh-shadow-card);
	display: none;
}
.lh-menu li:hover > .sub-menu,
.lh-menu li:focus-within > .sub-menu { display: block; }
.lh-menu .sub-menu a { display: block; border-radius: 8px; }

.lh-header__actions {
	display: none;
	align-items: center;
	gap: 1rem;
}
@media (min-width: 900px) { .lh-header__actions { display: flex; } }
.lh-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-weight: 700;
	color: var(--lh-primary-deep);
	font-size: 0.9rem;
}

.lh-header__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px; height: 42px;
	background: var(--lh-bg-soft);
	color: var(--lh-primary-deep);
	border: 0;
	border-radius: 10px;
}
@media (min-width: 900px) { .lh-header__toggle { display: none; } }

.lh-header__mobile {
	border-top: 1px solid var(--lh-border);
	background: var(--lh-bg);
	padding: 1rem 0 1.25rem;
}
.lh-header__mobile .lh-menu {
	flex-direction: column;
	align-items: stretch;
	gap: 0.25rem;
}
.lh-header__mobile .lh-menu a {
	padding: 0.8rem 1rem;
	border-radius: 12px;
}
.lh-header__mobile .lh-btn { margin-top: 0.75rem; }

/* =========================================================================
   6. Hero section
   ========================================================================= */
.lh-hero { overflow: hidden; background: var(--lh-gradient-soft); }
.lh-hero__blob {
	position: absolute;
	height: 24rem; width: 24rem;
	border-radius: 9999px;
	filter: blur(80px);
	pointer-events: none;
	z-index: 0;
}
.lh-hero__blob--tr {
	top: -8rem; right: -8rem;
	background: rgba(165,106,63,0.35);
}
.lh-hero__blob--bl {
	bottom: -8rem; left: -8rem;
	background: rgba(106,122,82,0.30);
}
.lh-hero__inner {
	position: relative;
	display: grid;
	gap: 3rem;
	z-index: 1;
}
@media (min-width: 992px) {
	.lh-hero__inner { grid-template-columns: 1fr 1fr; align-items: center; }
}
.lh-hero__text > * + * { margin-top: 1.5rem; }
.lh-hero__title {
	font-family: var(--lh-font-display);
	font-weight: 800;
	color: var(--lh-primary-deep);
	font-size: clamp(2.25rem, 5vw, 4.5rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0;
}
.lh-hero__accent {
	background: var(--lh-gradient-hero);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.lh-hero__desc {
	font-size: 1.1rem;
	color: var(--lh-muted);
	line-height: 1.65;
	max-width: 38rem;
	margin: 0;
}
@media (min-width: 768px) { .lh-hero__desc { font-size: 1.2rem; } }
.lh-hero__buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.lh-hero__bullets {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	padding-top: 0.75rem;
}
.lh-hero__bullet {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.92rem;
	color: var(--lh-primary-deep);
	font-weight: 500;
}
.lh-hero__bullet-icon { color: var(--lh-primary); }

.lh-hero__media { position: relative; }
.lh-hero__image-wrap {
	position: relative;
	overflow: hidden;
	border-radius: var(--lh-radius-xl);
	box-shadow: var(--lh-shadow-glow);
}
.lh-hero__image {
	height: 420px;
	width: 100%;
	object-fit: cover;
}
@media (min-width: 768px) { .lh-hero__image { height: 540px; } }
.lh-hero__image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(47,58,35,0.38), transparent 55%);
}
.lh-hero__badge {
	position: absolute;
	background: var(--lh-card);
	border-radius: var(--lh-radius);
	box-shadow: var(--lh-shadow-card);
	padding: 0.75rem 1rem;
	display: none;
	align-items: center;
	gap: 0.75rem;
}
@media (min-width: 768px) { .lh-hero__badge { display: inline-flex; } }
.lh-hero__badge--bl {
	bottom: -1.5rem; left: -1.5rem;
	padding: 1rem;
	border-radius: var(--lh-radius);
}
.lh-hero__badge--tr {
	top: -1rem; right: -1rem;
	border-radius: 999px;
	padding: 0.5rem 1rem;
	color: var(--lh-primary-deep);
	font-size: 0.78rem;
	font-weight: 700;
}
.lh-hero__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	border-radius: 9999px;
	background: var(--lh-gradient-hero);
	color: #fff;
}
.lh-hero__badge-title {
	font-family: var(--lh-font-display);
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--lh-primary-deep);
	line-height: 1;
}
.lh-hero__badge-sub {
	font-size: 0.75rem;
	color: var(--lh-muted);
	margin-top: 0.2rem;
}

/* =========================================================================
   7. Who We Serve — image cards
   ========================================================================= */
.lh-who__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) { .lh-who__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lh-who__grid { grid-template-columns: repeat(4, 1fr); } }

.lh-who__card {
	background: var(--lh-card);
	border-radius: var(--lh-radius-xl);
	overflow: hidden;
	box-shadow: var(--lh-shadow-card);
	transition: var(--lh-transition);
}
.lh-who__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--lh-shadow-glow);
}
.lh-who__image { overflow: hidden; height: 14rem; }
.lh-who__image img {
	height: 100%; width: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}
.lh-who__card:hover .lh-who__image img { transform: scale(1.08); }
.lh-who__body { padding: 1.5rem; }
.lh-who__title {
	font-family: var(--lh-font-display);
	font-weight: 700;
	font-size: 1.25rem;
	margin: 0 0 0.5rem;
	color: var(--lh-primary-deep);
}
.lh-who__desc {
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--lh-muted);
	margin: 0;
}

/* =========================================================================
   8. Features grid
   ========================================================================= */
.lh-features { background: var(--lh-gradient-soft); }
.lh-features__grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px)  { .lh-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lh-features__grid { grid-template-columns: repeat(3, 1fr); } }

.lh-features__card {
	background: var(--lh-card);
	border-radius: var(--lh-radius);
	padding: 1.75rem;
	box-shadow: var(--lh-shadow-card);
	transition: var(--lh-transition);
}
.lh-features__card:hover {
	box-shadow: var(--lh-shadow-glow);
	transform: translateY(-2px);
}
.lh-features__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: 14px;
	background: var(--lh-gradient-hero);
	color: var(--lh-primary-fg);
	box-shadow: var(--lh-shadow-glow);
	margin-bottom: 1rem;
	transition: transform 0.35s ease;
}
.lh-features__card:hover .lh-features__icon { transform: scale(1.08); }
.lh-features__title {
	font-family: var(--lh-font-display);
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--lh-primary-deep);
	margin: 0 0 0.4rem;
}
.lh-features__desc {
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--lh-muted);
	margin: 0;
}

/* =========================================================================
   9. About section
   ========================================================================= */
.lh-about { background: var(--lh-gradient-soft); }
.lh-about__inner {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}
@media (min-width: 992px) { .lh-about__inner { grid-template-columns: 1fr 1fr; } }
.lh-about--reverse .lh-about__text  { order: 2; }
.lh-about--reverse .lh-about__media { order: 1; }
.lh-about__title {
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	font-weight: 800;
	margin: 0.75rem 0 1rem;
	color: var(--lh-fg);
}
.lh-about__content { color: var(--lh-muted); font-size: 1.05rem; line-height: 1.7; }
.lh-about__image {
	width: 100%;
	height: 420px;
	border-radius: var(--lh-radius-xl);
	object-fit: cover;
	box-shadow: var(--lh-shadow-card);
}

/* =========================================================================
   10. Services section
   ========================================================================= */
.lh-services__cards {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .lh-services__cards { grid-template-columns: repeat(2, 1fr); } }
.lh-services__card {
	background: var(--lh-card);
	border-radius: var(--lh-radius-xl);
	padding: 2rem;
	box-shadow: var(--lh-shadow-card);
}
@media (min-width: 768px) { .lh-services__card { padding: 2.5rem; } }
.lh-services__card--dark {
	background: var(--lh-gradient-deep);
	color: var(--lh-primary-fg);
}
.lh-services__card--dark .lh-services__card-title,
.lh-services__card--dark .lh-services__card-desc { color: var(--lh-primary-fg); }
.lh-services__card-icon { color: var(--lh-primary-deep); margin-bottom: 1.25rem; }
.lh-services__card--dark .lh-services__card-icon { color: var(--lh-primary-fg); }
.lh-services__card-title {
	font-family: var(--lh-font-display);
	font-weight: 800;
	font-size: 1.75rem;
	color: var(--lh-fg);
	margin: 0 0 0.6rem;
}
.lh-services__card-desc { color: var(--lh-muted); font-size: 0.98rem; margin: 0; }
.lh-services__card--dark .lh-services__card-desc { color: rgba(255,255,255,0.85); }

.lh-services__amenities {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px)  { .lh-services__amenities { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lh-services__amenities { grid-template-columns: repeat(4, 1fr); } }
.lh-services__amenity {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--lh-card);
	padding: 1.1rem 1.25rem;
	border-radius: var(--lh-radius);
	box-shadow: var(--lh-shadow-card);
	font-weight: 600;
	color: var(--lh-fg);
}
.lh-services__amenity svg { color: var(--lh-primary-deep); }

/* =========================================================================
   11. Payments / Requirements
   ========================================================================= */
.lh-payments__grid {
	display: grid;
	gap: 2rem;
}
@media (min-width: 992px) { .lh-payments__grid { grid-template-columns: repeat(2, 1fr); } }

.lh-payments__card {
	padding: 2rem;
	border-radius: var(--lh-radius-xl);
	box-shadow: var(--lh-shadow-soft);
}
@media (min-width: 768px) { .lh-payments__card { padding: 2.5rem; } }
.lh-payments__card--dark {
	background: var(--lh-gradient-deep);
	color: var(--lh-primary-fg);
}
.lh-payments__card--light {
	background: var(--lh-card);
	border: 1px solid var(--lh-border);
}
.lh-payments__title {
	font-family: var(--lh-font-display);
	font-weight: 800;
	font-size: 1.75rem;
	color: var(--lh-primary-fg);
	margin: 0.5rem 0 0.25rem;
}
.lh-payments__title--dark { color: var(--lh-primary-deep); }
.lh-payments__desc { font-size: 0.9rem; opacity: 0.85; }
.lh-payments__desc--muted { color: var(--lh-muted); opacity: 1; }
.lh-payments__list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.75rem; }
.lh-payments__list-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(255,255,255,0.08);
	backdrop-filter: blur(4px);
	padding: 0.75rem 1rem;
	border-radius: 12px;
	color: inherit;
	font-weight: 500;
}
.lh-payments__card--light .lh-payments__list-item {
	background: rgba(106,122,82,0.12);
	color: var(--lh-primary-deep);
}
.lh-payments__list-item svg { color: var(--lh-primary-glow); flex-shrink: 0; }
.lh-payments__card--light .lh-payments__list-item svg { color: var(--lh-primary); }
.lh-payments__list-item--numbered { padding-left: 0.6rem; }
.lh-payments__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	border-radius: 9999px;
	background: var(--lh-gradient-hero);
	color: var(--lh-primary-fg);
	font-weight: 700;
	font-size: 0.85rem;
	flex-shrink: 0;
}

/* =========================================================================
   12. Gallery
   ========================================================================= */
.lh-gallery__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px)  { .lh-gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lh-gallery__grid { grid-template-columns: repeat(3, 1fr); } }

.lh-gallery__item {
	border-radius: var(--lh-radius-lg);
	overflow: hidden;
	box-shadow: var(--lh-shadow-card);
	aspect-ratio: 4 / 3;
}
.lh-gallery__item img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}
.lh-gallery__item:hover img { transform: scale(1.05); }

/* =========================================================================
   13. FAQ accordion
   ========================================================================= */
.lh-faq { background: var(--lh-gradient-soft); }
.lh-faq__inner { max-width: 60rem; }
.lh-faq__title {
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	font-weight: 800;
	margin: 0.75rem 0 2rem;
	color: var(--lh-fg);
}
.lh-faq__list { display: grid; gap: 1rem; }
.lh-faq__item {
	background: var(--lh-card);
	border-radius: var(--lh-radius);
	box-shadow: var(--lh-shadow-card);
	overflow: hidden;
	border: 1px solid transparent;
	transition: var(--lh-transition);
}
.lh-faq__item[open] { border-color: var(--lh-primary); }
.lh-faq__q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	font-family: var(--lh-font-display);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--lh-fg);
	cursor: pointer;
	list-style: none;
}
.lh-faq__q::-webkit-details-marker { display: none; }
.lh-faq__icon { color: var(--lh-primary); transition: transform 0.3s ease; }
.lh-faq__item[open] .lh-faq__icon { transform: rotate(45deg); }
.lh-faq__a {
	padding: 0 1.5rem 1.25rem;
	color: var(--lh-muted);
	line-height: 1.65;
	font-size: 0.98rem;
}

/* =========================================================================
   14. CTA banner
   ========================================================================= */
.lh-cta__panel {
	position: relative;
	overflow: hidden;
	background: var(--lh-gradient-hero);
	border-radius: var(--lh-radius-2xl);
	padding: 2.5rem;
	box-shadow: var(--lh-shadow-glow);
}
@media (min-width: 768px) { .lh-cta__panel { padding: 4rem; } }
.lh-cta__glow {
	position: absolute;
	top: -5rem; right: -5rem;
	height: 20rem; width: 20rem;
	border-radius: 9999px;
	background: rgba(255,255,255,0.12);
	filter: blur(60px);
}
.lh-cta__grid {
	position: relative;
	display: grid;
	gap: 2rem;
}
@media (min-width: 768px) { .lh-cta__grid { grid-template-columns: 1.5fr 1fr; align-items: center; } }
.lh-cta__title {
	font-size: clamp(1.9rem, 4vw, 3rem);
	color: var(--lh-primary-fg);
	margin: 0 0 1rem;
	font-weight: 800;
}
.lh-cta__desc {
	color: rgba(255,255,255,0.9);
	font-size: 1.1rem;
	max-width: 36rem;
	margin: 0;
}
.lh-cta__buttons { display: flex; flex-direction: column; gap: 0.75rem; }

/* =========================================================================
   15. Contact section
   ========================================================================= */
.lh-contact { background: var(--lh-gradient-soft); }
.lh-contact__grid { display: grid; gap: 2.5rem; }
@media (min-width: 992px) { .lh-contact__grid { grid-template-columns: 0.9fr 1.1fr; } }
.lh-contact__title {
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	margin: 0.75rem 0 1rem;
	font-weight: 800;
	color: var(--lh-fg);
}
.lh-contact__desc { color: var(--lh-muted); font-size: 1.05rem; }
.lh-contact__cards { display: grid; gap: 1rem; margin-top: 2rem; }
.lh-contact__card {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--lh-card);
	padding: 1.15rem 1.25rem;
	border-radius: var(--lh-radius);
	font-weight: 700;
	color: var(--lh-fg);
	box-shadow: var(--lh-shadow-card);
	text-decoration: none;
}
.lh-contact__card svg { color: var(--lh-primary-deep); }

.lh-contact__form {
	background: var(--lh-card);
	border-radius: var(--lh-radius-xl);
	padding: 1.5rem;
	box-shadow: var(--lh-shadow-card);
}
@media (min-width: 768px) { .lh-contact__form { padding: 2.5rem; } }
.lh-contact__form-title {
	font-family: var(--lh-font-display);
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--lh-fg);
	margin: 0 0 1.5rem;
}

/* Form controls */
.lh-form { display: grid; gap: 0.9rem; }
.lh-form input,
.lh-form textarea,
.lh-form select {
	width: 100%;
	padding: 0.9rem 1rem;
	border-radius: 12px;
	border: 1px solid var(--lh-border);
	background: var(--lh-bg);
	font: inherit;
	color: var(--lh-fg);
	transition: var(--lh-transition);
}
.lh-form input:focus,
.lh-form textarea:focus,
.lh-form select:focus {
	outline: none;
	border-color: var(--lh-primary);
	box-shadow: 0 0 0 3px rgba(106,122,82,0.18);
}
.lh-form textarea { min-height: 9rem; resize: vertical; }
.lh-form__note {
	font-size: 0.8rem;
	color: var(--lh-muted-2);
	margin: 0.5rem 0 0;
}

/* =========================================================================
   16. Footer
   ========================================================================= */
.lh-footer {
	background: var(--lh-gradient-deep);
	color: var(--lh-primary-fg);
}
.lh-footer .lh-container { padding-top: 4rem; padding-bottom: 2rem; }
.lh-footer__grid {
	display: grid;
	gap: 2.5rem;
}
@media (min-width: 768px) { .lh-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.lh-footer__logo { height: 64px; max-width: 220px; object-fit: contain; }
.lh-footer__brand-text {
	font-family: var(--lh-font-display);
	font-weight: 800;
	font-size: 1.25rem;
	color: #fff;
}
.lh-footer__about {
	font-size: 0.9rem;
	opacity: 0.82;
	line-height: 1.65;
	margin-top: 1rem;
}
.lh-footer__title {
	font-family: var(--lh-font-display);
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 1rem;
	color: #fff;
}
.lh-footer__menu,
.lh-footer__list,
.lh-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
	font-size: 0.9rem;
	opacity: 0.92;
}
.lh-footer__menu a { transition: color 0.2s; }
.lh-footer__menu a:hover { color: var(--lh-primary-glow); }
.lh-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}
.lh-footer__contact svg { margin-top: 3px; flex-shrink: 0; }
.lh-footer__contact a:hover { color: var(--lh-primary-glow); }
.lh-footer__social {
	display: flex;
	gap: 0.6rem;
	margin-top: 1rem;
}
.lh-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	border-radius: 9999px;
	background: rgba(165,106,63,0.15);
	color: #fff;
	transition: var(--lh-transition);
}
.lh-footer__social a:hover {
	background: rgba(165,106,63,0.35);
	color: #fff;
}
.lh-footer__bottom {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255,255,255,0.14);
	font-size: 0.8rem;
	opacity: 0.75;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	justify-content: space-between;
}
@media (min-width: 640px) { .lh-footer__bottom { flex-direction: row; } }
.lh-footer__bottom p { margin: 0; }

/* =========================================================================
   17. Blog card / page / single
   ========================================================================= */
.lh-page__inner { max-width: 52rem; margin: 0 auto; }
.lh-page__head { margin-bottom: 2rem; }
.lh-page__title { font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.lh-page__thumb {
	margin-bottom: 2rem;
	border-radius: var(--lh-radius-xl);
	overflow: hidden;
	box-shadow: var(--lh-shadow-card);
}
.lh-page__thumb img { width: 100%; height: auto; }

.lh-archive__head {
	padding: 4rem 0 2.5rem;
	background: var(--lh-gradient-soft);
}
.lh-archive__title { margin: 0; font-size: clamp(2rem, 4vw, 3rem); }
.lh-archive__desc { margin-top: 0.75rem; color: var(--lh-muted); max-width: 48rem; }
.lh-archive__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px)  { .lh-archive__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px)  { .lh-archive__grid { grid-template-columns: repeat(3, 1fr); } }

.lh-card {
	background: var(--lh-card);
	border-radius: var(--lh-radius-xl);
	overflow: hidden;
	box-shadow: var(--lh-shadow-card);
	transition: var(--lh-transition);
	display: flex;
	flex-direction: column;
}
.lh-card:hover { transform: translateY(-3px); box-shadow: var(--lh-shadow-glow); }
.lh-post-thumb img { width: 100%; height: 220px; object-fit: cover; }
.lh-card__body { padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.lh-card__title { font-size: 1.25rem; margin: 0 0 0.5rem; }
.lh-card__title a { color: var(--lh-primary-deep); }
.lh-card__meta { font-size: 0.8rem; color: var(--lh-muted-2); margin-bottom: 0.5rem; }
.lh-card__excerpt { color: var(--lh-muted); font-size: 0.95rem; flex: 1; }
.lh-card__more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
	color: var(--lh-primary-deep);
	margin-top: 0.75rem;
}
.lh-card__more:hover { color: var(--lh-primary-glow); }

.lh-single__header {
	padding: 4rem 0 2rem;
	background: var(--lh-gradient-soft);
}
.lh-single__header-inner { max-width: 52rem; }
.lh-single__meta { font-size: 0.88rem; color: var(--lh-muted); margin-bottom: 0.5rem; }
.lh-single__title { margin: 0; font-size: clamp(2rem, 4.5vw, 3rem); }
.lh-single__thumb {
	margin: 2rem auto;
	border-radius: var(--lh-radius-xl);
	overflow: hidden;
	box-shadow: var(--lh-shadow-card);
	max-width: 52rem;
}
.lh-single__body { max-width: 52rem; margin: 0 auto; padding: 2rem 0; }

.lh-pagination { margin-top: 3rem; text-align: center; }
.lh-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem; height: 2.5rem;
	padding: 0 0.75rem;
	border-radius: 999px;
	background: var(--lh-card);
	color: var(--lh-primary-deep);
	margin: 0 0.15rem;
	font-weight: 600;
	text-decoration: none;
	transition: var(--lh-transition);
}
.lh-pagination .page-numbers.current,
.lh-pagination .page-numbers:hover {
	background: var(--lh-gradient-hero);
	color: #fff;
}

/* =========================================================================
   18. WYSIWYG content
   ========================================================================= */
.lh-wysiwyg { font-size: 1.05rem; line-height: 1.75; color: var(--lh-fg); }
.lh-wysiwyg > * + * { margin-top: 1.1rem; }
.lh-wysiwyg p { color: var(--lh-muted); }
.lh-wysiwyg h1, .lh-wysiwyg h2, .lh-wysiwyg h3, .lh-wysiwyg h4 { margin-top: 1.75em; }
.lh-wysiwyg a { color: var(--lh-primary); text-decoration: underline; text-underline-offset: 2px; }
.lh-wysiwyg a:hover { color: var(--lh-primary-deep); }
.lh-wysiwyg blockquote {
	border-left: 4px solid var(--lh-primary);
	padding: 0.5rem 1rem;
	margin: 1.5rem 0;
	background: var(--lh-card);
	border-radius: 0 var(--lh-radius) var(--lh-radius) 0;
	color: var(--lh-muted);
	font-style: italic;
}
.lh-wysiwyg img { border-radius: var(--lh-radius); margin: 1.5rem 0; }
.lh-wysiwyg ul, .lh-wysiwyg ol { padding-left: 1.5em; }

/* =========================================================================
   19. 404 page
   ========================================================================= */
.lh-404 { background: var(--lh-gradient-soft); text-align: center; }
.lh-404__inner { max-width: 40rem; margin: 0 auto; padding: 3rem 0; }
.lh-404__code {
	font-family: var(--lh-font-display);
	font-size: clamp(5rem, 15vw, 9rem);
	font-weight: 800;
	background: var(--lh-gradient-hero);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1;
	display: block;
}
.lh-404__title { margin: 1rem 0; }
.lh-404__desc { color: var(--lh-muted); font-size: 1.1rem; }
.lh-404__actions { margin: 2rem 0 1.5rem; display: flex; justify-content: center; }
.lh-404__search { max-width: 24rem; margin: 0 auto; }

/* Search form */
.lh-searchform { display: flex; gap: 0.5rem; }
.lh-searchform__input {
	flex: 1;
	padding: 0.75rem 1rem;
	border-radius: 999px;
	border: 1px solid var(--lh-border);
	background: var(--lh-bg);
	font: inherit;
}
.lh-searchform__input:focus {
	outline: none;
	border-color: var(--lh-primary);
	box-shadow: 0 0 0 3px rgba(106,122,82,0.18);
}

/* =========================================================================
   20. Comments
   ========================================================================= */
.lh-comments { padding: 3rem 0; }
.lh-comments__title { font-size: 1.5rem; margin-bottom: 1.5rem; }
.lh-comments__list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	display: grid;
	gap: 1rem;
}
.lh-comments__list .comment-body {
	background: var(--lh-card);
	border-radius: var(--lh-radius);
	padding: 1.25rem 1.5rem;
	box-shadow: var(--lh-shadow-card);
}
.lh-comments__list .children { list-style: none; margin: 1rem 0 0 1.5rem; padding: 0; }
.lh-comments__closed { color: var(--lh-muted); text-align: center; }

/* =========================================================================
   21. Utility
   ========================================================================= */
.lh-icon { display: inline-block; vertical-align: middle; }

/* Print */
@media print {
	.lh-header, .lh-footer, .lh-cta, .lh-btn { display: none !important; }
	body { background: #fff; color: #000; }
}
