/* =========================================================
   Rethink Aesthetics & Wellness — main stylesheet
   Warm neutral palette with charcoal feature blocks, Cormorant Garamond + Manrope (+ Pinyon Script signature), generous whitespace.
   ========================================================= */

:root {
	--bg: #f6f3ee;
	--sand: #efeae2;
	--sand-2: #e6dfd4;
	--card: #fbf9f6;
	--line: #d9d1c5;
	--line-2: #c9bfb0;
	--ink: #1d1b18;
	--text: #2e2b27;
	--muted: #6f6760;
	--soft: #9a9186;
	--accent: #8d947a; /* sage, from the client's printables (2026-09-09) */
	--charcoal: #35322f; /* feature blocks (founder, Why Rethink) */
	--charcoal-2: #26241f; /* footer */
	--white: #ffffff;
	--ff-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--ff-script: "Pinyon Script", "Brush Script MT", cursive;
	--ff-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
	--container: 1360px;
	--gutter: clamp(1.25rem, 4vw, 3rem);
	--radius: 2px;
	--ease: cubic-bezier(.22, .61, .36, 1);
	--header-h: 88px;
	--section: clamp(3.5rem, 6vw, 5.5rem);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--ff-body);
	font-size: 1.0625rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { margin: 0; padding: 0; }
address { font-style: normal; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 500; color: var(--ink); margin: 0; line-height: 1.1; letter-spacing: 0; }
h1 { font-size: clamp(2.9rem, 5.8vw, 5.3rem); line-height: 1.02; }
h2 { font-size: clamp(2.25rem, 3.8vw, 3.5rem); line-height: 1.06; }
h3, .h3 { font-size: 1.5rem; font-weight: 500; letter-spacing: 0; }
h4 { font-family: var(--ff-body); font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 1rem; top: -100px; background: var(--ink); color: var(--bg); padding: .6rem 1rem; z-index: 200; font-size: .85rem; }
.skip-link:focus { top: 1rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.eyebrow {
	display: inline-flex; align-items: center; gap: .9rem;
	font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
	color: var(--accent); margin: 0 0 1.4rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); flex: none; }
.lead { font-size: 1.15rem; line-height: 1.65; color: var(--muted); }
.prose p { margin-bottom: 1.15em; }
.prose > * + h2, .prose > * + h3 { margin-top: 2em; }
.prose ul, .prose ol { padding-left: 1.25rem; margin: 0 0 1.15em; }
.prose a { text-decoration: underline; text-underline-offset: .2em; }

/* ---------- Buttons and links ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
	padding: 1.05rem 1.8rem; border: 1px solid var(--ink); border-radius: var(--radius);
	font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; line-height: 1;
	color: var(--ink); background: transparent; white-space: nowrap;
	transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--light { border-color: rgba(255, 255, 255, .7); color: var(--white); }
.btn--light:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn--white { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn--white:hover { background: transparent; color: var(--white); }
.btn--sm { padding: .8rem 1.25rem; font-size: .7rem; }

.link-arrow {
	display: inline-flex; align-items: center; gap: .65rem;
	font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--ink);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.link-arrow:hover svg { transform: translateX(6px); }
.link-arrow--sm { font-size: .68rem; letter-spacing: .14em; color: var(--muted); }
.link-arrow--sm svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(246, 243, 238, .86);
	-webkit-backdrop-filter: saturate(1.2) blur(14px); backdrop-filter: saturate(1.2) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .4s var(--ease), background .4s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(246, 243, 238, .94); }
.site-header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: var(--header-h); gap: 2rem; }
.site-logo { display: inline-flex; align-items: center; }
.site-logo img { width: 156px; height: auto; }

.site-nav__list { display: flex; gap: 2.4rem; list-style: none; }
.site-nav__list > li { position: relative; }
.site-nav__list > li > a {
	display: inline-block; padding: 1.1rem 0; position: relative;
	font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--ink);
}
.site-nav__list > li > a::after {
	content: ""; position: absolute; left: 0; right: 100%; bottom: .75rem; height: 1px; background: var(--ink);
	transition: right .45s var(--ease);
}
.site-nav__list > li:hover > a::after, .site-nav__list > li:focus-within > a::after, .site-nav__list > li.is-open > a::after { right: 0; }

.dropdown {
	position: absolute; left: 0; right: 0; top: 100%;
	background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
	opacity: 0; visibility: hidden; transform: translateY(-6px);
	transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.site-header .has-dropdown:not(.has-dropdown--simple) { position: static; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .has-dropdown.is-open .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown__inner { display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: 3.5rem; padding: 2.75rem 0 3.25rem; }
.dropdown h4 { margin-bottom: 1.1rem; }
.dropdown ul { list-style: none; display: grid; gap: .55rem; }
.dropdown li a { display: inline-block; font-size: .98rem; color: var(--text); transition: color .3s, transform .3s var(--ease); }
.dropdown li a:hover { color: var(--ink); transform: translateX(4px); }
.dropdown__cta { border-left: 1px solid var(--line); padding-left: 3.5rem; }
.dropdown__cta p { font-size: .95rem; color: var(--muted); margin: 0 0 1.5rem; max-width: 24rem; }
.dropdown--simple { left: -1.5rem; right: auto; min-width: 230px; padding: 1.1rem 1.5rem 1.25rem; border: 1px solid var(--line); box-shadow: 0 30px 50px -30px rgba(29, 27, 24, .25); }
.dropdown--simple ul { gap: .5rem; }

.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 1.75rem; }
.header-phone { display: inline-flex; align-items: center; gap: .55rem; font-size: .92rem; font-weight: 600; color: var(--ink); }
.header-phone svg { width: 17px; height: 17px; color: var(--accent); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; margin-right: -.5rem; }
.nav-toggle__bars { position: relative; width: 24px; height: 1.5px; background: var(--ink); display: block; transition: background .2s; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; width: 24px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease), top .35s var(--ease); }
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

.mobile-menu { position: fixed; inset: var(--header-h) 0 0 0; background: var(--bg); overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 2rem 0 calc(4rem + env(safe-area-inset-bottom, 0px)); z-index: 99; }
.admin-bar .site-header { top: var(--wp-admin--admin-bar--height, 32px); }
@media (max-width: 600px) { .admin-bar .site-header { top: 0; } }
.mobile-menu .container { display: grid; gap: 2.25rem; }
.mobile-menu__group h4 { margin-bottom: .9rem; }
.mobile-menu__group ul { list-style: none; }
.mobile-menu__group li a { display: block; padding: .7rem 0; border-top: 1px solid var(--line); font-family: var(--ff-head); font-size: 1.35rem; color: var(--ink); }
.mobile-menu__group li:last-child a { border-bottom: 1px solid var(--line); }
.mobile-menu__actions { display: grid; gap: .75rem; }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); min-height: min(calc(100vh - var(--header-h) - 4rem), 800px); background: var(--bg); }
.hero__content {
	display: flex; flex-direction: column; justify-content: center;
	padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem) max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.hero__content h1 { margin: 0 0 1.6rem; max-width: 14ch; }
.hero__lead { font-size: 1.08rem; line-height: 1.7; color: var(--muted); max-width: 34rem; margin: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.9rem; }
.hero__media { position: relative; overflow: hidden; min-height: 52vh; }
.hero__media img, .hero__media .img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.img-placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #ebe4da 0%, #d8cfc2 100%); }

/* ---------- Trust strip under the hero ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.trust-strip__list { list-style: none; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem 2rem; padding-block: 1.05rem; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--muted); }
.trust-strip__list li { display: inline-flex; align-items: center; gap: 1rem; }
@media (max-width: 1024px) {
	.trust-strip__list { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.5rem; padding-block: 1rem; font-size: .66rem; letter-spacing: .14em; }
}
@media (max-width: 560px) {
	.trust-strip__list { grid-template-columns: 1fr; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section); }
.section--sand { background: var(--sand); }
.section--deep {
	--bg: var(--charcoal); --sand: #3d3a36; --sand-2: var(--charcoal); --card: #3f3b37;
	--line: rgba(233, 223, 207, .16); --line-2: rgba(233, 223, 207, .3);
	--ink: #efe6d6; --text: #e4dbcd; --muted: #bdb2a2; --soft: #978d7f; --white: #f5eee2;
	background: var(--charcoal); color: var(--text);
}
.section--deep .btn--primary { color: #2b2825; }
.section--deep .btn--primary:hover { color: var(--white); }
.section--deep .media-frame img { filter: sepia(.14) saturate(1.03) brightness(.97); }
.section--deep .eyebrow { color: #b8bfa3; }
.section--deep .eyebrow::before { background: #b8bfa3; }
.section--deep .standard-card__icon { background: rgba(233, 223, 207, .1); color: #c9cfb4; }
.section--deep .map { background: #3f3b37; }
.section--deep .map iframe { filter: grayscale(1) contrast(.9) brightness(.86); }
.section--deep .map:hover iframe { filter: none; }
.section__head { max-width: 46rem; margin-bottom: clamp(1.75rem, 3vw, 2.75rem); }
.section__head h2 { margin-bottom: .9rem; }
.section__head .lead { margin: 0; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .eyebrow::before { display: none; }
.section__foot { margin-top: clamp(2rem, 3.5vw, 3rem); display: flex; justify-content: center; }
.section__gap { margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.section .h3 { margin-bottom: 1.75rem; }

.split { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.split__media { grid-column: 1 / 6; position: relative; }
.split__body { grid-column: 7 / 13; }
.split--reverse .split__body { grid-column: 1 / 7; }
.split--reverse .split__media { grid-column: 8 / 13; }
.split__body h2 { margin-bottom: 1.25rem; }
.split__body .link-arrow { margin-top: 1.75rem; }

.media-frame { position: relative; aspect-ratio: 4 / 5; }
.media-frame img, .media-frame .img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.media-frame--offset::after { content: ""; position: absolute; inset: 1.5rem -1.5rem -1.5rem 1.5rem; border: 1px solid var(--line-2); border-radius: var(--radius); pointer-events: none; }
.media-frame--portrait { aspect-ratio: 4 / 5; }
.media-caption { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 1.1rem 0 0; }

.points { list-style: none; margin-top: 2rem; }
.points li { display: grid; grid-template-columns: 22px 1fr; gap: .9rem; align-items: start; padding: .9rem 0; border-top: 1px solid var(--line); font-size: .98rem; }
.points li:last-child { border-bottom: 1px solid var(--line); }
.points svg { width: 20px; height: 20px; color: var(--accent); margin-top: .2rem; }

.credentials { list-style: none; margin-top: 1.75rem; }
.credentials li { padding: .75rem 0; border-top: 1px solid var(--line-2); font-size: .95rem; color: var(--text); }
.credentials li:last-child { border-bottom: 1px solid var(--line-2); }

/* ---------- Standards cards ---------- */
.standards-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.standard-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.25rem 2rem 2.25rem; display: flex; flex-direction: column; gap: 1.1rem; transition: border-color .4s var(--ease), transform .5s var(--ease); }
.standard-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.standard-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--sand-2); color: var(--accent); margin-bottom: .4rem; }
.standard-card__icon svg { width: 26px; height: 26px; }
.standard-card h3 { font-size: 1.15rem; }
.standard-card p { font-size: .93rem; line-height: 1.65; color: var(--muted); margin: 0; }
@media (max-width: 1024px) { .standards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .standards-grid { grid-template-columns: 1fr; } }

/* ---------- Treatment cards ---------- */
.treatment-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2.25rem 1.75rem; }
.treatment-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.25rem 2rem; }
.card { position: relative; display: flex; flex-direction: column; height: 100%; }
.card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); background: var(--sand-2); flex: none; }
.card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { display: flex; flex-direction: column; flex: 1; padding-top: 1.4rem; }
.card__title { font-size: 1.5rem; font-weight: 500; line-height: 1.15; min-height: 2.3em; margin-bottom: .55rem; }
.card__link::after { content: ""; position: absolute; inset: 0; }
.card__text { font-size: .93rem; line-height: 1.6; color: var(--muted); margin: 0 0 1.1rem; }
.card .link-arrow--sm { margin-top: auto; }
.card:hover .link-arrow--sm svg { transform: translateX(6px); }
.card:hover .link-arrow--sm { color: var(--ink); }

/* ---------- Approach ---------- */
.approach-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
.approach-item { border-top: 1px solid var(--line-2); padding-top: 1.6rem; }
.approach-item__num { display: block; font-family: var(--ff-body); font-size: .82rem; letter-spacing: .22em; color: var(--soft); margin-bottom: 1.5rem; }
.approach-item h3 { font-size: 1.18rem; margin-bottom: .8rem; }
.approach-item p { font-size: .94rem; line-height: 1.65; color: var(--muted); }
.approach-note { margin-top: 2rem; padding-left: 1.5rem; border-left: 1px solid var(--line-2); font-size: .92rem; color: var(--muted); }

/* ---------- Reviews ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.quote { margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.5rem 2.25rem 2.25rem; display: flex; flex-direction: column; }
.quote__mark { font-family: var(--ff-head); font-size: 4.25rem; line-height: .55; color: var(--line-2); display: block; margin-bottom: 1.5rem; }
.quote p { font-size: 1rem; line-height: 1.7; color: var(--text); margin: 0 0 1.5rem; flex: 1; }
.quote__by { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* ---------- Visit ---------- */
.visit { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.visit__body h2 { margin-bottom: 1.1rem; }
.visit__details { margin: 2.25rem 0 0; display: grid; }
.detail { display: grid; grid-template-columns: 22px 1fr; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.detail:last-child { border-bottom: 1px solid var(--line); }
.detail svg { width: 22px; height: 22px; color: var(--accent); margin-top: .15rem; }
.detail dt { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--soft); margin-bottom: .2rem; }
.detail dd { margin: 0; font-size: 1rem; color: var(--text); }
.detail dd a:hover { color: var(--accent); }
.visit__serving { margin-top: 1.6rem; font-size: .92rem; color: var(--muted); }
.visit__serving span { display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--soft); margin-bottom: .35rem; }
.visit__serving a { color: var(--ink); text-decoration: underline; text-underline-offset: .25em; text-decoration-color: var(--line-2); }
.visit__serving a:hover { text-decoration-color: var(--ink); }
.map { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); background: var(--sand-2); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(.92) brightness(1.03); transition: filter .6s var(--ease); }
.map:hover iframe { filter: none; }
.map__cta { position: absolute; left: 1.25rem; bottom: 1.25rem; }

/* Hours */
.hours { list-style: none; display: grid; gap: .3rem; font-size: .98rem; }
.hours li { display: grid; grid-template-columns: 6.5rem 1fr; gap: 1rem; }
.hours li span:first-child { color: var(--muted); }
.hours__note { display: block; margin-top: .6rem; font-size: .85rem; color: var(--soft); }
.footer-hours { list-style: none; margin-top: 1rem; display: grid; gap: .3rem; font-size: .9rem; }
.footer-hours span { display: inline-block; width: 2.6rem; color: rgba(246, 243, 238, .5); }

/* ---------- FAQ ---------- */
.faq { max-width: 52rem; margin-inline: auto; }
.faq__item { border-top: 1px solid var(--line-2); }
.faq__item:last-child { border-bottom: 1px solid var(--line-2); }
.faq summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 1.5rem 0; cursor: pointer; font-family: var(--ff-head); font-size: 1.4rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex: none; width: 26px; height: 26px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 1.5px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .35s var(--ease), opacity .35s; }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }
.faq__a { padding: 0 3rem 1.9rem 0; max-width: 44rem; color: var(--muted); }
.faq__a p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; padding-block: clamp(4rem, 8vw, 6.5rem); color: var(--white); text-align: center; overflow: hidden; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; background: var(--ink); }
.cta-band__media img, .cta-band__media .img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(29, 27, 24, .55), rgba(29, 27, 24, .72)); }
.cta-band h2 { color: var(--white); margin-bottom: 1.25rem; }
.cta-band p.cta-band__script { font-family: var(--ff-script); font-weight: 400; font-size: clamp(2.1rem, 3.4vw, 3rem); line-height: 1.2; color: #c9cfb4; max-width: none; margin: 0 0 .5rem; }
.cta-band__media img { filter: sepia(.2) saturate(1.06) contrast(1.04) brightness(.93); }
.cta-band p { color: rgba(255, 255, 255, .85); max-width: 36rem; margin: 0 auto 2.25rem; font-size: 1.08rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-2); color: rgba(246, 243, 238, .72); padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.25fr; gap: 3.5rem 3rem; }
.footer-logo { width: 170px; height: auto; filter: invert(1) brightness(1.4); opacity: .95; }
.footer-brand__text { margin: 1.5rem 0 1.5rem; max-width: 22rem; line-height: 1.7; }
.footer-social { display: inline-flex; align-items: center; gap: .6rem; color: var(--bg); font-size: .9rem; }
.footer-social svg { width: 19px; height: 19px; }
.footer-social:hover { color: var(--white); }
.footer-heading { color: var(--bg); margin-bottom: 1.25rem; }
.footer-heading--spaced { margin-top: 2.25rem; }
.footer-links { list-style: none; display: grid; gap: .55rem; }
.footer-links a { transition: color .3s; }
.footer-links a:hover, .footer-address a:hover { color: var(--white); }
.footer-address { line-height: 1.8; }
.footer-newsletter p { margin: 0 0 1.25rem; line-height: 1.65; }
.newsletter-form { display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid rgba(246, 243, 238, .35); }
.newsletter-form input[type="email"] { flex: 1; min-width: 0; background: none; border: 0; color: var(--white); padding: .95rem 0; font: inherit; }
.newsletter-form input::placeholder { color: rgba(246, 243, 238, .5); }
.newsletter-form input:focus { outline: none; }
.newsletter-form__btn { display: inline-flex; align-items: center; gap: .5rem; color: var(--bg); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; white-space: nowrap; }
.newsletter-form__btn svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.newsletter-form__btn:hover svg { transform: translateX(5px); }
.newsletter-msg { font-size: .85rem; margin: .8rem 0 0; min-height: 1.2em; color: rgba(246, 243, 238, .85); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem 2rem; margin-top: clamp(2.25rem, 4vw, 3.25rem); padding-top: 1.75rem; border-top: 1px solid rgba(246, 243, 238, .14); font-size: .78rem; color: rgba(246, 243, 238, .5); }
.footer-bottom p { margin: 0; }
.footer-legal { list-style: none; display: flex; gap: 1.75rem; }
.footer-legal a:hover { color: var(--white); }
.footer-credit { display: inline-flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.footer-credit__logo { display: inline-flex; color: rgba(246, 243, 238, .72); }
.footer-credit__logo svg { width: auto; height: 22px; display: block; }
.footer-credit a:hover { color: var(--white); }

/* ---------- Inner pages ---------- */
.page-hero { background: var(--sand); padding: clamp(2.75rem, 5vw, 4.5rem) 0 clamp(2.5rem, 4vw, 3.5rem); }
.page-hero h1 { font-size: clamp(2.5rem, 4.9vw, 4rem); max-width: 22ch; }
.page-hero .lead { margin-top: 1.25rem; max-width: 40rem; }
.page-hero--split .split { align-items: center; }
.page-hero--split .split__body { grid-column: 1 / 7; }
.page-hero--split .split__media { grid-column: 8 / 13; }
.page-hero--split .hero__actions { margin-top: 2rem; }
.entry-summary + .entry-summary { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }

/* ---------- Service (treatment) pages: single-treatment.php ---------- */
/* Full-width banner hero: photo behind a dark gradient, white copy on the left (Nisa, 2026-09-09) */
.banner { position: relative; isolation: isolate; display: flex; align-items: center; min-height: clamp(520px, 72vh, 720px); background: var(--ink); color: var(--white); overflow: hidden; }
.banner__media { position: absolute; inset: 0; z-index: -2; }
.banner__media img, .banner__media .img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.banner__media img { filter: sepia(.2) saturate(1.06) contrast(1.04) brightness(.93); }
.banner::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(29, 27, 24, .8) 0%, rgba(29, 27, 24, .58) 36%, rgba(29, 27, 24, .16) 68%, rgba(29, 27, 24, .06) 100%), linear-gradient(180deg, rgba(29, 27, 24, .1) 0%, rgba(29, 27, 24, 0) 40%, rgba(29, 27, 24, .45) 100%); }
.banner__inner { position: relative; padding: clamp(3rem, 6vw, 5rem) 0; }
.banner__body { max-width: 40rem; }
.banner .eyebrow { color: rgba(255, 255, 255, .78); }
.banner .eyebrow::before { background: rgba(255, 255, 255, .5); }
.banner h1 { color: var(--white); font-size: clamp(2.7rem, 5.1vw, 4.5rem); max-width: 16ch; margin-bottom: 1.25rem; }
.banner__lead { color: rgba(255, 255, 255, .86); font-size: 1.08rem; line-height: 1.7; max-width: 36rem; margin: 0; }
.banner .hero__actions { margin-top: 1.9rem; }
.tx-facts .trust-strip__list { justify-content: flex-start; gap: .6rem clamp(2rem, 4vw, 3.75rem); padding-block: 1.1rem; text-transform: none; letter-spacing: 0; font-weight: 500; font-size: .95rem; color: var(--ink); }
.tx-facts .trust-strip__list li { gap: .75rem; }
.tx-facts__label { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--soft); }
.tx-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.tx-grid .section__head { margin-bottom: 0; }
.tx-grid .section__head .lead { margin-top: 1.1rem; }
.tx-prose { max-width: 42rem; }
.tx-prose .link-arrow { margin-top: 1.75rem; }
.points--grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 2.5rem; margin-top: .35rem; border-top: 1px solid var(--line); }
.points--grid li { border-top: 0; border-bottom: 1px solid var(--line); }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.duo h2, .price-panel h2 { font-size: clamp(1.7rem, 2.6vw, 2.35rem); margin-bottom: 1.1rem; }
.duo .eyebrow { margin-bottom: 1rem; }
.price-panel { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(2rem, 4vw, 3.5rem); }
.price-panel__from { font-family: var(--ff-head); font-size: clamp(2.2rem, 3.6vw, 3.4rem); font-weight: 500; line-height: 1.05; letter-spacing: 0; color: var(--ink); margin: 0; }
.price-panel__from small { display: block; font-family: var(--ff-body); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; color: var(--soft); margin-top: .9rem; }
.price-panel__body p { color: var(--muted); }
.serving { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); font-size: .92rem; }
.serving a { color: var(--ink); text-decoration: underline; text-underline-offset: .25em; text-decoration-color: var(--line-2); }
.serving a:hover { text-decoration-color: var(--ink); }
@media (max-width: 1024px) {
	.tx-grid, .duo, .price-panel { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 760px) {
	.banner { min-height: 560px; align-items: flex-end; }
	.banner::before { background: linear-gradient(180deg, rgba(29, 27, 24, .2) 0%, rgba(29, 27, 24, .45) 40%, rgba(29, 27, 24, .88) 100%); }
	.banner h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
	.points--grid { grid-template-columns: 1fr; }
	.tx-facts .trust-strip__list li { flex-direction: column; align-items: flex-start; gap: .15rem; }
}
@media (max-width: 560px) {
	.banner .hero__actions .btn { width: 100%; }
}

/* QA captures: headless full-page screenshots use a very tall window, so vh-based heights must not apply */
.qa-mode .hero { min-height: 0; }
.qa-mode .hero__media { min-height: 0; aspect-ratio: 7 / 6; }
@media (max-width: 1024px) { .qa-mode .hero__media { aspect-ratio: 4 / 3; } }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible, html.no-js .reveal, .qa-mode .reveal { opacity: 1; transform: none; transition: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.card__media img, .link-arrow svg { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
	.site-nav__list { gap: 1.8rem; }
	.header-phone span { display: none; }
	.treatment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
	:root { --header-h: 76px; }
	.site-nav, .header-phone { display: none; }
	.nav-toggle { display: inline-flex; }
	.site-header__inner { grid-template-columns: auto 1fr; }
	.header-actions { gap: 1rem; }
	.hero { grid-template-columns: 1fr; min-height: 0; }
	.hero__media { order: -1; min-height: 50vh; }
	.hero__content { padding: clamp(2.5rem, 6vw, 4rem) var(--gutter) clamp(3rem, 7vw, 4.5rem); }
	.hero__content h1 { max-width: none; }
	.split, .page-hero--split .split { grid-template-columns: 1fr; gap: 2.5rem; }
	.split__media, .split__body, .split--reverse .split__media, .split--reverse .split__body,
	.page-hero--split .split__media, .page-hero--split .split__body { grid-column: 1 / -1; }
	.split--reverse .split__media { order: -1; }
	.media-frame { max-width: 560px; }
	.media-frame--offset::after { inset: 1.25rem -1.25rem -1.25rem 1.25rem; }
	.approach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.quotes { grid-template-columns: 1fr; max-width: 40rem; margin-inline: auto; }
	.visit { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
	.treatment-grid, .treatment-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.25rem 1.25rem; }
	.card__title { font-size: 1.08rem; }
	.card__text { font-size: .88rem; }
	.faq summary { font-size: 1.08rem; padding: 1.2rem 0; }
	.faq__a { padding-right: 0; }
	.cta-band__actions .btn { width: 100%; }
}
@media (max-width: 560px) {
	.site-header__inner { gap: 1rem; }
	.header-actions { gap: .5rem; }
	.header-book { padding: .7rem .9rem; font-size: .62rem; letter-spacing: .12em; }
	.approach-grid { grid-template-columns: 1fr; gap: 2rem; }
	.footer-grid { grid-template-columns: 1fr; gap: 2.75rem; }
	.hero__actions .btn { width: 100%; }
	.site-logo img { width: 132px; }
	.mobile-menu__group li a { font-size: 1.25rem; }
}
@media (max-width: 420px) {
	.treatment-grid, .treatment-grid--3 { grid-template-columns: 1fr; }
	.card__title { min-height: 0; }
	.card__media { aspect-ratio: 5 / 4; }
}

/* ---------- About, Contact and legal pages: page-about.php, page-contact.php, page.php (2026-09-09) ---------- */
.page-hero .eyebrow + h1 { margin-top: .9rem; }
.page-hero .hero__actions { margin-top: 2rem; }
.page-hero--split .split__media .media-frame { max-width: 440px; margin-left: auto; }
.page-hero--split .media-caption { text-align: right; }
.credentials { margin: 1.75rem 0 0; }
.contact-layout { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); align-items: start; }
.contact-form { grid-column: 1 / 8; }
.contact-form .lead { margin: 1rem 0 2rem; }
.contact-details { grid-column: 9 / 13; }
.contact-details .visit__details { margin-top: 1.75rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.field input:not([type="checkbox"]), .field textarea { width: 100%; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1rem; font: inherit; color: var(--text); }
.field input:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.field textarea { min-height: 160px; resize: vertical; }
.field--check { display: flex; gap: .75rem; align-items: flex-start; font-size: .88rem; line-height: 1.5; color: var(--muted); cursor: pointer; }
.field--check input { width: 1.1rem; height: 1.1rem; margin: .2rem 0 0; accent-color: var(--ink); flex: none; }
.form-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: .25rem; }
.form-msg { font-size: .9rem; min-height: 1.2em; margin: 0; color: var(--muted); }
.form-msg.is-error { color: #8a3b2e; }
.prose--legal { max-width: 46rem; }
.prose--legal h2 { margin-top: 2.5rem; font-size: 1.45rem; }
.prose--legal h2 + p, .prose--legal h2 + ul { margin-top: .9rem; }
.prose--legal .legal-updated { color: var(--muted); font-size: .9rem; }
@media (max-width: 900px) {
	.contact-form, .contact-details { grid-column: 1 / -1; }
	.form-grid { grid-template-columns: 1fr; }
	.page-hero--split .split__media .media-frame { margin-left: 0; max-width: 100%; }
	.page-hero--split .media-caption { text-align: left; }
}


/* --- SGP platform lead form ---------------------------------------------
   The contact form is rendered by the platform (connector shortcode
   [sgp_lead_form]) so its consent wording has a single owner. It arrives
   with bpa-* class hooks and NO inline styles, which is exactly so a theme
   can dress it — these rules map it onto the form styling above. */
.bpa-lead-form { display: grid; gap: 1.1rem; }
.bpa-field { display: block; }
.bpa-label { display: block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.bpa-input { width: 100%; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1rem; font: inherit; color: var(--text); }
.bpa-input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
textarea.bpa-input { min-height: 160px; resize: vertical; }
.bpa-consent { display: flex; gap: .75rem; align-items: flex-start; font-size: .88rem; line-height: 1.5; color: var(--muted); cursor: pointer; }
.bpa-consent input { width: 1.1rem; height: 1.1rem; margin: .2rem 0 0; accent-color: var(--ink); flex: none; }
.bpa-fineprint { font-size: .78rem; line-height: 1.6; color: var(--muted); margin: 0; }
.bpa-fineprint a { color: inherit; }
.bpa-extra { display: grid; gap: 1.1rem; }
.bpa-submit {
	justify-self: start;
	display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
	padding: 1.05rem 1.8rem; border: 1px solid var(--ink); border-radius: var(--radius);
	font-family: inherit; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; line-height: 1;
	color: var(--bg); background: var(--ink); white-space: nowrap; cursor: pointer;
	transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.bpa-submit:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.bpa-submit[disabled] { opacity: .55; cursor: default; }
.bpa-success, .bpa-error { margin: 0; font-weight: 600; }
.bpa-error { color: #b91c1c; }
