/* =====================================================
   KIMBERLY YOUNG NUTRITION - MAIN STYLESHEET
   =====================================================
   Structure
   ─────────
   1.  Custom Properties (Brand Tokens)
   2.  CSS Reset
   3.  Base / Typography
   4.  Layout Utilities
   5.  Accessibility
   6.  Portal Bar
   7.  Site Header
   8.  Navigation
   9.  Buttons
   10. Forms
   11. Hero Slider
   12. Section: Tagline
   13. Section: Services Grid
   14. Section: Google Reviews
   15. Section: About Preview
   16. Page: About
   17. Page: Service
   18. Page: Contact
   19. Footer
   20. Utility / WP Classes
   ===================================================== */

/* ── 1. Custom Properties ──────────────────────────── */

:root {
	/* Brand */
	--green:          #006638;
	--green-dark:     #004d29;
	--green-light:    #4EA97A;
	--green-alpha50:  rgba(0, 102, 56, 0.5);

	/* Neutrals */
	--cream:          #FAFAF8;
	--cream-alt:      #F5F5F2;
	--warm-gray:      #E8E8E4;
	--warm-border:    #D4D4D0;

	/* Text */
	--text:           #1A1A1A;
	--text-dark:      #222222;
	--text-medium:    #333333;
	--text-muted:     #555555;
	--text-light:     #666666;
	--text-inverse:   #FFFFFF;

	/* UI Grays */
	--gray-100:       #F5F5F2;
	--gray-200:       #EBEBEB;
	--gray-300:       #D4D4D0;
	--gray-400:       #CCCCCC;
	--gray-500:       #999999;
	--gray-600:       #666666;
	--gray-700:       #444444;
	--gray-800:       #222222;
	--gray-900:       #1A1A1A;

	/* Google */
	--google-yellow:  #FBBC04;
	--google-blue:    #4285F4;
	--google-red:     #EA4335;
	--google-green:   #34A853;

	/* Typography */
	--font:           'Montserrat', system-ui, sans-serif;

	/* Font scale */
	--text-xs:   0.875rem;   /* 14px - smallest allowed, used for labels/eyebrows */
	--text-sm:   1rem;       /* 16px */
	--text-base: 1rem;       /* 16px */
	--text-md:   1.0625rem;  /* 17px */
	--text-lg:   1.125rem;   /* 18px */
	--text-xl:   1.25rem;    /* 20px */
	--text-2xl:  1.5rem;     /* 24px */
	--text-3xl:  1.875rem;   /* 30px */
	--text-4xl:  2.25rem;    /* 36px */
	--text-5xl:  3rem;       /* 48px */
	--text-6xl:  3.75rem;    /* 60px */

	/* Spacing */
	--space-1:  0.25rem;
	--space-2:  0.5rem;
	--space-3:  0.75rem;
	--space-4:  1rem;
	--space-5:  1.25rem;
	--space-6:  1.5rem;
	--space-8:  2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-20: 5rem;
	--space-24: 6rem;

	/* Layout */
	--container-max:  1440px;
	--container-inner: 1100px;
	--container-pad:  clamp(1rem, 5vw, 2.5rem);

	/* Borders */
	--radius-sm:  4px;
	--radius:     6px;
	--radius-md:  8px;
	--radius-lg:  12px;
	--radius-xl:  20px;
	--radius-full: 9999px;

	/* Shadows */
	--shadow-sm:  0 1px 3px rgba(0,0,0,.08);
	--shadow:     0 4px 12px rgba(0,0,0,.08);
	--shadow-md:  0 8px 24px rgba(0,0,0,.10);
	--shadow-card: 0 2px 8px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);
	--shadow-card-hover: 0 8px 24px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.06);

	/* Transitions */
	--fast:   150ms ease;
	--base:   250ms ease;
	--slow:   400ms ease;

	/* Z-index */
	--z-base:     1;
	--z-dropdown: 10;
	--z-sticky:   100;
	--z-overlay:  200;
	--z-modal:    300;

	/* Layout heights */
	--portal-bar-height: 36px;
	--header-height:     76px;
	--header-total:      112px; /* portal + header */
}

/* ── 2. CSS Reset ──────────────────────────────────── */

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-total);
	-webkit-text-size-adjust: 100%;
}

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

img, video, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

/* ── 3. Base / Typography ──────────────────────────── */

body {
	font-family: var(--font);
	font-size: var(--text-base);
	line-height: 1.7;
	color: var(--text);
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font);
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-dark);
}

h1 { font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); }
h2 { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl),  3vw, var(--text-3xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

a {
	color: var(--green);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color var(--fast);
}
a:hover { color: var(--green-dark); }

strong, b { font-weight: 700; }

/* ── 4. Layout Utilities ───────────────────────────── */

.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

.container--inner {
	max-width: var(--container-inner);
	margin-inline: auto;
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-content { flex: 1; }

/* ── 5. Accessibility ──────────────────────────────── */

.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	z-index: var(--z-modal);
	padding: var(--space-3) var(--space-6);
	background: var(--green);
	color: #fff;
	font-weight: 600;
	border-radius: var(--radius);
	text-decoration: none;
}
.skip-link:focus {
	left: var(--space-4);
	top: var(--space-4);
}

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

.screen-reader-text {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

/* ── 6. Portal Bar ─────────────────────────────────── */

.portal-bar {
	background-color: var(--green);
	height: var(--portal-bar-height);
	display: flex;
	align-items: center;
}

.portal-bar__inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.portal-bar__link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-1);
	color: #fff;
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	padding: var(--space-1) var(--space-3);
	border-radius: var(--radius-sm);
	transition: background-color var(--fast);
}
.portal-bar__link:hover {
	background-color: rgba(255,255,255,0.15);
	color: #fff;
}

.portal-bar__arrow {
	font-size: var(--text-base);
	line-height: 1;
}

/* ── 7. Site Header ────────────────────────────────── */

.site-header-wrap {
	position: sticky;
	top: 0;
	z-index: var(--z-sticky);
}

.site-header {
	background-color: #fff;
	border-bottom: 1px solid var(--warm-border);
	height: var(--header-height);
	display: flex;
	align-items: center;
	transition: box-shadow var(--base);
}

.site-header.is-scrolled {
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.site-branding {
	flex-shrink: 0;
}

.site-branding__link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.site-title {
	font-size: var(--text-lg);
	font-weight: 500;
	color: #737373;
	line-height: 1.2;
	text-transform: uppercase;
}

.site-tagline {
	font-size: 0.625rem; /* 10px */
	font-weight: 400;
	color: #006638;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-top: 2px;
}

.site-logo img {
	height: 50px;
	width: auto;
}

/* ── 8. Navigation ─────────────────────────────────── */

.main-navigation {
	display: flex;
	align-items: center;
	gap: var(--space-4);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: var(--space-1);
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
	display: block;
	padding: var(--space-2) var(--space-3);
	color: var(--text-dark);
	text-decoration: none;
	font-size: var(--text-sm);
	font-weight: 500;
	letter-spacing: 0.01em;
	border-radius: var(--radius);
	transition: color var(--fast), background-color var(--fast);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
	color: var(--green);
	background-color: rgba(0, 102, 56, 0.06);
}

/* Services dropdown */
.nav-menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--warm-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	list-style: none;
	padding: var(--space-2) 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity var(--fast), transform var(--fast), visibility var(--fast);
	z-index: var(--z-dropdown);
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-menu .sub-menu a {
	display: block;
	padding: var(--space-2) var(--space-5);
	color: var(--text-dark);
	text-decoration: none;
	font-size: var(--text-sm);
	font-weight: 400;
	transition: background-color var(--fast), color var(--fast);
}
.nav-menu .sub-menu a:hover {
	background-color: var(--cream);
	color: var(--green);
}

/* Schedule Now CTA */
.btn--schedule {
	display: inline-flex;
	align-items: center;
	padding: var(--space-2) var(--space-5);
	background-color: var(--green);
	color: #fff;
	font-size: var(--text-sm);
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	border-radius: var(--radius);
	transition: background-color var(--fast);
	white-space: nowrap;
	min-height: 38px;
	flex-shrink: 0;
}
.btn--schedule:hover {
	background-color: var(--green-dark);
	color: #fff;
}

/* Mobile Toggle */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: transparent;
	border: none;
	cursor: pointer;
	border-radius: var(--radius);
	padding: var(--space-2);
	transition: background-color var(--fast);
}
.nav-toggle:hover { background-color: var(--cream); }

.nav-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--text-dark);
	border-radius: var(--radius-full);
	transition: transform var(--base), opacity var(--base);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
	.nav-toggle { display: flex; }

	.main-navigation {
		position: absolute;
		top: var(--header-total);
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--warm-border);
		padding: var(--space-4) var(--container-pad);
		flex-direction: column;
		align-items: stretch;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: transform var(--base), opacity var(--base), visibility var(--base);
		box-shadow: var(--shadow-md);
		z-index: var(--z-sticky);
	}

	.main-navigation.is-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.nav-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		border-left: 2px solid var(--warm-border);
		margin-left: var(--space-4);
		padding: 0;
		border-radius: 0;
	}

	.btn--schedule {
		margin-top: var(--space-4);
		justify-content: center;
	}
}

/* ── 9. Buttons ────────────────────────────────────── */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	padding: var(--space-3) var(--space-8);
	font-family: var(--font);
	font-weight: 600;
	font-size: var(--text-sm);
	letter-spacing: 0.02em;
	line-height: 1;
	border-radius: var(--radius);
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: background-color var(--fast), color var(--fast), border-color var(--fast), transform var(--fast), box-shadow var(--fast);
	white-space: nowrap;
	min-height: 43px;
}

.btn:focus-visible { outline-offset: 4px; }

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

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

.btn--white {
	background-color: #fff;
	color: var(--green);
	border-color: #fff;
}
.btn--white:hover {
	background-color: var(--green);
	color: #fff;
	border-color: var(--green);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn--sm {
	padding: var(--space-2) var(--space-5);
	font-size: var(--text-xs);
	min-height: 34px;
}

.btn--lg {
	padding: var(--space-4) var(--space-10);
	font-size: var(--text-base);
	min-height: 52px;
}

/* ── 10. Forms ─────────────────────────────────────── */

.form-group { margin-bottom: var(--space-5); }

label {
	display: block;
	font-size: var(--text-sm);
	font-weight: 600;
	margin-bottom: var(--space-2);
	color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea,
select {
	width: 100%;
	padding: var(--space-3) var(--space-4);
	border: 1.5px solid var(--warm-border);
	border-radius: var(--radius);
	background: #fff;
	color: var(--text);
	font-size: var(--text-base);
	transition: border-color var(--fast), box-shadow var(--fast);
	min-height: 44px;
}

input:focus, textarea:focus, select:focus {
	outline: none;
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(0,102,56,0.12);
}

textarea { resize: vertical; min-height: 130px; }

/* ── 11. Hero Slider ───────────────────────────────── */

.hero-slider {
	position: relative;
	width: 100%;
	height: 520px;
	overflow: hidden;
	background: var(--gray-800);
}

.hero-slider__track {
	display: flex;
	height: 100%;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	position: relative;
}

.hero-slide__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-slide__bg--gradient {
	background: linear-gradient(135deg, #1a2e1e 0%, #004d2a 40%, #006638 100%);
}

.hero-slide__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

/* Bio slide with gradient doesn't need the dark overlay */
.hero-slide--bio .hero-slide__bg--gradient + .hero-slide__overlay {
	background: none;
}

.hero-slide__content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-slide__inner {
	max-width: 520px;
	text-align: center;
	padding: var(--space-8) var(--space-6);
	color: #fff;
}

.hero-slide__eyebrow {
	display: block;
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85);
	margin-bottom: var(--space-4);
}

.hero-slide__heading {
	font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	margin-bottom: var(--space-5);
}

.hero-slide__subtext {
	font-size: var(--text-md);
	font-weight: 400;
	color: rgba(255,255,255,0.88);
	line-height: 1.6;
	margin-bottom: var(--space-8);
}

/* Slide 3: Kimberly headshot layout */
.hero-slide--bio .hero-slide__inner {
	max-width: 820px;
	text-align: left;
	display: flex;
	align-items: center;
	gap: var(--space-10);
}

.hero-slide__photo-wrap {
	flex-shrink: 0;
}

.hero-slide__photo {
	width: 190px;
	height: 190px;
	border-radius: 50%;
	object-fit: cover;
	object-position: top center;
	border: 3px solid rgba(255,255,255,0.5);
}

.hero-slide__photo-placeholder {
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
	border: 3px solid rgba(255,255,255,0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.5);
	font-size: var(--text-sm);
}

.hero-slide__text-col { flex: 1; }

/* Slider Controls */
.hero-slider__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 42px;
	height: 42px;
	background: rgba(255,255,255,0.2);
	border: 1px solid rgba(255,255,255,0.4);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: var(--text-xl);
	transition: background-color var(--fast);
	line-height: 1;
}
.hero-slider__btn:hover { background: rgba(255,255,255,0.35); }
.hero-slider__btn--prev { left: var(--space-5); }
.hero-slider__btn--next { right: var(--space-5); }

.hero-slider__dots {
	position: absolute;
	bottom: var(--space-4);
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: var(--space-2);
}

.hero-slider__dot {
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background: rgba(255,255,255,0.3);
	border: 1px solid rgba(255,255,255,0.5);
	cursor: pointer;
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0;
}
.hero-slider__dot.is-active {
	width: 28px;
	background: #fff;
	border-color: #fff;
}

@media (max-width: 768px) {
	/* Auto-size so content drives height; arrows move to the bottom corners
	   and the inner padding leaves room for them so they never overlap copy. */
	.hero-slider { height: auto; }

	.hero-slide,
	.hero-slide__content { min-height: 540px; height: auto; }

	.hero-slide__inner {
		padding: var(--space-8) var(--space-5) calc( var(--space-12) + 12px );
	}

	.hero-slide__eyebrow { margin-bottom: var(--space-3); }
	.hero-slide__heading { font-size: var(--text-3xl); margin-bottom: var(--space-4); }
	.hero-slide__subtext { font-size: var(--text-base); margin-bottom: var(--space-5); }

	.hero-slide--bio .hero-slide__inner {
		flex-direction: column;
		text-align: center;
		max-width: 100%;
		gap: var(--space-5);
	}
	.hero-slide__photo,
	.hero-slide__photo-placeholder {
		width: 120px;
		height: 120px;
	}

	/* Controls strip at the bottom: [‹]   ••• dots •••   [›] */
	.hero-slider__btn {
		width: 36px;
		height: 36px;
		top: auto;
		bottom: 12px;
		transform: none;
		font-size: var(--text-lg);
	}
	.hero-slider__btn--prev { left: var(--space-3); }
	.hero-slider__btn--next { right: var(--space-3); }

	.hero-slider__dots {
		bottom: 25px; /* visually centred with the arrow buttons */
	}
}

@media (max-width: 480px) {
	.hero-slide,
	.hero-slide__content { min-height: 560px; }

	.hero-slide__heading { font-size: var(--text-2xl); }
	.hero-slide__subtext { font-size: var(--text-sm); }
}

/* ── 12. Section: Tagline ──────────────────────────── */

.section-tagline {
	background: #fff;
	padding: var(--space-16) var(--space-4);
	text-align: center;
}

.section-tagline .container--inner {
	max-width: 960px;
}

.section-eyebrow {
	display: block;
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: var(--space-4);
}

.section-tagline__heading {
	font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
	font-weight: 400;
	color: var(--text-dark);
	line-height: 1.4;
	margin-bottom: var(--space-4);
}

.section-tagline__subtext {
	font-size: var(--text-lg);
	color: var(--text-muted);
	margin: 0;
}

/* ── 13. Section: Services Grid ────────────────────── */

.section-services {
	background: var(--cream);
	padding: var(--space-16) var(--space-4);
}

.section-header {
	margin-bottom: var(--space-10);
}

.section-header__heading {
	font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
	font-weight: 700;
	color: var(--text-dark);
	margin-top: var(--space-3);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-6);
}

.service-card {
	background: #fff;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow var(--base), transform var(--base);
}

.service-card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-3px);
}

.service-card__icon-wrap {
	height: 150px;
	background: rgba(0, 102, 56, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color var(--base);
}

.service-card:hover .service-card__icon-wrap {
	background: rgba(0, 102, 56, 0.8);
}

.service-card__icon-wrap svg {
	width: 64px;
	height: auto;
}

.service-card__body {
	padding: var(--space-5) var(--space-5) var(--space-6);
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.service-card__title {
	font-size: var(--text-base);
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
}

.service-card__desc {
	font-size: var(--text-sm);
	color: var(--text-muted);
	line-height: 1.6;
	flex: 1;
	margin: 0;
}

.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-1);
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--green);
	text-decoration: none;
	margin-top: auto;
	transition: gap var(--fast);
}
.service-card__link:hover { gap: var(--space-2); }
.service-card__link::after { content: '→'; }

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

/* ── 14. Section: Google Reviews ───────────────────── */

.section-reviews {
	background: #fff;
	padding: var(--space-16) var(--space-4);
}

.reviews-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--space-6);
	margin-bottom: var(--space-10);
	flex-wrap: wrap;
}

.reviews-header__left {}

.reviews-header__heading {
	font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
	font-weight: 700;
	color: var(--text-dark);
	margin-top: var(--space-3);
}

.reviews-header__sub {
	font-size: var(--text-base);
	color: var(--text-muted);
	margin-top: var(--space-2);
}

.google-badge {
	display: flex;
	align-items: center;
	gap: var(--space-4);
	background: #fff;
	border: 1px solid var(--warm-border);
	border-radius: var(--radius-md);
	padding: var(--space-4) var(--space-5);
	box-shadow: var(--shadow-sm);
	flex-shrink: 0;
}

.google-badge__logo {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
}

.google-badge__divider {
	width: 1px;
	height: 40px;
	background: var(--warm-border);
}

.google-badge__info {}

.google-badge__rating {
	font-size: var(--text-3xl);
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1;
}

.google-badge__stars {
	color: var(--google-yellow);
	font-size: var(--text-lg);
	letter-spacing: 2px;
	margin-top: 2px;
}

.google-badge__count {
	font-size: var(--text-xs);
	color: var(--text-muted);
	margin-top: var(--space-1);
}

/* Reviews Carousel */
.reviews-carousel {
	margin-bottom: var(--space-8);
}

.reviews-carousel__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
	/* Vertical breathing room so card drop-shadows (and the lift-on-hover)
	   aren't clipped by overflow: hidden. */
	padding: var(--space-3) 2px var(--space-8);
	margin: 0 -2px;
}

.reviews-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.reviews-carousel__track {
	display: flex;
	gap: var(--space-6);
	align-items: stretch;
}

.review-card {
	background: var(--cream);
	border-radius: var(--radius-md);
	padding: var(--space-6);
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	flex: 0 0 auto;
	min-width: 0;
	scroll-snap-align: start;
	box-shadow: var(--shadow-card);
	transition: transform var(--base), box-shadow var(--base);
}

/* Width buckets. Shorter text = narrower card. Flexbox stretches all
   cards in the row to the same height regardless of width. */
.review-card--narrow { width: 290px; }
.review-card--medium { width: 370px; }
.review-card--wide   { width: 460px; }

.review-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card-hover);
}

.review-card__stars {
	color: var(--google-yellow);
	font-size: var(--text-base);
	letter-spacing: 1px;
}

.review-card__text {
	font-size: var(--text-sm);
	color: var(--text-medium);
	line-height: 1.7;
	flex: 1;
	margin: 0;
}

.review-card__author {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	margin-top: auto;
}

.review-card__avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--green-light);
	flex-shrink: 0;
}

.review-card__avatar-initial {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--green);
	color: #fff;
	font-weight: 700;
	font-size: var(--text-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.review-card__name {
	font-weight: 600;
	font-size: var(--text-base);
	color: var(--text-dark);
}

.review-card__date {
	font-size: var(--text-xs);
	color: var(--text-muted);
}

/* Carousel Nav */
.reviews-carousel__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-4);
	margin-top: var(--space-6);
}

.reviews-carousel__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: #fff;
	color: var(--text-dark);
	cursor: pointer;
	transition: background var(--fast), border-color var(--fast);
}

.reviews-carousel__btn:hover {
	background: var(--cream);
	border-color: var(--green);
}

.reviews-carousel__dots {
	display: flex;
	gap: var(--space-2);
}

.reviews-carousel__dot {
	width: 10px;
	height: 10px;
	border-radius: 5px;
	border: none;
	background: rgba(0,102,56,0.3);
	cursor: pointer;
	padding: 0;
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-carousel__dot.is-active {
	width: 28px;
	background: var(--green);
}

.reviews-carousel__dot:hover {
	background: var(--green-light);
}

.reviews-footer {
	text-align: center;
}

.reviews-footer__link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--green);
	text-decoration: none;
	transition: color var(--fast);
}
.reviews-footer__link:hover { color: var(--green-dark); }

@media (max-width: 900px) {
	.reviews-header { flex-direction: column; }
}

@media (max-width: 600px) {
	.review-card,
	.review-card--narrow,
	.review-card--medium,
	.review-card--wide {
		width: calc(100vw - var(--container-pad) * 2 - var(--space-2));
		max-width: 380px;
	}
}

/* ── 15. Section: About Preview ────────────────────── */

.section-about-preview {
	background: var(--cream-alt);
	padding: var(--space-16) var(--space-4);
}

.about-preview {
	display: flex;
	gap: var(--space-12);
	align-items: center;
}

.about-preview__photo-col {
	flex-shrink: 0;
	width: 280px;
}

.about-preview__photo {
	width: 280px;
	height: 409px;
	object-fit: cover;
	object-position: center;
	border-radius: var(--radius-md);
	display: block;
}

.about-preview__photo-placeholder {
	width: 280px;
	height: 409px;
	background: var(--warm-gray);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: var(--text-sm);
	text-align: center;
	padding: var(--space-4);
}

.about-preview__content {
	flex: 1;
	padding-top: var(--space-4);
}

.about-preview__heading {
	font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: var(--space-4);
	line-height: 1.2;
}

.credentials-badges {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	margin-bottom: var(--space-6);
}

.credentials-badge {
	display: inline-block;
	padding: 3px var(--space-3);
	border: 1.5px solid var(--green);
	border-radius: var(--radius-sm);
	font-size: var(--text-xs);
	font-weight: 600;
	color: var(--green);
	letter-spacing: 0.04em;
}

.about-preview__bio {
	font-size: var(--text-base);
	color: var(--text-medium);
	line-height: 1.75;
	margin-bottom: var(--space-8);
}

.about-preview__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
}

@media (max-width: 900px) {
	.about-preview {
		flex-direction: column;
		align-items: center;
	}
	.about-preview__photo-col { width: 100%; max-width: 320px; }
	/* Portrait ratio + top-anchored crop so her face stays in frame on mobile. */
	.about-preview__photo { width: 100%; height: auto; aspect-ratio: 3/4; object-position: center top; }
	.about-preview__photo-placeholder { width: 100%; height: auto; aspect-ratio: 3/4; }
	.about-preview__content { padding-top: 0; }
}

/* ── 16. Page: About ───────────────────────────────── */

/* ── Page Hero (shared split-layout with botanical texture) ── */
.page-hero {
	position: relative;
	overflow: hidden;
	background: var(--cream-alt);
	height: 320px;
	display: flex;
	align-items: center;
}

.page-hero__inner {
	display: flex;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
	height: 100%;
	padding: 0 var(--space-4);
}

.page-hero__content {
	position: relative;
	z-index: 2;
	width: 50%;
}

.page-hero__eyebrow {
	display: block;
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: var(--space-3);
}

.page-hero__heading {
	font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
	font-weight: 800;
	color: var(--text-dark);
	line-height: 1.1;
	overflow-wrap: normal;
	word-break: keep-all;
	margin-bottom: var(--space-4);
}

.page-hero__sub {
	font-size: var(--text-lg);
	color: var(--text-muted);
	line-height: 1.6;
	max-width: 480px;
}

/* Green accent zone - fills entire right half, clips the icon */
.page-hero__accent {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	overflow: hidden;
	background: linear-gradient(160deg, rgba(0,102,56,0.05) 0%, rgba(0,102,56,0.10) 100%);
	border-radius: 0 0 0 50px;
}

/* Icon: angled, sits in bottom-left of the green shape, clipped by it */
.page-hero__accent-img {
	position: absolute;
	z-index: 1;
	bottom: -40%;
	left: -8%;
	width: 400px;
	height: auto;
	transform: rotate(30deg);
	opacity: 0.5;
}

/* Decorative green bar under heading */
.page-hero__heading::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--green);
	margin-top: var(--space-3);
	border-radius: 2px;
}

@media (max-width: 768px) {
	.page-hero {
		height: auto;
		padding: var(--space-12) var(--space-4);
	}

	.page-hero__inner {
		text-align: center;
		padding: 0;
	}

	.page-hero__content {
		width: 100%;
	}

	.page-hero__accent {
		display: none;
	}

	.page-hero__sub {
		margin-inline: auto;
	}

	.page-hero__heading::after {
		margin-inline: auto;
	}
}

.page-about {}

.about-hero {
	padding: var(--space-16) var(--space-4);
}

.about-hero__inner {
	display: flex;
	gap: var(--space-12);
	align-items: center;
}

.about-hero__photo {
	flex-shrink: 0;
	width: 320px;
}

.about-hero__img {
	width: 320px;
	border-radius: var(--radius-md);
	aspect-ratio: 3/4;
	object-fit: cover;
	object-position: top;
}

.about-hero__photo-placeholder {
	width: 320px;
	aspect-ratio: 3/4;
	background: var(--warm-gray);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: var(--text-sm);
	text-align: center;
	padding: var(--space-4);
}

.about-hero__content { flex: 1; }

.about-hero__heading {
	font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.2;
	margin-bottom: var(--space-4);
}

.about-hero__bio {
	font-size: var(--text-base);
	color: var(--text-medium);
	line-height: 1.8;
	margin-bottom: var(--space-8);
}

.about-hero__bio p { margin-bottom: var(--space-4); }
.about-hero__bio p:last-child { margin-bottom: 0; }

.about-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
}

.about-education {
	background: #fff;
	padding: var(--space-16) var(--space-4);
}

.about-education__heading {
	font-size: var(--text-2xl);
	font-weight: 700;
	margin-bottom: var(--space-8);
	color: var(--text-dark);
}

.education-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.education-item {
	padding: var(--space-5) var(--space-6);
	background: var(--cream);
	border-left: 3px solid var(--green);
	border-radius: 0 var(--radius) var(--radius) 0;
}

.education-item__degree {
	font-weight: 700;
	color: var(--text-dark);
	font-size: var(--text-base);
}

.education-item__school {
	color: var(--text-muted);
	font-size: var(--text-sm);
	margin-top: var(--space-1);
}

.education-item__note {
	color: var(--green);
	font-size: var(--text-xs);
	font-weight: 600;
	font-style: italic;
	margin-top: var(--space-1);
}

@media (max-width: 900px) {
	.about-hero__inner {
		flex-direction: column;
		align-items: center;
	}
	.about-hero__photo { width: 100%; max-width: 320px; }
	/* Keep the portrait 3/4 ratio on mobile so the top of the headshot
	   doesn't get cropped off when the box is forced square. */
	.about-hero__img { width: 100%; aspect-ratio: 3/4; object-position: center top; }
	.about-hero__photo-placeholder { width: 100%; aspect-ratio: 3/4; height: auto; }
}

/* ── 17. Page: Service ─────────────────────────────── */

.page-service {}

/* Service hero now uses shared .page-hero component */

.service-body {
	padding: var(--space-16) var(--space-4);
	background: #fff;
}

.service-body__inner {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: var(--space-12);
	align-items: start;
}

.service-intro {
	font-size: var(--text-lg);
	color: var(--text-medium);
	line-height: 1.8;
}

.service-intro p { margin-bottom: var(--space-4); }
.service-intro p:last-child { margin-bottom: 0; }

.service-details-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	margin-top: var(--space-6);
}

.service-details-list li {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
	font-size: var(--text-sm);
	color: var(--text-medium);
}

.service-details-list li::before {
	content: '✓';
	color: var(--green);
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 2px;
}

.service-sidebar {
	position: sticky;
	top: calc(var(--header-total) + var(--space-6));
}

.service-sidebar__card {
	background: var(--cream);
	border-radius: var(--radius-md);
	padding: var(--space-6);
	border: 1px solid var(--warm-border);
}

.service-sidebar__meta {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	margin-bottom: var(--space-6);
	padding-bottom: var(--space-6);
	border-bottom: 1px solid var(--warm-border);
}

.service-meta-item {
	display: flex;
	justify-content: space-between;
	font-size: var(--text-sm);
}

.service-meta-item__label {
	color: var(--text-muted);
}

.service-meta-item__value {
	font-weight: 600;
	color: var(--text-dark);
}

.service-cta-section {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.service-cta-section__context {
	font-size: var(--text-sm);
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: var(--space-2);
}

.service-note {
	font-size: var(--text-xs);
	color: var(--text-muted);
	line-height: 1.6;
	text-align: center;
	margin-top: var(--space-2);
}

.service-sidebar__new-client-text {
	text-align: center;
	margin-top: var(--space-4);
	font-size: var(--text-xs);
	color: var(--text-muted);
}
.service-sidebar__new-client-link {
	color: var(--green);
	text-decoration: underline;
	transition: color var(--fast);
	white-space: nowrap;
}
.service-sidebar__new-client-link:hover {
	color: var(--green-dark);
}

.service-client-link {
	text-align: center;
	font-size: var(--text-xs);
	color: var(--text-muted);
	margin-top: var(--space-2);
}

.service-client-link a {
	color: var(--green);
	font-weight: 600;
}

/* Booking iframe */
.booking-section {
	background: var(--cream-alt);
	padding: var(--space-16) var(--space-4);
}

.booking-section__heading {
	font-size: var(--text-2xl);
	font-weight: 700;
	text-align: center;
	margin-bottom: var(--space-8);
	color: var(--text-dark);
}

.booking-iframe-wrap {
	border-radius: var(--radius-md);
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--warm-border);
}

.booking-iframe-wrap iframe {
	display: block;
	width: 100%;
	min-height: 700px;
}

/* Portal CTA section (for restricted services) */
.portal-cta-section {
	background: var(--cream-alt);
	padding: var(--space-16) var(--space-4);
	text-align: center;
}

.portal-cta-section__inner {
	max-width: 560px;
	margin-inline: auto;
}

.portal-cta-section__heading {
	font-size: var(--text-2xl);
	font-weight: 700;
	margin-bottom: var(--space-4);
	color: var(--text-dark);
}

.portal-cta-section__text {
	color: var(--text-muted);
	margin-bottom: var(--space-8);
}

.portal-cta-section__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-4);
}

@media (max-width: 900px) {
	.service-body__inner {
		grid-template-columns: 1fr;
	}
	.service-sidebar { position: static; }
}

/* ── 18. Page: Contact ─────────────────────────────── */

.page-contact {}

/* Contact hero now uses shared .page-hero component */

.contact-body {
	background: #fff;
	padding: var(--space-16) var(--space-4);
}

.contact-body__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-12);
	align-items: start;
}

.contact-form-col {}

.contact-form-col h2 {
	font-size: var(--text-2xl);
	margin-bottom: var(--space-6);
}

/* Honeypot — visually hidden but still submittable so bots fill it. */
.contact-form__hp {
	position: absolute !important;
	left: -10000px !important;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Submission notice (success / error) shown above the form. */
.contact-form__notice {
	border-radius: var(--radius-md);
	padding: var(--space-4) var(--space-5);
	margin: 0 0 var(--space-5);
	font-size: var(--text-sm);
	line-height: 1.6;
}
.contact-form__notice--success {
	background: rgba( 0, 102, 56, 0.08 );
	border: 1px solid rgba( 0, 102, 56, 0.25 );
	color: var(--green-dark);
}
.contact-form__notice--error {
	background: rgba( 234, 67, 53, 0.06 );
	border: 1px solid rgba( 234, 67, 53, 0.25 );
	color: #b22118;
}

.contact-info-col {}

.contact-info-col h2 {
	font-size: var(--text-2xl);
	margin-bottom: var(--space-6);
}

.contact-info-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.contact-info-item {
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
}

.contact-info-item__label {
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.contact-info-item__value {
	font-size: var(--text-base);
	color: var(--text-dark);
}

.contact-schedule-cta {
	background: var(--cream);
	border-radius: var(--radius-md);
	padding: var(--space-8);
	margin-top: var(--space-8);
	text-align: center;
}

.contact-schedule-cta h3 {
	font-size: var(--text-xl);
	margin-bottom: var(--space-3);
}

.contact-schedule-cta p {
	color: var(--text-muted);
	margin-bottom: var(--space-6);
}

@media (max-width: 900px) {
	.contact-body__inner {
		grid-template-columns: 1fr;
	}
}

/* ── 19. Footer ────────────────────────────────────── */

.site-footer {
	background: var(--text-dark);
	color: rgba(255,255,255,0.85);
}

.site-footer__inner {
	padding: var(--space-16) var(--container-pad);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.6fr);
	gap: clamp(var(--space-10), 6vw, var(--space-16));
	align-items: start;
}

.footer-col__title {
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
	margin-bottom: var(--space-5);
}

/* Quick Links */
.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.footer-links li a {
	color: rgba(255,255,255,0.75);
	font-size: var(--text-sm);
	text-decoration: none;
	transition: color var(--fast);
}
.footer-links li a:hover { color: var(--green-light); }

/* Social */
.footer-social {
	display: flex;
	gap: var(--space-3);
	margin-bottom: var(--space-6);
}

.footer-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: background-color var(--fast), color var(--fast);
}
.footer-social__link:hover {
	background: var(--green);
	color: #fff;
}

/* Hours */
.footer-hours {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.footer-hours__row {
	display: flex;
	justify-content: space-between;
	font-size: var(--text-sm);
	color: rgba(255,255,255,0.65);
}

.footer-hours__day { font-weight: 500; }

/* Disclaimer */
.footer-disclaimer {
	font-size: var(--text-xs);
	color: rgba(255,255,255,0.55);
	line-height: 1.7;
	margin: 0 0 var(--space-4);
}

.footer-disclaimer__link {
	font-size: var(--text-xs);
	font-family: var(--font);
	color: rgba(255,255,255,0.5);
	text-decoration: underline;
	transition: color var(--fast);
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}
.footer-disclaimer__link:hover { color: var(--green-light); }

/* Footer Bottom */
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: var(--space-4) var(--container-pad);
}

.footer-bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--space-2);
}

.footer-bottom__copy,
.footer-bottom__credit,
.footer-bottom__legal {
	font-size: var(--text-xs);
	color: rgba(255,255,255,0.4);
	margin: 0;
}

.footer-bottom__legal a {
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	transition: color var(--fast);
}
.footer-bottom__legal a:hover { color: var(--green-light); }

.footer-bottom__credit a {
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	transition: color var(--fast);
}
.footer-bottom__credit a:hover { color: var(--green-light); }

@media (max-width: 900px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer-col--disclaimer {
		grid-column: 1 / -1;
	}
}

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

/* ── 20. Utility / WP Classes ──────────────────────── */

.text-center { text-align: center; }

.alignwide  { max-width: 1100px; margin-inline: auto; }
.alignfull  { width: 100vw; margin-inline: calc(50% - 50vw); }
.alignleft  { float: left; margin-right: var(--space-6); margin-bottom: var(--space-4); }
.alignright { float: right; margin-left: var(--space-6); margin-bottom: var(--space-4); }
.aligncenter { display: block; margin-inline: auto; }

/* Generic page content */
.page-content {
	padding: var(--space-16) var(--space-4);
}

.page-content .entry-content {
	max-width: 780px;
	margin-inline: auto;
	font-size: var(--text-lg);
	line-height: 1.8;
}

.page-content .entry-content > * + * { margin-top: var(--space-5); }
.page-content .entry-content h2,
.page-content .entry-content h3 { margin-top: var(--space-10); }

/* ── Booking Modal ──────────────────────────────────────────────────────────── */

.booking-modal {
	position: fixed;
	inset: 0;
	z-index: var(--z-modal);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-4);
}

.booking-modal[hidden] { display: none; }

.booking-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	cursor: pointer;
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.booking-modal__dialog {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
	width: 100%;
	max-width: 860px;
	max-height: calc(100vh - 2rem);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	animation: modal-in 0.22s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes modal-in {
	from { opacity: 0; transform: scale(0.94) translateY(12px); }
	to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.booking-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-4) var(--space-5);
	border-bottom: 1px solid var(--warm-border);
	flex-shrink: 0;
}

.booking-modal__title {
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: 0.02em;
}

.booking-modal__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: none;
	background: var(--cream);
	border-radius: var(--radius);
	cursor: pointer;
	color: var(--text-muted);
	transition: background-color var(--fast), color var(--fast);
	flex-shrink: 0;
}
.booking-modal__close:hover {
	background: var(--warm-border);
	color: var(--text-dark);
}

.booking-modal__body {
	flex: 1;
	overflow: hidden;
	min-height: 0;
}

.booking-modal__iframe {
	display: block;
	width: 100%;
	height: 680px;
	border: none;
}

@media (max-width: 600px) {
	.booking-modal { padding: 0; align-items: flex-end; }
	.booking-modal__dialog {
		max-width: 100%;
		border-radius: var(--radius-lg) var(--radius-lg) 0 0;
		max-height: 92vh;
	}
	.booking-modal__iframe { height: 540px; }
}

/* ── Disclaimer Modal Variants ─────────────────────────────────────────────── */

.booking-modal__dialog--sm {
	max-width: 560px;
}

.booking-modal__body--text {
	overflow-y: auto;
	padding: var(--space-6) var(--space-5);
}

.booking-modal__body--text p {
	font-size: var(--text-sm);
	color: var(--text-muted);
	line-height: 1.75;
	margin: 0 0 var(--space-4);
}
.booking-modal__body--text p:last-child {
	margin-bottom: 0;
}

/* Bio Slide Heading - name + credentials on separate lines ──────────────── */

.hero-slide--bio .hero-slide__heading {
	font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
}

.hero-slide--bio .hero-slide__heading .bio-name {
	display: block;
	font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
	line-height: 1.05;
}

.hero-slide--bio .hero-slide__heading .bio-credentials {
	display: block;
	font-size: clamp(var(--text-base), 2vw, var(--text-2xl));
	font-weight: 500;
	letter-spacing: 0.05em;
	opacity: 0.85;
	margin-top: var(--space-2);
}

/* ── Floating Google Reviews Badge ─────────────────────────────────────────── */

.reviews-float-badge {
	position: fixed;
	bottom: var(--space-6);
	right: var(--space-6);
	z-index: var(--z-sticky);
	display: flex;
	align-items: center;
	gap: var(--space-3);
	background: #fff;
	border: 1px solid var(--warm-border);
	border-radius: var(--radius-full);
	padding: var(--space-2) var(--space-4) var(--space-2) var(--space-3);
	box-shadow: 0 4px 16px rgba(0,0,0,0.14);
	text-decoration: none;
	transition: box-shadow var(--fast), transform var(--fast);
}

.reviews-float-badge:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.20);
	transform: translateY(-2px);
}

.reviews-float-badge img {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}

.reviews-float-badge__text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.reviews-float-badge__stars {
	color: var(--google-yellow);
	font-size: var(--text-xs);
	letter-spacing: 1px;
}

.reviews-float-badge__label {
	font-size: var(--text-xs);
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: 0.02em;
}

/* ── Nav: prevent Reviews hash link from appearing active ───────────────────── */

.nav-menu > li.reviews-nav-item > a {
	/* base state - overrides any WP-generated active class */
	color: var(--text-dark);
	background-color: transparent;
}

.nav-menu > li.reviews-nav-item.is-reviews-active > a,
.nav-menu > li.reviews-nav-item > a:hover {
	color: var(--green);
	background-color: rgba(0, 102, 56, 0.06);
}

/* ── Scroll Reveal Animations ───────────────────────── */

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
	            transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger children (cards, grid items) */
.reveal-stagger > * {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
	            transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.5s; }

.reveal-stagger.is-visible > * {
	opacity: 1;
	transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	.reveal,
	.reveal-stagger > * {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ── Site Pop-ups ─────────────────────────────────────── */

.site-popup {
	position: fixed;
	inset: 0;
	z-index: var(--z-modal);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-5);
	animation: site-popup-fade 280ms ease;
}

.site-popup[hidden] { display: none; }

@keyframes site-popup-fade {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.site-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.site-popup__dialog {
	position: relative;
	background: #fff;
	border-radius: var(--radius-lg);
	max-width: 480px;
	width: 100%;
	box-shadow: var(--shadow-md);
	padding: clamp( var(--space-8), 5vw, var(--space-10) ) clamp( var(--space-6), 4vw, var(--space-10) );
	transform: translateY(0);
	animation: site-popup-rise 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes site-popup-rise {
	from { transform: translateY(12px); opacity: 0.6; }
	to   { transform: translateY(0); opacity: 1; }
}

.site-popup__close {
	position: absolute;
	top: var(--space-3);
	right: var(--space-3);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: var(--gray-100);
	color: var(--text-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background var(--fast), color var(--fast);
}

.site-popup__close:hover {
	background: var(--warm-border);
}

.site-popup__heading {
	font-size: clamp(1.5rem, 2.6vw, var(--text-3xl));
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 var(--space-4);
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.site-popup__copy {
	color: var(--text-muted);
	line-height: 1.65;
	font-size: var(--text-sm);
	margin-bottom: var(--space-6);
}

.site-popup__copy p { margin: 0 0 var(--space-3); }
.site-popup__copy p:last-child { margin-bottom: 0; }

.site-popup__cta {
	width: 100%;
	justify-content: center;
}

@media (max-width: 480px) {
	.site-popup__dialog {
		padding: var(--space-8) var(--space-5);
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-popup,
	.site-popup__dialog { animation: none; }
}

/* ── Service FAQs Accordion ──────────────────────────────── */

.section-faqs {
	padding: var(--space-16) 0;
	background: var(--cream);
}

.section-faqs__heading {
	font-size: clamp(1.625rem, 3vw, 2.25rem);
	color: var(--text-dark);
	margin: var(--space-2) 0 var(--space-10);
	letter-spacing: -0.01em;
}

.faq-list {
	max-width: 820px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.faq-item {
	background: #fff;
	border: 1px solid var(--warm-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: box-shadow var(--base), border-color var(--base);
}

.faq-item[open] {
	border-color: var(--green-light);
	box-shadow: var(--shadow-sm);
}

.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	padding: var(--space-5) var(--space-6);
	font-weight: 600;
	font-size: var(--text-md);
	color: var(--text-dark);
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__question:hover .faq-item__q-text {
	color: var(--green);
}

.faq-item__q-text {
	flex: 1;
	transition: color var(--fast);
}

.faq-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: var(--green);
	transition: transform var(--base);
	flex-shrink: 0;
}

.faq-item[open] .faq-item__icon {
	transform: rotate(180deg);
}

.faq-item__answer {
	padding: 0 var(--space-6) var(--space-5);
	color: var(--text-muted);
	line-height: 1.7;
	font-size: var(--text-sm);
}

.faq-item__answer p {
	margin: 0 0 var(--space-3);
}
.faq-item__answer p:last-child {
	margin-bottom: 0;
}

@media (max-width: 600px) {
	.section-faqs {
		padding: var(--space-12) 0;
	}
	.faq-item__question {
		padding: var(--space-4) var(--space-5);
		font-size: var(--text-sm);
	}
	.faq-item__answer {
		padding: 0 var(--space-5) var(--space-4);
	}
}

@media (prefers-reduced-motion: reduce) {
	.faq-item,
	.faq-item__icon,
	.faq-item__q-text {
		transition: none;
	}
}
