:root {
	--heal-sage: #7faf9b;
	--heal-forest: #35594a;
	--heal-cream: #fcfaf6;
	--heal-header-bg: #fcfaf6;
	--heal-header-text: #1f2a24;
	--heal-footer-bg: #35594a;
	--heal-footer-text: #ffffff;
	--heal-sand: #f2ede4;
	--heal-charcoal: #1f2a24;
	--heal-border: rgba(53, 89, 74, 0.14);
	--heal-shadow: 0 18px 50px rgba(53, 89, 74, 0.12);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(127, 175, 155, 0.16), transparent 25%),
		linear-gradient(180deg, #fffdf8 0%, var(--heal-cream) 100%);
	color: var(--heal-charcoal);
	font-family: "Source Sans 3", sans-serif;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 1rem;
	font-family: "Cormorant Garamond", serif;
	line-height: 1.08;
}

.wrap {
	width: min(1240px, calc(100% - 2rem));
	margin: 0 auto;
}

.wrap--narrow {
	width: min(760px, calc(100% - 2rem));
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(18px);
	background: color-mix(in srgb, var(--heal-header-bg) 88%, transparent);
	color: var(--heal-header-text);
	border-bottom: 1px solid var(--heal-border);
}

.site-header__inner,
.site-footer__inner,
.hero__grid,
.section-heading,
.site-branding {
	display: flex;
	align-items: center;
}

.site-header__inner,
.site-footer__inner,
.section-heading {
	justify-content: space-between;
}

.site-header__inner {
	gap: 1.5rem;
	padding: 1rem 0;
}

.site-branding {
	gap: 1rem;
}

.site-kicker,
.eyebrow,
.slide__meta,
.article-card__meta {
	margin-bottom: 0.4rem;
	color: var(--heal-forest);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.site-title {
	margin: 0;
	font-size: clamp(1.7rem, 2vw, 2.5rem);
}

.site-description {
	margin: 0;
	color: color-mix(in srgb, var(--heal-header-text) 76%, transparent);
}

.site-nav .menu,
.site-nav .sub-menu,
.category-jump__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-nav .menu {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 0.45rem;
	border: 1px solid rgba(53, 89, 74, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.64);
	box-shadow: 0 10px 30px rgba(53, 89, 74, 0.08);
}

.site-nav .menu-item {
	position: relative;
}

.site-nav a {
	display: inline-flex;
	align-items: center;
	padding: 0.8rem 1rem;
	border-radius: 999px;
	font-weight: 700;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-nav .menu > .menu-item > a:hover,
.site-nav .menu > .menu-item > a:focus-visible,
.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a {
	background: linear-gradient(135deg, var(--heal-sage), color-mix(in srgb, var(--heal-sage) 60%, white));
	color: #fff;
	box-shadow: 0 8px 22px rgba(127, 175, 155, 0.35);
	transform: translateY(-1px);
}

.site-nav .sub-menu {
	position: absolute;
	top: calc(100% + 0.8rem);
	left: 0;
	min-width: 260px;
	display: none;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(53, 89, 74, 0.1);
	border-radius: 24px;
	box-shadow: 0 24px 50px rgba(20, 34, 28, 0.16);
}

.site-nav .menu-item:hover > .sub-menu,
.site-nav .menu-item:focus-within > .sub-menu {
	display: block;
}

.site-nav .sub-menu a {
	display: flex;
	justify-content: space-between;
	border-radius: 16px;
	padding: 0.9rem 1rem;
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus-visible {
	background: rgba(127, 175, 155, 0.12);
	color: var(--heal-forest);
	transform: none;
	box-shadow: none;
}

.menu-toggle {
	display: none;
	border: 1px solid var(--heal-border);
	border-radius: 999px;
	background: color-mix(in srgb, var(--heal-header-bg) 88%, white);
	padding: 0.75rem 1rem;
	font-weight: 700;
	color: var(--heal-header-text);
}

.hero {
	padding: 3.4rem 0 2rem;
}

.hero__grid {
	align-items: stretch;
	gap: 2rem;
}

.hero__content,
.hero__panel,
.slide,
.article-card,
.article-single__post {
	border: 1px solid var(--heal-border);
	border-radius: 28px;
	box-shadow: var(--heal-shadow);
}

.hero__content {
	position: relative;
	flex: 0 0 42%;
	padding: 3rem;
	overflow: hidden;
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.8), transparent 32%),
		linear-gradient(160deg, rgba(127, 175, 155, 0.24), rgba(255, 255, 255, 0.88));
}

.hero__content h2 {
	font-size: clamp(2.8rem, 5vw, 5rem);
	max-width: 10ch;
}

.hero__ornament {
	position: absolute;
	top: -80px;
	right: -60px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.88), rgba(127, 175, 155, 0.12) 60%, transparent 70%);
	pointer-events: none;
}

.hero__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	padding: 0;
	margin: 1.25rem 0 0;
	list-style: none;
}

.hero__tags li {
	padding: 0.55rem 0.9rem;
	border: 1px solid rgba(53, 89, 74, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.62);
	font-size: 0.95rem;
	font-weight: 700;
}

.hero__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.6rem;
}

.hero__stats > div {
	padding: 1rem 1.1rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(53, 89, 74, 0.1);
}

.hero__stat-number,
.hero__stat-label {
	display: block;
}

.hero__stat-number {
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	font-weight: 700;
}

.hero__stat-label {
	color: rgba(31, 42, 36, 0.76);
	font-size: 0.92rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.5rem;
}

.button,
.text-link {
	transition: 180ms ease;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.4rem;
	border-radius: 999px;
	background: var(--heal-forest);
	color: #fff;
	font-weight: 700;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button--ghost {
	background: transparent;
	color: var(--heal-forest);
	border: 1px solid var(--heal-border);
}

.hero__panel {
	flex: 1;
	padding: 1rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
}

.slider {
	position: relative;
	overflow: hidden;
}

.slider__track {
	display: flex;
	transition: transform 280ms ease;
}

.slide {
	flex: 0 0 100%;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 1rem;
	padding: 1rem;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(127, 175, 155, 0.05));
}

.slide__media img,
.slide__placeholder {
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(127, 175, 155, 0.5), rgba(53, 89, 74, 0.18));
}

.slide__content,
.article-card__body {
	padding: 0.5rem;
}

.slide__content h3,
.article-card h3,
.article-single__post h1 {
	font-size: clamp(1.8rem, 3vw, 3rem);
}

.slider__controls {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	display: flex;
	gap: 0.5rem;
}

.slider__button {
	border: none;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--heal-forest);
	color: #fff;
	font-size: 1.1rem;
	cursor: pointer;
}

.category-jump {
	padding: 0 0 1rem;
}

.category-jump__header {
	margin-bottom: 1rem;
}

.category-jump__header h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	margin-bottom: 0;
}

.category-jump__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.category-jump__list a {
	display: inline-flex;
	padding: 0.8rem 1.1rem;
	border-radius: 999px;
	border: 1px solid var(--heal-border);
	background: rgba(255, 255, 255, 0.82);
	font-weight: 700;
	box-shadow: 0 10px 24px rgba(53, 89, 74, 0.08);
}

.content-section,
.article-single {
	padding: 2rem 0 3rem;
}

.content-section:nth-of-type(even) .wrap {
	position: relative;
}

.content-section:nth-of-type(even) .wrap::before {
	content: "";
	position: absolute;
	inset: -1.1rem -0.5rem auto;
	height: 78%;
	border-radius: 34px;
	background: rgba(127, 175, 155, 0.06);
	z-index: -1;
}

.section-heading {
	gap: 1rem;
	margin-bottom: 1.5rem;
	align-items: end;
}

.section-heading h2,
.section-heading h1 {
	margin-bottom: 0;
	font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.section-intro {
	max-width: 640px;
	margin-top: 0.75rem;
	color: rgba(31, 42, 36, 0.78);
}

.text-link {
	color: var(--heal-forest);
	font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
	color: var(--heal-sage);
}

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

.article-grid--editorial {
	align-items: stretch;
}

.article-card {
	overflow: hidden;
	background: #fff;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-card:hover,
.article-card:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 24px 46px rgba(53, 89, 74, 0.14);
	border-color: rgba(127, 175, 155, 0.3);
}

.article-card__media img,
.article-card__placeholder {
	width: 100%;
	height: 260px;
	object-fit: cover;
	background: linear-gradient(135deg, rgba(127, 175, 155, 0.45), rgba(53, 89, 74, 0.15));
}

.article-card__body {
	padding: 1.25rem;
}

.article-card h3 {
	font-size: 2rem;
}

.article-card--featured {
	grid-column: span 2;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.article-card--featured .article-card__media img,
.article-card--featured .article-card__placeholder {
	height: 100%;
	min-height: 100%;
}

.article-card--featured .article-card__body {
	padding: 1.6rem;
	align-self: center;
}

.article-card--featured h3 {
	font-size: clamp(2.2rem, 3.4vw, 3.4rem);
}

.article-card--empty {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
	background: rgba(127, 175, 155, 0.08);
}

.article-card--page {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(127, 175, 155, 0.08));
}

.article-single__post {
	padding: 2rem;
	background: #fff;
}

.article-single__meta {
	margin-bottom: 1.5rem;
	color: rgba(31, 42, 36, 0.72);
	font-weight: 600;
}

.article-single__image {
	margin-bottom: 1.5rem;
}

.article-single__image img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	border-radius: 20px;
}

.article-single__content > * + * {
	margin-top: 1rem;
}

.wp-block-image img,
.article-single__content img {
	border-radius: 18px;
}

.site-footer {
	padding: 2rem 0 3rem;
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 28%),
		var(--heal-footer-bg);
	color: color-mix(in srgb, var(--heal-footer-text) 86%, transparent);
}

.site-footer .menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.site-footer__inner {
	align-items: start;
	gap: 2rem;
}

.footer-title {
	margin-bottom: 0.4rem;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	color: var(--heal-footer-text);
}

.footer-copy {
	margin-top: 1rem;
	font-size: 0.95rem;
	color: color-mix(in srgb, var(--heal-footer-text) 68%, transparent);
}

.footer-cta {
	max-width: 380px;
	padding: 1.5rem;
	border: 1px solid color-mix(in srgb, var(--heal-footer-text) 14%, transparent);
	border-radius: 24px;
	background: color-mix(in srgb, var(--heal-footer-text) 8%, transparent);
}

.footer-cta h2 {
	font-size: 2.2rem;
	color: var(--heal-footer-text);
}

.footer-cta .button {
	margin-top: 0.5rem;
	background: var(--heal-footer-text);
	color: var(--heal-footer-bg);
}

@media (max-width: 960px) {
	.menu-toggle {
		display: inline-flex;
	}

	.site-header__inner {
		flex-wrap: wrap;
	}

	.site-nav {
		display: none;
		width: 100%;
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav .menu,
	.hero__grid,
	.slide,
	.article-grid,
	.section-heading {
		grid-template-columns: 1fr;
		flex-direction: column;
		align-items: stretch;
	}

	.site-footer__inner {
		flex-direction: column;
	}

	.site-nav .menu {
		gap: 0.5rem;
	}

	.site-nav .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		margin-top: 0.5rem;
		box-shadow: none;
	}

	.hero__content {
		flex-basis: auto;
	}

	.hero__stats,
	.article-card--featured {
		grid-template-columns: 1fr;
	}

	.article-card--featured {
		grid-column: span 1;
	}
}

@media (max-width: 720px) {
	.hero__content,
	.article-single__post {
		padding: 1.5rem;
	}

	.slide__media img,
	.slide__placeholder {
		min-height: 240px;
	}
}
