:root {
	--bg: #f8f2e9;
	--bg-soft: #fbf7f1;
	--surface: rgba(255, 250, 243, 0.9);
	--surface-strong: #fffaf4;
	--text: #4b453c;
	--muted: #6e665b;
	--heading: #6b5a48;
	--line: rgba(128, 113, 92, 0.2);
	--olive: #8a9777;
	--olive-dark: #738060;
	--gold: #dfa24f;
	--blue: #7190a6;
	--shadow: 0 20px 45px rgba(89, 72, 51, 0.12);
	--radius-lg: 28px;
	--radius-md: 18px;
	--radius-sm: 12px;
	--container: min(1120px, calc(100vw - 48px));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 18px;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 38%),
		radial-gradient(circle at top right, rgba(222, 200, 162, 0.22), transparent 30%),
		linear-gradient(180deg, #fdfaf5 0%, #f6efe5 52%, #fbf8f2 100%);
	line-height: 1.6;
}

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

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

button,
a,
input,
textarea,
select {
	font: inherit;
}

.icon-defs {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.container {
	width: var(--container);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(12px);
	background: rgba(253, 249, 243, 0.86);
	border-bottom: 1px solid rgba(136, 120, 95, 0.14);
}

.header-inner {
	min-height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.brand-mark {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
}

.brand-mark svg {
	width: 25px;
	height: 25px;
}

.brand-mark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.brand-text,
h1,
h2,
h3 {
	font-family: "Libre Baskerville", serif;
}

.brand-text {
	font-size: 1.7rem;
	color: var(--heading);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.mini-link {
	font-size: 0.95rem;
	color: var(--muted);
}

.mini-link:hover {
	color: var(--olive-dark);
}

.hero {
	position: relative;
	min-height: 74vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(18, 32, 16, 0.84) 0%, rgba(18, 32, 16, 0.72) 28%, rgba(18, 32, 16, 0.32) 44%, transparent 54%),
		url("images/Header Hero Image V4.png") center 55% / cover no-repeat;
}

.hero-content {
	position: relative;
	z-index: 1;
	color: #fff9ef;
	padding: 84px clamp(24px, 5vw, 80px);
	padding-left: clamp(32px, 5vw, 80px);
	width: min(640px, 40vw);
	max-width: 640px;
}

.eyebrow {
	margin: 0 0 18px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-size: 0.74rem;
	color: rgba(255, 244, 226, 0.8);
}

.hero h1 {
	margin: 0;
	font-size: clamp(2.6rem, 5vw, 4.2rem);
	line-height: 1.08;
	text-shadow: 0 10px 28px rgba(40, 28, 19, 0.28);
}

.hero-copy {
	margin: 18px 0 8px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #f3eadc;
}

.hero-subcopy {
	max-width: 42ch;
	margin: 0;
	font-size: 1rem;
	color: rgba(255, 247, 234, 0.92);
}

.hero-actions {
	margin-top: 30px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.button {
	min-width: 188px;
	padding: 14px 24px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	letter-spacing: 0.01em;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
	color: #fffaf2;
	background: linear-gradient(180deg, #93a082 0%, #7f8c6b 100%);
	box-shadow: 0 16px 32px rgba(77, 88, 61, 0.22);
}

.button-secondary {
	color: #fffaf2;
	border: 1.5px solid rgba(255, 248, 236, 0.78);
	background: rgba(255, 255, 255, 0.08);
}

.button-secondary.light {
	color: #534b41;
	background: #f6eee2;
	border-color: transparent;
}

.benefits-bar {
	background: rgba(255, 252, 247, 0.88);
	border-top: 1px solid rgba(160, 142, 118, 0.16);
	border-bottom: 1px solid rgba(160, 142, 118, 0.16);
	box-shadow: 0 14px 34px rgba(123, 103, 76, 0.08);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	padding: 18px 0;
}

.benefit-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-align: center;
	color: var(--muted);
	font-size: 0.96rem;
	line-height: 1.35;
}

.benefit-item svg {
	width: 24px;
	height: 24px;
	color: var(--olive);
	flex: 0 0 auto;
}

section {
	position: relative;
}

.section-soft,
.section-muted,
.approach-section,
.comfort-section,
.steps-section,
.faq-section {
	padding: 60px 0;
}

.split-grid,
.comfort-grid {
	display: grid;
	grid-template-columns: 1.03fr 0.97fr;
	gap: 32px;
	align-items: stretch;
}

.split-copy,
.comfort-copy {
	padding: 22px 8px 22px 0;
}

.comfort-copy-full {
	max-width: 100%;
	padding-right: 0;
	text-align: center;
}

h2 {
	margin: 0 0 18px;
	font-size: clamp(2rem, 3vw, 3rem);
	color: var(--heading);
	line-height: 1.14;
}

h3 {
	margin: 0 0 14px;
	font-size: 1.42rem;
	color: var(--heading);
}

.split-copy p:not(.section-note),
.comfort-copy p,
.section-intro {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 1.03rem;
}

.check-list,
.feature-list {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.check-list li,
.feature-list li {
	position: relative;
	padding-left: 34px;
	color: var(--text);
}

.check-list li::before,
.feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(138, 151, 119, 0.12);
	box-shadow: inset 0 0 0 1px rgba(138, 151, 119, 0.18);
}

.check-list li::after,
.feature-list li::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 6px;
	width: 12px;
	height: 12px;
	background: var(--olive-dark);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m5 12.5 4.1 4.1L19 7.7'/%3E%3C/svg%3E") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m5 12.5 4.1 4.1L19 7.7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.section-note {
	margin-top: 32px;
	margin-bottom: 0;
	font-family: "Libre Baskerville", serif;
	font-style: italic;
	color: #6d6458;
}

.split-photo,
.comfort-photo {
	min-height: 500px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	overflow: hidden;
	border: 1px solid rgba(150, 133, 108, 0.18);
}

.photo-one {
	background:
		linear-gradient(90deg, rgba(255, 251, 245, 0.22) 0%, rgba(255, 251, 245, 0.06) 48%, rgba(95, 71, 38, 0.12) 100%),
		url("images/Split%20photo%20one.jpg") center / cover no-repeat;
}

.section-muted {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(246, 236, 222, 0.56));
}

.cards-two-up {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	align-items: start;
}

.info-card,
.approach-card,
.step-card,
.faq-shell {
	background: rgba(255, 251, 245, 0.84);
	border: 1px solid rgba(154, 135, 112, 0.16);
	box-shadow: var(--shadow);
}

.info-card {
	padding: 32px;
	border-radius: var(--radius-lg);
}

.emphasis-card {
	background: linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(243, 234, 221, 0.9));
}

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

.section-intro {
	max-width: 800px;
	margin: 0 auto 36px;
}

.approach-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.approach-card,
.step-card {
	padding: 28px 22px;
	border-radius: 22px;
}

.approach-icon {
	width: 66px;
	height: 66px;
	border-radius: 20px;
	margin: 0 auto 18px;
	display: grid;
	place-items: center;
}

.approach-icon svg {
	width: 30px;
	height: 30px;
}

.approach-icon.olive {
	color: #7f8f6b;
	background: rgba(138, 151, 119, 0.15);
}

.approach-icon.amber {
	color: #cf8e3c;
	background: rgba(223, 162, 79, 0.16);
}

.approach-icon.blue {
	color: #61849d;
	background: rgba(113, 144, 166, 0.15);
}

.approach-icon.sage {
	color: #80906f;
	background: rgba(155, 174, 135, 0.16);
}

.approach-card p,
.step-card p {
	margin: 0;
	color: var(--muted);
}

.comfort-section {
	background:
		radial-gradient(circle at 88% 18%, rgba(255, 242, 216, 0.44), transparent 24%),
		linear-gradient(180deg, rgba(246, 238, 228, 0.22), rgba(255, 255, 255, 0.44));
}

.comfort-section .container {
	width: var(--container);
}

.comfort-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 24px 0;
	justify-content: center;
}

.comfort-pills span {
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(138, 151, 119, 0.1);
	color: var(--olive-dark);
	border: 1px solid rgba(138, 151, 119, 0.16);
	font-weight: 700;
}

.cta-band {
	padding: 56px 0;
	text-align: center;
	color: #fffaf2;
	background:
		linear-gradient(180deg, rgba(107, 131, 140, 0.7), rgba(115, 151, 158, 0.72)),
		url("images/Windy Road.jpg") center / cover no-repeat;
}

.cta-inner {
	max-width: 860px;
}

.cta-band h2 {
	color: #fffdf8;
	font-style: italic;
	margin-bottom: 16px;
}

.cta-band p {
	margin: 0 auto;
	max-width: 720px;
	color: rgba(255, 249, 239, 0.92);
}

.centered-actions {
	justify-content: center;
}

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

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 24px;
}

.step-number {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	margin: 0 auto 18px;
	display: grid;
	place-items: center;
	font-weight: 800;
	color: #fffaf2;
	background: linear-gradient(180deg, #95a282, #7a8768);
}

.faq-section {
	padding-top: 0;
}

.faq-shell {
	max-width: 860px;
	margin: 0 auto;
	padding: 40px 34px;
	border-radius: 28px;
}

.faq-shell h2 {
	text-align: center;
	margin-bottom: 28px;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-item {
	border-bottom: 1px solid rgba(140, 121, 99, 0.16);
}

.faq-question {
	width: 100%;
	padding: 18px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	background: transparent;
	border: 0;
	color: var(--heading);
	font-weight: 700;
	cursor: pointer;
	text-align: left;
}

.faq-symbol {
	font-size: 1.6rem;
	line-height: 1;
	color: var(--olive-dark);
	transition: transform 180ms ease;
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 220ms ease;
}

.faq-answer-inner {
	overflow: hidden;
	min-height: 0;
}

.faq-answer p {
	margin: 0;
	padding: 0 0 18px;
	color: var(--muted);
}

.faq-item.is-open .faq-answer {
	grid-template-rows: 1fr;
}

.faq-item.is-open .faq-symbol {
	transform: rotate(45deg);
}

/* ── Accordion Info Cards ── */
.accordion-card .card-toggle {
	width: 100%;
	padding: 0;
	margin: 0 0 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	background: transparent;
	border: 0;
	color: var(--heading);
	font-family: "Libre Baskerville", serif;
	font-size: 1.42rem;
	font-weight: 700;
	cursor: pointer;
	text-align: left;
}

.card-symbol {
	font-size: 1.6rem;
	line-height: 1;
	color: var(--olive-dark);
	transition: transform 180ms ease;
	flex-shrink: 0;
}

.card-body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 220ms ease;
}

.card-body-inner {
	overflow: hidden;
	min-height: 0;
}

.accordion-card.is-open .card-body {
	grid-template-rows: 1fr;
}

.accordion-card.is-open .card-symbol {
	transform: rotate(45deg);
}

.site-footer {
	padding: 32px 0 48px;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-top: 26px;
	border-top: 1px solid rgba(140, 121, 99, 0.16);
}

.footer-title {
	margin: 0 0 4px;
	font-family: "Libre Baskerville", serif;
	color: var(--heading);
}

.footer-inner p {
	margin: 0;
	color: var(--muted);
}

.footer-link {
	font-weight: 800;
	color: var(--olive-dark);
}

.footer-contact-btn {
	font-size: 0.9rem;
	padding: 8px 20px;
}

/* ── Contact Info Modal ── */
.modal-info {
	max-width: 400px;
}

.contact-info-block {
	margin-top: 18px;
}

.contact-name {
	margin: 0 0 2px;
	font-family: "Libre Baskerville", serif;
	font-size: 1.18rem;
	font-weight: 700;
	color: var(--heading);
}

.contact-role {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 0.95rem;
}

.contact-details {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contact-details li {
	color: var(--body);
	font-size: 1rem;
}

.contact-details a {
	color: var(--olive-dark);
	font-weight: 600;
	text-decoration: none;
}

.contact-details a:hover {
	text-decoration: underline;
}

.contact-note {
	color: var(--muted);
	font-size: 0.9rem;
}

@media (max-width: 1080px) {
	.benefits-grid,
	.approach-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.split-grid,
	.comfort-grid,
	.cards-two-up,
	.steps-grid {
		grid-template-columns: 1fr;
	}

	.split-photo,
	.comfort-photo {
		min-height: 380px;
	}

	.section-soft,
	.section-muted,
	.approach-section,
	.comfort-section,
	.steps-section,
	.faq-section {
		padding: 48px 0;
	}

	.cta-band {
		padding: 48px 0;
	}

	.hero-content {
		width: min(580px, 50vw);
	}
}

@media (max-width: 760px) {
	:root {
		--container: calc(100vw - 32px);
	}

	/* ── Header ── */
	.site-header {
		position: sticky;
	}

	.header-inner {
		min-height: 64px;
		flex-wrap: nowrap;
	}

	.brand-text {
		font-size: 1.15rem;
	}

	.brand-mark {
		width: 36px;
		height: 36px;
	}

	/* ── Hero: side-by-side layout matching desktop ── */
	.hero {
		min-height: 120vw;
		align-items: center;
		background:
			linear-gradient(90deg, rgba(18, 32, 16, 0.88) 0%, rgba(18, 32, 16, 0.78) 28%, rgba(18, 32, 16, 0.28) 44%, transparent 55%),
			url("images/Header Hero Image V4.png") 60% 55% / cover no-repeat;
	}

	.hero-content {
		width: 48vw;
		max-width: 48vw;
		padding: 32px 12px 32px 16px;
	}

	.eyebrow {
		font-size: 0.62rem;
		margin: 0 0 10px;
	}

	.hero h1 {
		font-size: clamp(1.3rem, 5.5vw, 2rem);
	}

	.hero-copy {
		font-size: 0.82rem;
		margin: 10px 0 6px;
	}

	.hero-subcopy {
		font-size: 0.76rem;
	}

	.hero-actions {
		margin-top: 16px;
		gap: 8px;
		flex-direction: column;
	}

	.button {
		width: 100%;
		min-width: 0;
		padding: 10px 12px;
		font-size: 0.75rem;
		white-space: nowrap;
	}

	/* ── Benefits bar ── */
	.benefits-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
		padding: 16px 0;
	}

	.benefit-item {
		justify-content: flex-start;
		text-align: left;
		font-size: 0.88rem;
	}

	/* ── Sections ── */
	.section-soft,
	.section-muted,
	.approach-section,
	.comfort-section,
	.steps-section {
		padding: 40px 0;
	}

	.faq-section {
		padding: 12px 0 40px;
	}

	.cta-band {
		padding: 44px 0;
	}

	/* ── Typography ── */
	h2 {
		font-size: clamp(1.6rem, 6vw, 2.4rem);
		margin-bottom: 12px;
	}

	h3 {
		font-size: 1.2rem;
	}

	.split-copy p:not(.section-note),
	.comfort-copy p,
	.section-intro,
	.benefit-item,
	.feature-list li,
	.check-list li,
	.step-card p,
	.cta-band p {
		font-size: 0.96rem;
	}

	.section-note {
		font-size: 0.96rem;
	}

	.split-copy h2,
	.split-copy p:not(.section-note),
	.split-copy .section-note {
		text-align: center;
	}

	/* ── Cards & grids ── */
	.approach-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.approach-card {
		padding: 20px 16px;
	}

	.approach-card h3 {
		font-size: clamp(0.85rem, 4vw, 1.2rem);
	}

	.approach-icon {
		width: 52px;
		height: 52px;
		margin-bottom: 12px;
	}

	.info-card {
		padding: 22px 20px;
	}

	.step-card {
		padding: 20px 18px;
	}

	.split-photo,
	.comfort-photo {
		min-height: 240px;
		border-radius: var(--radius-md);
	}

	.photo-one {
		background:
			linear-gradient(90deg, rgba(255, 251, 245, 0.22) 0%, rgba(255, 251, 245, 0.06) 48%, rgba(95, 71, 38, 0.12) 100%),
			url("images/Split%20photo%20one.jpg") center / cover no-repeat;
	}

	/* ── Steps ── */
	.steps-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	/* ── FAQ ── */
	.faq-shell {
		padding: 28px 20px;
		border-radius: var(--radius-md);
	}

	.faq-question {
		padding: 14px 0;
		font-size: 0.97rem;
	}

	/* ── CTA ── */
	.centered-actions {
		flex-direction: column;
		align-items: stretch;
	}

	/* ── Footer ── */
	.footer-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	/* ── Comfort pills ── */
	.comfort-pills span {
		font-size: 0.88rem;
		padding: 8px 13px;
	}

	/* ── Team & profile responsive ── */
	.team-section {
		padding: 40px 0;
	}

	.team-grid {
		grid-template-columns: 1fr !important;
	}

	.page-hero {
		padding: 48px 0 36px;
	}

	.profile-section {
		padding: 36px 0 48px;
	}

	.profile-grid {
		grid-template-columns: 1fr !important;
		gap: 28px;
	}

	.profile-photo {
		max-width: 280px;
		margin: 0 auto;
	}

	.profile-copy h1 {
		font-size: clamp(1.4rem, 6vw, 1.9rem);
	}

	.profile-copy .hero-actions {
		margin-top: 20px !important;
	}

	.back-link {
		margin-bottom: 28px;
	}
}

/* ══ Team & Therapist Profile Pages ══════════════════════════════════════ */

/* ── Page hero (interior pages) ── */
.page-hero {
	padding: 72px 0 56px;
	text-align: center;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(246, 238, 228, 0.3));
	border-bottom: 1px solid rgba(140, 121, 99, 0.12);
}

.page-hero .eyebrow {
	color: var(--olive-dark);
}

.page-hero h1 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	color: var(--heading);
	text-shadow: none;
	margin: 0 0 14px;
}

.page-hero p {
	max-width: 560px;
	margin: 0 auto;
	color: var(--muted);
	font-size: 1.05rem;
}

/* ── Team grid ── */
.team-section {
	padding: 64px 0;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	width: 100%;
}

.therapist-card {
	background: rgba(255, 251, 245, 0.84);
	border: 1px solid rgba(154, 135, 112, 0.16);
	box-shadow: var(--shadow);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.therapist-photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	background: linear-gradient(160deg, rgba(171, 182, 155, 0.3) 0%, rgba(199, 187, 168, 0.45) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.therapist-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.therapist-card:hover .therapist-photo img {
	transform: scale(1.06);
}

.therapist-photo-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(138, 151, 119, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--olive-dark);
}

.therapist-photo-icon svg {
	width: 38px;
	height: 38px;
}

.therapist-card-body {
	padding: 24px 24px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.therapist-card-body h3 {
	margin: 0 0 4px;
	font-size: 1.28rem;
}

.therapist-role {
	font-size: 0.82rem;
	color: var(--olive-dark);
	font-weight: 700;
	margin: 0 0 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-family: "Manrope", sans-serif;
}

.therapist-card-body p {
	margin: 0 0 20px;
	color: var(--muted);
	font-size: 0.96rem;
	flex: 1;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 800;
	color: var(--olive-dark);
	font-size: 1rem;
	border: 2px solid var(--olive-dark);
	border-radius: var(--radius-sm);
	padding: 9px 18px;
	transition: background 0.2s ease, color 0.2s ease;
}

.link-arrow::after {
	content: "→";
}

.link-arrow:hover {
	background: var(--olive-dark);
	color: #fff;
}

/* ── Individual therapist profile ── */
.profile-section {
	padding: 56px 0 72px;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	color: var(--olive-dark);
	font-size: 0.9rem;
	margin-bottom: 40px;
}

.back-link::before {
	content: "←";
}

.back-link:hover {
	color: var(--heading);
}

.profile-grid {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 56px;
	align-items: start;
}

.profile-photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-lg);
	background: linear-gradient(160deg, rgba(171, 182, 155, 0.3) 0%, rgba(199, 187, 168, 0.45) 100%);
	border: 1px solid rgba(150, 133, 108, 0.18);
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.profile-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.profile-photo:hover img {
	transform: scale(1.06);
}

.profile-photo-icon {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: rgba(138, 151, 119, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--olive-dark);
}

.profile-photo-icon svg {
	width: 52px;
	height: 52px;
}

.profile-copy {
	padding-top: 4px;
}

.profile-copy h1 {
	font-size: clamp(2rem, 3.5vw, 3rem);
	color: var(--heading);
	margin: 0 0 6px;
	text-shadow: none;
}

.profile-copy .therapist-role {
	margin-bottom: 28px;
}

.profile-copy p {
	color: var(--muted);
	font-size: 1.03rem;
	margin: 0 0 18px;
}

.profile-copy h2 {
	font-size: 1.5rem;
	margin: 32px 0 16px;
}

@media (min-width: 761px) and (max-width: 1080px) {
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.profile-grid {
		grid-template-columns: 280px 1fr;
		gap: 36px;
	}
}

/* ── Contact Modal ── */
.modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(60, 48, 34, 0.55);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.modal-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.modal {
	background: var(--surface-strong);
	border-radius: var(--radius-lg);
	box-shadow: 0 32px 80px rgba(60, 48, 34, 0.22);
	width: 100%;
	max-width: 560px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 40px 44px 44px;
	position: relative;
	transform: translateY(18px);
	transition: transform 0.25s ease;
}

.modal-overlay.is-open .modal {
	transform: translateY(0);
}

.modal-close {
	position: absolute;
	top: 18px;
	right: 18px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--muted);
	font-size: 1.5rem;
	line-height: 1;
	padding: 4px 8px;
	border-radius: var(--radius-sm);
	transition: color 0.15s ease, background 0.15s ease;
}

.modal-close:hover {
	color: var(--heading);
	background: rgba(138, 151, 119, 0.12);
}

.modal h2 {
	margin: 0 0 6px;
	font-size: 1.6rem;
}

.modal-subtitle {
	margin: 0 0 6px;
	color: var(--muted);
	font-size: 0.97rem;
}

.req-note {
	margin: 0 0 24px;
	font-size: 0.82rem;
	color: var(--muted);
}

.req {
	color: #b94a3a;
	font-weight: 700;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}

.form-group label {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--heading);
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 11px 14px;
	border: 1.5px solid rgba(138, 151, 119, 0.3);
	border-radius: var(--radius-sm);
	background: #fffdf9;
	color: var(--text);
	font-size: 1rem;
	font-family: "Manrope", sans-serif;
	transition: border-color 0.15s ease;
	width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--olive-dark);
}

.form-group textarea {
	resize: vertical;
	min-height: 90px;
}

.modal-submit {
	width: 100%;
	margin-top: 8px;
}

.modal-submit:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
}

.captcha-check {
	margin-bottom: 18px;
	padding: 14px 16px;
	background: rgba(138, 151, 119, 0.08);
	border: 1.5px solid rgba(138, 151, 119, 0.25);
	border-radius: var(--radius-sm);
}

.captcha-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: var(--heading);
	cursor: pointer;
	font-size: 0.95rem;
}

.captcha-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-width: 18px;
	cursor: pointer;
	accent-color: var(--olive-dark);
}

.modal-success {
	display: none;
	text-align: center;
	padding: 24px 0 8px;
}

.modal-success.is-visible {
	display: block;
}

.modal-success-icon {
	font-size: 2.8rem;
	margin-bottom: 12px;
}

.modal-success h3 {
	margin: 0 0 10px;
	color: var(--heading);
}

.modal-success p {
	color: var(--muted);
}

.modal-form.is-hidden {
	display: none;
}

@media (max-width: 560px) {
	.modal {
		padding: 32px 24px 36px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}
