/* ============================================
	 Happy Changemakers – Site Styles
	 ============================================ */

@font-face {
  font-family: 'Lora';
  src: url('fonts/Lora-VariableFont_wght.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('fonts/DMSans-VariableFont_opsz,wght.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}

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

:root {
	--clr-ink: #1a1a1a;
	--clr-body: #3d3d3d;
	--clr-muted: #6b6b6b;
	--clr-border: #e2e2e2;
	--clr-bg: #fafafd;
	--clr-surface: #ffffff;
	--clr-warm: #009CD7;
	--clr-warm-light: #e0f3fb;
	--clr-warm-hover: #007fb0;
	--clr-sage: #d47b6a;
	--clr-sage-light: #faf0ed;
	--font-display: 'Lora', Georgia, serif;
	--clr-tick: #5a9e6f;
	--clr-cross: #c25a4a;
	--clr-error: #c0392b;
	--font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--max-w: 1120px;
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 3rem;
	--space-xl: 5rem;
	--space-2xl: 7rem;
}

html { scroll-behavior: smooth; }

body {
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--clr-body);
	background: var(--clr-bg);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-warm); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--clr-warm-hover); }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--clr-ink);
	line-height: 1.25;
	font-weight: 600;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p + p { margin-top: var(--space-sm); }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-md); }

/* --- Header / Nav --- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 250, 248, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--clr-border);
}
.site-header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}
.logo {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--clr-warm);
	letter-spacing: -0.01em;
	transition: color 0.2s;
}
.logo span { color: var(--clr-ink); transition: color 0.2s; }
.logo:hover, .logo:hover span { color: var(--clr-warm); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--clr-ink); }

.main-nav { display: flex; align-items: center; gap: var(--space-md); }
.main-nav > a, .nav-dropdown > a {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--clr-body);
	padding: 4px 0;
	border-bottom: 2px solid transparent;
	transition: color 0.2s, border-color 0.2s;
}
.main-nav > a:hover, .main-nav > a.active,
.nav-dropdown > a:hover, .nav-dropdown > a.active {
	color: var(--clr-warm);
	border-bottom-color: var(--clr-warm);
}
.main-nav .btn-nav {
	background: var(--clr-warm);
	color: #fff;
	padding: 10px 22px;
	border-radius: 6px;
	border-bottom: none;
	font-weight: 600;
	transition: background 0.2s;
}
.main-nav .btn-nav:hover {
	background: var(--clr-warm-hover);
	color: #fff;
}
.main-nav .btn-nav.active {
	background: var(--clr-border);
	color: var(--clr-body);
	cursor: default;
}

/* --- Nav Dropdown --- */
.nav-dropdown {
	position: relative;
	align-self: center;
}
.nav-dropdown > a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.dropdown-arrow {
	transition: transform 0.2s;
	flex-shrink: 0;
}
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
	transform: rotate(180deg);
}
.dropdown-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	margin-left: -130px;
	width: 260px;
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	padding: 8px 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
	z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
	opacity: 1;
	pointer-events: auto;
}
.dropdown-menu::before {
	content: '';
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	height: 12px;
}
.dropdown-menu a {
	display: block;
	padding: 8px 20px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--clr-body);
	border: none;
	text-align: center;
	transition: color 0.15s;
}
.dropdown-menu a:hover {
	color: var(--clr-warm);
	background: none;
	border: none;
}
.dropdown-menu a.active {
	color: var(--clr-warm);
	border: none;
}

/* --- Hero --- */
.hero {
	padding: 80px 0 var(--space-xl);
	background: var(--clr-surface);
	border-bottom: 1px solid var(--clr-border);
}
.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}
.hero-text .eyebrow {
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--clr-warm);
	margin-bottom: var(--space-sm);
}
.hero-text h1 { margin-bottom: var(--space-md); }
.hero-text .lead {
	font-size: 1.15rem;
	color: var(--clr-muted);
	margin-bottom: var(--space-lg);
	line-height: 1.65;
}
.hero-image {
	background: var(--clr-warm-light);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	color: var(--clr-muted);
	font-style: italic;
}
.hero-image img {
	border-radius: 12px;
}

/* --- Buttons --- */
.btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.2s;
	cursor: pointer;
	border: none;
}
.btn-primary { background: var(--clr-warm); color: #fff; }
.btn-primary:hover { background: var(--clr-warm-hover); color: #fff; }
.btn-secondary {
	background: transparent;
	color: var(--clr-warm);
	border: 2px solid var(--clr-warm);
}
.btn-secondary:hover {
	background: var(--clr-warm);
	color: #fff;
}
.btn-group { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* --- Sections --- */
.section {
	padding: var(--space-xl) 0;
}
.section-alt {
	background: var(--clr-surface);
	border-top: 1px solid var(--clr-border);
	border-bottom: 1px solid var(--clr-border);
}
.section-warm {
	background: linear-gradient(to top, #daf0f8 0%, #eef8fb 100%);
}
.section-header {
	margin-bottom: var(--space-lg);
}
.section-header h2 { margin-bottom: var(--space-sm); }
.section-header p {
	font-size: 1.05rem;
	color: var(--clr-muted);
}

/* --- Card Grid --- */
.card-grid {
	display: grid;
	gap: var(--space-md);
}
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: 10px;
	padding: var(--space-lg) var(--space-md);
	transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
	box-shadow: 0 8px 30px rgba(0,0,0,0.06);
	transform: translateY(-2px);
}
.card .card-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--clr-warm);
	margin-bottom: var(--space-xs);
}
.card h3 { margin-bottom: var(--space-sm); }
.card p { color: var(--clr-muted); font-size: 0.975rem; }
.card .card-link {
	display: inline-block;
	margin-top: var(--space-md);
	font-weight: 600;
	font-size: 0.9375rem;
}

/* --- Service Page Specifics --- */
.service-hero {
	padding: var(--space-xl) 0;
	background: var(--clr-surface);
	border-bottom: 1px solid var(--clr-border);
}
.service-hero .eyebrow {
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--clr-warm);
	margin-bottom: var(--space-sm);
}
.service-hero h1 { margin-bottom: var(--space-md); }
.service-hero .lead {
	font-size: 1.15rem;
	color: var(--clr-muted);
	line-height: 1.65;
}
.services-intro-with-image {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.services-intro-with-image .lead {
  flex: 1;
}
.services-intro-image {
  flex-shrink: 0;
}
.services-intro-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .services-intro-with-image {
    display: block;
  }
  .services-intro-image {
    display: none;
  }
}

/* --- Pain points list --- */
.pain-list {
	list-style: none;
	padding: 0;
}
.pain-list li {
	position: relative;
	padding-left: 1.4rem;
	margin-bottom: var(--space-sm);
	line-height: 1.6;
}
.pain-list li::before {
	content: '\25B8';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--clr-warm);
	font-size: 0.9em;
}

/* --- Process Steps --- */
.process-steps { counter-reset: step; }
.step {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
	counter-increment: step;
}
.step-marker {
	width: 48px;
	height: 48px;
	background: var(--clr-warm);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
	flex-shrink: 0;
}
.step-content h3 { margin-bottom: 0.4rem; }
.step-content p { color: var(--clr-muted); }

/* --- Outcome list --- */
.outcome-list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-sm) var(--space-lg);
}
.outcome-list li {
	position: relative;
	padding-left: 2rem;
	line-height: 1.6;
}
.outcome-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--clr-tick);
	font-weight: 700;
	font-size: 1.1rem;
}

/* --- Investment block --- */
.invest-block {
	background: var(--clr-surface);
	border: 2px solid var(--clr-border);
	border-radius: 12px;
	padding: var(--space-lg);
	max-width: 600px;
}
.invest-block .price {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--clr-ink);
}
.invest-block .price-note {
	font-size: 0.9rem;
	color: var(--clr-muted);
}
.invest-block p { margin-top: var(--space-sm); }

/* --- About Page --- */
.bio-grid {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: var(--space-lg);
	margin-bottom: var(--space-xl);
	align-items: start;
}
.bio-photo {
	width: 200px;
	height: 200px;
	border-radius: 10px;
	background: var(--clr-warm-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	color: var(--clr-muted);
	font-style: italic;
	flex-shrink: 0;
}
.bio-photo img {
	border-radius: 10px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bio-text h3 { margin-bottom: var(--space-xs); }
.bio-text .role {
	font-size: 0.9rem;
	color: var(--clr-warm);
	font-weight: 600;
	margin-bottom: var(--space-sm);
}

/* --- Client logos grid --- */
.client-bar {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--space-sm);
}
.client-box {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: 10px;
	padding: var(--space-md);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	text-align: center;
}
.client-logo-placeholder {
	width: 80px;
	height: 50px;
	border-radius: 6px;
	background: var(--clr-warm-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	color: var(--clr-muted);
	font-style: italic;
}
.client-box span {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--clr-muted);
}

/* --- Testimonials --- */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-md);
}
.testimonial {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: 10px;
	padding: var(--space-md) var(--space-md) var(--space-md);
}
.testimonial blockquote {
	font-style: italic;
	color: var(--clr-body);
	line-height: 1.65;
	margin-bottom: var(--space-sm);
}
.testimonial .attribution {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--clr-ink);
}
.testimonial .attribution span {
	display: block;
	font-weight: 400;
	color: var(--clr-muted);
}

/* --- Contact --- */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: start;
}
.contact-form label {
	display: block;
	font-weight: 500;
	font-size: 0.9rem;
	margin-bottom: 4px;
	color: var(--clr-ink);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--clr-border);
	border-radius: 6px;
	font-family: var(--font-body);
	font-size: 1rem;
	margin-bottom: var(--space-md);
	background: var(--clr-surface);
	transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	outline: none;
	border-color: var(--clr-warm);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-details h3 { margin-bottom: var(--space-sm); }
.contact-details p { margin-bottom: var(--space-md); }

.contact-avatar-wrap {
	text-align: center;
	flex-shrink: 0;
}
.contact-avatar-wrap .hero-avatar {
	width: 200px;
	margin-top: 40px;
}
@media (max-width: 768px) {
	.contact-avatar-wrap {
		margin-top: var(--space-md);
		display: flex;
		justify-content: center;
	}
	.contact-avatar-wrap .hero-avatar {
		width: 150px;
		margin-top: 0;
	}
	.service-hero .hero-text {
		text-align: center;
	}
	.service-hero .career-highlights {
		display: inline-block;
		text-align: left;
	}
}

/* --- Footer --- */
.site-footer {
	padding: var(--space-lg) 0;
	border-top: 1px solid var(--clr-border);
	background: var(--clr-surface);
}
.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: start;
	flex-wrap: wrap;
	gap: var(--space-lg);
}
.footer-col h4 { margin-bottom: var(--space-sm); font-size: 0.95rem; }
.footer-col a {
	display: block;
	font-size: 0.9rem;
	color: var(--clr-muted);
	margin-bottom: 6px;
}
.footer-col a:hover { color: var(--clr-warm); }
.footer-bottom {
	margin-top: var(--space-lg);
	padding-top: var(--space-md);
	border-top: 1px solid var(--clr-border);
	font-size: 0.8125rem;
	color: var(--clr-muted);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--space-sm);
}

/* --- CTA Banner --- */
.cta-banner {
	padding: var(--space-xl) 0;
	background: linear-gradient(to top, #1a1a1a 0%, #313131 100%);
	color: #fff;
	text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: var(--space-sm); }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: var(--space-md); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { background: var(--clr-warm); }
.cta-banner .btn-primary:hover { background: var(--clr-warm-hover); }

/* --- Prose (for service pages long content) --- */
.prose h2 { margin-top: var(--space-sm); margin-bottom: var(--space-sm); }
.prose h3 { margin-top: var(--space-lg); margin-bottom: var(--space-xs); }
.prose p { margin-bottom: var(--space-sm); }
.prose ul {
	padding-left: 1.5rem;
	margin-bottom: var(--space-sm);
}
.prose ul li {
	margin-bottom: 0.4rem;
	line-height: 1.6;
}

/* --- Service Page Hero (light variant) --- */
.service-hero-light {
	background: linear-gradient(165deg, #f9fafa 0%, #e0f3fb 40%, #f9fafa 100%);
	color: var(--clr-ink);
	padding: clamp(60px, 7vw, 90px) 0 clamp(60px, 8vw, 100px);
	position: relative;
	overflow: hidden;
}
/* Background image variant: add data-overlay="3" for 30% overlay */
.service-hero-light[data-bg] {
	background-size: cover;
	background-position: bottom;
}
.service-hero-light[data-bg]::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.02);
	pointer-events: none;
	z-index: 1;
}
.service-hero-light[data-bg] .wrap {
	position: relative;
	z-index: 2;
}
.service-hero-light:not([data-bg])::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -15%;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(196,98,42,0.06) 0%, transparent 70%);
	pointer-events: none;
}
.service-hero-light .eyebrow {
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--clr-warm);
	margin-bottom: var(--space-sm);
}
.service-hero-light h1 {
	color: var(--clr-ink);
	margin-bottom: var(--space-md);
	max-width: 700px;
}
.service-hero-light .lead {
	font-size: 1.15rem;
	color: var(--clr-muted);
	max-width: 620px;
	line-height: 1.65;
	margin-bottom: var(--space-lg);
}

/* --- Service Page Hero (dark variant) --- */
.service-hero-dark {
	background: linear-gradient(165deg, var(--clr-ink) 0%, #2a2a2a 40%, #3d3d3d 100%);
	color: #fff;
	padding: clamp(100px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
	position: relative;
	overflow: hidden;
}
.service-hero-dark::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -15%;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(196,98,42,0.12) 0%, transparent 70%);
	pointer-events: none;
}
.service-hero-dark .eyebrow {
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: rgba(255,255,255,0.55);
	margin-bottom: var(--space-sm);
}
.service-hero-dark h1 {
	color: #fff;
	margin-bottom: var(--space-md);
	max-width: 700px;
}
.service-hero-dark .lead {
	font-size: 1.15rem;
	color: rgba(255,255,255,0.75);
	max-width: 620px;
	line-height: 1.65;
	margin-bottom: var(--space-lg);
}

/* --- Hero Avatar --- */
.hero-with-avatar {
	display: flex;
	align-items: flex-start;
	gap: 60px;
}
.hero-with-avatar .hero-text {
	flex: 1;
	max-width: 740px;
}
.hero-avatar {
	margin-top: 60px;
	width: 240px;
	height: auto;
	flex-shrink: 0;
}
.hero-avatar-wrap {
	text-align: center;
	flex-shrink: 0;
}
.hero-avatar-name {
	margin-top: 8px;
	font-size: 1.1rem;
	color: var(--clr-muted);
	font-weight: 600;
}
@media (max-width: 768px) {
	.hero-with-avatar {
		display: block;
	}
	.hero-avatar-wrap {
		display: none;
	}
}

/* --- Phase Cards (3-col overview) --- */
.phases-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
	margin-top: var(--space-lg);
}
.phase-card {
	text-align: center;
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: 10px;
	padding: var(--space-lg) var(--space-md);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.phase-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.phase-card .phase-number {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--clr-warm);
	line-height: 1;
	margin-bottom: 0.4rem;
}
.phase-card h3 { margin-top: 0.6rem; margin-bottom: 0.6rem; }
.phase-card p { font-size: 0.95rem; color: var(--clr-muted); }

/* --- Numbered Steps (with connecting line) --- */
.numbered-steps { counter-reset: step-counter; }
.numbered-step {
	position: relative;
	padding-left: 56px;
	margin-bottom: 44px;
	counter-increment: step-counter;
}
.numbered-step::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	top: 2px;
	font-family: var(--font-display);
	font-size: 1.6rem;
	color: var(--clr-warm);
	width: 40px;
	text-align: center;
	font-weight: 600;
}
.numbered-step::after {
	content: '';
	position: absolute;
	left: 19px;
	top: 38px;
	bottom: -30px;
	width: 1px;
	background: var(--clr-border);
}
.numbered-step:last-child::after { display: none; }
.numbered-step h3 { margin-bottom: 0.4rem; }
.numbered-step p { margin-bottom: 0.6rem; font-size: 0.98rem; }
.numbered-step ul {
	list-style: none;
	padding: 0;
	margin: 0.6rem 0;
}
.numbered-step ul li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 6px;
	font-size: 0.96rem;
	line-height: 1.6;
}
.numbered-step ul li::before {
	content: '\25B8';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--clr-warm);
	font-size: 0.9em;
}

/* --- Fit / Not Fit Grid --- */
.fit-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	margin-top: var(--space-lg);
}
.fit-col h3 { margin-bottom: var(--space-sm); }
.fit-col ul { list-style: none; padding: 0; }
.fit-col ul li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.6rem;
	font-size: 0.96rem;
	line-height: 1.6;
}
.fit-col.yes ul li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--clr-tick);
	font-weight: 700;
}
.fit-col.no ul li::before {
	content: '\2715';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--clr-cross);
	font-weight: 700;
	font-size: 0.9rem;
}

/* --- Trigger Tags --- */
.trigger-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: var(--space-md) 0;
}
.trigger-tag {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: 40px;
	padding: 8px 20px;
	font-size: 0.9rem;
	color: var(--clr-body);
	white-space: nowrap;
}

/* --- Pull Quote --- */
.pull-quote {
	border-left: 3px solid var(--clr-warm);
	padding: var(--space-md) var(--space-lg);
	margin: 0 auto;
	max-width: 700px;
	font-style: italic;
	color: var(--clr-muted);
	font-size: 1.02rem;
	line-height: 1.7;
	background: var(--clr-surface);
	border-radius: 0 8px 8px 0;
}

/* --- Pricing Cards --- */
.pricing-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-md);
	margin: var(--space-lg) 0;
}
.pricing-card {
	border: 1px solid var(--clr-border);
	border-radius: 10px;
	padding: var(--space-lg) var(--space-md);
	background: var(--clr-surface);
	text-align: center;
}
.pricing-card h3 { margin-bottom: 0.5rem; }
.pricing-card .price {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--clr-warm);
	font-weight: 700;
}
.pricing-card .price-sub {
	font-size: 0.85rem;
	color: var(--clr-muted);
}
.inclusions { margin-top: var(--space-lg); }
.inclusions h3 { margin-bottom: var(--space-sm); }
.inclusions ul { list-style: none; padding: 0; }
.inclusions ul li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.5rem;
	font-size: 0.96rem;
}
.inclusions ul li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--clr-tick);
	font-weight: 700;
}

/* --- FAQ Accordion --- */
.faq-list { margin-top: var(--space-lg); }
.faq-item { border-bottom: 1px solid var(--clr-border); }
.faq-item:first-child { border-top: 1px solid var(--clr-border); }
.faq-question {
	width: 100%;
	background: none;
	border: none;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	color: var(--clr-ink);
	text-align: left;
	padding: 18px 40px 18px 0;
	cursor: pointer;
	position: relative;
	line-height: 1.5;
	transition: color 0.2s;
}
.faq-question:hover { color: var(--clr-warm); }
.faq-question::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--clr-muted);
	transition: transform 0.3s, color 0.2s;
}
.faq-item.open .faq-question::after {
	content: '\2212';
	color: var(--clr-warm);
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s;
}
.faq-item.open .faq-answer {
	max-height: 400px;
	padding-bottom: 18px;
}
.faq-answer p {
	font-size: 0.96rem;
	color: var(--clr-muted);
	line-height: 1.7;
	max-width: 680px;
}

/* --- About Block (inline bio) --- */
.about-block {
	display: flex;
	align-items: flex-start;
	gap: var(--space-lg);
	margin-top: var(--space-md);
}
.about-avatar {
	flex-shrink: 0;
	width: 200px;
	height: 200px;
}
.about-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-text p { margin-bottom: 0.8rem; font-size: 0.98rem; }

/* --- Coaching callout row --- */
.coaching-callout {
	background: var(--clr-surface);
	border: 2px solid var(--clr-border);
	border-radius: 12px;
	padding: var(--space-lg);
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: var(--space-lg);
	align-items: center;
	margin-top: var(--space-lg);
}
.coaching-callout h3 { margin-bottom: var(--space-xs); }
.coaching-callout p { color: var(--clr-muted); font-size: 0.95rem; }

/* --- About preview grid (home page "We've been where you are") --- */
.about-preview-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

/* --- Skills grid (about page "What we bring together") --- */
.skills-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
}

/* --- Book grid (about page "We wrote the book") --- */
.book-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--space-xl);
	align-items: center;
}

/* --- Responsive additions --- */
@media (max-width: 900px) {
	.phases-grid { grid-template-columns: 1fr; }
	.fit-grid { grid-template-columns: 1fr; }
	.pricing-cards { grid-template-columns: 1fr; }
	.about-block { flex-direction: column; }
	.coaching-callout { grid-template-columns: 1fr; }
	.coaching-grid-layout { grid-template-columns: 1fr !important; }
	.investment-grid { grid-template-columns: 1fr !important; }
	.sound-familiar-grid { grid-template-columns: 1fr !important; }
	.sound-familiar-image { display: none !important; }
	.about-hero-grid { grid-template-columns: 1fr !important; }
	.about-hero-photo { max-width: 360px; }

	/* Fix: index.html "We've been where you are" - stack image below text */
	.about-preview-grid { grid-template-columns: 1fr; }

	/* Fix: services.html facilitated program cards - collapse to single column instead of hiding image */
	.service-card-inner { grid-template-columns: 1fr !important; }
	.service-card-image { display: none !important; }

	/* Fix: about.html "What we bring together" - stack Rob below Jodie */
	.skills-grid { grid-template-columns: 1fr; }

	/* Fix: about.html "We wrote the book" - stack and put book image first */
	.book-grid {
		grid-template-columns: 1fr;
	}
	.book-grid .hero-image {
		order: -1;
		max-width: 280px;
	}
	.hero-inner { grid-template-columns: 1fr; }
	.hero-image { max-height: 300px; }
	.bio-grid { grid-template-columns: 1fr; }
	.bio-photo { width: 140px; height: 140px; }
	.contact-grid { grid-template-columns: 1fr; }
	.about-dual { grid-template-columns: 1fr; gap: var(--space-lg); }
	.about-dual-separator { display: none; }
	.coaching-callout-grid { grid-template-columns: 1fr; }
	.coaching-callout-grid .service-card-image { display: block !important; order: 2; }
	.speaking-intro-grid { grid-template-columns: 1fr; }
	.speaking-photo { max-width: 360px; }
	.offering-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
	.main-nav { 
		display: none;
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		background: var(--clr-bg);
		border-bottom: 1px solid var(--clr-border);
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: var(--space-md);
		gap: var(--space-sm);
	}
	.main-nav.open { display: flex; }
	.nav-toggle { display: block; }
	.outcome-list { grid-template-columns: 1fr; }
	.footer-inner { flex-direction: column; }

	/* Mobile dropdown: always expanded, no hover */
	.nav-dropdown { position: static; text-align: center; align-self: center; width: auto; }
	.dropdown-arrow { display: none; }
	.dropdown-menu {
		position: static;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		background: transparent;
		border: none;
		box-shadow: none;
		padding: 0;
		min-width: 0;
		width: auto;
		left: auto;
		margin-left: 0;
		margin-top: 4px;
	}
	.dropdown-menu::before { display: none; }
	.dropdown-menu a {
		padding: 6px 0;
		font-size: 0.875rem;
		color: var(--clr-muted);
		text-align: center;
		border: none;
		background: none;
	}
	.dropdown-menu a:hover,
	.dropdown-menu a:active {
		background: none;
		border: none;
		color: var(--clr-warm);
	}
	.legal-modal {
		max-height: 90vh;
		border-radius: 10px;
	}
	.legal-modal-header {
		padding: var(--space-sm) var(--space-md);
	}
	.legal-modal-body {
		padding: var(--space-md);
	}
}

/* --- Card image placeholder --- */
.card-image-placeholder {
	width: 100%;
	height: 160px;
	background: var(--clr-warm-light);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	color: var(--clr-muted);
	font-style: italic;
	margin-bottom: var(--space-md);
}
.card-image-placeholder img {
	border-radius: 8px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- Sound familiar image grid --- */
.sound-familiar-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: start;
}
.sound-familiar-image {
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	color: var(--clr-muted);
	font-style: italic;
	margin-top: var(--space-lg);
}
.sound-familiar-image img {
	border-radius: 12px;
	width: inherit;
	height: inherit;
	object-fit: cover;
}

/* --- Service card with side image --- */
.service-card-inner {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: var(--space-lg);
	align-items: start;
}
.service-card-image {
	background: var(--clr-warm-light);
	border-radius: 8px;
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	color: var(--clr-muted);
	font-style: italic;
}
.service-card-image img {
	border-radius: 8px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- About hero with photo --- */
.about-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}
.about-hero-photo {
	background: var(--clr-warm-light);
	border-radius: 12px;
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	color: var(--clr-muted);
	font-style: italic;
}
.about-hero-photo img {
	border-radius: 12px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- Origins section --- */
.origins-section {
	max-width: 740px;
}

/* --- Pricing indicator --- */
.pricing-indicator {
	display: inline-block;
	margin-top: var(--space-md);
	padding: 12px 24px;
	background: var(--clr-sage-light);
	border-radius: 8px;
	font-size: 0.95rem;
	color: var(--clr-ink);
}
.pricing-indicator strong {
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: var(--clr-warm);
}

/* --- Full-width contact form --- */
.contact-grid.contact-full {
	grid-template-columns: 1fr;
	max-width: 680px;
}

/* --- Prose FAQ accordion --- */
.prose .faq-list { margin-top: var(--space-md); }

/* --- About dual columns (Why we do this / Our identity) --- */
.about-dual {
	display: grid;
	grid-template-columns: 1fr 1px 1fr;
	gap: var(--space-xl);
	align-items: start;
}
.about-dual-separator {
	background: var(--clr-border);
	align-self: stretch;
}
.about-dual h3 { margin-bottom: var(--space-sm); }
.about-dual p { margin-bottom: var(--space-sm); }
.about-dual ul {
	list-style: none;
	padding: 0;
	margin: var(--space-sm) 0;
}
.about-dual ul li {
	position: relative;
	padding-left: 1.4rem;
	margin-bottom: 0.5rem;
	font-size: 0.96rem;
	line-height: 1.6;
	color: var(--clr-muted);
}
.about-dual ul li::before {
	content: '\25B8';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--clr-warm);
	font-size: 0.9em;
}

/* --- Footer home link --- */
.footer-home-link {
	display: inline-block;
	margin-top: var(--space-sm);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--clr-warm);
}
.footer-home-link:hover { color: var(--clr-warm-hover); }

/* --- Footer contact line: prefix + clickable value --- */
.footer-contact-line {
	display: block;
	font-size: 0.9rem;
	color: var(--clr-muted);
	margin-bottom: 6px;
}
.footer-contact-line a {
	display: inline;
	margin-bottom: 0;
}

/* --- Organisations categories grid --- */
@media (max-width: 768px) {
	.org-categories { grid-template-columns: 1fr !important; }
}

/* --- Career highlights: small triangle bullets --- */
.career-highlights {
	list-style: none;
	padding: 0 !important;
	margin: 0.3rem 0 0;
}
.career-highlights li {
	position: relative;
	padding-left: 1.4rem;
	margin-bottom: 0.4rem;
	font-size: 0.96rem;
	line-height: 1.6;
}
.career-highlights li::before {
	content: '\25B8';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--clr-warm);
	font-size: 0.9em;
}

/* --- Coaching benefits list (tick + description) --- */
.benefits-list {
	list-style: none;
	padding: 0;
	margin: var(--space-md) 0;
}
.benefits-list li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: var(--space-sm);
	font-size: 0.96rem;
	line-height: 1.6;
}
.benefits-list li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--clr-tick);
	font-weight: 700;
}
.benefits-list li strong {
	color: var(--clr-ink);
}
.benefits-list li span {
	color: var(--clr-muted);
}

/* --- Coaching callout grid (services page) --- */
.coaching-callout-grid {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: var(--space-lg);
	align-items: start;
}

/* --- Home page coaching section centering --- */
.coaching-centered {
	max-width: 740px;
	margin: 0 auto;
}

/* --- Footer legal links --- */
.footer-legal-link {
	color: var(--clr-muted);
	font-size: 0.8125rem;
	text-decoration: none;
	transition: color 0.2s;
}
.footer-legal-link:hover {
	color: var(--clr-warm);
}

/* --- Legal Modals --- */
.legal-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	padding: var(--space-md);
}
.legal-modal-overlay.open {
	opacity: 1;
	pointer-events: auto;
}
.legal-modal {
	background: var(--clr-surface);
	border-radius: 12px;
	max-width: 720px;
	width: 100%;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	transform: translateY(16px);
	transition: transform 0.3s ease;
}
.legal-modal-overlay.open .legal-modal {
	transform: translateY(0);
}
.legal-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-md) var(--space-lg);
	border-bottom: 1px solid var(--clr-border);
	flex-shrink: 0;
}
.legal-modal-header h2 {
	font-size: 1.25rem;
	margin: 0;
}
.legal-modal-close {
	background: none;
	border: none;
	font-size: 1.6rem;
	color: var(--clr-muted);
	cursor: pointer;
	padding: 4px 8px;
	line-height: 1;
	transition: color 0.2s;
}
.legal-modal-close:hover {
	color: var(--clr-ink);
}
.legal-modal-body {
	padding: var(--space-lg);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.legal-modal-body h3 {
	font-size: 1rem;
	margin-top: var(--space-md);
	margin-bottom: var(--space-xs);
}
.legal-modal-body h3:first-child {
	margin-top: 0;
}
.legal-modal-body p {
	font-size: 0.9rem;
	color: var(--clr-muted);
	line-height: 1.65;
	margin-bottom: 0.5rem;
}


/* --- Video embed --- */
.video-wrapper {
	position: relative;
	max-width: 680px;
	aspect-ratio: 16 / 9;
	margin: 0 auto;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}
.video-wrapper-spaced {
	margin: 0 auto var(--space-lg);
}
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 12px;
}
.video-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--clr-ink);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	font-family: var(--font-body);
}
.video-placeholder svg {
	width: 64px;
	height: 64px;
	margin-bottom: var(--space-sm);
	opacity: 0.6;
}
.video-placeholder p {
	opacity: 0.7;
	font-size: 0.95rem;
}

/* --- Warm accent bullets --- */
.warm-bullets {
	list-style: none;
	padding: 0 !important;
	margin: 0.3rem 0 0;
}
.warm-bullets li {
	position: relative;
	padding-left: 1.4rem;
	margin-bottom: 0.5rem;
	font-size: 0.96rem;
	line-height: 1.6;
}
.warm-bullets li::before {
	content: '\25B8';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--clr-warm);
	font-size: 0.9em;
}

/* --- Speaking page --- */
.speaking-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}
.speaking-photo {
	border-radius: 12px;
	overflow: hidden;
}
.speaking-photo img {
	border-radius: 12px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.offering-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-md);
}
.offering-card {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: 10px;
	padding: var(--space-lg) var(--space-md);
	transition: box-shadow 0.25s, transform 0.25s;
}
.offering-card:hover {
	box-shadow: 0 8px 30px rgba(0,0,0,0.06);
	transform: translateY(-2px);
}
.offering-card .card-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--clr-warm);
	margin-bottom: var(--space-xs);
}
.offering-card h3 { margin-bottom: var(--space-sm); }
.offering-card p { color: var(--clr-muted); font-size: 0.975rem; }
.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--space-md);
}
.why-card {
	text-align: center;
	padding: var(--space-lg) var(--space-md);
}
.why-card .why-icon {
	width: 56px;
	height: 56px;
	background: var(--clr-warm-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--space-sm);
}
.why-card .why-icon svg {
	width: 28px;
	height: 28px;
	stroke: var(--clr-warm);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.why-card h4 { margin-bottom: var(--space-xs); }
.why-card p { color: var(--clr-muted); font-size: 0.95rem; }
.keynote-topics {
	max-width: 740px;
}
.keynote-topic {
	border-bottom: 1px solid var(--clr-border);
	padding: var(--space-md) 0;
}
.keynote-topic:first-child {
	border-top: 1px solid var(--clr-border);
}
.keynote-topic h3 { margin-bottom: 0.4rem; }
.keynote-topic p { color: var(--clr-muted); font-size: 0.96rem; }
.keynote-topic .topic-tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--clr-warm);
	margin-bottom: 0.4rem;
}
.together-note {
	background: var(--clr-warm-light);
	border-radius: 10px;
	padding: var(--space-md) var(--space-lg);
	margin-top: var(--space-lg);
	max-width: 740px;
}
.together-note h4 { margin-bottom: var(--space-xs); }
.together-note p { color: var(--clr-muted); font-size: 0.96rem; }

/* --- Form feedback --- */
.form-success {
	text-align: center;
	padding: var(--space-lg) 0;
}
.form-success p {
	font-size: 1.1rem;
	margin-bottom: var(--space-sm);
}
.form-success p + p {
	font-size: 1rem;
	color: var(--clr-muted);
}
.form-error {
	color: var(--clr-error);
	font-size: 0.9rem;
	margin-top: var(--space-sm);
	text-align: center;
}
