/*
Theme Name: Natural Menopausing
Theme URI: https://naturalmenopausing.com
Author: Kerry Archer
Author URI: https://naturalmenopausing.com
Description: Custom WordPress theme for Natural Menopausing by Artemis Natural Health Ltd
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: natural-menopausing
Tags: wellness, health, women
*/

/* ============================================
   CSS Custom Properties
============================================ */
:root {
	--color-primary:       #adcac9;
	--color-primary-dark:  #7aabaa;
	--color-primary-light: #e3eeee;
	--color-gold:          #c6bea6;
	--color-text:          #353535;
	--color-heading:       #41525f;
	--color-bg:            #ffffff;
	--color-bg-soft:       #f5f8f8;
	--color-border:        #dce8e8;

	--font-heading: 'Comfortaa', system-ui, sans-serif;
	--font-body:    'Nunito', system-ui, sans-serif;
	--font-signature: 'Caveat', cursive;

	--size-xs:   0.75rem;
	--size-sm:   0.875rem;
	--size-base: 1.125rem;
	--size-lg:   1.25rem;
	--size-xl:   1.5rem;
	--size-2xl:  2rem;
	--size-3xl:  2.5rem;
	--size-4xl:  3.5rem;

	--space-xs:  0.5rem;
	--space-sm:  1rem;
	--space-md:  1.5rem;
	--space-lg:  2.5rem;
	--space-xl:  4rem;
	--space-2xl: 6rem;

	--container-max:     1400px;
	--container-content: 860px;
	--radius:     4px;
	--shadow:     0 2px 12px rgba(65, 82, 95, 0.08);
	--transition: 0.2s ease;
}

/* ============================================
   Reset & Base
============================================ */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

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

body {
	font-family: var(--font-body);
	font-size: var(--size-base);
	font-weight: 400;
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--color-heading);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-primary-dark);
}

ul, ol {
	padding-left: 1.5rem;
}

/* Skip link */
.skip-link {
	position: absolute;
	top: -100%;
	left: 0;
	background: var(--color-heading);
	color: #fff;
	padding: 0.5rem 1rem;
	z-index: 999;
	text-decoration: none;
}

.skip-link:focus {
	top: 0;
}

/* Screen reader text */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

/* ============================================
   Typography
============================================ */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--color-heading);
	line-height: 1.25;
	letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, var(--size-4xl)); }
h2 { font-size: clamp(1.8rem, 3.5vw, var(--size-3xl)); }
h3 { font-size: clamp(1.4rem, 2.5vw, var(--size-2xl)); }
h4 { font-size: var(--size-xl); }
h5 { font-size: var(--size-lg); }
h6 { font-size: var(--size-base); font-weight: 600; }

p {
	margin-bottom: 1.25rem;
}

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

strong { font-weight: 600; }
em     { font-style: italic; }

blockquote {
	border-left: 3px solid var(--color-primary);
	padding: var(--space-sm) var(--space-md);
	margin: var(--space-md) 0;
	font-family: var(--font-heading);
	font-size: var(--size-xl);
	font-style: italic;
	color: var(--color-heading);
	background: var(--color-bg-soft);
}

/* ============================================
   Layout
============================================ */
.container {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--space-md);
}

.container--narrow {
	max-width: var(--container-content);
	margin-inline: auto;
	padding-inline: var(--space-md);
}

.section {
	padding-block: var(--space-2xl);
}

.section--soft {
	background: var(--color-bg-soft);
}

.section--teal {
	background: var(--color-primary-light);
}

.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
	align-items: center;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

/* ============================================
   Buttons
============================================ */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-size: var(--size-sm);
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.9rem 2rem;
	border-radius: var(--radius);
	cursor: pointer;
	transition: all var(--transition);
	border: 2px solid transparent;
	line-height: 1;
}

.btn--primary {
	background: var(--color-heading);
	color: #ffffff;
	border-color: var(--color-heading);
}

.btn--primary:hover {
	background: var(--color-text);
	border-color: var(--color-text);
	color: #ffffff;
}

.btn--outline {
	background: transparent;
	color: var(--color-heading);
	border-color: var(--color-heading);
}

.btn--outline:hover {
	background: var(--color-heading);
	color: #ffffff;
}

.btn--teal {
	background: var(--color-primary);
	color: var(--color-heading);
	border-color: var(--color-primary);
}

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

/* ============================================
   Header
============================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
	padding-block: 1rem;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
}

/* Logo */
.site-logo {
	flex-shrink: 0;
}

.site-logo a {
	text-decoration: none;
}

.site-logo img,
.site-logo__image {
	height: 140px;
	width: auto;
	max-width: none;
	display: block;
	/* The logo file has ~9% blank space on its left; pull it out so the
	   artwork lines up with the hero text below */
	margin-left: -42px;
}

.site-logo__link {
	display: inline-block;
	line-height: 0;
	margin-left: -1.25rem;
}

.site-logo__text {
	font-family: var(--font-heading);
	font-size: var(--size-xl);
	font-weight: 500;
	color: var(--color-heading);
	text-decoration: none;
}

/* Botanical banner above footer */
.botanical-banner {
	background-image: url('assets/images/botanical-banner-light.jpg');
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	height: 200px;
	width: 100%;
}

@media (max-width: 1439px) {
	.site-logo img,
	.site-logo__image { height: 100px; margin-left: -30px; }
}

@media (max-width: 768px) {
	.botanical-banner { height: 140px; }
	.site-logo img,
	.site-logo__image { height: 100px; margin-left: -30px; }
}

@media (max-width: 480px) {
	.site-logo img,
	.site-logo__image { height: 75px; margin-left: -23px; }
}

/* Primary Nav */
.primary-nav {
	display: flex;
	align-items: center;
}

.primary-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.primary-nav ul li {
	position: relative;
}

.primary-nav ul li a {
	display: block;
	padding: 0.5rem 0.75rem;
	font-size: var(--size-sm);
	font-weight: 500;
	color: var(--color-heading);
	text-decoration: none;
	border-radius: var(--radius);
	transition: background var(--transition), color var(--transition);
	white-space: nowrap;
}

.primary-nav ul li a:hover,
.primary-nav ul li.current-menu-item > a,
.primary-nav ul li.current-menu-ancestor > a {
	background: var(--color-bg-soft);
	color: var(--color-primary-dark);
}

/* CTA nav item — add CSS class "btn-cta" to menu item in WP admin */
.primary-nav ul li.btn-cta > a {
	background: var(--color-heading);
	color: #ffffff;
	padding: 0.6rem 1.25rem;
	margin-left: 0.5rem;
	border-radius: var(--radius);
}

.primary-nav ul li.btn-cta > a:hover {
	background: var(--color-text);
	color: #ffffff;
}

/* Dropdown */
.primary-nav ul li ul {
	display: none;
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	min-width: 220px;
	flex-direction: column;
	padding: 0.5rem 0;
	z-index: 200;
}

.primary-nav ul li:hover > ul,
.primary-nav ul li:focus-within > ul {
	display: flex;
}

.primary-nav ul li ul li a {
	padding: 0.5rem 1rem;
	font-weight: 400;
	border-radius: 0;
	white-space: normal;
}

/* Hamburger */
.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	flex-direction: column;
	gap: 5px;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-heading);
	transition: all var(--transition);
	transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Footer
============================================ */
.site-footer {
	background: var(--color-primary-dark);
	color: #ffffff;
	padding-block: var(--space-xl);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: var(--space-lg);
}

.site-footer a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color var(--transition);
}

.site-footer a:hover {
	color: var(--color-gold);
}

.site-footer__brand h3 {
	font-family: var(--font-heading);
	color: #ffffff;
	font-size: var(--size-xl);
	margin-bottom: 0.75rem;
	font-weight: 700;
}

.site-footer__brand p {
	font-size: var(--size-sm);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: var(--space-sm);
}

.site-footer__nav h4,
.site-footer__social h4 {
	font-family: var(--font-body);
	font-size: var(--size-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: var(--space-sm);
}

.site-footer__nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.site-footer__nav ul li a {
	font-size: var(--size-sm);
}

.social-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.social-links a {
	font-size: var(--size-sm);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	margin-top: var(--space-lg);
	padding-top: var(--space-md);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--size-xs);
	color: rgba(255, 255, 255, 0.75);
}

.site-footer__bottom a {
	color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   Main Content
============================================ */
.site-main {
	min-height: 60vh;
}

.entry-header {
	padding-block: var(--space-xl) var(--space-lg);
	border-bottom: 1px solid var(--color-border);
	margin-bottom: var(--space-lg);
}

.entry-header .entry-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 0;
}

.entry-content {
	padding-block: var(--space-lg);
}

.entry-content h2 { margin-bottom: 0.75rem; margin-top: 2rem; }
.entry-content h3 { margin-bottom: 0.5rem;  margin-top: 1.75rem; }
.entry-content ul,
.entry-content ol  { margin-bottom: 1.25rem; }
.entry-content li  { margin-bottom: 0.4rem; }

/* ============================================
   Blog Archive
============================================ */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: var(--space-md);
}

.post-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow var(--transition);
}

.post-card:hover {
	box-shadow: var(--shadow);
}

.post-card__image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.post-card__body {
	padding: var(--space-md);
}

.post-card__meta {
	font-size: var(--size-xs);
	color: var(--color-primary-dark);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

.post-card__title {
	font-size: var(--size-lg);
	margin-bottom: 0.5rem;
}

.post-card__title a {
	text-decoration: none;
}

.post-card__excerpt {
	font-size: var(--size-sm);
	color: var(--color-text);
	margin-bottom: var(--space-sm);
}

/* ============================================
   404
============================================ */
.error-404 {
	padding-block: var(--space-2xl);
	text-align: center;
}

.error-404 h1 {
	font-size: clamp(3rem, 10vw, 6rem);
	color: var(--color-primary);
	line-height: 1;
	margin-bottom: var(--space-sm);
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 1024px) {
	.grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__brand {
		grid-column: span 2;
	}
}

/* Burger nav below 1300px - full menu plus large logo only fit on wider screens */
@media (max-width: 1299px) {
	.nav-toggle {
		display: flex;
	}

	.primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--color-bg);
		border-top: 1px solid var(--color-border);
		border-bottom: 1px solid var(--color-border);
	}

	.primary-nav ul {
		display: none;
		flex-direction: column;
		padding: var(--space-sm);
		gap: 0.25rem;
		width: 100%;
	}

	.primary-nav ul.is-open {
		display: flex;
	}

	.primary-nav ul li ul {
		position: static;
		box-shadow: none;
		border: none;
		background: var(--color-bg-soft);
		border-radius: 0;
		padding: 0.25rem 0;
		display: none;
	}

	.primary-nav ul li.is-open > ul {
		display: flex;
	}

	.primary-nav ul li.btn-cta > a {
		margin-left: 0;
	}
}

@media (max-width: 768px) {
	:root {
		--space-2xl: 4rem;
		--space-xl:  2.5rem;
	}

	.grid-2 {
		grid-template-columns: 1fr;
	}

	.grid-3 {
		grid-template-columns: 1fr;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.site-footer__brand {
		grid-column: span 1;
	}

	.site-footer__bottom {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}
}

@media (max-width: 480px) {
	html { font-size: 16px; }
}

/* ============================================
   Homepage — Hero
============================================ */
.hero {
	padding-block: var(--space-2xl);
	overflow: hidden;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

.hero__eyebrow {
	display: inline-block;
	font-size: var(--size-xs);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-primary-dark);
	margin-bottom: var(--space-sm);
}

.hero__title {
	font-size: clamp(1.8rem, 3.2vw, 2.6rem);
	line-height: 1.2;
	margin-bottom: var(--space-md);
	white-space: nowrap;
}

.hero__subtitle {
	font-size: var(--size-lg);
	color: var(--color-heading);
	line-height: 1.6;
	margin-bottom: var(--space-lg);
	max-width: 520px;
}

.hero__ctas {
	display: flex;
	gap: var(--space-sm);
	flex-wrap: wrap;
	margin-bottom: var(--space-md);
}

.hero__trust {
	font-size: var(--size-xs);
	color: var(--color-primary-dark);
	letter-spacing: 0.04em;
}

.hero__image {
	position: relative;
}

.hero__image img {
	width: 100%;
	border-radius: 8px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.hero__image-placeholder {
	width: 100%;
	aspect-ratio: 4 / 5;
	background: var(--color-primary-light);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary-dark);
	font-size: var(--size-sm);
	text-align: center;
	padding: var(--space-md);
}

/* Bleed hero variant - photo as right-side faded background */
.hero--bleed {
	position: relative;
	overflow: hidden;
	min-height: 720px;
}

.hero--bleed::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 62%;
	background-image: url('assets/images/hero-kerry-gazing.jpg');
	background-size: cover;
	background-position: 30% 20%;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.85) 80%, rgba(0,0,0,0.7) 100%);
	mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.85) 80%, rgba(0,0,0,0.7) 100%);
	opacity: 0.85;
	filter: saturate(0.85);
	z-index: 0;
	pointer-events: none;
}

.hero--bleed .container {
	position: relative;
	z-index: 2;
}

.hero--bleed .hero__image {
	display: none;
}

.hero--bleed .hero__inner {
	grid-template-columns: 1fr;
}

.hero--bleed .hero__content {
	max-width: 540px;
}

@media (max-width: 768px) {
	.hero--bleed::after {
		width: 100%;
		opacity: 0.22;
	}
	.hero--bleed .hero__content {
		max-width: 100%;
	}
}

/* ============================================
   Homepage — Eyebrow / Section Labels
============================================ */
.eyebrow {
	display: inline-block;
	font-size: var(--size-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-bottom: var(--space-sm);
}

.section__header {
	margin-bottom: var(--space-lg);
}

.section__header--center {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
	margin-bottom: var(--space-lg);
}

.section__header h2 {
	margin-bottom: 0.75rem;
}

.section__header--center h2 {
	position: relative;
	display: inline-block;
	margin-bottom: 0.75rem;
}

.section__header--center h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 2px;
	background: var(--color-gold);
	margin: 0.85rem auto 0;
}

.section__header p {
	font-size: var(--size-lg);
	color: var(--color-heading);
}

/* ============================================
   Homepage — Pain Points
============================================ */
.pain-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-md);
}

.pain-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: var(--space-md);
}

.pain-card__label {
	font-size: var(--size-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-bottom: 0.5rem;
}

.pain-card h3 {
	font-size: var(--size-lg);
	margin-bottom: 0.5rem;
}

.pain-card p:not(.pain-card__label) {
	font-size: var(--size-sm);
	color: var(--color-text);
}

/* ============================================
   Homepage — Pillars
============================================ */
.pillar-card {
	background: var(--color-bg);
	border-radius: var(--radius);
	padding: var(--space-md);
	border: 1px solid var(--color-border);
}

.pillar-card__number {
	font-family: var(--font-heading);
	font-size: var(--size-3xl);
	color: var(--color-gold);
	line-height: 1;
	margin-bottom: var(--space-sm);
	font-weight: 600;
}

.pillar-card h3 {
	font-size: var(--size-xl);
	margin-bottom: 0.75rem;
}

.pillar-card p {
	font-size: var(--size-sm);
	margin-bottom: var(--space-sm);
}

.pillar-card a {
	font-size: var(--size-sm);
	font-weight: 600;
	text-decoration: none;
	color: var(--color-heading);
}

.pillar-card a:hover {
	color: var(--color-primary-dark);
}

.pillar-card { text-align: center; }
.pillar-card__number { text-align: center; }

.pillar-card__image {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto var(--space-sm);
	background: var(--color-primary-light);
	box-shadow: 0 0 0 6px var(--color-primary-light);
	position: relative;
}

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

.pillar-card__image--zoom img {
	transform: scale(1.55);
	transform-origin: center center;
}

.pillar-card__image--zoom-soft img {
	transform: scale(1.85);
	transform-origin: center center;
}

/* ============================================
   Homepage - Meet our founder
============================================ */
.founder-section {
	padding-block: var(--space-2xl);
}

.founder-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

.founder-copy h2 {
	font-size: clamp(2rem, 4vw, 2.6rem);
	color: var(--color-heading);
	margin-bottom: var(--space-md);
	position: relative;
	display: inline-block;
}

.founder-copy h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 2px;
	background: var(--color-gold);
	margin: 0.85rem 0 0;
}

.founder-copy p { margin-bottom: 1.1rem; }
.founder-copy p:last-of-type { margin-bottom: var(--space-md); }
.founder-copy strong { color: var(--color-heading); font-weight: 700; }

.founder-copy .btn--pill {
	display: inline-block;
	background: var(--color-primary);
	color: var(--color-heading);
	border: none;
	border-radius: 999px;
	padding: 0.85rem 2rem;
	font-size: var(--size-sm);
	font-weight: 600;
	text-decoration: none;
	transition: all var(--transition);
	align-self: flex-start;
}

.founder-copy .btn--pill:hover {
	background: var(--color-primary-dark);
	color: #ffffff;
}

.founder-frame {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.founder-frame__image {
	width: 100%;
	max-width: 480px;
	height: auto;
	display: block;
}

.founder-polaroid {
	background: var(--color-primary);
	padding: 18px 18px 56px;
	border-radius: 4px;
	box-shadow: 0 8px 32px rgba(65, 82, 95, 0.12);
	max-width: 380px;
	width: 100%;
	position: relative;
}

.founder-polaroid__photo {
	aspect-ratio: 4 / 5;
	background: var(--color-primary-light);
	background-size: cover;
	background-position: center;
	filter: grayscale(100%);
	overflow: hidden;
}

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

.founder-polaroid__signature {
	position: absolute;
	bottom: 12px;
	right: 24px;
	font-family: var(--font-signature);
	font-size: 2rem;
	font-weight: 600;
	color: var(--color-heading);
	line-height: 1;
}

.founder-frame__dandelions-left,
.founder-frame__dandelions-right {
	position: absolute;
	background-image: url('assets/images/botanical-banner-light.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	width: 110px;
	height: 160px;
	opacity: 0.85;
	pointer-events: none;
}

.founder-frame__dandelions-left {
	left: -30px;
	top: 30px;
	background-position: left center;
}

.founder-frame__dandelions-right {
	right: -30px;
	bottom: 30px;
	background-position: right center;
	transform: scaleX(-1);
}

@media (max-width: 768px) {
	.founder-grid { grid-template-columns: 1fr; }
	.founder-frame__dandelions-left,
	.founder-frame__dandelions-right { display: none; }
}

/* ============================================
   Homepage — Testimonials
============================================ */
.testimonial-card {
	background: var(--color-bg);
	border-radius: var(--radius);
	padding: var(--space-md);
	border-left: 4px solid var(--color-gold);
}

.testimonial-card__quote {
	font-family: var(--font-body);
	font-size: var(--size-base);
	font-style: italic;
	color: var(--color-heading);
	margin-bottom: var(--space-sm);
	line-height: 1.6;
}

.testimonial-card__author {
	font-size: var(--size-sm);
	font-weight: 600;
	color: var(--color-heading);
}

.testimonial-card__detail {
	font-size: var(--size-xs);
	color: var(--color-primary-dark);
}

/* ============================================
   Homepage — About Teaser
============================================ */
.about-teaser__image img {
	width: 100%;
	border-radius: var(--radius);
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.about-teaser__image-placeholder {
	width: 100%;
	aspect-ratio: 3 / 4;
	background: var(--color-primary-light);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary-dark);
	font-size: var(--size-sm);
}

.about-teaser__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--space-md);
}

/* ============================================
   Homepage — Final CTA Banner
============================================ */
.cta-banner {
	background: var(--color-heading);
	color: #ffffff;
	padding-block: var(--space-2xl);
	text-align: center;
}

.cta-banner h2 {
	color: #ffffff;
	font-size: clamp(1.8rem, 3vw, var(--size-3xl));
	max-width: 680px;
	margin-inline: auto;
	margin-bottom: var(--space-md);
}

.cta-banner p {
	color: rgba(255, 255, 255, 0.75);
	font-size: var(--size-lg);
	max-width: 500px;
	margin-inline: auto;
	margin-bottom: var(--space-lg);
}

/* ============================================
   Homepage — Responsive
============================================ */
@media (max-width: 768px) {
	.hero__inner {
		grid-template-columns: 1fr;
	}

	.hero__image {
		order: -1;
	}

	.hero__image img,
	.hero__image-placeholder {
		aspect-ratio: 3 / 2;
	}

	.pain-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   Programme page (The Feel Like You Again Programme)
============================================ */
.page-hero {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	padding-block: var(--space-2xl);
	display: grid;
	align-items: center;
}

.page-hero::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 55%;
	background-image: url('assets/images/hero-kerry-gazing.jpg');
	background-size: cover;
	background-position: 30% 20%;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.85) 70%);
	mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.85) 70%);
	opacity: 0.88;
	filter: saturate(0.9);
	z-index: 0;
	pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero__content { max-width: 560px; }
.page-hero h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.2; margin-bottom: var(--space-md); }
.page-hero__subtitle { font-size: var(--size-lg); color: var(--color-heading); margin-bottom: var(--space-lg); }

@media (max-width: 768px) {
	.page-hero::after { width: 100%; opacity: 0.22; }
	.page-hero__content { max-width: 100%; }
}

.audience-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-md);
	max-width: 880px;
	margin: 0 auto;
}

.audience-item {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-left: 4px solid var(--color-gold);
	padding: var(--space-md);
	border-radius: var(--radius);
}

.audience-item p { margin-bottom: 0; font-size: var(--size-base); }

@media (max-width: 768px) {
	.audience-grid { grid-template-columns: 1fr; }
}

.pillar-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

@media (max-width: 1024px) {
	.pillar-grid { grid-template-columns: 1fr; }
}

.programme-page .pillar-card,
.guide-page .pillar-card {
	background: var(--color-bg);
	border-radius: var(--radius);
	padding: var(--space-md);
	border: 1px solid var(--color-border);
	text-align: center;
}

.programme-page .pillar-card__image,
.guide-page .pillar-card__image { width: 120px; height: 120px; }
.programme-page .pillar-card h3,
.guide-page .pillar-card h3 { font-size: var(--size-xl); margin-bottom: 0.75rem; }
.programme-page .pillar-card p,
.guide-page .pillar-card p { font-size: var(--size-sm); margin-bottom: var(--space-sm); }
.programme-page .pillar-card a,
.guide-page .pillar-card a { font-size: var(--size-sm); font-weight: 700; text-decoration: none; color: var(--color-primary-dark); }

.included-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-md);
	max-width: 880px;
	margin: 0 auto;
}

.included-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-top: 4px solid var(--color-primary-dark);
	padding: var(--space-md);
	border-radius: var(--radius);
}

.included-card__label {
	font-size: var(--size-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-bottom: 0.5rem;
}

.included-card h4 { font-size: var(--size-lg); margin-bottom: 0.5rem; }
.included-card p { font-size: var(--size-sm); margin-bottom: 0; }

@media (max-width: 768px) {
	.included-grid { grid-template-columns: 1fr; }
}

.consult-image { max-width: 720px; margin: 0 auto var(--space-lg); }
.consult-image img {
	width: 100%;
	-webkit-mask-image: radial-gradient(ellipse 100% 100% at center, #000 30%, transparent 95%);
	mask-image: radial-gradient(ellipse 100% 100% at center, #000 30%, transparent 95%);
	filter: saturate(0.92);
}

.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
	content: '';
	position: absolute;
	left: 24px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--color-primary-light);
}

.timeline-item { position: relative; padding-left: 72px; padding-bottom: var(--space-lg); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item__week {
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 50px;
	background: var(--color-gold);
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: var(--size-sm);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	text-align: center;
	line-height: 1;
}

.timeline-item h4 { font-size: var(--size-lg); margin-bottom: 0.5rem; }
.timeline-item p { font-size: var(--size-sm); }

.pricing-card {
	max-width: 680px;
	margin: 0 auto;
	background: var(--color-bg);
	border: 2px solid var(--color-primary-dark);
	border-radius: var(--radius);
	padding: var(--space-xl);
	text-align: center;
	box-shadow: var(--shadow);
}

.pricing-card__price {
	font-family: var(--font-heading);
	font-size: clamp(2.4rem, 4vw, 3.5rem);
	font-weight: 700;
	color: var(--color-primary-dark);
	margin-bottom: var(--space-sm);
}

.pricing-card__label {
	font-size: var(--size-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-bottom: 0.75rem;
}

.pricing-card p { font-size: var(--size-base); }
.pricing-card__note { font-size: var(--size-sm); opacity: 0.75; margin-top: var(--space-md); font-style: italic; }

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

@media (max-width: 1024px) {
	.testimonial-grid { grid-template-columns: 1fr; }
}

.programme-page .testimonial-card,
.guide-page .testimonial-card {
	background: var(--color-bg);
	border-radius: var(--radius);
	padding: var(--space-md);
	border-left: 4px solid var(--color-gold);
}

.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: var(--space-md);
	margin-bottom: var(--space-sm);
}

.faq-item h4 { font-size: var(--size-lg); margin-bottom: 0.5rem; }
.faq-item p { font-size: var(--size-sm); margin-bottom: 0; }

.compliance-block {
	background: var(--color-bg-soft);
	padding: var(--space-md) 0;
	font-size: var(--size-xs);
	color: var(--color-text);
	opacity: 0.85;
	text-align: center;
	border-top: 1px solid var(--color-border);
}

.compliance-block p { margin-bottom: 0.25rem; }

/* ============================================
   Service pages — shared components
   (About, Natural Medicine, Nervous System Support, Test-Based Nutrition)
============================================ */

/* Split hero (text + image) on About, Natural Medicine and Nervous System Support.
   The global .page-hero carries the programme page's Kerry photo in ::after,
   so these pages switch it off and use a soft background instead. */
.about-page .page-hero,
.natural-medicine-page .page-hero,
.nervous-system-page .page-hero {
	background: var(--color-bg-soft);
	min-height: 480px;
}

.about-page .page-hero::after,
.natural-medicine-page .page-hero::after,
.nervous-system-page .page-hero::after {
	content: none;
}

.about-page .page-hero__content,
.natural-medicine-page .page-hero__content,
.nervous-system-page .page-hero__content {
	max-width: none;
}

.page-hero__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

.about-page .page-hero__grid { grid-template-columns: 1.1fr 1fr; }
.about-page .page-hero { min-height: 520px; }

.page-hero__image {
	position: relative;
	display: flex;
	justify-content: center;
}

.about-page .page-hero__image img {
	width: 100%;
	max-width: 480px;
}

.natural-medicine-page .page-hero__image img {
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	-webkit-mask-image: radial-gradient(circle at center, #000 60%, transparent 100%);
	mask-image: radial-gradient(circle at center, #000 60%, transparent 100%);
}

.nervous-system-page .page-hero__image img {
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	-webkit-mask-image: radial-gradient(circle at center, #000 50%, transparent 95%);
	mask-image: radial-gradient(circle at center, #000 50%, transparent 95%);
	transform: scale(1.4);
}

@media (max-width: 768px) {
	.page-hero__grid { grid-template-columns: 1fr; }
}

/* Modality blocks (Natural Medicine, Nervous System Support) */
.modality {
	padding-block: var(--space-2xl);
}

.modality:nth-child(even) {
	background: var(--color-bg-soft);
}

.modality__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

.modality--reverse .modality__image { order: 2; }

.modality__image img {
	width: 100%;
	max-width: 380px;
	margin: 0 auto;
	-webkit-mask-image: radial-gradient(ellipse 100% 100% at center, #000 25%, transparent 90%);
	mask-image: radial-gradient(ellipse 100% 100% at center, #000 25%, transparent 90%);
	filter: saturate(0.9);
}

.nervous-system-page .modality__image img { transform: scale(1.3); }

.modality__content h3 {
	font-size: clamp(1.6rem, 2.5vw, 2.2rem);
	margin-bottom: var(--space-sm);
}

.modality__content h4 {
	font-size: var(--size-base);
	font-weight: 700;
	color: var(--color-primary-dark);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-top: var(--space-md);
	margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
	.modality__grid { grid-template-columns: 1fr; }
	.modality--reverse .modality__image { order: -1; }
}

/* Numbered process steps (Nervous System Support, Test-Based Nutrition) */
.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-md);
}

.process-step {
	position: relative;
	background: var(--color-bg);
	padding: var(--space-md);
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
}

.process-step__number {
	font-family: var(--font-heading);
	font-size: var(--size-3xl);
	font-weight: 700;
	color: var(--color-gold);
	line-height: 1;
	margin-bottom: 0.5rem;
	display: block;
}

.process-step h4 { font-size: var(--size-lg); margin-bottom: 0.5rem; }
.process-step p { font-size: var(--size-sm); }

/* ============================================
   Gated guide page (unlisted, LRC model)
   Hero inherits the programme page's Kerry photo bleed so the
   guide matches the public site's look.
============================================ */
.guide-page .container--narrow h3 {
	margin-bottom: var(--space-sm);
}

@media (max-width: 1024px) {
	.process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.process-steps { grid-template-columns: 1fr; }
}

/* ============================================
   About page
============================================ */
.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.value-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-top: 4px solid var(--color-gold);
	padding: var(--space-md);
	border-radius: var(--radius);
}

.value-card h4 { font-size: var(--size-lg); margin-bottom: 0.5rem; }
.value-card p { font-size: var(--size-sm); margin-bottom: 0; }

@media (max-width: 1024px) {
	.values-grid { grid-template-columns: 1fr; }
}

.credentials-list {
	max-width: 760px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
}

.credentials-list li {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-left: 4px solid var(--color-primary-dark);
	padding: var(--space-md);
	border-radius: var(--radius);
	margin-bottom: var(--space-sm);
	font-size: var(--size-base);
}

.credentials-list li strong {
	display: block;
	color: var(--color-heading);
	margin-bottom: 0.25rem;
	font-weight: 700;
}

.credentials-list li span {
	font-size: var(--size-sm);
	color: var(--color-text);
	opacity: 0.85;
}

/* ============================================
   Natural Medicine page
============================================ */
.principles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.principle-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-top: 4px solid var(--color-gold);
	padding: var(--space-md);
	border-radius: var(--radius);
}

.principle-card h4 { font-size: var(--size-lg); margin-bottom: 0.5rem; }
.principle-card p { font-size: var(--size-sm); margin-bottom: 0; }

@media (max-width: 1024px) {
	.principles-grid { grid-template-columns: 1fr; }
}

.session-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
	max-width: 1000px;
	margin: 0 auto;
}

.session-step {
	text-align: center;
	padding: var(--space-md);
}

.session-step__number {
	font-family: var(--font-heading);
	font-size: var(--size-3xl);
	color: var(--color-gold);
	font-weight: 700;
	line-height: 1;
	margin-bottom: var(--space-sm);
	display: block;
}

.session-step h4 { font-size: var(--size-lg); margin-bottom: 0.5rem; }
.session-step p { font-size: var(--size-sm); }

@media (max-width: 1024px) {
	.session-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Nervous System Support page
============================================ */
.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

.why-content h2 {
	margin-bottom: var(--space-md);
	position: relative;
	display: inline-block;
}

.why-content h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 2px;
	background: var(--color-gold);
	margin: 0.85rem 0 0;
}

.why-callout {
	background: var(--color-primary-light);
	border-left: 4px solid var(--color-primary-dark);
	padding: var(--space-md);
	margin-top: var(--space-md);
	border-radius: var(--radius);
}

.why-callout p {
	font-style: italic;
	font-size: var(--size-base);
	margin-bottom: 0;
	color: var(--color-heading);
}

@media (max-width: 768px) {
	.why-grid { grid-template-columns: 1fr; }
}

.states-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.state-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-top: 4px solid var(--color-gold);
	padding: var(--space-md);
	border-radius: var(--radius);
}

.state-card__label {
	font-size: var(--size-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-primary-dark);
	margin-bottom: 0.5rem;
}

.state-card h4 { font-size: var(--size-lg); margin-bottom: 0.5rem; }
.state-card p { font-size: var(--size-sm); margin-bottom: 0.5rem; }
.state-card p:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
	.states-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Test-Based Nutrition page
============================================ */
/* Hero keeps the programme page's ::after structure but swaps in the balance image */
.nutrition-page .page-hero {
	min-height: 560px;
	background: var(--color-bg);
}

.nutrition-page .page-hero::after {
	background-image: url('assets/images/tbn-hero-balance.jpg');
	background-position: center;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0.75) 100%);
	mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0.75) 100%);
	opacity: 0.9;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.stat-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: var(--space-md);
	text-align: center;
	border-top: 4px solid var(--color-gold);
}

.stat-card__number {
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 700;
	color: var(--color-primary-dark);
	line-height: 1;
	margin-bottom: 0.5rem;
	display: block;
}

.stat-card__label {
	font-size: var(--size-sm);
	color: var(--color-text);
	line-height: 1.5;
}

.stat-card__label strong {
	color: var(--color-heading);
	display: block;
	margin-bottom: 0.25rem;
	font-size: var(--size-base);
	font-weight: 700;
}

.stats-source {
	text-align: center;
	font-size: var(--size-xs);
	color: var(--color-text);
	opacity: 0.7;
	margin-top: var(--space-md);
}

.refund-callout {
	background: var(--color-primary-light);
	border: 2px solid var(--color-primary-dark);
	border-radius: var(--radius);
	padding: var(--space-lg);
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
	position: relative;
}

.refund-callout__badge {
	display: inline-block;
	background: var(--color-gold);
	color: #fff;
	font-family: var(--font-body);
	font-size: var(--size-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	margin-bottom: var(--space-sm);
}

.refund-callout h3 {
	font-size: clamp(1.4rem, 2.5vw, 1.9rem);
	margin-bottom: var(--space-sm);
	color: var(--color-heading);
}

.refund-callout p {
	font-size: var(--size-base);
	color: var(--color-heading);
	margin-bottom: 0.75rem;
	max-width: 640px;
	margin-inline: auto;
}

.refund-callout p:last-child {
	margin-bottom: 0;
	font-size: var(--size-sm);
	opacity: 0.85;
}

.connection-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.connection-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: var(--space-md);
	border-top: 4px solid var(--color-primary-dark);
	display: flex;
	flex-direction: column;
}

.connection-card__label {
	font-size: var(--size-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-bottom: 0.5rem;
}

.connection-card h3 {
	font-size: var(--size-lg);
	margin-bottom: var(--space-sm);
	color: var(--color-heading);
}

.connection-card p {
	font-size: var(--size-sm);
	margin-bottom: var(--space-sm);
}

.connection-card__list {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--space-sm) 0;
}

.connection-card__list li {
	font-size: var(--size-sm);
	padding: 0.35rem 0 0.35rem 1.5rem;
	position: relative;
	border-bottom: 1px solid var(--color-border);
}

.connection-card__list li:last-child { border-bottom: none; }

.connection-card__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.85rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-gold);
}

.connection-card__note {
	font-size: var(--size-xs);
	color: var(--color-text);
	opacity: 0.75;
	font-style: italic;
	margin-top: auto;
	padding-top: var(--space-sm);
}

@media (max-width: 1024px) {
	.connection-grid { grid-template-columns: 1fr; }
}

.why-test {
	padding-block: var(--space-2xl);
}

.why-test__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

.why-test__image img {
	width: 100%;
	height: auto;
	-webkit-mask-image: radial-gradient(ellipse 100% 100% at center, #000 25%, transparent 90%);
	mask-image: radial-gradient(ellipse 100% 100% at center, #000 25%, transparent 90%);
	filter: saturate(0.85);
}

.why-test__content h2 {
	margin-bottom: var(--space-md);
	position: relative;
	display: inline-block;
}

.why-test__content h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 2px;
	background: var(--color-gold);
	margin: 0.85rem 0 0;
}

@media (max-width: 768px) {
	.why-test__grid { grid-template-columns: 1fr; }
}

.foundation {
	padding-block: var(--space-2xl);
}

.foundation:nth-child(even) {
	background: var(--color-bg-soft);
}

.foundation__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

.foundation--reverse .foundation__image { order: 2; }

.foundation__image { position: relative; }

.foundation__image img {
	width: 100%;
	height: auto;
	-webkit-mask-image: radial-gradient(ellipse 100% 100% at center, #000 25%, transparent 90%);
	mask-image: radial-gradient(ellipse 100% 100% at center, #000 25%, transparent 90%);
	filter: saturate(0.85);
}

.foundation__image-number {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--color-gold);
	color: #fff;
	font-family: var(--font-heading);
	font-size: var(--size-xl);
	font-weight: 700;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 4px 16px rgba(65, 82, 95, 0.15);
}

.foundation__content h3 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	margin-bottom: var(--space-sm);
}

.foundation__content h4 {
	font-size: var(--size-base);
	font-weight: 700;
	color: var(--color-primary-dark);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-top: var(--space-md);
	margin-bottom: 0.5rem;
}

.foundation__science {
	background: var(--color-primary-light);
	border-left: 4px solid var(--color-primary-dark);
	padding: var(--space-sm) var(--space-md);
	margin-top: var(--space-md);
	border-radius: var(--radius);
}

.foundation__science p {
	font-size: var(--size-sm);
	margin-bottom: 0.5rem;
}

.foundation__science p:last-child { margin-bottom: 0; }

.foundation__science strong {
	color: var(--color-primary-dark);
	font-size: var(--size-xs);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 700;
}

@media (max-width: 768px) {
	.foundation__grid { grid-template-columns: 1fr; }
	.foundation--reverse .foundation__image { order: -1; }
}

.cycle {
	padding-block: var(--space-2xl);
	background: var(--color-heading);
	color: #fff;
	text-align: center;
}

.cycle h2 {
	color: #fff;
	margin-bottom: var(--space-md);
}

.cycle__big {
	font-family: var(--font-heading);
	font-size: clamp(4rem, 8vw, 6rem);
	font-weight: 700;
	color: var(--color-gold);
	line-height: 1;
	margin-bottom: var(--space-md);
}

.cycle p {
	max-width: 680px;
	margin-inline: auto;
	color: rgba(255, 255, 255, 0.9);
}

.protocol-intro {
	text-align: center;
	max-width: 760px;
	margin: 0 auto var(--space-lg);
}

.protocol-block {
	margin-bottom: var(--space-xl);
}

.protocol-block__title {
	font-size: var(--size-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-primary-dark);
	text-align: center;
	margin-bottom: var(--space-md);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-md);
}

.product-grid--three {
	grid-template-columns: repeat(3, 1fr);
}

.product-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: var(--space-md);
	position: relative;
}

.product-card--core { border-top: 4px solid var(--color-primary-dark); }

.product-card--optional {
	border-top: 4px solid var(--color-gold);
	background: var(--color-bg-soft);
}

.product-card__label {
	font-size: var(--size-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-bottom: 0.5rem;
}

.product-card--core .product-card__label { color: var(--color-primary-dark); }
.product-card h4 { font-size: var(--size-xl); margin-bottom: 0.5rem; }
.product-card p { font-size: var(--size-sm); }

@media (max-width: 768px) {
	.product-grid { grid-template-columns: 1fr; }
	.product-grid--three { grid-template-columns: 1fr; }
}

.quality-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.quality-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: var(--space-md);
	border-top: 4px solid var(--color-gold);
	display: flex;
	flex-direction: column;
}

.quality-card__label {
	font-size: var(--size-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-primary-dark);
	margin-bottom: 0.5rem;
}

.quality-card h4 {
	font-size: var(--size-lg);
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.quality-card p { font-size: var(--size-sm); margin-bottom: 0; }

.quality-lead {
	text-align: center;
	max-width: 720px;
	margin: 0 auto var(--space-lg);
	font-size: var(--size-base);
}

@media (max-width: 1024px) {
	.quality-grid { grid-template-columns: repeat(2, 1fr); }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.quality-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: 1fr; }
}

.science-block {
	margin-bottom: var(--space-md);
	padding: var(--space-md);
	background: var(--color-bg-soft);
	border-left: 3px solid var(--color-gold);
	border-radius: var(--radius);
}

.science-block h4 { font-size: var(--size-lg); margin-bottom: 0.5rem; }
.science-block p { font-size: var(--size-sm); }

.science-block__sources {
	font-size: var(--size-xs);
	color: var(--color-text);
	opacity: 0.75;
	margin-top: 0.75rem;
	font-style: italic;
}
