@charset "UTF-8";
/* =====================================================================
   Bashra Aesthetics — Global Design System
   Premium, editorial, feminine-but-professional WordPress theme styles.
   All page sections on Home reuse the same tokens defined here.
   ===================================================================== */

/* ---- 1. Fonts ---- */
@font-face {
	font-family: 'Ochre';
	src: url('/wp-content/fonts/ochre-regular-webfont.woff2') format('woff2'),
		 url('/wp-content/fonts/ochre-regular-webfont.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* ---- 2. Design tokens ---- */
:root {
	/* Colors — page surfaces */
	--ba-page-bg: #F6F0E8;
	--ba-section-bg-1: #FCF8F3;
	--ba-section-bg-2: rgba(237, 225, 213, 0.56);
	--ba-section-bg-3: #EDE1D5;

	/* Cards */
	--ba-card-bg-light: #FAF5EF;
	--ba-card-bg-accent: #453124;
	--ba-card-bg-soft: #F6F0E8;
	--ba-card-bg-softer: #FCF8F3;

	/* Text */
	--ba-text-primary: #38271E;
	--ba-text-secondary: #453124;
	--ba-text-muted: #6F6258;
	--ba-text-on-dark: #FBF7F2;
	--ba-text-on-dark-soft: rgba(251, 247, 242, 0.78);

	/* Border / dividers */
	--ba-border: rgba(216, 203, 190, 0.82);
	--ba-border-soft: #EDE1D5;
	--ba-border-dark-inner: rgba(251, 247, 242, 0.14);

	/* Buttons */
	--ba-btn-primary-bg: #453124;
	--ba-btn-primary-text: #FBF7F2;
	--ba-btn-secondary-bg: transparent;
	--ba-btn-secondary-text: #38271E;

	/* Typography */
	--ba-font-heading: 'Ochre', 'Instrument Sans', Georgia, serif;
	--ba-font-body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

	/* Type scale */
	--ba-fs-h1: 72px;         /* Hero H1 (Home, Zone) */
	--ba-fs-h1-sm: 60px;      /* Hero H1 (Concerns, Book, FAQ, Pricing) */
	--ba-fs-h1-lg: 76px;      /* Hero H1 (Treatment single — short word titles) */
	--ba-fs-h2: 50px;         /* Main section H2 */
	--ba-fs-h2-md: 42px;      /* Mid-tier section H2 (Zone treatments, Pricing list/packages, Hub bridge, Cons split) */
	--ba-fs-h2-sm: 28px;      /* Sub-section H2 (Concerns panel title, FAQ group title) */
	--ba-fs-h3: 24px;         /* Card title */
	--ba-fs-h4: 18px;         /* Small heading / compact card title */
	--ba-fs-body: 16px;
	--ba-fs-lead: 18px;       /* Hero sub / lead paragraph */
	--ba-fs-lead-sm: 16px;    /* Compact lead (Home) */
	--ba-fs-small: 13px;
	--ba-fs-nav: 13px;

	/* Line-heights */
	--ba-lh-tight: 1.05;
	--ba-lh-heading: 1.12;
	--ba-lh-body: 1.55;

	/* Layout */
	--ba-max-width: 1280px;
	--ba-page-pad-x: 20px;
	--ba-section-gap: 64px;        /* vertical spacing between sections */
	--ba-section-gap-lg: 64px;     /* alias — kept for compatibility */
	--ba-section-pad: 40px;        /* inner padding of a section container */
	--ba-section-hero-pad: 28px;   /* inner padding of a hero panel (tight frame — lets the big media radius breathe) */

	/* Spacing scale — 4px-based. Use everywhere margins/paddings don't have a
	 * more specific token (--ba-section-pad, --ba-gap-*, --ba-section-hero-pad). */
	--ba-space-1: 4px;
	--ba-space-2: 8px;
	--ba-space-3: 12px;
	--ba-space-4: 16px;
	--ba-space-5: 20px;
	--ba-space-6: 24px;
	--ba-space-7: 32px;
	--ba-space-8: 40px;
	--ba-space-9: 48px;
	--ba-space-10: 56px;
	--ba-space-11: 64px;
	--ba-space-12: 72px;

	/* Gaps (unified rhythm) */
	--ba-gap-xs: 6px;
	--ba-gap-sm: 12px;
	--ba-gap-md: 14px;
	--ba-gap-lg: 20px;
	--ba-gap-xl: 28px;
	--ba-gap-2xl: 32px;

	/* Radii — containers */
	--ba-radius-lg: 40px;   /* large section containers (hero panels) */
	--ba-radius-md: 28px;   /* medium containers / default cards */
	--ba-radius-sm: 18px;   /* small controls / chips panels / info rows / FAQ items */
	--ba-radius-pill: 999px;
	--ba-radius-image: 32px;
	--ba-radius-image-inner: 22px;   /* inner ::after border radius on image columns */

	/* Radii — cards (semantic aliases) */
	--ba-radius-card: 28px;      /* standard card (tcard, thub-card, zcard, pcard, step, cons-split, p-item) */
	--ba-radius-card-sm: 20px;   /* small card / accordion item / mini cards */
	--ba-radius-card-xs: 16px;   /* inner bubble, note pill, chip panel */

	/* Semantic spacing tokens */
	--ba-space-eyebrow: 16px;    /* margin-bottom under .ba-eyebrow */
	--ba-space-title-sub: 24px;  /* margin between H1/H2 and their sub/lead */
	--ba-space-sub-cta: 32px;    /* margin between sub/lead and CTA row in heroes */
	--ba-inset-ring: 18px;       /* inset for inner ::after ring on cards/panels */

	/* Shadows — soft, premium */
	--ba-shadow-soft: 0 1px 2px rgba(56, 39, 30, 0.04), 0 8px 24px rgba(56, 39, 30, 0.04);

	/* Transitions */
	--ba-transition: 220ms ease;

	/* Header */
	--ba-header-height: 80px;
	--ba-header-bg: rgba(252, 248, 243, 0.82);
}

/* ---- 3. Base reset ---- */
*, *::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(--ba-page-bg);
	color: var(--ba-text-primary);
	font-family: var(--ba-font-body);
	font-size: var(--ba-fs-body);
	line-height: var(--ba-lh-body);
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ba-transition); }
a:hover { color: var(--ba-btn-primary-bg); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
p { margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--ba-font-heading); font-weight: 400; color: var(--ba-text-primary); line-height: var(--ba-lh-heading); letter-spacing: -0.01em; }
/* Default sizes on the bare tags — so a plain <h2> already renders at the right size without needing a class. Component-specific *__title classes can still override. */
h1 { font-size: var(--ba-fs-h1); line-height: var(--ba-lh-tight); letter-spacing: -0.02em; }
h2 { font-size: var(--ba-fs-h2); line-height: var(--ba-lh-heading); letter-spacing: -0.015em; }
h3 { font-size: var(--ba-fs-h3); line-height: 1.25; }
h4 { font-size: var(--ba-fs-h4); line-height: 1.3; }

/* ---- 4. Typography helpers ---- */
.ba-h1 { font-family: var(--ba-font-heading); font-size: var(--ba-fs-h1); line-height: var(--ba-lh-tight); letter-spacing: -0.02em; }
.ba-h2 { font-family: var(--ba-font-heading); font-size: var(--ba-fs-h2); line-height: var(--ba-lh-heading); letter-spacing: -0.015em; }
.ba-h3 { font-family: var(--ba-font-heading); font-size: var(--ba-fs-h3); line-height: 1.25; }
.ba-body { font-size: var(--ba-fs-body); color: var(--ba-text-secondary); }
.ba-small { font-size: var(--ba-fs-small); color: var(--ba-text-muted); }

/* ---- 5. Layout primitives ---- */
.ba-container {
	width: 100%;
	max-width: calc(var(--ba-max-width) + 2 * var(--ba-page-pad-x));
	margin: 0 auto;
	padding-left: var(--ba-page-pad-x);
	padding-right: var(--ba-page-pad-x);
}

.ba-main { padding-bottom: var(--ba-section-gap); }

.ba-stack { display: flex; flex-direction: column; }
.ba-row   { display: flex; flex-direction: row; }
.ba-wrap  { flex-wrap: wrap; }
.ba-ai-c  { align-items: center; }
.ba-jc-sb { justify-content: space-between; }
.ba-jc-c  { justify-content: center; }
.ba-gap-xs { gap: var(--ba-gap-xs); }
.ba-gap-sm { gap: var(--ba-gap-sm); }
.ba-gap-md { gap: var(--ba-gap-md); }
.ba-gap-lg { gap: var(--ba-gap-lg); }
.ba-gap-xl { gap: var(--ba-gap-xl); }

/* Section container — the rounded editorial panel reused across the page */
.ba-section {
	position: relative;
	border-radius: var(--ba-radius-lg);
	padding: var(--ba-section-pad);
	background: var(--ba-section-bg-1);
	overflow: hidden;
}
.ba-section + .ba-section,
.ba-section--spaced { margin-top: var(--ba-section-gap); }
.ba-section--spaced-lg { margin-top: var(--ba-section-gap-lg); }
/* Reduce gap between navbar and first section (hero) on all pages. */
.ba-main > .ba-section:first-child { margin-top: 20px; }
/* Tighter section rhythm (56 desktop / 40 mobile). Shared by Book, Pricing,
 * Treatment single. Historical aliases (--t-gap, --book-gap, --p-gap) map here. */
.ba-section--tight,
.ba-section--t-gap,
.ba-section--book-gap,
.ba-section--p-gap { margin-top: 56px; }

.ba-section--soft      { background: var(--ba-section-bg-1); }
.ba-section--softer    { background: var(--ba-section-bg-2); }
.ba-section--warm      { background: var(--ba-section-bg-3); }
.ba-section--plain     { background: transparent; padding: 0; border-radius: 0; overflow: visible; }

/* ---- Hero panels (canonical) ----
 * Shared visual for every page hero. Each hero class may add its own grid /
 * internal paddings, but the outer panel (background, padding, radius) is
 * defined here. Padding scales via --ba-section-hero-pad (28 → 24 → 20).
 * Radius comes from --ba-radius-lg (40 → 28 at ≤1100 → 20 at ≤720). */
.ba-section--c-hero,
.ba-section--thub-hero,
.ba-section--pricing-hero,
.ba-section--t-hero,
.ba-section--loc-hero,
.ba-section--blog-hero {
	background: linear-gradient(180deg, #FCF8F3 0%, rgba(237, 225, 213, 0.6) 100%);
	padding: var(--ba-section-hero-pad);
	border-radius: var(--ba-radius-lg);
	overflow: hidden;
}
/* Home hero: same panel geometry as other heroes (padding / radius / overflow
 * from canonical block above), only gradient is slightly stronger because the
 * hero image fills most of the frame. */
.ba-section--hero {
	background: linear-gradient(180deg, #FCF8F3 0%, #EDE1D5 100%);
	padding: var(--ba-section-hero-pad);
	border-radius: var(--ba-radius-lg);
	overflow: hidden;
}

/* ---- Unified inner hero primitive ----
 * One source of truth for every 2-col hero across the site:
 *   .ba-c-hero    — Concerns / Book / FAQ    (H1 = --ba-fs-h1-sm, 60)
 *   .ba-thub-hero — Treatments Hub / Consultation (H1 = --ba-fs-h1, 72)
 *   .ba-t-hero    — Treatment single          (H1 = --ba-fs-h1-lg, 76)
 * Per-page CSS must NOT redeclare grid / typography / media for these. */
.ba-c-hero,
.ba-thub-hero,
.ba-t-hero {
	display: grid;
	grid-template-columns: minmax(0, 630fr) minmax(0, 515fr);
	gap: 40px;
	align-items: stretch;
}
.ba-c-hero__text,
.ba-thub-hero__text,
.ba-t-hero__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 8px 0;
}
.ba-c-hero__title,
.ba-thub-hero__title,
.ba-t-hero__title {
	font-family: var(--ba-font-heading);
	font-weight: 400;
	line-height: var(--ba-lh-tight);
	letter-spacing: -0.01em;
	color: var(--ba-text-primary);
	margin: 0 0 var(--ba-space-title-sub);
	max-width: 560px;
}
.ba-c-hero__title    { font-size: var(--ba-fs-h1-sm); }   /* 60 */
.ba-thub-hero__title { font-size: var(--ba-fs-h1); }      /* 72 */
.ba-t-hero__title    { font-size: var(--ba-fs-h1-lg); margin: var(--ba-space-7) 0 0; }  /* 76, tag pill sits above */

.ba-c-hero__sub,
.ba-thub-hero__sub,
.ba-t-hero__sub {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: var(--ba-fs-lead);
	line-height: var(--ba-lh-body);
	color: var(--ba-text-secondary);
	margin: 0 0 var(--ba-space-sub-cta);
	max-width: 540px;
}
.ba-t-hero__sub { margin: var(--ba-space-title-sub) 0 0; max-width: 520px; }

.ba-c-hero__cta,
.ba-thub-hero__cta,
.ba-t-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.ba-t-hero__cta { margin-top: var(--ba-space-sub-cta); }
.ba-c-hero .ba-hero__trust,
.ba-thub-hero .ba-hero__trust,
.ba-t-hero .ba-hero__trust { margin-top: var(--ba-gap-lg); }

.ba-c-hero__media,
.ba-thub-hero__media,
.ba-t-hero__media {
	position: relative;
	border-radius: var(--ba-radius-card);
	background: linear-gradient(180deg, #EDE1D5, #D8CBBE);
	height: 650px;
	overflow: hidden;
}
.ba-c-hero__media img,
.ba-thub-hero__media img,
.ba-t-hero__media img {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

@media ( max-width: 1100px ) {
	.ba-c-hero,
	.ba-thub-hero,
	.ba-t-hero { grid-template-columns: 1fr; gap: 28px; }
	.ba-c-hero__media,
	.ba-thub-hero__media,
	.ba-t-hero__media { height: 420px; }
}
@media ( max-width: 720px ) {
	.ba-c-hero__media,
	.ba-thub-hero__media,
	.ba-t-hero__media { min-height: 280px; height: 320px; }
}

/* Top row with heading on the left and small link/control on the right */
.ba-sec-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--ba-gap-lg);
	margin-bottom: var(--ba-gap-2xl);
}
.ba-sec-head__title { flex: 1 1 auto; }
.ba-sec-head__aside { flex: 0 0 auto; }

/* ---- 6. Buttons ---- */
.ba-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 24px;
	border-radius: 12px;
	font-family: var(--ba-font-body);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	border: 1px solid transparent;
	transition: background-color var(--ba-transition), color var(--ba-transition), border-color var(--ba-transition), transform var(--ba-transition);
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
}
.ba-btn--primary {
	background: var(--ba-btn-primary-bg);
	color: var(--ba-btn-primary-text);
}
.ba-btn--primary:hover { background: #38271E; color: var(--ba-btn-primary-text); }
.ba-btn--secondary {
	background: var(--ba-btn-secondary-bg);
	color: var(--ba-btn-secondary-text);
	border-color: var(--ba-border);
}
.ba-btn--secondary:hover { background: rgba(216, 203, 190, 0.25); }
.ba-btn--on-dark {
	background: var(--ba-text-on-dark);
	color: var(--ba-text-primary);
}
.ba-btn--on-dark:hover { background: #E3D6C8; }
.ba-btn--on-dark-outline {
	background: rgba(251, 247, 242, 0.05);
	color: var(--ba-text-on-dark);
	border-color: rgba(251, 247, 242, 0.22);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
.ba-btn--on-dark-outline:hover { background: rgba(251, 247, 242, 0.1); border-color: rgba(251, 247, 242, 0.4); color: var(--ba-text-on-dark); }
.ba-btn--sm { padding: 16px 24px; border-radius: 12px; font-size: 13px; }

/* Text link / CTA link */
.ba-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--ba-text-primary);
	text-decoration: none;
	font-weight: 500;
}
.ba-link:hover { color: var(--ba-text-secondary); }

/* Text link with border-bottom underline and trailing arrow (see Treatments Hub, Pricing). */
.ba-link--underline {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 14px;
	color: var(--ba-text-primary);
	text-decoration: none;
	border-bottom: 1px solid rgba(56, 39, 30, 0.24);
}
.ba-link--underline:hover { border-bottom-color: rgba(56, 39, 30, 0.55); color: var(--ba-text-primary); }
.ba-link--underline svg { display: block; }

/* ---- 7. Chips / pills ---- */
.ba-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--ba-card-bg-soft);
	color: var(--ba-text-primary);
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: 12px;
	line-height: 1;
	padding: 10px 11px;
	border-radius: var(--ba-radius-pill);
	border: 1px solid transparent;
	white-space: nowrap;
}
/* Hero chips inside glass pill container */
.ba-hero__chips .ba-chip {
	background: #FBF7F2;
	color: var(--ba-text-primary);
	padding: 9px 14px;
	border-radius: 999px;
	font-size: 12px;
}

/* ---- Feature row primitive (.ba-mem-feature) ----
   Shared between Memberships (value perks) and Location
   (planning features). Usage: <li class="ba-mem-feature">
     <span class="ba-mem-feature__icon">icon</span>
     <div class="ba-mem-feature__text">
       <h3 class="ba-mem-feature__title">Title</h3>
       <p class="ba-mem-feature__body">Body</p>
     </div>
   </li>
   The list container controls the divider colour. */
.ba-mem-feature {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: var(--ba-gap-md);
	align-items: start;
	padding: var(--ba-space-5) 0;
	border-bottom: 1px solid rgba(216, 203, 190, 0.4);
}
.ba-mem-feature:first-child { padding-top: 0; }
.ba-mem-feature:last-child  { padding-bottom: 0; border-bottom: 0; }

.ba-mem-feature__icon {
	width: 42px;
	height: 42px;
	border-radius: var(--ba-radius-card-xs);
	background: #EFE6DD;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ba-text-secondary);
	flex-shrink: 0;
}
.ba-mem-feature__icon svg { width: 20px; height: 20px; display: block; }

.ba-mem-feature__text { min-width: 0; }
.ba-mem-feature__title {
	font-family: var(--ba-font-body);
	font-weight: 600;
	font-size: var(--ba-fs-body);
	line-height: 1.35;
	color: var(--ba-text-primary);
	margin: 0 0 var(--ba-space-1);
}
.ba-mem-feature__body {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: var(--ba-fs-body);
	line-height: var(--ba-lh-body);
	color: var(--ba-text-secondary);
	margin: 0;
}

/* ---- 8. Icon badge (40x40 plate with 20x20 icon inside) ---- */
.ba-icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #EFE6DD;
	color: var(--ba-text-primary);
}
.ba-icon svg { width: 20px; height: 20px; }
.ba-icon--on-dark {
	background: rgba(251, 247, 242, 0.14);
	color: var(--ba-text-on-dark);
}

/* ---- 9. Header ---- */
/* Sticky header.
 *
 * `top: 0` (not 16px) is intentional. With `top: 16px`, sticky shifts
 * the element 16px down at scroll 0 to satisfy the threshold, but flow
 * still reserves the *unshifted* natural box — the next sibling
 * (`.ba-main`) renders 16px higher than the visible header, so the gap
 * between header and hero collapses to ~4px in browsers without a
 * WP admin bar (Firefox / Safari / Chrome incognito). The visible 16px
 * offset above the pill is provided by `padding-top: 16px` on this
 * wrapper instead, so layout flow matches the rendered position.
 */
.ba-header-wrap {
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 16px var(--ba-page-pad-x) 0;
}
/* When the WP admin bar is visible, push the sticky header below it
 * (admin bar is `position: fixed; height: 32px`) so it doesn't get
 * hidden when the user scrolls. */
.admin-bar .ba-header-wrap { top: 32px; }
@media screen and (max-width: 782px) {
	.admin-bar .ba-header-wrap { top: 46px; }
}
.ba-header {
	position: relative;
	max-width: var(--ba-max-width);
	margin: 0 auto;
	height: var(--ba-header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ba-gap-lg);
	padding: 16px 24px;
	background: var(--ba-header-bg);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border: 1px solid var(--ba-border-soft);
	border-radius: var(--ba-radius-pill);
}
.ba-header__logo {
	display: inline-flex;
	align-items: center;
	color: var(--ba-text-primary);
	line-height: 0;
}
.ba-header__logo img { display: block; width: auto; height: 34px; max-width: 100%; }
.ba-nav {
	display: flex;
	align-items: center;
	gap: 22px;
}
.ba-nav__link {
	font-family: var(--ba-font-body);
	font-size: var(--ba-fs-nav);
	font-weight: 500;
	color: var(--ba-text-primary);
	line-height: 1;
	white-space: nowrap;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
}
.ba-nav__link:hover { color: var(--ba-text-secondary); }
/* Non-anchor nav labels (e.g. Pricing, Contact parents) — pointer since they toggle dropdown on click. */
.ba-nav__link:not([href]) { cursor: pointer; }
/* Active page — subtle underline. Visible on the nav item matching the current page. */
.ba-nav__link.is-current,
.ba-nav__link[aria-current="page"] {
	color: #38271E;
	border-bottom-color: rgba(69, 49, 36, 0.32);
}
.ba-header__cta { flex: 0 0 auto; }
.ba-header__cta .ba-btn { min-width: 165px; justify-content: center; }

/* ---- 9b. Mega menu ---- */
.ba-nav__item {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	padding-bottom: 28px;
	margin-bottom: -28px;
}
/* Extend hover area below the link so cursor can cross the 12px gap to mega */
.ba-nav__item--mega {
	padding-bottom: 16px;
	margin-bottom: -16px;
}
.ba-nav__link--has-mega {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.ba-nav__caret {
	display: inline-flex;
	transition: transform 0.2s ease;
	opacity: 0.7;
}
.ba-nav__item--mega:hover > .ba-nav__link > .ba-nav__caret,
.ba-nav__item--mega:focus-within > .ba-nav__link > .ba-nav__caret { transform: rotate(180deg); }

/* ---- Small sub-menu dropdown (e.g. Pricing → Treatment pricing / Memberships) ---- */
.ba-nav__item--sub {
	position: relative;
	padding-bottom: 28px;
	margin-bottom: -28px;
}
.ba-nav__link--has-sub {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.ba-nav__item--sub.is-open .ba-nav__caret { transform: rotate(180deg); }
.ba-nav__sub {
	position: absolute;
	top: calc(100% + 15px);
	left: 50%;
	transform: translate(-50%, -6px);
	min-width: 220px;
	margin: 0;
	padding: 10px 8px;
	list-style: none;
	background: var(--ba-header-bg);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(216, 203, 190, 0.72);
	border-radius: 22px;
	box-shadow: 0 40px 80px rgba(62, 42, 32, 0.08);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	z-index: 60;
}
.ba-nav__item--sub.is-open .ba-nav__sub {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}
/* Portal sub-menu rendered as sibling of <header> inside .ba-header-wrap so
 * backdrop-filter blur escapes the header isolation group. JS sets left/top. */
.ba-nav__sub--portal {
	top: auto;
	left: 0;
	transform: translate(-50%, -6px);
}
.ba-nav__sub--portal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}
/* Hover bridge: 16px transparent strip above the panel so cursor can cross
 * the 12px gap from the trigger without losing hover. */
.ba-nav__sub--portal::before {
	content: '';
	position: absolute;
	left: -20px;
	right: -20px;
	top: -16px;
	height: 16px;
	pointer-events: auto;
}
.ba-nav__sub-link {
	display: block;
	padding: 10px 16px;
	border-radius: 12px;
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: var(--ba-fs-nav);
	line-height: 1.3;
	color: var(--ba-text-primary);
	text-decoration: none;
	white-space: nowrap;
}
.ba-nav__sub-link:hover,
.ba-nav__sub-link:focus-visible { background: rgba(56, 39, 30, 0.06); color: var(--ba-text-primary); }

.ba-mega {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(16px + var(--ba-header-height) + 12px);
	max-width: var(--ba-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	padding: 14px 10px;
	background: var(--ba-header-bg);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(216, 203, 190, 0.72);
	border-radius: 22px;
	box-shadow: 0 40px 80px rgba(62, 42, 32, 0.08);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	z-index: 60;
}
/* hover bridge so 12px gap doesn't break hover */
.ba-mega::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: -16px;
	height: 16px;
	pointer-events: auto;
}
.ba-header-wrap:has(.ba-nav__item--mega:hover) .ba-mega,
.ba-header-wrap:has(.ba-nav__item--mega:focus-within) .ba-mega,
.ba-mega:hover {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}
.ba-header-wrap:has(.ba-nav__item--mega:hover) .ba-nav__item--mega > .ba-nav__link > .ba-nav__caret,
.ba-header-wrap:has(.ba-mega:hover) .ba-nav__item--mega > .ba-nav__link > .ba-nav__caret,
.ba-nav__item--mega:hover > .ba-nav__link > .ba-nav__caret { transform: rotate(180deg); }

.ba-mega__col {
	border: 1px solid rgba(216, 203, 190, 0.22);
	border-radius: 16px;
	padding: 20px;
	display: flex;
	flex-direction: column;
}
.ba-mega__col--intro { padding-right: 36px; }
.ba-mega__title {
	font-family: var(--ba-font-heading);
	font-weight: 400;
	font-size: 34px;
	color: var(--ba-text-primary);
	margin: 0 0 28px;
	line-height: 1;
}
.ba-mega__desc {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 16px;
	color: var(--ba-text-secondary);
	margin: 0 0 18px;
	line-height: 1.4;
}
.ba-mega__tagline {
	margin: 48px 0 0;
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 12px;
	color: var(--ba-text-muted);
	line-height: 1.4;
}
.ba-mega__tagline a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ba-mega__chip {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	color: var(--ba-text-muted);
	margin-bottom: 10px;
}
a.ba-mega__chip {
	display: inline-block;
	text-decoration: none;
	transition: color var(--ba-transition);
}
a.ba-mega__chip:hover { color: var(--ba-text-primary); }

.ba-mega__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.ba-mega__links a {
	display: block;
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 13px;
	color: #201A16;
	padding: 6px 8px;
	border-radius: 8px;
	transition: background 150ms ease;
}
.ba-mega__links a:hover { background: rgba(237, 225, 213, 0.48); }

.ba-mega__divider {
	border: 0;
	border-top: 1px solid rgba(216, 203, 190, 0.34);
	margin: 14px 0;
}

.ba-mega__buttons {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ba-mega__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 11px 12px;
	border: 1px solid rgba(216, 203, 190, 0.39);
	border-radius: 12px;
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 14px;
	color: var(--ba-text-primary);
	background: transparent;
	transition: background 150ms ease;
}
.ba-mega__btn:hover { background: rgba(237, 225, 213, 0.48); }

/* Col 1 CTA — text + circle arrow, no border */
.ba-mega__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 14px;
	color: var(--ba-text-primary);
	align-self: flex-start;
	white-space: nowrap;
}
.ba-mega__cta-icon {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: rgba(237, 225, 213, 0.6);
	color: var(--ba-text-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ba-mega__cta-icon svg { width: 16px; height: 16px; }
.ba-mega__btn-icon {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: rgba(237, 225, 213, 0.6);
	color: var(--ba-text-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ba-mega__btn-icon svg { width: 14px; height: 14px; }

.ba-mega__spot-title {
	margin: 0 0 6px;
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 13px;
	color: var(--ba-text-primary);
	line-height: 1.35;
}
.ba-mega__spot-desc {
	margin: 0 0 10px;
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 12px;
	color: var(--ba-text-muted);
	line-height: 1.4;
}
.ba-mega__spot-link {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 12px;
	color: var(--ba-text-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ---- 10. Hero ---- */
.ba-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--ba-gap-xl);
	align-items: stretch;
}
.ba-hero__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.ba-hero__title {
	font-size: var(--ba-fs-h1);
	line-height: var(--ba-lh-tight);
	color: var(--ba-text-primary);
	margin: 0 0 43px 0;
	max-width: 560px;
}
.ba-hero__lead {
	font-size: var(--ba-fs-body);
	color: var(--ba-text-secondary);
	max-width: 500px;
	margin: 0 0 28px 0;
	line-height: var(--ba-lh-body);
}
.ba-hero__cta {
	display: flex;
	align-items: center;
	gap: var(--ba-gap-sm);
	margin-bottom: var(--ba-space-6);
	flex-wrap: wrap;
}
.ba-hero__trust {
	font-size: var(--ba-fs-small);
	color: var(--ba-text-muted);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.ba-hero__trust span::after {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	background: currentColor;
	margin-left: 14px;
	vertical-align: middle;
	opacity: 0.55;
}
.ba-hero__trust span:last-child::after { display: none; }

.ba-hero__media {
	position: relative;
	border-radius: var(--ba-radius-card);
	background: linear-gradient(180deg, #EDE1D5, #D8CBBE);
	min-height: 805px;
	overflow: hidden;
}
.ba-hero__media img {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.ba-hero__chips {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	flex-wrap: nowrap;
	padding: 10px 12px;
	background: rgba(252, 248, 243, 0.22);
	border: 1px solid rgba(251, 247, 242, 0.45);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-radius: 999px;
}
.ba-hero__chips .ba-chip {
	flex: 0 1 auto;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ---- 11. Treatments grid (3 cards) ---- */
.ba-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--ba-gap-lg);
}
.ba-tcard {
	position: relative;
	background: var(--ba-card-bg-light);
	border: 1px solid rgba(69, 49, 36, 0.05);
	border-radius: var(--ba-radius-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 26px 60px rgba(62, 42, 32, 0.07), inset 0 0 0 1px rgba(62, 42, 32, 0.055);
}
/* Inner offset border */
.ba-tcard::after {
	content: '';
	position: absolute;
	inset: var(--ba-inset-ring);
	border: 1px solid rgba(69, 49, 36, 0.05);
	border-radius: calc(var(--ba-radius-card) - var(--ba-inset-ring));
	pointer-events: none;
}
.ba-tcard__media {
	display: block;
	height: 305px;
	background: linear-gradient(180deg, #EDE1D5, #D8CBBE);
}
.ba-tcard__media img { width: 100%; height: 100%; object-fit: cover; }
.ba-tcard__body {
	position: relative;
	z-index: 1;
	padding: var(--ba-space-7);
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}
.ba-tcard__tag {
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: 11px;
	color: #B49679;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 14px;
}
.ba-tcard__title { font-family: var(--ba-font-heading); font-weight: 400; font-size: 24px; color: var(--ba-text-primary); margin-bottom: 30px; }
.ba-tcard__title-link { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.ba-tcard__title-link:hover,
.ba-tcard__title-link:focus-visible { color: var(--ba-text-secondary); }
.ba-tcard__desc { font-size: var(--ba-fs-body); color: var(--ba-text-secondary); margin-bottom: 37px; }
.ba-tcard__link {
	margin-top: auto;
	font-size: 14px;
	color: var(--ba-text-primary);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid rgba(56, 39, 30, 0.14);
	align-self: flex-start;
}
.ba-tcard__link:hover { border-bottom-color: rgba(56, 39, 30, 0.32); }

/* ---- 12. Why choose — 2-col with list ---- */
.ba-why { display: grid; grid-template-columns: 554fr 705fr; gap: 20px; align-items: stretch; }
.ba-why__media {
	position: relative;
	border-radius: var(--ba-radius-image);
	height: 768px;
	background: linear-gradient(180deg, #EDE1D5, #D8CBBE);
	overflow: hidden;
}
.ba-why__media::after {
	content: '';
	position: absolute;
	inset: 22px;
	border: 1px solid rgba(251, 247, 242, 0.28);
	border-radius: var(--ba-radius-image-inner);
	pointer-events: none;
}
.ba-why__media img { width: 100%; height: 100%; object-fit: cover; }
.ba-why__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--ba-gap-xl);
	padding: 40px;
	background: #FCF8F3;
	border-radius: var(--ba-radius-lg);
}
.ba-why__title { font-size: var(--ba-fs-h2); color: var(--ba-text-primary); max-width: 520px; }
.ba-why__list { display: flex; flex-direction: column; gap: var(--ba-gap-md); }

/* Feature row (also reused for info rows in Find us) */
.ba-feature {
	display: flex;
	align-items: center;
	gap: var(--ba-gap-md);
	padding: 24px 18px;
	background: var(--ba-card-bg-soft);
	border-radius: var(--ba-radius-sm);
}
.ba-feature__text { font-size: var(--ba-fs-body); color: var(--ba-text-secondary); line-height: var(--ba-lh-body); }

/* ---- 13. Meet Dr Fatima ---- */
.ba-meet { background: rgba(237, 225, 213, 0.56); }
.ba-meet__title { font-size: var(--ba-fs-h2); color: var(--ba-text-primary); max-width: 800px; margin-bottom: 34px; }
.ba-meet__lead { font-size: var(--ba-fs-body); color: var(--ba-text-secondary); max-width: 720px; margin-bottom: 38px; }
.ba-meet__media {
	position: relative;
	height: 682px;
	border-radius: var(--ba-radius-image);
	background: linear-gradient(180deg, #EDE1D5, #D8CBBE);
	overflow: hidden;
}
.ba-meet__media img { width: 100%; height: 100%; object-fit: cover; }
/* Center play button, 82x82 glass pill */
.ba-meet__play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	width: 82px;
	height: 82px;
	background: rgba(252, 248, 243, 0.18);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-radius: 999px;
	border: 1px solid rgba(251, 247, 242, 0.32);
	color: #FBF7F2;
	cursor: pointer;
	transition: background-color var(--ba-transition), transform var(--ba-transition);
}
.ba-meet__play:hover { background: rgba(252, 248, 243, 0.3); transform: translate(-50%, -50%) scale(1.04); }
.ba-meet__play svg { width: 18px; height: 18px; }
.ba-meet__badge {
	position: absolute;
	left: 24px; bottom: 24px;
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	padding: 10px 14px;
	background: rgba(252, 248, 243, 0.82);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border-radius: var(--ba-radius-pill);
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 12px;
}
.ba-meet__badge-label { color: var(--ba-text-primary); }
.ba-meet__badge-time { color: var(--ba-text-muted); }

/* ---- 14. Bespoke treatment plans — 2 cards ---- */
.ba-bespoke__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--ba-gap-lg);
}
.ba-pcard {
	padding: 32px;
	border-radius: var(--ba-radius-card);
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-height: 260px;
	justify-content: space-between;
}
.ba-pcard__content { display: flex; flex-direction: column; gap: 14px; }
.ba-pcard--light {
	background: var(--ba-section-bg-3);
	color: var(--ba-text-secondary);
}
.ba-pcard--dark {
	background: var(--ba-card-bg-accent);
	color: var(--ba-text-on-dark);
}
.ba-pcard__title { font-family: var(--ba-font-heading); font-weight: 400; font-size: 24px; line-height: 1.2; margin: 0; }
.ba-pcard--light .ba-pcard__title { color: var(--ba-text-secondary); }
.ba-pcard--dark .ba-pcard__title { color: var(--ba-text-on-dark); }
.ba-pcard__text { font-size: var(--ba-fs-body); font-weight: 400; }
.ba-pcard__lead { font-weight: 500; }
.ba-pcard--dark .ba-pcard__text { color: var(--ba-text-on-dark-soft); }
.ba-pcard--dark .ba-pcard__lead { color: var(--ba-text-on-dark); }
.ba-spotlight__emph { font-weight: 500; color: var(--ba-text-secondary); }

/* ---- 15. Your journey — 4 step cards ---- */
.ba-section--journey { background: #EDE1D5; }
.ba-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--ba-gap-md);
}
.ba-step {
	background: var(--ba-card-bg-softer);
	border-radius: var(--ba-radius-card);
	padding: 28px 40px;
	min-height: 210px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.ba-step__num {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 12px;
	color: rgba(69, 49, 36, 0.26);
	margin-bottom: var(--ba-space-8);
}
.ba-step__title { font-family: var(--ba-font-heading); font-weight: 400; font-size: 24px; color: var(--ba-text-primary); }
.ba-step__desc { font-size: var(--ba-fs-body); color: var(--ba-text-secondary); }
.ba-steps-note { margin-top: 18px; font-size: var(--ba-fs-small); font-weight: 500; color: var(--ba-text-muted); }

/* ---- 16. Medical-grade skincare spotlight ---- */
.ba-spotlight {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--ba-space-10);
	align-items: center;
}
.ba-spotlight__text { display: flex; flex-direction: column; gap: var(--ba-gap-xl); padding: 10px 6px; }
.ba-spotlight__title { font-size: var(--ba-fs-h2); color: var(--ba-text-primary); max-width: 520px; }
.ba-spotlight__body p { font-size: var(--ba-fs-body); color: var(--ba-text-secondary); margin-bottom: 16px; }
.ba-spotlight__body p:last-child { margin-bottom: 0; }
.ba-spotlight__notes { display: flex; flex-direction: column; gap: 10px; }
.ba-spotlight__note {
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: 13px;
	color: var(--ba-text-secondary);
	background: rgba(237, 225, 213, 0.56);
	border-radius: 16px;
	padding: 14px 18px;
}
.ba-spotlight__cta { display: flex; gap: var(--ba-gap-sm); flex-wrap: wrap; }
.ba-spotlight__media {
	position: relative;
	height: 783px;
	border-radius: var(--ba-radius-image);
	background: linear-gradient(180deg, #EDE1D5, #D8CBBE);
	overflow: hidden;
}
.ba-spotlight__media::after {
	content: '';
	position: absolute;
	inset: 22px;
	border: 1px solid rgba(251, 247, 242, 0.28);
	border-radius: var(--ba-radius-image-inner);
	pointer-events: none;
}
.ba-spotlight__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---- 17. Patient feedback ---- */
.ba-feedback { padding: var(--ba-section-pad) var(--ba-space-9); background: rgba(237, 225, 213, 0.74); }
.ba-feedback__intro {
	margin-top: 12px;
	font-size: var(--ba-fs-body);
	color: var(--ba-text-secondary);
	max-width: 560px;
}
.ba-feedback__grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: 18px;
	margin-top: 28px;
}
.ba-feedback__stack {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 18px;
}
.ba-tc {
	border-radius: var(--ba-radius-card);
	padding: var(--ba-space-7);
	display: flex;
	flex-direction: column;
	gap: var(--ba-gap-lg);
	background: rgba(252, 248, 243, 0.94);
}
.ba-tc--lg {
	background: linear-gradient(180deg, #FCF8F3 0%, rgba(237, 225, 213, 0.72) 100%);
	min-height: 100%;
}
.ba-tc--sm {
	border-radius: var(--ba-radius-card-sm);
	padding: var(--ba-space-6);
}
.ba-tc__quote { font-family: var(--ba-font-body); font-weight: 400; font-size: 30px; line-height: 1.25; color: var(--ba-text-primary); margin: 0; }
.ba-tc--sm .ba-tc__quote { font-size: 16px; line-height: 1.4; }
.ba-feedback__grid[hidden] { display: none; }
@keyframes ba-grw-fade-up {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: none; }
}
.ba-feedback__grid.is-grw-entering > .ba-tc,
.ba-feedback__grid.is-grw-entering > .ba-feedback__stack > .ba-tc {
	animation: ba-grw-fade-up .55s cubic-bezier(.2,.7,.2,1) both;
}
.ba-feedback__grid.is-grw-entering > .ba-tc--lg { animation-delay: 0ms; }
.ba-feedback__grid.is-grw-entering > .ba-feedback__stack > .ba-tc:nth-child(1) { animation-delay: 90ms; }
.ba-feedback__grid.is-grw-entering > .ba-feedback__stack > .ba-tc:nth-child(2) { animation-delay: 180ms; }

/* Google-reviews 5-line clamp + Read more link (Home / Concerns / Reviews) */
[data-grw-clamp] {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	line-clamp: 5;
	overflow: hidden;
}
.ba-tc--lg [data-grw-clamp] { -webkit-line-clamp: 4; line-clamp: 4; }
.ba-feedback__stack [data-grw-clamp] { -webkit-line-clamp: 2; line-clamp: 2; }
.ba-grw-more {
	display: inline-block;
	margin-top: 12px;
	font-size: 13px;
	font-weight: 500;
	color: var(--ba-text-primary);
	text-decoration: none;
	border-bottom: 1px solid rgba(56, 39, 30, 0.14);
	padding-bottom: 1px;
	transition: border-color .2s ease;
}
.ba-grw-more:hover,
.ba-grw-more:focus-visible { border-bottom-color: rgba(56, 39, 30, 0.32); }
.ba-grw-more[hidden] { display: none; }
/* Inside .ba-feedback (Home/Concerns slider) the .ba-tc cards are
 * flex-column with gap, which would (a) stretch the inline link to full
 * width — making the underline span the whole card — and (b) push it
 * away from the quote by the full gap. Pin it left and tighten the gap. */
.ba-feedback .ba-grw-more {
	align-self: flex-start;
	margin-top: calc(-1 * var(--ba-gap-lg) + 8px);
}
.ba-tc__meta { font-size: 13px; color: var(--ba-text-secondary); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ba-tc__stars { color: #B49679; display: inline-flex; gap: 2px; }
.ba-feedback__footer { display: flex; justify-content: flex-end; margin-top: 24px; }
.ba-feedback__ctrl { display: inline-flex; gap: 8px; }
.ba-feedback__btn {
	width: 38px; height: 38px; border-radius: 999px;
	background: #F3ECE4; color: var(--ba-text-primary);
	display: inline-flex; align-items: center; justify-content: center;
	border: 0;
	cursor: pointer;
}
.ba-feedback__btn:hover { background: #EDE1D5; }
.ba-feedback__btn:disabled { opacity: 0.35; cursor: default; pointer-events: none; }

/* ---- 18. Results row (before/after slider) ---- */
.ba-results__row {
	display: flex;
	align-items: stretch;
	gap: var(--ba-space-9);
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	overscroll-behavior-x: contain;
	padding-bottom: 6px;
	scrollbar-width: none;
}
.ba-results__row::-webkit-scrollbar { display: none; }
.ba-results__slide {
	flex: 0 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	width: calc((100% - var(--ba-space-9) * 2) / 3);
	min-width: 320px;
	scroll-snap-align: start;
}
.ba-result {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	background: linear-gradient(180deg, #EDE1D5, #D8CBBE);
}
.ba-result img { width: 100%; height: 100%; object-fit: cover; }
.ba-result__chip {
	position: absolute; left: 10px; bottom: 10px;
	font-size: 11px; font-weight: 500; color: var(--ba-text-primary);
	background: rgba(252, 248, 243, 0.92);
	padding: 7px 10px;
	border-radius: 999px;
}
.ba-results__sub { margin-top: 22px; font-size: var(--ba-fs-small); color: var(--ba-text-muted); font-weight: 500; }

/* ---- 19. Find us ---- */
.ba-find { display: grid; grid-template-columns: 592fr 667fr; gap: var(--ba-gap-lg); align-items: stretch; }
.ba-find__media {
	min-height: 540px;
	border: 12px solid var(--ba-border-soft);
	border-radius: var(--ba-radius-md);
	background: linear-gradient(180deg, #EDE1D5, #D8CBBE);
	overflow: hidden;
}
.ba-find__media img { width: 100%; height: 100%; object-fit: cover; }
.ba-find__body {
	display: flex;
	flex-direction: column;
	gap: var(--ba-gap-lg);
	padding: 40px;
	background: #FCF8F3;
	border-radius: var(--ba-radius-lg);
	justify-content: center;
}
.ba-find__title { font-size: var(--ba-fs-h2); color: var(--ba-text-primary); }
.ba-find__lead { font-size: var(--ba-fs-body); color: var(--ba-text-secondary); max-width: 560px; }
.ba-info {
	display: flex;
	align-items: center;
	gap: var(--ba-gap-md);
	padding: 16px;
	background: var(--ba-card-bg-soft);
	border-radius: var(--ba-radius-sm);
}
.ba-info__text { font-size: var(--ba-fs-body); color: var(--ba-text-secondary); }
.ba-info__text strong { color: var(--ba-text-primary); font-weight: 600; }
.ba-find__cta { display: flex; gap: var(--ba-gap-sm); flex-wrap: wrap; }

/* ---- 20. FAQ accordion ---- */
.ba-section--faq { background: #EDE1D5; }
.ba-faq { display: flex; flex-direction: column; gap: var(--ba-gap-md); }
.ba-faq__heading-spacer { margin-bottom: 28px; }
.ba-faq__item {
	background: var(--ba-card-bg-softer);
	border-radius: var(--ba-radius-sm);
	padding: var(--ba-space-5) var(--ba-space-6);
	min-height: 72px;
	border: 1px solid transparent;
}
.ba-faq__footer { margin-top: 28px; display: flex; justify-content: flex-start; }
.ba-faq__summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ba-gap-md);
	cursor: pointer;
	font-size: 16px;
	color: var(--ba-text-primary);
	font-weight: 500;
	min-height: 32px;
}
.ba-faq__summary::-webkit-details-marker { display: none; }
.ba-faq__summary { user-select: none; }
.ba-faq__icon { color: var(--ba-text-muted); display: inline-flex; align-items: center; justify-content: center; }
.ba-faq__icon svg + svg { display: none; }
.ba-faq__item[open] .ba-faq__icon { color: var(--ba-text-primary); }
.ba-faq__item[open] .ba-faq__icon svg:first-child { display: none; }
.ba-faq__item[open] .ba-faq__icon svg + svg { display: inline-block; }
.ba-faq__answer { padding: 18px 0 4px; font-size: var(--ba-fs-body); color: var(--ba-text-secondary); }
.ba-faq__answer a,
.ba-c-item__text a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(56, 39, 30, 0.14);
}
.ba-faq__answer a:hover,
.ba-c-item__text a:hover { border-bottom-color: rgba(56, 39, 30, 0.32); }

/* ---- 20b. Concerns-style accordion item (.ba-c-item)
 * Used by Concerns (recommended treatments + optional image) and by
 * Aftercare & FAQs (compact question/answer). Per-template CSS adds
 * page-specific extensions (has-image layout, rec pills, link styles). */
.ba-c-item {
	border-radius: var(--ba-radius-card-sm);
	border: 1px solid rgba(56, 39, 30, 0.08);
	background: transparent;
	transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}
.ba-c-item[open] {
	background: rgba(252, 248, 243, 0.96);
	border-color: rgba(56, 39, 30, 0.04);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}
.ba-c-item__summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: var(--ba-space-6);
	cursor: pointer;
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.3;
	color: var(--ba-text-primary);
}
.ba-c-item__summary::-webkit-details-marker { display: none; }
.ba-c-item__summary { user-select: none; }
.ba-c-item__title { flex: 1 1 auto; }
.ba-c-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ba-text-muted);
	flex: 0 0 auto;
}
.ba-c-item__icon svg + svg { display: none; }
.ba-c-item[open] .ba-c-item__icon svg:first-child { display: none; }
.ba-c-item[open] .ba-c-item__icon svg + svg { display: inline-block; }
.ba-c-item[open] .ba-c-item__icon { color: var(--ba-text-primary); }
.ba-c-item__body {
	padding: 0 var(--ba-space-6) var(--ba-space-7);
	display: block;
}
.ba-c-item__content { min-width: 0; display: flex; flex-direction: column; }

/* ---- 21. Bottom CTA banner ---- */
.ba-banner {
	position: relative;
	min-height: 455px;
	border-radius: var(--ba-radius-lg);
	padding: var(--ba-space-11);
	color: var(--ba-text-on-dark);
	background:
		linear-gradient(180deg, rgba(31, 20, 14, 0.45), rgba(31, 20, 14, 0.65)),
		linear-gradient(135deg, #453124 0%, #2A1B13 100%);
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
.ba-banner::after {
	content: '';
	position: absolute;
	inset: 22px;
	border: 1px solid rgba(251, 247, 242, 0.22);
	border-radius: var(--ba-radius-image-inner);
	pointer-events: none;
}
.ba-banner__inner { position: relative; z-index: 1; max-width: 640px; display: flex; flex-direction: column; }
.ba-banner__title { font-family: var(--ba-font-heading); font-weight: 400; font-size: var(--ba-fs-h2); color: var(--ba-text-on-dark); line-height: var(--ba-lh-heading); margin: 0 0 40px; }
.ba-banner__text { font-size: var(--ba-fs-body); color: var(--ba-text-on-dark-soft); margin: 0 0 42px; }
.ba-banner__cta { display: flex; gap: var(--ba-gap-sm); flex-wrap: wrap; }

/* Banner with background image — applied when template sets --ba-banner-bg.
   Overlay gradient tuned to keep text legible over any image. */
.ba-banner--with-image {
	background:
		linear-gradient(109.27deg, rgba(62, 42, 32, 0.98) 0%, rgba(69, 49, 36, 0.94) 100%),
		var(--ba-banner-bg) center / cover no-repeat;
}

/* ---- 21b. Shared side-nav (jump-to-section)
 * Used by Concerns (JS-driven tab filter) and Pricing (anchor links).
 * Class names keep the original .ba-concerns__* prefix because concerns.js
 * selectors rely on them. Styles are page-agnostic. */
.ba-concerns__sidebar {
	border: 1px solid rgba(56, 39, 30, 0.08);
	border-radius: 24px;
	padding: 16px;
	background: rgba(252, 248, 243, 0.6);
	position: sticky;
	top: 120px;
}
.ba-concerns__sidebar-title {
	font-family: var(--ba-font-body);
	font-weight: 600;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #A38974;
	padding: 8px 16px 12px;
	margin: 0;
}
.ba-concerns__cats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ba-concerns__cat {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 14px 16px;
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.2;
	color: #6F6258;
	background: transparent;
	border: 0;
	border-radius: 14px;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	transition: color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}
.ba-concerns__cat-chev {
	display: inline-flex;
	opacity: 0;
	color: currentColor;
	transition: opacity 150ms ease;
}
.ba-concerns__cat:hover,
.ba-concerns__cat.is-active {
	color: var(--ba-text-primary);
	background: rgba(252, 248, 243, 0.9);
	box-shadow: 0 4px 12px rgba(56, 39, 30, 0.03);
}
.ba-concerns__cat:hover .ba-concerns__cat-chev,
.ba-concerns__cat.is-active .ba-concerns__cat-chev { opacity: 1; }

/* ---- 22. Footer ---- */
.ba-footer-wrap { padding: 0 var(--ba-page-pad-x) 24px; }
.ba-footer {
	max-width: var(--ba-max-width);
	width: 100%;
	margin: 0 auto;
	background: rgba(252, 248, 243, 0.78);
	border-radius: var(--ba-radius-md);
	padding: var(--ba-space-8) var(--ba-space-9) var(--ba-space-6);
	color: var(--ba-text-primary);
}
.ba-footer__cols {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 28px;
	margin-bottom: 28px;
}
.ba-footer__brand { display: inline-flex; align-items: center; line-height: 0; }
.ba-footer__brand img { display: block; width: auto; height: 30px; max-width: 100%; }
.ba-footer__tag { font-size: var(--ba-fs-small); color: var(--ba-text-muted); margin-top: 10px; max-width: 320px; }
.ba-footer__title {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 12px;
	color: var(--ba-text-muted);
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: 1.44px;
}
.ba-footer__list { display: flex; flex-direction: column; gap: 10px; }
.ba-footer__list a,
.ba-footer__list span { font-family: var(--ba-font-body); font-weight: 400; font-size: 14px; color: var(--ba-text-primary); }
.ba-footer__list-pre { white-space: pre-line; }
.ba-footer__reorder { display: inline-flex; align-items: center; gap: 4px; font-weight: 500; }
.ba-footer__reorder svg { flex: none; }
.ba-footer__socials { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.ba-footer__social {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px;
	border-radius: 999px;
	background: rgba(237, 225, 213, 0.64);
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 13px;
	color: var(--ba-text-primary);
}
.ba-footer__social svg { width: 16px; height: 16px; }
.ba-footer__social:hover { background: rgba(237, 225, 213, 0.9); }
.ba-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: var(--ba-space-6);
	font-size: var(--ba-fs-small);
	color: var(--ba-text-muted);
}
.ba-footer__legal { display: flex; align-items: center; gap: 18px; }
.ba-footer__legal a { font-family: var(--ba-font-body); font-weight: 400; font-size: 14px; color: var(--ba-text-primary); }

/* ---- 22b. Burger + mobile drawer ---- */
.ba-burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(216, 203, 190, 0.34);
	border-radius: 14px;
	background: transparent;
	color: var(--ba-text-primary);
	cursor: pointer;
}
.ba-burger__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}
.ba-burger__icon--close { display: none; }
.ba-burger[aria-expanded="true"] .ba-burger__icon--open { display: none; }
.ba-burger[aria-expanded="true"] .ba-burger__icon--close { display: inline-flex; }

.ba-drawer {
	position: fixed;
	inset: 0;
	z-index: 100;
	visibility: hidden;
	pointer-events: none;
}
.ba-drawer.is-open { visibility: visible; pointer-events: auto; }
.ba-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(24, 15, 10, 0.4);
	opacity: 0;
	transition: opacity 0.25s ease;
}
.ba-drawer.is-open .ba-drawer__backdrop { opacity: 1; }
.ba-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(420px, 90vw);
	background: #FCF8F3;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.28s ease;
	box-shadow: -20px 0 60px rgba(62, 42, 32, 0.12);
}
.ba-drawer.is-open .ba-drawer__panel { transform: translateX(0); }
.ba-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid var(--ba-border-soft);
}
.ba-drawer__title {
	font-family: var(--ba-font-heading);
	font-weight: 400;
	font-size: 20px;
	color: var(--ba-text-primary);
}
.ba-drawer__close {
	width: 44px; height: 44px;
	border-radius: 14px;
	background: transparent;
	border: 1px solid rgba(216, 203, 190, 0.34);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--ba-text-primary);
	padding: 0;
}
.ba-drawer__nav {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 12px 12px 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.ba-drawer__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 14px;
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: 16px;
	color: var(--ba-text-primary);
	background: transparent;
	border: 0;
	border-radius: 12px;
	text-align: left;
	cursor: pointer;
	width: 100%;
}
.ba-drawer__row:hover { background: rgba(237, 225, 213, 0.48); }
.ba-drawer__row--sub {
	padding-left: 28px;
	font-size: 15px;
	color: var(--ba-text-secondary);
}
.ba-drawer__row.is-current,
.ba-drawer__row[aria-current="page"] {
	color: #38271E;
	background: rgba(237, 225, 213, 0.56);
}
.ba-drawer__row-icon {
	display: inline-flex;
	transition: transform 0.2s ease;
	color: var(--ba-text-muted);
}
.ba-drawer__row[aria-expanded="true"] .ba-drawer__row-icon,
.ba-drawer__row-toggle[aria-expanded="true"] .ba-drawer__row-icon { transform: rotate(180deg); }

/* Split row: a link + an expand-button (used by Treatments accordion head). */
.ba-drawer__row--expand { padding: 0; background: transparent; }
.ba-drawer__row--expand:hover { background: transparent; }
.ba-drawer__row-link {
	flex: 1 1 auto;
	padding: 14px 14px;
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: 16px;
	color: var(--ba-text-primary);
	border-radius: 12px;
}
.ba-drawer__row-link:hover { background: rgba(237, 225, 213, 0.48); }
.ba-drawer__row-toggle {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
	border-radius: 12px;
	background: transparent;
	border: 0;
	cursor: pointer;
}
.ba-drawer__row-toggle:hover { background: rgba(237, 225, 213, 0.48); }

.ba-drawer__panel-sub {
	padding: 4px 6px 10px 14px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.ba-drawer__panel-sub[hidden] { display: none; }
.ba-drawer__group-title {
	display: inline-block;
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	color: var(--ba-text-muted);
	margin: 6px 0 6px 8px;
	text-decoration: none;
	transition: color var(--ba-transition);
}
a.ba-drawer__group-title:hover { color: var(--ba-text-primary); }
.ba-drawer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.ba-drawer__list a {
	display: block;
	padding: 10px 12px;
	font-size: 14px;
	color: #201A16;
	border-radius: 10px;
}
.ba-drawer__list a:hover { background: rgba(237, 225, 213, 0.48); }

.ba-drawer__footer {
	padding: 16px 20px 20px;
	border-top: 1px solid var(--ba-border-soft);
}
.ba-drawer__footer .ba-btn { width: 100%; justify-content: center; }

body.ba-lock { overflow: hidden; }

/* ---- 22b2. Video popup modal (triggered from .ba-meet__play[data-video]) ---- */
.ba-video-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(31, 20, 14, 0.88);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	animation: ba-video-fade 160ms ease;
}
.ba-video-modal__frame {
	position: relative;
	width: min(960px, 100%);
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}
.ba-video-modal__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.ba-video-modal__close {
	position: absolute;
	top: -44px;
	right: 0;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #FBF7F2;
	background: rgba(251, 247, 242, 0.12);
	border: 1px solid rgba(251, 247, 242, 0.24);
	border-radius: 999px;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	padding: 0;
	transition: background 150ms ease;
}
.ba-video-modal__close:hover { background: rgba(251, 247, 242, 0.22); }
@keyframes ba-video-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}
@media ( max-width: 720px ) {
	.ba-video-modal { padding: 16px; }
	.ba-video-modal__close { top: -40px; right: -4px; }
}

/* ---- 22c. Eyebrow label (uppercase section/card kicker) ---- */
.ba-eyebrow {
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 1.98px;
	text-transform: uppercase;
	color: #A38974;
	display: inline-block;
	margin-bottom: var(--ba-space-eyebrow);
}

/* ---- 24. Zone single page ---- */
/* Hero */
.ba-section--zone-hero {
	background: linear-gradient(180deg, #FCF8F3 0%, rgba(237, 225, 213, 0.4) 100%);
	border-radius: var(--ba-radius-lg);
	padding: var(--ba-space-11) var(--ba-section-hero-pad) var(--ba-section-hero-pad);
	overflow: hidden;
}
.ba-zone-hero { display: flex; flex-direction: column; align-items: center; text-align: center; }
.ba-zone-hero__title {
	font-family: var(--ba-font-heading);
	font-weight: 400;
	font-size: var(--ba-fs-h1);
	line-height: var(--ba-lh-tight);
	color: var(--ba-text-primary);
	margin: 0;
	letter-spacing: -0.02em;
}
.ba-zone-hero__sub {
	margin: 24px auto 0;
	max-width: 720px;
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 19px;
	line-height: 1.5;
	color: var(--ba-text-secondary);
}
.ba-zone-hero__cta {
	margin-top: var(--ba-space-9);
	display: flex;
	gap: var(--ba-gap-sm);
	justify-content: center;
	flex-wrap: wrap;
}
.ba-zone-hero__media {
	margin-top: var(--ba-space-11);
	width: 100%;
	height: 480px;
	border-radius: var(--ba-radius-card);
	background: linear-gradient(180deg, #EDE1D5, #D8CBBE);
	overflow: hidden;
	position: relative;
}
.ba-zone-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Intro */
.ba-zone-intro { padding: var(--ba-space-8) 0 var(--ba-space-10); text-align: center; }
.ba-zone-intro__text {
	max-width: 880px;
	margin: 0 auto;
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 36px;
	line-height: 1.3;
	color: var(--ba-text-primary);
}

/* Treatment options section */
.ba-zone-treatments {
	background: rgba(252, 248, 243, 0.92);
	border-radius: var(--ba-radius-lg);
	padding: var(--ba-section-pad);
}
.ba-zone-treatments__head { display: flex; flex-direction: column; gap: var(--ba-gap-lg); margin-bottom: var(--ba-space-7); }
.ba-zone-treatments__title {
	font-family: var(--ba-font-heading);
	font-weight: 400;
	font-size: 42px;
	line-height: var(--ba-lh-heading);
	letter-spacing: -0.015em;
	color: var(--ba-text-primary);
	margin: 0;
}
.ba-zone-treatments__sub {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: var(--ba-fs-body);
	color: var(--ba-text-secondary);
	margin: 0;
}

/* Treatment cards grid */
.ba-zcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ba-zcard {
	background: linear-gradient(180deg, rgba(246, 240, 232, 0.96) 0%, rgba(252, 248, 243, 0.78) 100%);
	box-shadow: 0 26px 60px rgba(62, 42, 32, 0.07), inset 0 0 0 1px rgba(62, 42, 32, 0.055);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	border-radius: var(--ba-radius-card);
	padding: var(--ba-space-6);
	display: flex;
	flex-direction: column;
}
.ba-zcard__media {
	display: block;
	height: 190px;
	border-radius: var(--ba-radius-sm);
	background: linear-gradient(180deg, #EDE1D5, #D8CBBE);
	overflow: hidden;
	position: relative;
}
.ba-zcard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-zcard__title {
	margin: 14px 0 0;
	font-family: var(--ba-font-heading);
	font-weight: 400;
	font-size: 24px;
	line-height: 1.25;
	color: var(--ba-text-primary);
}
.ba-zcard__title-link { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.ba-zcard__title-link:hover,
.ba-zcard__title-link:focus-visible { color: var(--ba-text-secondary); }
.ba-zcard__desc {
	margin: var(--ba-space-6) 0 0;
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: var(--ba-fs-body);
	line-height: var(--ba-lh-body);
	color: var(--ba-text-secondary);
	flex: 1 1 auto;
}
.ba-zcard__link { margin-top: 20px; }

/* Treatments footer strip */
.ba-zone-treatments__footer {
	margin-top: var(--ba-space-9);
	background: rgba(237, 225, 213, 0.42);
	border: 1px solid rgba(216, 203, 190, 0.52);
	border-radius: var(--ba-radius-sm);
	padding: var(--ba-space-8) var(--ba-space-5) var(--ba-space-7);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.ba-zone-treatments__footer-text {
	flex: 1 1 auto;
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: var(--ba-fs-body);
	line-height: var(--ba-lh-body);
	color: var(--ba-text-muted);
}

/* What to expect */
.ba-zone-what {
	background: #EDE1D5;
	border-radius: var(--ba-radius-lg);
	padding: var(--ba-section-pad);
}
.ba-zone-what__title {
	font-family: var(--ba-font-heading);
	font-weight: 400;
	font-size: var(--ba-fs-h2);
	line-height: var(--ba-lh-heading);
	letter-spacing: -0.015em;
	color: var(--ba-text-primary);
	margin: 0;
}
.ba-zone-what__steps { grid-template-columns: repeat(5, 1fr); gap: 14px; }
.ba-zone-what__note {
	margin-top: 17px;
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: 13px;
	color: var(--ba-text-muted);
}

/* Why choose Bashra — reuses .ba-find primitives; spacing for the bullet list */
.ba-zone-why__list { display: flex; flex-direction: column; gap: var(--ba-gap-md); margin-top: var(--ba-gap-md); }

/* Results section — sub line under title */
.ba-zone-results__sub {
	margin-top: 12px;
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 16px;
	color: var(--ba-text-secondary);
}

/* ---- 25. Treatment single page ---- */
/* Section rhythm override handled via shared .ba-section--tight rule (see below). */

/* --- 1. Hero --- */
/* Base .ba-t-hero grid / typography / media live in §5 (unified hero primitive).
 * Only treatment-single-specific bits (tag pill, trust chip row) stay here. */
.ba-t-hero__tag {
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 1.98px;
	text-transform: uppercase;
	color: var(--ba-text-muted);
	margin: 0;
}
.ba-t-hero__tag-link {
	color: inherit;
	text-decoration: none;
	transition: color 150ms ease;
}
.ba-t-hero__tag-link:hover { color: var(--ba-text-primary); }
.ba-t-hero__trust {
	margin-top: var(--ba-space-6);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	font-size: var(--ba-fs-small);
	color: var(--ba-text-muted);
}
.ba-t-hero__trust-chip {
	font-family: var(--ba-font-body);
	font-weight: 400;
	position: relative;
}
.ba-t-hero__trust-chip::after {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	background: currentColor;
	margin-left: 14px;
	vertical-align: middle;
	opacity: 0.55;
}
.ba-t-hero__trust-chip:last-child::after { display: none; }

/* --- 2. At a glance --- */
.ba-section--t-glance {
	background: #FCF8F3;
	border-radius: var(--ba-radius-lg);
	padding: var(--ba-section-pad);
}
.ba-t-glance__title {
	font-family: var(--ba-font-heading);
	font-weight: 400;
	font-size: 26px;
	line-height: 1.2;
	color: var(--ba-text-primary);
	margin: 0 0 32px;
	text-align: center;
}
.ba-t-glance__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
	justify-items: center;
}
.ba-t-glance__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 220px;
}
.ba-t-glance__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #EFE6DD;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ba-text-primary);
	margin-bottom: 16px;
}
.ba-t-glance__label {
	font-family: var(--ba-font-body);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(69, 49, 36, 0.5);
	margin-bottom: 6px;
}
.ba-t-glance__value {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.45;
	color: var(--ba-text-secondary);
}

/* --- 3. About --- */
.ba-t-about {
	display: grid;
	grid-template-columns: 554fr 705fr;
	gap: 20px;
	align-items: stretch;
}
.ba-t-about__media {
	position: relative;
	border-radius: var(--ba-radius-image);
	min-height: 742px;
	background: linear-gradient(180deg, #EDE1D5, #D8CBBE);
	overflow: hidden;
}
.ba-t-about__media::after {
	content: '';
	position: absolute;
	inset: 22px;
	border: 1px solid rgba(251, 247, 242, 0.28);
	border-radius: var(--ba-radius-image-inner);
	pointer-events: none;
}
.ba-t-about__media img,
.ba-t-about__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-t-about__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
	background: #FCF8F3;
	border-radius: var(--ba-radius-lg);
}
.ba-t-about__tag {
	align-self: flex-start;
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ba-text-secondary);
	background: #EFE6DD;
	padding: 8px 14px;
	border-radius: 999px;
}
.ba-t-about__title {
	font-family: var(--ba-font-heading);
	font-weight: 400;
	font-size: 48px;
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--ba-text-primary);
	margin: 20px 0 0;
}
.ba-t-about__text {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.55;
	color: var(--ba-text-secondary);
	margin: 6px 0 0;
}
.ba-t-about__note {
	margin-top: 24px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #EFE6DD;
	padding: 18px 20px;
	border-radius: var(--ba-radius-sm);
}
.ba-t-about__note-icon {
	flex: 0 0 auto;
	color: var(--ba-text-primary);
	margin-top: 2px;
}
.ba-t-about__note-text {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	color: var(--ba-text-secondary);
}
.ba-t-about__text p + p { margin-top: 8px; }
.ba-t-about__text a,
.ba-t-about__note-text a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(56, 39, 30, 0.14);
}
.ba-t-about__text a:hover,
.ba-t-about__note-text a:hover { border-bottom-color: rgba(56, 39, 30, 0.32); }
.ba-t-about__link { margin-top: 20px; }
.ba-about-spot__products {
	margin-top: var(--ba-space-7);
	background: rgba(252, 248, 243, 0.4);
	border-radius: var(--ba-radius-sm);
	padding: var(--ba-space-4);
	display: inline-flex;
	flex-wrap: wrap;
	gap: var(--ba-space-6);
	max-width: 100%;
	width: auto;
	align-self: flex-start;
}
.ba-about-spot__product {
	margin: 0;
	border-radius: var(--ba-radius-sm);
	overflow: hidden;
	background: transparent;
	height: 70px;
	max-width: 160px;
	flex: 0 0 auto;
}
.ba-about-spot__product img { display: block; width: 100%; height: 100%; max-width: 160px; object-fit: contain; object-position: left center; }
.ba-t-about__body .ba-about-spot__products { background: rgba(246, 240, 232, 0.8); }

/* --- 4. Helps / Common areas / Safety --- */
.ba-t-info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: stretch;
}
.ba-t-info__side {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.ba-t-card {
	background: #FCF8F3;
	border-radius: 28px;
	padding: 48px;
	display: flex;
	flex-direction: column;
}
.ba-t-card--main { height: 100%; }
.ba-t-card__title {
	font-family: var(--ba-font-heading);
	font-weight: 400;
	font-size: 32px;
	line-height: 1.15;
	color: var(--ba-text-primary);
	margin: 0 0 24px;
}
.ba-t-card__title--sm { font-size: 28px; margin-bottom: 24px; }
.ba-t-card__text {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.55;
	color: var(--ba-text-secondary);
	margin-top: 15px;
}
.ba-t-card__note {
	margin-top: 32px;
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(69, 49, 36, 0.8);
}

/* Helps-with list */
.ba-t-helps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.ba-t-helps__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.ba-t-helps__icon {
	flex: 0 0 auto;
	color: var(--ba-text-primary);
	margin-top: 2px;
}
.ba-t-helps__text {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--ba-text-secondary);
}

/* Pills row */
.ba-t-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.ba-t-pill {
	font-family: var(--ba-font-body);
	font-weight: 500;
	font-size: 14px;
	color: var(--ba-text-secondary);
	background: #EFE6DD;
	padding: 8px 16px;
	border-radius: 999px;
}

/* --- 6. Aftercare --- */
.ba-t-aftercare {
	background: rgba(237, 225, 213, 0.56);
	border-radius: var(--ba-radius-lg);
	padding: 48px 56px;
}
.ba-t-aftercare__title {
	font-family: var(--ba-font-heading);
	font-weight: 400;
	font-size: 32px;
	line-height: 1.15;
	color: var(--ba-text-primary);
	margin: 0 0 32px;
}
.ba-t-aftercare__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 24px;
}
.ba-t-aftercare__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.ba-t-aftercare__icon {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(252, 248, 243, 0.4);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #5A4030;
	margin-top: 2px;
}
.ba-t-aftercare__text {
	font-family: var(--ba-font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--ba-text-secondary);
}
.ba-t-aftercare__cta { margin-top: 32px; }

/* ---- 23. Responsive (tablet / mobile) ---- */
@media (max-width: 1100px) {
	:root {
		--ba-fs-h1: 56px;
		--ba-fs-h1-sm: 46px;
		--ba-fs-h1-lg: 56px;
		--ba-fs-h2: 40px;
		--ba-fs-h2-md: 36px;
		--ba-fs-lead: 16px;
		--ba-space-sub-cta: 24px;
		--ba-section-pad: 28px;
		--ba-section-hero-pad: 24px;
		/* All hero panels drop to --ba-radius-md (28) at tablet. */
		--ba-radius-lg: 28px;
	}
	.ba-header-wrap { top: 0; padding-top: var(--ba-page-pad-x); transition: padding-top .18s ease; }
	.ba-header-wrap.is-scrolled { padding-top: 0; }
	.ba-nav { display: none; }
	.ba-mega { display: none; }
	.ba-header__cta { display: none; }
	.ba-burger { display: inline-flex; }
	.ba-header { padding: 12px 16px; height: auto; border-radius: 28px; }
	.ba-hero, .ba-why, .ba-spotlight, .ba-find, .ba-feedback__grid, .ba-bespoke__grid { grid-template-columns: 1fr; }
	.ba-hero__media, .ba-why__media, .ba-spotlight__media, .ba-find__media, .ba-meet__media { height: 420px; min-height: 420px; }
	.ba-steps { grid-template-columns: repeat(2, 1fr); }
	.ba-results__slide { width: calc((100% - var(--ba-space-9)) / 2); min-width: 280px; }
	.ba-grid-3 { grid-template-columns: repeat(2, 1fr); }
	.ba-footer__cols { grid-template-columns: 1fr 1fr; }
	.ba-feedback__stack { grid-template-rows: auto auto; }
	.ba-why__body, .ba-find__body, .ba-meet, .ba-feedback, .ba-footer { padding: 28px; }

	/* Hero chips — same tight gap as desktop, no space-between spread */
	.ba-hero__chips { justify-content: flex-start; gap: 6px; }
	.ba-hero__chips .ba-chip { flex: 1 1 auto; justify-content: center; }

	/* Mega menu: 2 columns, intro spans both */
	.ba-mega {
		grid-template-columns: repeat(2, 1fr);
		max-height: calc(100vh - 120px);
		overflow-y: auto;
	}
	.ba-mega__col--intro { grid-column: 1 / -1; padding-right: 20px; }
	.ba-mega__col--intro .ba-mega__tagline { margin-top: 24px; }
	.ba-mega__title { font-size: 28px; margin-bottom: 18px; }

	/* Zone single — tablet. Extra top padding kept (hero has centered text). */
	.ba-section--zone-hero { padding: 40px var(--ba-section-hero-pad) var(--ba-section-hero-pad); }
	.ba-zone-hero__sub { font-size: 17px; }
	.ba-zone-hero__media { margin-top: 48px; height: 380px; }
	.ba-zone-intro { padding: 32px 0 48px; }
	.ba-zone-intro__text { font-size: 26px; max-width: 680px; }
	.ba-zone-treatments { padding: 28px; }
	.ba-zone-treatments__title { font-size: 34px; }
	.ba-zone-treatments__head { gap: 24px; margin-bottom: 28px; }
	.ba-zcards { grid-template-columns: repeat(2, 1fr); }
	.ba-zone-treatments__footer { padding: 28px 20px; }
	.ba-zone-what { padding: 28px; }
	.ba-zone-what__steps { grid-template-columns: repeat(2, 1fr); }

	/* Shared side-nav — collapse to inline pills on tablet/mobile */
	.ba-concerns__sidebar { position: static; }
	.ba-concerns__cats { flex-direction: row; flex-wrap: wrap; gap: 8px 10px; }
	.ba-concerns__cat { width: auto; padding: 10px 14px; font-size: 14px; }
	.ba-concerns__cat-chev { display: none; }

	/* Treatment single — tablet (hero in §5). */
	.ba-section--t-glance { padding: 32px; }
	.ba-t-about { grid-template-columns: 1fr; }
	.ba-t-about__media { min-height: 420px; }
	.ba-t-about__media::after { inset: 10px; border-radius: calc(var(--ba-radius-image) - 10px); }
	.ba-t-about__body { padding: 32px; }
	.ba-t-about__title { font-size: 38px; }
	.ba-t-info { grid-template-columns: 1fr; }
	.ba-t-card { padding: 32px; }
	.ba-t-card__title { font-size: 28px; }
	.ba-t-aftercare { padding: 32px; }
	.ba-t-aftercare__list { gap: 16px 20px; }
}

@media (max-width: 720px) {
	:root {
		--ba-fs-h1: 42px;
		--ba-fs-h1-sm: 36px;
		--ba-fs-h1-lg: 42px;
		--ba-fs-h2: 32px;
		--ba-fs-h2-md: 28px;
		--ba-fs-h2-sm: 24px;
		--ba-fs-h3: 22px;
		--ba-fs-h4: 16px;
		--ba-fs-lead: 16px;
		--ba-space-sub-cta: 22px;
		--ba-section-pad: 20px;
		--ba-section-hero-pad: 20px;
		--ba-page-pad-x: 16px;
		/* Unified smaller radii on mobile */
		--ba-radius-lg: 20px;
		--ba-radius-md: 18px;
		--ba-radius-sm: 16px;
		--ba-radius-image: 18px;
		--ba-radius-card: 20px;
		--ba-radius-card-sm: 16px;
		--ba-radius-card-xs: 14px;
	}
	.ba-grid-3, .ba-steps { grid-template-columns: 1fr; }
	.ba-results__slide { width: 100%; min-width: 0; }
	.ba-results__row { gap: 24px; }
	.ba-tc__quote { font-size: 22px; }
	.ba-meet,
	.ba-feedback,
	.ba-section--hero,
	.ba-why__body,
	.ba-find__body,
	.ba-footer { padding: 20px; }
	.ba-hero__text { padding: 0; }

	/* Hero chips — wrap to 2 rows, 2 per row */
	.ba-hero__chips {
		flex-wrap: wrap;
		border-radius: var(--ba-radius-sm);
		padding: 8px;
		gap: 6px;
		left: 12px; right: 12px; bottom: 12px;
	}
	.ba-hero__chips .ba-chip {
		flex: 1 1 calc(50% - 6px);
		justify-content: center;
		text-align: center;
	}

	/* Section heads — stack title above aside */
	.ba-sec-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.ba-sec-head__aside { align-self: flex-start; }

	/* Banner — breathe more around inner border */
	.ba-banner { padding: 56px 40px; }
	.ba-banner::after { inset: 12px; border-radius: calc(var(--ba-radius-lg) - 12px); }

	/* Inner borders — scale inset/radius to match smaller outer radii */
	.ba-tcard::after { inset: 10px; border-radius: calc(var(--ba-radius-card) - 10px); }
	.ba-why__media::after,
	.ba-spotlight__media::after { inset: 10px; border-radius: calc(var(--ba-radius-image) - 10px); }
	.ba-footer__cols { grid-template-columns: 1fr; gap: 20px; }
	.ba-footer__cols > div:nth-child(3) { order: 4; }
	.ba-footer__cols > div:nth-child(4) { order: 3; }
	.ba-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

	/* Zone single — mobile. Extra top padding kept (centered-text hero). */
	.ba-section--zone-hero { padding: 32px var(--ba-section-hero-pad) var(--ba-section-hero-pad); }
	.ba-zone-hero__sub { font-size: 16px; }
	.ba-zone-hero__cta { margin-top: 32px; }
	.ba-zone-hero__media { margin-top: 40px; height: 280px; }
	.ba-zone-intro { padding: 24px 0 32px; }
	.ba-zone-intro__text { font-size: 22px; }
	.ba-zone-treatments { padding: 20px; border-radius: 20px; }
	.ba-zone-treatments__title { font-size: 28px; }
	.ba-zcards { grid-template-columns: 1fr; }
	.ba-zone-treatments__footer { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
	.ba-zone-what { padding: 20px; border-radius: 18px; }
	.ba-zone-what__steps { grid-template-columns: 1fr; }

	/* Treatment single — mobile (hero in §5). */
	.ba-section--t-glance { padding: 24px; border-radius: 20px; }
	.ba-t-about__media { min-height: 260px; }
	.ba-t-about__body { padding: 24px; border-radius: 20px; }
	.ba-t-about__title { font-size: 30px; }
	.ba-t-about__text { font-size: 15px; }
	.ba-t-card { padding: 24px; border-radius: 20px; }
	.ba-t-card__title { font-size: 24px; }
	.ba-t-card__title--sm { font-size: 22px; }
	.ba-t-aftercare { padding: 24px; border-radius: 20px; }
	.ba-t-aftercare__title { font-size: 26px; }
	.ba-t-aftercare__list { grid-template-columns: 1fr; gap: 14px; }

	/* Tighter section rhythm — mobile */
	.ba-section--tight,
	.ba-section--t-gap,
	.ba-section--book-gap,
	.ba-section--p-gap { margin-top: 40px; }
}

/* ---- 26. 404 page ---- */
.ba-404 {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70vh;
	padding: 80px var(--ba-page-pad-x);
}
.ba-404__inner {
	max-width: 560px;
	text-align: center;
}
.ba-404__num {
	font-family: Ochre, 'Instrument Sans', Georgia, serif;
	font-size: 160px;
	line-height: 1;
	color: var(--ba-border-soft);
	letter-spacing: -4px;
	margin-bottom: 8px;
	user-select: none;
}
.ba-404__eyebrow {
	display: inline-block;
	margin-bottom: 20px;
}
.ba-404__title {
	font-size: var(--ba-fs-h2-sm);
	color: var(--ba-text-primary);
	margin-bottom: 16px;
}
.ba-404__sub {
	font-size: var(--ba-fs-body);
	color: var(--ba-text-muted);
	line-height: var(--ba-lh-body);
	margin-bottom: 36px;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}
.ba-404__cta {
	display: flex;
	justify-content: center;
	gap: var(--ba-gap-md);
	flex-wrap: wrap;
}
@media (max-width: 720px) {
	.ba-404__num { font-size: 110px; }
	.ba-404 { min-height: 60vh; padding: 60px var(--ba-page-pad-x); }
}
