/* =====================================================================
   FORZA — Design System
   Premium, mobile-first. Slate ink / white / sparing cyan accent.
   ===================================================================== */

:root {
	/* Palette */
	--ink: #111827;          /* primary / text */
	--ink-soft: #1F2937;
	--ink-700: #374151;
	--bone: #FFFFFF;         /* page background / light text on dark */
	--bone-2: #F8FAFC;       /* cards / subtle surfaces */
	--sand: #F1F5F9;         /* alt section background */
	--sand-deep: #E2E8F0;
	--card: #F8FAFC;
	--accent: #22D3EE;       /* secondary accent — use sparingly */
	--accent-deep: #0E7490;  /* AA-safe accent text on white */
	--accent-soft: #67E8F9;  /* accent tint on dark surfaces */
	--clay: #22D3EE;         /* legacy alias → accent */
	--clay-deep: #0E7490;    /* legacy alias → accent-deep */
	--teal: #0F172A;         /* deep slate alt dark section */
	--muted: #6B7280;        /* muted text */
	--line: #E5E7EB;         /* borders */
	--line-light: rgba(255, 255, 255, 0.14);
	--white: #ffffff;
	--success: #10B981;

	/* Typography */
	--font-display: "Fraunces", Georgia, "Times New Roman", serif;
	--font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

	/* Rhythm */
	--container: 1240px;
	--container-wide: 1480px;
	--gutter: clamp(1.25rem, 5vw, 3rem);
	--radius: 14px;
	--radius-lg: 28px;
	--radius-xl: 36px;

	--space-section: clamp(4.5rem, 3rem + 7vw, 9rem);

	/* Effects */
	--shadow-sm: 0 2px 8px rgba(20, 24, 31, 0.06);
	--shadow: 0 18px 50px -20px rgba(20, 24, 31, 0.28);
	--shadow-lg: 0 40px 90px -40px rgba(20, 24, 31, 0.45);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--bone);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--ink); color: #fff; }

:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 3px; border-radius: 4px; }

/* ------------------------------------------------------------------ Type */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 1.4rem + 5.2vw, 5.25rem); }
h2 { font-size: clamp(2rem, 1.2rem + 3.2vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 1rem + 1.4vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 0.95rem + 0.7vw, 1.3rem); }

.display { font-style: italic; font-weight: 400; }
.lead { font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem); line-height: 1.5; color: var(--ink-soft); }
.muted { color: var(--muted); }
strong { font-weight: 600; }

/* ------------------------------------------------------------------ Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: 820px; }

.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--bone); }
.section--sand { background: var(--sand); }
.section--teal { background: var(--teal); color: var(--bone-2); }

.grid { display: grid; gap: clamp(1.25rem, 2vw, 2rem); }
.stack > * + * { margin-top: 1.25rem; }

/* ------------------------------------------------------------------ Eyebrow */
.eyebrow {
	display: inline-flex; align-items: center; gap: 0.6em;
	font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
	letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay-deep);
}
.section--ink .eyebrow, .section--teal .eyebrow { color: var(--accent-soft); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.20); }

.section-head { max-width: 760px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.7rem; }
.section-head p { margin-top: 1rem; }

/* ------------------------------------------------------------------ Buttons */
.btn {
	display: inline-flex; align-items: center; gap: 0.6em;
	padding: 0.95em 1.5em; border-radius: 100px;
	font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
	transition: transform 0.4s var(--ease), background-color 0.3s, color 0.3s, box-shadow 0.4s;
	will-change: transform; position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--ink); color: #fff; box-shadow: 0 14px 30px -16px rgba(17, 24, 39, 0.55); }
.btn--primary:hover { background: #0B1220; box-shadow: 0 20px 44px -18px rgba(17, 24, 39, 0.6); }
.btn--accent { background: var(--accent); color: var(--ink); box-shadow: 0 14px 30px -16px rgba(34, 211, 238, 0.6); }
.btn--accent:hover { background: #06B6D4; }
.btn--dark { background: var(--ink); color: var(--bone); }
.btn--dark:hover { background: var(--ink-soft); }
.btn--text { background: rgba(255,255,255,0.12); color: var(--bone); }
.btn--text:hover { background: rgba(255,255,255,0.22); }
.btn--light { background: var(--bone); color: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--ghost { background: transparent; border: 1.5px solid currentColor; }
.btn--ghost:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.section--ink .btn--ghost:hover, .section--teal .btn--ghost:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn--lg { padding: 1.1em 1.9em; font-size: 1.05rem; }
.btn__arrow { display: inline-flex; transition: transform 0.4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.icon { display: inline-block; flex: none; }

/* Branded image placeholder (shown until real photography is uploaded) */
.img-ph { position: absolute; inset: 0; width: 100%; height: 100%; display: grid; place-content: center; gap: 0.8rem; justify-items: center; background:
	radial-gradient(120% 120% at 20% 10%, var(--ink-soft), var(--ink) 70%); color: rgba(255,255,255,0.5); text-align: center; padding: 2rem; }
.img-ph::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 22px 22px; opacity: 0.6; }
.img-ph__icon { width: 84px; height: 84px; border-radius: 22px; background: rgba(34,211,238,0.15); color: var(--accent-soft); display: grid; place-items: center; }
.img-ph__label { font-family: var(--font-display); font-size: 1.05rem; position: relative; z-index: 1; }
/* When used as a non-absolute block (split media) */
.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.media-frame > img, .media-frame > .img-ph { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------------------------ Header */
:root { --header-h: 80px; }
.site-header {
	position: fixed; inset: 0 0 auto 0; z-index: 100;
	transition: transform 0.4s var(--ease), color 0.4s, box-shadow 0.4s;
	color: var(--ink);
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 2rem;
	padding-block: 1rem; position: relative; min-height: var(--header-h);
}
.site-header__bar {
	position: absolute; inset: 0; background: rgba(255, 255, 255, 0); backdrop-filter: blur(0);
	transition: background-color 0.4s, backdrop-filter 0.4s, box-shadow 0.4s; pointer-events: none;
}
/* Overlay over a light hero → dark text at the top */
.site-header--overlay-light { color: var(--ink); }
/* Overlay over a dark hero → white text at the top */
.site-header--overlay-dark { color: #fff; }
.site-header--overlay-dark .brand__word-accent { color: var(--accent); }
/* Scrolled: solid light blur bar with dark text in every mode */
.site-header.is-scrolled {
	color: var(--ink);
}
.site-header.is-scrolled .site-header__bar {
	background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(18px) saturate(1.4);
	box-shadow: 0 1px 0 var(--line), 0 18px 40px -30px rgba(17, 24, 39, 0.45);
}
.site-header.is-scrolled .brand__word-accent { color: var(--accent-deep); }
.site-header.is-hidden { transform: translateY(-100%); }

/* Brand — typographic wordmark that inherits header text colour */
.brand { display: inline-flex; align-items: center; gap: 0.55rem; position: relative; z-index: 3; color: inherit; }
.brand__mark { display: inline-flex; width: 38px; height: 38px; border-radius: 11px; align-items: center; justify-content: center; background: var(--accent); color: var(--ink); flex: none; box-shadow: 0 8px 20px -10px rgba(34, 211, 238, 0.7); }
.brand__word { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1; color: inherit; }
.brand__word-accent { color: var(--accent-deep); }
.site-header .custom-logo { height: 40px; width: auto; }

/* Brand logo lockup — dual-variant, background-aware so contrast never fails */
.brand__logos { display: inline-flex; align-items: center; position: relative; }
.brand__logo { display: block; height: clamp(34px, 4.4vw, 44px); width: auto; }
.brand__logo--solo { display: block; }
.brand__logo--light { display: none; }
.brand__logo--dark { display: block; }
/* Over a dark hero (before scrolling) → white logo */
.site-header--overlay-dark:not(.is-scrolled) .brand__logo--light { display: block; }
.site-header--overlay-dark:not(.is-scrolled) .brand__logo--dark { display: none; }
/* While the dark mobile drawer is open → white logo regardless of header mode */
body.menu-open .site-header .brand__logo--light { display: block; }
body.menu-open .site-header .brand__logo--dark { display: none; }
.footer-brand__logo .brand__logo { height: clamp(40px, 6vw, 52px); }

.nav { position: static; z-index: 2; }
.nav__list { display: flex; align-items: center; gap: 0.2rem; }
.nav__item { position: relative; }
.nav__link {
	display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.55rem 0.85rem;
	font-size: 0.93rem; font-weight: 500; color: inherit; border-radius: 100px;
	transition: background-color 0.3s, color 0.3s; white-space: nowrap;
}
.nav__trigger { background: none; }
.nav__link:hover, .nav__trigger:hover { background: color-mix(in srgb, currentColor 9%, transparent); }
.nav__caret { display: inline-flex; transition: transform 0.35s var(--ease); opacity: 0.7; }
.nav__item--mega:hover .nav__caret,
.nav__item--dropdown:hover .nav__caret,
.nav__item--dropdown:focus-within .nav__caret,
.nav__item--mega.is-open .nav__caret,
.nav__item--dropdown.is-open .nav__caret,
.nav__item--mega .nav__trigger[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }

/* ------------------------------------------------------------------ Mega menu */
/* Static positioning lets the panel span the full header width instead of the
   narrow nav item, which previously clipped/broke the layout. */
.nav__item--mega { position: static; }
.mega {
	position: absolute; left: 0; right: 0; top: 100%;
	padding-top: 0.85rem; opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s;
	pointer-events: none; z-index: 50;
}
.mega[hidden] { display: none; }
.mega .container { width: 100%; }
/* Invisible hover bridge: covers the gap between trigger and panel so the
   cursor never drops into dead space while travelling down. */
.mega::before {
	content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 22px;
}
.nav__item--mega:hover .mega,
.nav__item--mega:focus-within .mega,
.mega.is-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.mega__inner {
	display: grid; grid-template-columns: 0.9fr 2fr; gap: 1.25rem;
	background: #fff; color: var(--ink); border: 1px solid var(--line);
	border-radius: 22px; padding: 1.25rem; box-shadow: 0 40px 90px -40px rgba(17, 24, 39, 0.5);
}
.mega__feature {
	display: flex; flex-direction: column; gap: 0.55rem; padding: 1.5rem;
	background: linear-gradient(160deg, var(--ink), #0B1220); color: #fff; border-radius: 16px;
	transition: transform 0.4s var(--ease);
}
.mega__feature:hover { transform: translateY(-2px); }
.mega__feature .eyebrow { color: var(--accent-soft); }
.mega__feature-head { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.15; }
.mega__feature-desc { font-size: 0.9rem; color: rgba(255,255,255,0.74); line-height: 1.55; }
.mega__feature-cta { margin-top: auto; padding-top: 0.4rem; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--accent-soft); transition: gap 0.3s; }
.mega__feature:hover .mega__feature-cta { gap: 0.7rem; }
.mega__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.35rem; margin: 0; padding: 0; list-style: none; }
.mega__card { display: flex; gap: 0.85rem; padding: 0.85rem; border-radius: 14px; transition: background-color 0.25s; align-items: flex-start; }
.mega__card:hover { background: var(--card); }
.mega__icon { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--card); color: var(--accent-deep); border: 1px solid var(--line); transition: background 0.25s, color 0.25s, border-color 0.25s; }
.mega__card:hover .mega__icon { background: var(--ink); color: var(--accent-soft); border-color: var(--ink); }
.mega__card-body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.mega__card-title { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.mega__card-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.45; }
.mega__cards { display: flex; flex-direction: column; gap: 0.9rem; min-width: 0; }
.mega__more { border-top: 1px solid var(--line); padding-top: 0.85rem; }
.mega__more-head { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; padding: 0 0.85rem 0.5rem; margin: 0; }
.mega__more-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.1rem 0.4rem; list-style: none; margin: 0; padding: 0; }
.mega__more-link { display: block; padding: 0.4rem 0.85rem; border-radius: 8px; font-size: 0.85rem; font-weight: 500; color: var(--ink); transition: background-color 0.2s, color 0.2s; }
.mega__more-link:hover { background: var(--card); color: var(--accent-deep); }

/* ------------------------------------------------------------------ Simple dropdown (About) */
.nav__item--dropdown { position: relative; }
.nav__dropdown {
	position: absolute; left: 0; top: 100%; min-width: 230px;
	padding-top: 0.7rem; opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
	pointer-events: none; z-index: 50;
}
.nav__dropdown::before {
	content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 22px;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown,
.nav__dropdown.is-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.nav__dropdown ul { list-style: none; margin: 0; padding: 0.5rem; background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 30px 70px -36px rgba(17, 24, 39, 0.5); display: grid; gap: 0.15rem; }
.nav__droplink { display: block; padding: 0.7rem 0.9rem; border-radius: 10px; font-size: 0.93rem; font-weight: 500; color: var(--ink); transition: background-color 0.2s, color 0.2s; }
.nav__droplink:hover { background: var(--card); color: var(--accent-deep); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; position: relative; z-index: 3; }
.header-actions__phone { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; font-size: 0.92rem; color: inherit; }
.header-actions__phone .icon { color: var(--accent-deep); }
.header-actions__phone--light { color: rgba(255,255,255,0.85); }
.header-actions__phone--light .icon { color: var(--accent-soft); }
/* On a dark hero the phone icon needs a lighter accent for contrast */
.site-header--overlay-dark:not(.is-scrolled) .header-actions__phone .icon { color: var(--accent-soft); }
/* CTA adapts: white pill on a dark hero, dark pill on light / scrolled bar */
.site-header--overlay-dark:not(.is-scrolled) .header-actions__cta { background: #fff; color: var(--ink); box-shadow: none; }
.site-header--overlay-dark:not(.is-scrolled) .header-actions__cta:hover { background: rgba(255,255,255,0.88); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; background: var(--ink); color: #fff; }
.nav-toggle span { position: relative; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.3s, background 0.1s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.3s; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
	position: fixed; inset: 0; z-index: 99; background: var(--ink); color: #fff;
	padding: 6rem var(--gutter) 2rem; display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 0.5s var(--ease); overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
body.menu-open .mobile-nav { transform: translateX(0); }
.mobile-nav__list { display: flex; flex-direction: column; gap: 0.1rem; }
.mobile-nav__link { font-family: var(--font-display); font-size: clamp(1.5rem, 7vw, 1.9rem); padding: 0.6rem 0; display: block; border-bottom: 1px solid var(--line-light); }
.mobile-nav__group { border-bottom: 1px solid var(--line-light); }
.mobile-nav__acc { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; font-family: var(--font-display); font-size: clamp(1.5rem, 7vw, 1.9rem); color: #fff; text-align: left; }
.mobile-nav__acc-icon { display: inline-flex; transition: transform 0.3s; color: var(--accent-soft); }
.mobile-nav__acc[aria-expanded="true"] .mobile-nav__acc-icon { transform: rotate(45deg); }
.mobile-nav__panel { overflow: hidden; }
.mobile-nav__panel[hidden] { display: none; }
.mobile-nav__panel ul { padding: 0.2rem 0 0.8rem; display: flex; flex-direction: column; gap: 0.1rem; }
.mobile-nav__sublink { display: block; padding: 0.55rem 0.2rem; font-size: 1.02rem; color: rgba(255,255,255,0.78); }
.mobile-nav__sublink--all { color: var(--accent-soft); font-weight: 600; }
.mobile-nav__footer { margin-top: auto; padding-top: 2rem; display: grid; gap: 1rem; }

/* Screen-reader-only helper */
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ------------------------------------------------------------------ Hero */
.hero { position: relative; padding-top: clamp(7rem, 12vh, 10rem); padding-bottom: var(--space-section); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__glow { position: absolute; z-index: -1; filter: blur(60px); opacity: 0.5; border-radius: 50%; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__title { letter-spacing: -0.02em; }
.hero__title em { font-style: italic; color: var(--clay-deep); }
.hero__sub { margin-top: 1.6rem; max-width: 34ch; }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero__trust { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; align-items: center; }
.hero__stars { display: inline-flex; gap: 2px; color: var(--clay); }
.hero__rating { font-weight: 600; }
.hero__rating span { color: var(--muted); font-weight: 400; }

.hero__media { position: relative; }
.hero__media-frame {
	position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5;
	box-shadow: var(--shadow-lg); background: var(--sand);
}
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
	position: absolute; background: #fff; border-radius: 18px; padding: 1rem 1.2rem;
	box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.8rem;
}
.hero__badge--tl { top: 1.4rem; left: -1.4rem; }
.hero__badge--br { bottom: 1.6rem; right: -1.2rem; }
.hero__badge-num { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; color: var(--clay-deep); }
.hero__badge-label { font-size: 0.78rem; color: var(--muted); line-height: 1.3; }
.hero__badge-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--bone); color: var(--clay); display: grid; place-items: center; }

/* Decorative oversized word */
.hero__word { position: absolute; right: -2%; bottom: -8%; font-family: var(--font-display); font-size: clamp(8rem, 22vw, 20rem); line-height: 0.8; color: rgba(20,24,31,0.035); z-index: -1; font-style: italic; pointer-events: none; }

/* ------------------------------------------------------------------ Cinematic video hero */
.hero-cine {
	position: relative; isolation: isolate; overflow: hidden; color: #fff;
	min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
	padding-top: calc(var(--header-h) + clamp(2.5rem, 8vh, 6rem));
	padding-bottom: clamp(2rem, 5vh, 3.5rem);
}
.hero-cine > .container { flex: 1 1 auto; display: flex; align-items: center; width: 100%; min-height: 0; }
.hero-cine__media { position: absolute; inset: 0; z-index: -2; background: #080C14; }
.hero-cine__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-cine__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(8,12,20,0.5) 0%, rgba(8,12,20,0.32) 38%, rgba(8,12,20,0.78) 100%),
		radial-gradient(125% 95% at 50% 0%, rgba(8,12,20,0) 42%, rgba(8,12,20,0.55) 100%);
}
.hero-cine__glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; z-index: -1; pointer-events: none; }
.hero-cine__glow--a { width: 46vw; height: 46vw; top: -12%; left: -8%; background: radial-gradient(circle, rgba(34,211,238,0.22), transparent 60%); }
.hero-cine__glow--b { width: 40vw; height: 40vw; bottom: -16%; right: -10%; background: radial-gradient(circle, rgba(34,211,238,0.12), transparent 60%); }

.hero-cine__content { max-width: 800px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-cine__eyebrow { margin-bottom: 1.4rem; }
.hero-cine .eyebrow { color: #fff; }
.hero-cine .eyebrow__dot { background: var(--accent); }
.hero-cine__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.5rem, 1.4rem + 5.4vw, 5.6rem); line-height: 1.03; letter-spacing: -0.03em; color: #fff; text-wrap: balance; text-shadow: 0 2px 50px rgba(0,0,0,0.35); }
.hero-cine__title em { font-style: italic; color: var(--accent); }
.hero-cine__sub { margin-top: 1.5rem; max-width: 54ch; font-size: clamp(1.02rem, 0.98rem + 0.4vw, 1.28rem); color: rgba(255,255,255,0.82); line-height: 1.6; }
.hero-cine__actions { margin-top: 2.3rem; display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; justify-content: center; }
.hero-cine .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.hero-cine .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero-cine__trust { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.hero-cine__stars { display: inline-flex; gap: 2px; color: var(--accent); }
.hero-cine__rating { font-weight: 600; }
.hero-cine__rating span { color: rgba(255,255,255,0.6); font-weight: 400; }
.hero-cine__divider { width: 1px; height: 18px; background: rgba(255,255,255,0.25); }
.hero-cine__badge { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; }
.hero-cine__badge .icon { color: var(--accent); }
a.hero-cine__badge { color: inherit; text-decoration: none; }
a.hero-cine__badge:hover span { text-decoration: underline; text-underline-offset: 3px; }
.hero-cine__scroll-icon { display: inline-flex; color: rgba(255,255,255,0.7); }
.hero-cine__scroll { position: relative; margin: clamp(1.6rem, 3.5vh, 2.8rem) auto 0; display: inline-flex; flex-direction: column; align-items: center; gap: 0.55rem; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.7); z-index: 2; flex: none; }
.hero-cine__scroll-line { width: 1px; height: 42px; background: rgba(255,255,255,0.25); position: relative; overflow: hidden; }
.hero-cine__scroll-line::after { content: ""; position: absolute; top: -42px; left: 0; width: 1px; height: 42px; background: var(--accent); animation: heroScroll 2.4s var(--ease) infinite; }
@keyframes heroScroll { to { top: 42px; } }
@media (prefers-reduced-motion: reduce) { .hero-cine__scroll-line::after { animation: none; } .hero-cine__video { display: none; } }
@media (max-width: 560px) {
	.hero-cine { min-height: 92svh; }
	.hero-cine__scroll { display: none; }
}

/* ------------------------------------------------------------------ Marquee / trust */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 1.4rem; }
.marquee__track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 32s linear infinite; }
.marquee__item { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 500; color: var(--muted); font-size: 0.95rem; }
.marquee__item .icon { color: var(--clay); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ------------------------------------------------------------------ Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.stats--6 { grid-template-columns: repeat(3, 1fr); }
.stat__num--link { text-decoration: none; color: inherit; display: inline-block; }
.stat__num--link:hover { color: var(--accent); }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 1.6rem + 3vw, 4rem); line-height: 1; color: var(--clay-deep); }
.section--ink .stat__num, .section--teal .stat__num { color: var(--accent-soft); }
.stat__label { margin-top: 0.6rem; font-size: 0.95rem; color: var(--muted); }
.section--ink .stat__label { color: rgba(255,255,255,0.7); }
.stat { padding-top: 1.4rem; border-top: 2px solid var(--clay); }

/* ------------------------------------------------------------------ Expandable cards (signature) */
.xcards { display: grid; gap: 1rem; }
.xcards--row { grid-auto-flow: column; grid-auto-columns: 1fr; }
.xcard {
	position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px;
	background: var(--ink-soft); color: var(--bone); display: flex; flex-direction: column; justify-content: flex-end;
	padding: clamp(1.4rem, 2vw, 2rem); isolation: isolate;
	transition: flex-grow 0.6s var(--ease); cursor: pointer;
}
.xcards--row .xcard { flex: 1 1 0; }
.xcards--row .xcard.is-open { flex-grow: 2.6; }
.xcard__img { position: absolute; inset: 0; z-index: -2; }
.xcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.xcard:hover .xcard__img img { transform: scale(1.06); }
.xcard::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,24,31,0.05) 0%, rgba(20,24,31,0.55) 55%, rgba(20,24,31,0.92) 100%); }
.xcard__icon { width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,0.12); backdrop-filter: blur(6px); display: grid; place-items: center; margin-bottom: auto; }
.xcard__eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-soft); font-weight: 600; }
.xcard__title { font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); margin-top: 0.6rem; color: #fff; }
.xcard__body { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.6s var(--ease), opacity 0.5s, margin 0.5s; }
.xcard.is-open .xcard__body, .xcard:hover .xcard__body { max-height: 240px; opacity: 1; margin-top: 0.9rem; }
.xcard__body p { color: rgba(255,255,255,0.85); font-size: 0.98rem; }
.xcard__link { margin-top: 1.1rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: #fff; font-size: 0.9rem; }
.xcard__link .icon { transition: transform 0.4s var(--ease); }
.xcard:hover .xcard__link .icon { transform: translateX(4px); }

/* ------------------------------------------------------------------ Feature cards */
.cards { display: grid; gap: clamp(1.2rem, 2vw, 1.75rem); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
	background: var(--bone-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
	padding: clamp(1.6rem, 2.4vw, 2.4rem); transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.4s;
	position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--ink); color: var(--bone); display: grid; place-items: center; margin-bottom: 1.4rem; transition: background 0.4s, color 0.4s; }
.card:hover .card__icon { background: var(--clay); color: #fff; }
.card h3 { font-size: 1.4rem; }
.card p { margin-top: 0.7rem; color: var(--muted); }
.card__link { margin-top: 1.2rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--clay-deep); font-size: 0.92rem; }
.card__num { position: absolute; top: 1.2rem; right: 1.4rem; font-family: var(--font-display); font-size: 1.1rem; color: var(--sand-deep); }

/* Glass card variant */
.card--glass { background: rgba(255,255,255,0.06); border: 1px solid var(--line-light); backdrop-filter: blur(12px); color: var(--bone); }
.card--glass p { color: rgba(255,255,255,0.78); }

/* ------------------------------------------------------------------ Split media+content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media--wide img { aspect-ratio: 1/1; }
.split__badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--clay); color: #fff; border-radius: 20px; padding: 1.3rem 1.6rem; box-shadow: var(--shadow); max-width: 230px; }
.split__badge strong { font-family: var(--font-display); font-size: 2rem; display: block; line-height: 1; }
.split__list { display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.split__list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.split__list .icon { color: var(--clay); flex: none; margin-top: 3px; }

/* ------------------------------------------------------------------ Process / timeline */
.process { display: grid; gap: 1.2rem; counter-reset: step; }
.process--row { grid-template-columns: repeat(4, 1fr); }
.pstep { position: relative; padding: 2rem 1.6rem; border-radius: var(--radius-lg); background: var(--bone-2); border: 1px solid var(--line); }
.pstep__num { counter-increment: step; font-family: var(--font-display); font-size: 2.6rem; color: var(--clay); line-height: 1; }
.pstep__num::before { content: "0" counter(step); }
.pstep h3 { font-size: 1.25rem; margin-top: 0.8rem; }
.pstep p { margin-top: 0.5rem; color: var(--muted); font-size: 0.96rem; }

.timeline { position: relative; display: grid; gap: 1.5rem; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: var(--sand-deep); }
.tline { position: relative; padding-left: 3.5rem; }
.tline__dot { position: absolute; left: 10px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 5px var(--bone); }
.tline h4 { font-size: 1.15rem; }
.tline p { color: var(--muted); margin-top: 0.3rem; }

/* ------------------------------------------------------------------ FAQ accordion */
.faq { display: grid; gap: 0.75rem; max-width: 880px; }
.faq__item { border: 1px solid var(--line); border-radius: 18px; background: var(--bone-2); overflow: hidden; transition: border-color 0.3s, background 0.3s; }
.faq__item.is-open { border-color: var(--clay); background: #fff; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.3rem 1.5rem; font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }
.faq__icon { flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s; }
.faq__item.is-open .faq__icon { transform: rotate(135deg); background: var(--clay); color: #fff; border-color: var(--clay); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq__a-inner { padding: 0 1.5rem 1.4rem; color: var(--muted); }

/* ------------------------------------------------------------------ Testimonials */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tcard { background: var(--bone-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.tcard__stars { display: inline-flex; gap: 2px; color: var(--clay); }
.tcard__quote { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; }
.tcard__person { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.tcard__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--sand); }
.tcard__name { font-weight: 600; }
.tcard__role { font-size: 0.85rem; color: var(--muted); }
.tcard--feature { grid-row: span 2; background: var(--ink); color: var(--bone); }
.tcard--feature .tcard__quote { color: #fff; font-size: 1.6rem; }
.tcard--feature .tcard__role { color: rgba(255,255,255,0.6); }

.video-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 9/12; box-shadow: var(--shadow); }
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card__play { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(180deg, rgba(20,24,31,0.1), rgba(20,24,31,0.6)); }
.video-card__btn { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--clay); display: grid; place-items: center; transition: transform 0.4s var(--ease); }
.video-card:hover .video-card__btn { transform: scale(1.08); }
.video-card__name { position: absolute; left: 1.2rem; bottom: 1.2rem; color: #fff; font-family: var(--font-display); font-size: 1.2rem; }

/* ----------------------------------------------------- Premium video testimonials */
.vtest__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.vtest__card {
	display: flex; flex-direction: column; text-align: left; width: 100%;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
	box-shadow: 0 24px 60px -38px rgba(17, 24, 39, 0.5); cursor: pointer;
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.vtest__card:hover, .vtest__card:focus-visible {
	transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
	box-shadow: 0 40px 80px -34px rgba(14, 116, 144, 0.5);
}
.vtest__media { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--ink); }
.vtest__thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.vtest__card:hover .vtest__thumb { transform: scale(1.06); }
.vtest__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,18,32,0) 35%, rgba(11,18,32,0.55)); }
.vtest__play {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center;
	background: rgba(255, 255, 255, 0.94); color: var(--accent-deep);
	box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.5); transition: transform 0.4s var(--ease), background 0.3s;
}
.vtest__play .icon { margin-left: 3px; }
.vtest__card:hover .vtest__play { transform: translate(-50%, -50%) scale(1.1); background: #fff; }
.vtest__tag {
	position: absolute; top: 0.8rem; left: 0.8rem; display: inline-flex; align-items: center; gap: 0.3rem;
	padding: 0.32rem 0.6rem; border-radius: 100px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.02em;
	color: #fff; background: rgba(11, 18, 32, 0.55); backdrop-filter: blur(6px);
}
.vtest__tag .icon { color: var(--accent-soft); }
.vtest__body { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.15rem 1.25rem 1.3rem; }
.vtest__name { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); line-height: 1.2; }
.vtest__excerpt { font-size: 0.92rem; color: var(--muted); line-height: 1.5; }
.vtest__cue { margin-top: auto; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.88rem; color: var(--accent-deep); transition: gap 0.3s; }
.vtest__card:hover .vtest__cue { gap: 0.7rem; }
@media (max-width: 980px) { .vtest__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vtest__grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
	.vtest__card, .vtest__thumb, .vtest__play, .vtest__cue { transition: none; }
}

/* ------------------------------------------------------------------ CTA band */
.cta-band { position: relative; border-radius: var(--radius-xl); overflow: hidden; background: var(--ink); color: var(--bone); padding: clamp(2.5rem, 5vw, 5rem); }
.cta-band__glow { position: absolute; width: 60%; height: 200%; right: -10%; top: -50%; background: radial-gradient(circle, rgba(34,211,238,0.30), transparent 60%); filter: blur(40px); }
.cta-band__inner { position: relative; max-width: 640px; }
.cta-band h2 { color: #fff; }
.cta-band .hero__actions { margin-top: 2rem; }

/* ------------------------------------------------------------------ Trust badges row */
.trust-row { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; align-items: center; justify-content: center; }
.trust-row__item { display: flex; align-items: center; gap: 0.6rem; color: var(--muted); font-weight: 500; }
.trust-row__item .icon { color: var(--clay); }

/* ------------------------------------------------------------------ Pills / chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { padding: 0.5rem 1rem; border-radius: 100px; background: var(--sand); font-size: 0.9rem; font-weight: 500; }
.chip--list { display: flex; align-items: center; gap: 0.5rem; }
.chip--list .icon { color: var(--clay); width: 16px; height: 16px; }

/* ------------------------------------------------------------------ Breadcrumbs */
.crumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }
.crumbs li::after { content: "/"; margin-left: 0.5rem; opacity: 0.5; }
.crumbs li:last-child::after { content: ""; }
.crumbs a:hover { color: var(--clay-deep); }

/* ------------------------------------------------------------------ Single CPT */
.single-hero { padding-top: calc(var(--header-h) + clamp(1.75rem, 4.5vh, 3.25rem)); padding-bottom: clamp(2.25rem, 4vw, 3.5rem); background: var(--ink); color: var(--bone); position: relative; overflow: hidden; }
.single-hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 3rem); align-items: center; }
.single-hero h1 { color: #fff; margin-top: 1rem; }
.single-hero__sub { margin-top: 1.2rem; max-width: 48ch; color: rgba(255,255,255,0.8); font-size: 1.2rem; }
.single-hero__stats { display: flex; gap: clamp(0.65rem, 1.6vw, 1rem); margin-top: clamp(1.5rem, 3vw, 2.2rem); flex-wrap: wrap; }
.single-hero__stats .stat { display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.8rem 1.15rem 0.8rem 0.8rem; border: 1px solid rgba(255,255,255,0.16); border-top: 1px solid rgba(255,255,255,0.16); border-radius: 999px; background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.10); transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease); }
.single-hero__stats .stat:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 55%, transparent); background: linear-gradient(135deg, rgba(34,211,238,0.18), rgba(255,255,255,0.045)); }
.single-hero__stats .stat__label { margin-top: 0; font-size: clamp(0.85rem, 1.5vw, 0.95rem); font-weight: 600; color: rgba(255,255,255,0.92); line-height: 1.3; }
.hero-stat__mark { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; flex: none; color: var(--ink); background: linear-gradient(145deg, var(--accent-soft), var(--accent)); box-shadow: 0 8px 18px -10px rgba(34,211,238,0.9); }
.single-hero__media img { border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-lg); }
@media (prefers-reduced-motion: reduce) {
	.single-hero__stats .stat, .single-hero__stats .stat:hover { transform: none; }
}

.framework { display: grid; gap: 1rem; }
.framework__item { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; padding: clamp(1.5rem, 3vw, 2.4rem); background: var(--bone-2); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.framework__step { font-family: var(--font-display); font-size: 1rem; color: #fff; width: 56px; height: 56px; border-radius: 16px; background: var(--clay); display: grid; place-items: center; }
.framework__label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay-deep); font-weight: 600; }
.framework h3 { font-size: 1.45rem; margin-top: 0.3rem; }
.framework p { margin-top: 0.6rem; color: var(--ink-soft); }

.dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.dl-box { padding: clamp(1.5rem, 3vw, 2.2rem); border-radius: var(--radius-lg); }
.dl-box--symptoms { background: var(--sand); }
.dl-box--causes { background: var(--ink); color: var(--bone); }
.dl-box--risks { background: var(--bone-2); border: 1px solid var(--line); }
.dl-box--seek { background: var(--sand); border: 1px solid var(--sand-deep); }
.dl-box--seek li .icon { color: var(--success); }
.dl-box h3 { display: flex; align-items: center; gap: 0.7rem; }
.dl-box ul { margin-top: 1.2rem; display: grid; gap: 0.7rem; }
.dl-box li { display: flex; gap: 0.7rem; align-items: flex-start; }
.dl-box li .icon { flex: none; margin-top: 4px; color: var(--clay); }
.dl-box--causes li .icon { color: var(--accent-soft); }

/* Related cards */
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.2vw, 1.5rem); }
.rel-card { position: relative; display: flex; gap: clamp(1rem, 2vw, 1.3rem); align-items: center; padding: clamp(1.25rem, 2.6vw, 1.7rem); border-radius: var(--radius-lg); background: var(--bone); border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); }
.rel-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--accent), var(--accent-deep)); transform: scaleY(0); transform-origin: top; transition: transform 0.45s var(--ease); }
.rel-card:hover, .rel-card:focus-visible { transform: translateY(-5px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent-deep) 35%, var(--line)); }
.rel-card:hover::before, .rel-card:focus-visible::before { transform: scaleY(1); }
.rel-card__icon { width: 54px; height: 54px; border-radius: 16px; background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 18%, var(--bone)), var(--sand)); color: var(--accent-deep); display: grid; place-items: center; flex: none; box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent-deep) 14%, transparent); transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease); }
.rel-card:hover .rel-card__icon { background: linear-gradient(145deg, var(--accent-deep), var(--ink)); color: #fff; transform: scale(1.06); }
.rel-card > span:not(.rel-card__icon) { display: flex; flex-direction: column; min-width: 0; }
.rel-card br { display: none; }
.rel-card__meta { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 0.3rem; }
.rel-card__title { font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.3rem); line-height: 1.25; color: var(--ink); font-weight: 600; }

/* ------------------------------------------------------------------ Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.member { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.member img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.member:hover img { transform: scale(1.05); }
.member__info { position: absolute; inset: auto 0 0 0; padding: 1.5rem; background: linear-gradient(transparent, rgba(20,24,31,0.9)); color: #fff; }
.member__role { color: var(--accent-deep); font-size: 0.85rem; font-weight: 600; }
.member__name { font-family: var(--font-display); font-size: 1.5rem; }

/* ------------------------------------------------------------------ Team page */
/* Portrait wrapper + initials placeholder (used until a photo is uploaded) */
.team-portrait { background: linear-gradient(165deg, var(--card), var(--sand)); }
.team-portrait__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease); }
.team-portrait:hover .team-portrait__img { transform: scale(1.04); }
.team-portrait__ph { position: absolute; inset: 0; display: grid; place-items: center; gap: 0.5rem; background: linear-gradient(165deg, var(--ink), #0B1220); color: #fff; }
.team-portrait__ph .team-portrait__initials { font-family: var(--font-display); font-size: clamp(2.4rem, 8vw, 3.6rem); letter-spacing: 0.02em; line-height: 1; color: var(--accent-soft); }
.team-portrait__icon { display: inline-flex; color: rgba(255,255,255,0.55); }

/* Founder feature */
.team-feature__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.team-feature__media { position: relative; }
.team-feature__media .media-frame { aspect-ratio: 4/5; }
.founder-role { display: inline-block; margin-top: 0.5rem; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; color: var(--accent-deep); }
.team-philosophy { position: relative; margin: 1.6rem 0 0; padding: 1.3rem 1.5rem; border-left: 3px solid var(--accent); background: var(--card); border-radius: 0 16px 16px 0; display: grid; gap: 0.5rem; }
.team-philosophy .icon { color: var(--accent-deep); }
.team-philosophy p { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.45; font-style: italic; color: var(--ink); }

/* Founder credentials strip */
.team-creds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.team-cred { display: flex; gap: 0.85rem; align-items: flex-start; padding: 1.2rem; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.team-cred__icon { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--card); color: var(--accent-deep); border: 1px solid var(--line); }
.team-cred p { font-size: 0.92rem; line-height: 1.45; color: var(--ink); }

/* "Fun fact" line */
.team-fun { font-size: 0.92rem; color: var(--muted); line-height: 1.55; }
.team-fun span { font-weight: 700; color: var(--accent-deep); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem; margin-right: 0.35rem; }
.team-fun--light { color: rgba(255,255,255,0.7); }

/* Clinical team — storytelling cards (2-up) */
.team-roster { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.4vw, 1.8rem); }
.team-member { display: grid; grid-template-columns: 150px 1fr; gap: 1.4rem; padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 24px 60px -42px rgba(17,24,39,0.5); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.team-member:hover { transform: translateY(-4px); box-shadow: 0 36px 70px -40px rgba(14,116,144,0.4); }
.team-member__media { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; }
.team-member__body { display: flex; flex-direction: column; gap: 0.4rem; align-self: center; min-width: 0; }
.team-member__name { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.15; }
.team-member__role { color: var(--accent-deep); font-weight: 600; font-size: 0.85rem; }
.team-member__bio { font-size: 0.94rem; color: var(--muted); line-height: 1.55; margin-top: 0.2rem; }

/* Behind-the-scenes — richer cards (3-up) */
.team-grid-rich { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.team-mini { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease); }
.team-mini:hover { transform: translateY(-4px); }
.team-mini__media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.team-mini__body { display: flex; flex-direction: column; gap: 0.3rem; padding: 1.1rem 1.2rem 1.3rem; }
.team-mini__name { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.15; }
.team-mini__role { color: var(--accent-deep); font-weight: 600; font-size: 0.8rem; }
.team-mini__body p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* Littlest bosses — playful trio */
.team-littles { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); gap: clamp(1.2rem, 3vw, 2rem); justify-content: center; }
.team-little { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.team-little__media { position: relative; width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.team-little__name { font-family: var(--font-display); font-size: 1.25rem; margin-top: 0.6rem; }
.team-little__role { color: var(--accent-deep); font-weight: 600; font-size: 0.82rem; }
.team-little p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; max-width: 40ch; }

/* In memoriam */
.team-memoriam__inner { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.team-memoriam__media { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.team-memoriam__role { color: var(--accent-soft); font-weight: 600; font-size: 0.9rem; }
.team-memoriam__body p { color: rgba(255,255,255,0.8); line-height: 1.65; }

@media (max-width: 980px) {
	.team-feature__grid { grid-template-columns: 1fr; }
	.team-feature__media { max-width: 420px; }
	.team-creds { grid-template-columns: 1fr; }
	.team-grid-rich { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
	.team-roster { grid-template-columns: 1fr; }
	.team-memoriam__inner { grid-template-columns: 1fr; text-align: center; }
	.team-memoriam__media { max-width: 320px; margin-inline: auto; }
}
@media (max-width: 560px) {
	.team-member { grid-template-columns: 1fr; }
	.team-member__media { max-width: 200px; }
	.team-grid-rich { grid-template-columns: 1fr; }
	.team-littles { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	.team-member, .team-mini, .team-portrait__img { transition: none; }
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 4vw, 4rem); }
.contact-info { display: grid; gap: 1.4rem; align-content: start; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem; border-radius: var(--radius); background: var(--bone-2); border: 1px solid var(--line); }
.info-row__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--ink); color: var(--bone); display: grid; place-items: center; flex: none; }
.info-row__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.info-row__value { font-weight: 600; font-size: 1.05rem; }
.form { display: grid; gap: 1.1rem; padding: clamp(1.6rem, 3vw, 2.6rem); background: var(--bone-2); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.85rem; font-weight: 600; }
.field input, .field textarea, .field select { padding: 0.85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; transition: border-color 0.3s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent-deep); box-shadow: 0 0 0 3px rgba(34,211,238,0.16); }
.field--2 { grid-template-columns: 1fr 1fr; gap: 1rem; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/7; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ------------------------------------------------------------------ Booking embed */
.section--mist { background: var(--sand); }
.booking__embed {
	position: relative; width: 100%; min-height: var(--booking-h, 720px);
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm); overflow: hidden; padding: clamp(1rem, 2vw, 1.5rem);
}
.booking__embed iframe { width: 100%; min-height: calc(var(--booking-h, 720px) - 3rem); border: 0; display: block; }
.booking__placeholder {
	position: absolute; inset: 0; display: grid; place-content: center; justify-items: center;
	gap: 0.7rem; text-align: center; padding: 2rem;
	background:
		linear-gradient(0deg, rgba(34,211,238,0.04), rgba(34,211,238,0.04)),
		repeating-linear-gradient(135deg, transparent, transparent 18px, rgba(17,24,39,0.025) 18px, rgba(17,24,39,0.025) 19px);
	border: 2px dashed var(--line); border-radius: calc(var(--radius-lg) - 6px); margin: 0;
}
.booking__placeholder-icon { width: 70px; height: 70px; border-radius: 20px; display: grid; place-items: center; background: var(--ink); color: var(--accent-soft); }
.booking__placeholder h3 { font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem); }
.booking__placeholder p { max-width: 46ch; }
/* Panel variant: embed slot sized to sit inside the contact two-column grid. */
.booking--panel { height: 100%; }
.booking--panel .booking__embed { min-height: clamp(420px, 52vh, 560px); height: 100%; margin: 0; }

/* ------------------------------------------------------------------ Footer */
.site-footer { background: var(--ink); color: var(--bone-2); padding-block: clamp(3.5rem, 6vw, 6rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand__logo { height: 40px; margin-bottom: 1.3rem; }
.footer-brand p { color: rgba(255,255,255,0.65); max-width: 32ch; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.6rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-light); display: grid; place-items: center; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.footer-social a:hover { background: var(--clay); border-color: var(--clay); color: #fff; }

/* Thank You — post-submission patient journey. */
.ty-hero { padding-bottom: clamp(3rem, 6vw, 5rem); }
.ty-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.ty-progress { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 0; list-style: none; }
.ty-progress li { position: relative; display: grid; justify-items: center; gap: 0.65rem; text-align: center; color: rgba(255,255,255,0.72); font-size: 0.84rem; font-weight: 600; }
.ty-progress li:not(:last-child)::after { content: ""; position: absolute; top: 17px; left: calc(50% + 22px); width: calc(100% - 44px); height: 1px; background: rgba(255,255,255,0.24); }
.ty-progress__mark { position: relative; z-index: 1; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.28); border-radius: 50%; background: var(--ink); color: #fff; }
.ty-progress .is-complete { color: #fff; }
.ty-progress .is-complete .ty-progress__mark { border-color: var(--accent); background: var(--accent-deep); }
.ty-welcome { border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-lg); overflow: hidden; background: rgba(255,255,255,0.07); box-shadow: var(--shadow-lg); }
.ty-welcome__head { padding: 1.25rem 1.4rem; }
.ty-welcome__head p { margin-top: 0.45rem; color: rgba(255,255,255,0.72); }
.ty-welcome__media { aspect-ratio: 16/9; background: #05080e; }
.ty-welcome__media video { width: 100%; height: 100%; display: block; object-fit: cover; }
.ty-welcome__placeholder { width: 100%; height: 100%; display: grid; place-content: center; justify-items: center; gap: 0.8rem; padding: 2rem; text-align: center; color: rgba(255,255,255,0.78); background: linear-gradient(145deg, #0b1220, #182236); }
.ty-welcome__placeholder .icon { color: var(--accent); }
.ty-insurance { background: var(--accent-deep); color: #fff; }
.ty-insurance__inner { min-height: 96px; display: flex; align-items: center; justify-content: center; gap: 1rem; padding-block: 1.25rem; }
.ty-insurance__inner > span { flex: none; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.14); }
.ty-insurance__inner p { max-width: 760px; font-size: clamp(1rem, 2vw, 1.15rem); font-weight: 600; }
.stats--3 { grid-template-columns: repeat(3, 1fr); }
.ty-proof .stat__label { color: rgba(255,255,255,0.72); }
.ty-review-prompt { text-align: center; }
.ty-review-prompt a { display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; font-weight: 650; }
.ty-review-prompt .icon--star { color: #fbbf24; }
.ty-social__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.8rem; }
.ty-social__links a { min-width: 135px; display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem; padding: 0.85rem 1.1rem; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); font-weight: 650; }
.ty-social__links a:hover { border-color: var(--accent-deep); color: var(--accent-deep); }
@media (max-width: 900px) {
	.ty-hero__grid { grid-template-columns: 1fr; }
	.ty-welcome { max-width: 680px; }
}
@media (max-width: 600px) {
	.ty-progress { gap: 0.35rem; }
	.ty-progress li { font-size: 0.72rem; }
	.ty-progress li:not(:last-child)::after { left: calc(50% + 19px); width: calc(100% - 38px); }
	.ty-progress__mark { width: 32px; height: 32px; }
	.ty-insurance__inner { align-items: flex-start; }
	.stats--3 { grid-template-columns: 1fr; }
	.ty-social__links a { min-width: calc(50% - 0.4rem); }
}
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a { color: rgba(255,255,255,0.8); transition: color 0.3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 3.5rem; padding-top: 1.8rem; border-top: 1px solid var(--line-light); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-legal { margin-top: 3.2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem 0.7rem; font-size: 0.85rem; }
.footer-legal a { color: rgba(255,255,255,0.62); transition: color 0.25s; }
.footer-legal a:hover { color: #fff; }
.footer-legal__sep { color: rgba(255,255,255,0.28); }
.footer-legal + .footer-bottom { margin-top: 1.6rem; padding-top: 1.6rem; }

/* ------------------------------------------------------------------ Sticky mobile CTA + floating button */
.sticky-cta { position: fixed; inset: auto 0 0 0; z-index: 90; padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom)); background: rgba(20,24,31,0.92); backdrop-filter: blur(12px); display: none; gap: 0.6rem; transform: translateY(110%); transition: transform 0.4s var(--ease); }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1 1 0; min-width: 0; justify-content: center; padding-left: 0.5rem; padding-right: 0.5rem; gap: 0.4rem; white-space: nowrap; font-size: 0.92rem; }
.sticky-cta .btn span { overflow: hidden; text-overflow: ellipsis; }
.float-cta { position: fixed; right: 1.3rem; bottom: 1.6rem; z-index: 88; display: inline-flex; align-items: center; gap: 0.6rem; background: var(--ink); color: #fff; padding: 0.95rem 1.4rem; border-radius: 100px; box-shadow: 0 16px 40px -12px rgba(17,24,39,0.55); font-weight: 600; transition: transform 0.4s var(--ease), background 0.3s; }
.float-cta:hover { transform: translateY(-3px); background: var(--clay-deep); }

/* ------------------------------------------------------------------ Video modal */
.video-modal { position: fixed; inset: 0; z-index: 200; background: rgba(20,24,31,0.92); display: grid; place-items: center; padding: var(--gutter); animation: fade 0.3s; }
@keyframes fade { from { opacity: 0; } }
.video-modal__inner { position: relative; width: min(960px, 100%); }
.video-modal__frame { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-modal__frame iframe { width: 100%; height: 100%; border: 0; }
.video-modal__close { position: absolute; top: -3rem; right: 0; width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--ink); font-size: 1.6rem; line-height: 1; display: grid; place-items: center; }

/* ------------------------------------------------------------------ Reveal animations */
[data-reveal] { opacity: 1; transform: none; }
.is-revealed[data-reveal], [data-reveal].is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; } }

/* ------------------------------------------------------------------ Prose (editor content) */
.prose { max-width: 720px; }
.prose > * + * { margin-top: 1.3rem; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 2rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { display: grid; gap: 0.7rem; padding-left: 1.2rem; list-style: disc; }
.prose a { color: var(--clay-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { border-left: 3px solid var(--clay); padding-left: 1.4rem; font-family: var(--font-display); font-size: 1.4rem; font-style: italic; }

/* ------------------------------------------------------------------ Legal / policy pages */
.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 240px; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.legal-prose { max-width: 760px; }
.legal-prose h2 { font-family: var(--font-display); }
.legal-meta { position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 1rem; padding: 1.4rem 1.5rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.legal-meta__row { display: grid; gap: 0.2rem; font-size: 0.9rem; }
.legal-meta__label { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.legal-meta__value { font-weight: 600; color: var(--ink); }
.legal-meta__value a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-empty { display: grid; justify-items: start; gap: 0.8rem; padding: clamp(1.6rem, 4vw, 2.6rem); background: var(--card); border: 2px dashed var(--line); border-radius: var(--radius-lg); }
.legal-empty__icon { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: var(--ink); color: var(--accent-soft); }
.legal-empty h2 { margin-top: 0; font-family: var(--font-display); }
.legal-empty p { max-width: 52ch; }
@media (max-width: 860px) {
	.legal-layout { grid-template-columns: 1fr; }
	.legal-meta { position: static; }
}

/* ------------------------------------------------------------------ Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.relative { position: relative; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 1rem 1.5rem; z-index: 9999; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------------ Responsive */
@media (max-width: 1180px) {
	.header-actions__phone { display: none; }
	.nav__list { gap: 0.05rem; }
	.nav__link { padding: 0.5rem 0.7rem; }
	.mega__inner { grid-template-columns: 1fr; }
	.mega__feature { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 0.6rem 1.2rem; }
	.mega__feature-cta { margin-top: 0; }
}

@media (max-width: 1024px) {
	.hero__grid { grid-template-columns: 1fr; }
	.hero__media { max-width: 460px; margin-inline: auto; }
	.hero__word { display: none; }
	.cards--3, .process--row, .stats { grid-template-columns: repeat(2, 1fr); }
	.team-grid, .tcards { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.single-hero__grid, .split, .split--reverse, .contact-grid { grid-template-columns: 1fr; }
	.split--reverse .split__media { order: 0; }
	.xcards--row { grid-auto-flow: row; grid-auto-columns: auto; }
	.dl-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
	.nav, .header-actions__phone, .header-actions .btn { display: none; }
	.nav-toggle { display: inline-flex; }
	.sticky-cta { display: flex; transform: none; transition: none; }
	.float-cta { display: none; }
	.uwy .userway_buttons_wrapper {
		top: auto !important;
		right: 1rem !important;
		bottom: calc(5.25rem + env(safe-area-inset-bottom)) !important;
		left: auto !important;
		transform: none !important;
	}
	.tcard--feature { grid-row: span 1; }
}

@media (max-width: 640px) {
	.cards--3, .cards--2, .process--row, .stats, .team-grid, .tcards, .related-grid, .footer-grid, .field--2 { grid-template-columns: 1fr; }
	.hero__badge--tl { left: 0.6rem; } .hero__badge--br { right: 0.6rem; }
	.framework__item { grid-template-columns: 1fr; gap: 1rem; }
	.btn { width: 100%; justify-content: center; }
	.hero__actions .btn, .hero-cine__actions .btn, .header-actions .btn { width: auto; }
}

/* =====================================================================
   Homepage overhaul — hero condition chips, trust band, insurance,
   GHL form embed shell. Reuses the existing design tokens throughout.
   ===================================================================== */

/* Hero "we help with" chips — dynamic internal links to condition pages */
.hero-cine__conditions { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: 0.55rem 0.7rem; align-items: center; justify-content: center; max-width: 700px; }
.hero-cine__conditions-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.hero-cine__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.hero-cine__chips a {
	display: inline-flex; align-items: center; padding: 0.42em 0.95em; border-radius: 100px;
	font-size: 0.86rem; font-weight: 500; color: rgba(255,255,255,0.9);
	background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
	backdrop-filter: blur(8px);
	transition: background-color 0.3s var(--ease), border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.hero-cine__chips a:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); transform: translateY(-2px); }

/* Trust signals band */
.trust-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem, 1.4vw, 1.1rem); }
.trust-pill {
	display: flex; align-items: center; gap: 0.8rem; padding: 1.05rem 1.2rem;
	background: var(--bone-2); border: 1px solid var(--line); border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}
.trust-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.trust-pill__icon { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(34,211,238,0.12); color: var(--accent-deep); transition: background-color 0.3s, color 0.3s; }
.trust-pill:hover .trust-pill__icon { background: var(--accent); color: var(--ink); }
.trust-pill__label { font-weight: 600; font-size: 0.95rem; line-height: 1.3; color: var(--ink); }

/* Insurance & payment */
.insurance__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.insurance__points { display: grid; gap: 1rem; }
.insurance__point { display: flex; gap: 0.85rem; align-items: flex-start; }
.insurance__point-icon { flex: none; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: var(--ink); color: #fff; margin-top: 3px; }
.insurance__point-q { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; }
.insurance__point-a { display: block; margin-top: 0.3rem; color: var(--muted); font-size: 0.98rem; line-height: 1.55; }
.insurance__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; }
.insurance__actions .header-actions__phone { color: var(--ink); font-weight: 600; }
.insurance__actions .header-actions__phone .icon { color: var(--accent-deep); }
.insurance__form { position: sticky; top: calc(var(--header-h) + 1.5rem); }

/* Request a callback */
.callback__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.callback__points { display: grid; gap: 0.85rem; }
.callback__point { display: flex; gap: 0.85rem; align-items: flex-start; color: var(--ink); font-size: 1.02rem; line-height: 1.5; }
.callback__point-icon { flex: none; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: var(--accent-deep); color: #fff; margin-top: 1px; }
.callback__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; }
.callback__actions .header-actions__phone { color: var(--ink); font-weight: 600; }
.callback__actions .header-actions__phone .icon { color: var(--accent-deep); }
.callback__form { position: sticky; top: calc(var(--header-h) + 1.5rem); }

/* GHL form embed shell */
.form-embed { width: 100%; }
.form-embed__head { margin-bottom: 1.1rem; }
.form-embed__title { font-size: 1.5rem; }
.form-embed__intro { margin-top: 0.4rem; color: var(--muted); font-size: 0.98rem; }
.form-embed__body { position: relative; min-height: var(--form-min-h, 680px); }
.form-embed__body iframe { width: 100%; min-height: var(--form-min-h, 680px); border: 0; display: block; border-radius: 10px; }
.callback .form-embed__body iframe[src*="leadconnectorhq.com/widget/form"],
.booking .form-embed__body iframe[src*="leadconnectorhq.com/widget/form"] {
	position: relative !important; left: auto !important; right: auto !important; top: auto !important;
	opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
}
/* ReviewWave renders inline (no iframe) and manages its own height — let the
   shell follow the widget instead of forcing a tall empty box, and collapse
   the widget's off-screen/hidden slides (e.g. the full privacy-policy text)
   so they never dictate the container height. */
.form-embed__body:has(.rw-embed-wrap), .form-embed--card .form-embed__body:has(.rw-embed-wrap) { min-height: 0; }
.form-embed__body .rw-embed-wrap .hide { display: none !important; }
.form-embed--card { background: var(--bone); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 2.5vw, 2.2rem); box-shadow: var(--shadow); }
.form-embed--card .form-embed__body, .form-embed--card .form-embed__body iframe { min-height: calc(var(--form-min-h, 680px) - 40px); }

.form-embed__placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.55rem; min-height: inherit; padding: 2.6rem 1.5rem; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--bone-2); color: var(--muted); }
.form-embed--card .form-embed__placeholder { background: transparent; border-color: var(--sand-deep); }
.form-embed__placeholder-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(34,211,238,0.12); color: var(--accent-deep); }
.form-embed__placeholder-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.form-embed__placeholder-text { max-width: 34ch; }
.form-embed__placeholder .btn { margin-top: 0.7rem; }
.insurance-marks { padding-top: 1.5rem; border-top: 1px solid var(--line); text-align: center; }
.insurance-marks__label { display: block; color: var(--muted); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.insurance-marks__list { margin-top: 1rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem; }
.insurance-mark { width: min(180px, 44vw); min-height: 70px; display: inline-flex; align-items: center; justify-content: center; padding: 0.65rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: 6px; color: var(--ink); font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; box-shadow: 0 8px 24px -22px rgba(17,24,39,0.45); }
.insurance-mark__logo { display: block; width: auto; height: auto; max-width: 145px; max-height: 46px; object-fit: contain; }
.insurance-mark__text { line-height: 1.2; }
.insurance-marks__note { margin: 0.9rem auto 0; max-width: 68ch; color: var(--muted); font-size: 0.78rem; }
.referrals__intro { margin-inline: auto; }
.referrals-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.referral-card { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 1rem; align-items: start; padding: clamp(1.3rem,3vw,2rem); background: var(--bone); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.referral-card__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: var(--ink); color: var(--accent-soft); }
.referral-card__role { color: var(--accent-deep); font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.referral-card h3 { margin-top: 0.35rem; font-size: clamp(1.2rem,1rem + 0.7vw,1.55rem); }
.referral-card__link { grid-column: 2; display: inline-flex; align-items: center; gap: 0.45rem; color: var(--ink); font-weight: 700; }
.referral-card__link:hover { color: var(--accent-deep); }
@media (max-width: 720px) { .referrals-grid { grid-template-columns: 1fr; } }

@media (max-width: 980px) {
	.insurance__grid { grid-template-columns: 1fr; }
	.insurance__form { position: static; }
	.callback__grid { grid-template-columns: 1fr; }
	.callback__form { position: static; }
	.trust-band__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.trust-band__grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   New Patient — signature two-visit process
   ===================================================================== */
.two-visit__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2vw, 1.6rem); align-items: stretch; }
.tv-phase {
	position: relative; display: flex; flex-direction: column;
	background: var(--bone); border: 1px solid var(--line); border-radius: var(--radius-lg);
	padding: clamp(1.5rem, 2.4vw, 2.2rem); box-shadow: var(--shadow-sm);
	transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}
.tv-phase:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

/* Behind-the-scenes analysis phase = the differentiator, styled dark */
.tv-phase--analysis { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.tv-phase--analysis .tv-phase__title { color: var(--bone); }
.tv-phase--analysis .tv-phase__kicker { color: var(--accent-soft); }
.tv-phase--analysis .tv-phase__list li { color: rgba(255,255,255,0.86); }
.tv-phase--analysis .tv-phase__list .icon { color: var(--accent); }
.tv-phase--analysis .tv-phase__icon { background: rgba(34,211,238,0.16); color: var(--accent-soft); }

.tv-phase__head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.05rem; }
.tv-phase__badge { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--accent-deep); background: rgba(34,211,238,0.12); }
.tv-phase__icon { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(34,211,238,0.12); color: var(--accent-deep); }
.tv-phase__kicker { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); }
.tv-phase__title { font-size: 1.4rem; }
.tv-phase__list { display: grid; gap: 0.7rem; margin-top: 1.2rem; }
.tv-phase__list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.98rem; color: var(--ink-soft); }
.tv-phase__list .icon { flex: none; margin-top: 3px; color: var(--accent-deep); }

/* Flow connectors between phases (desktop) */
.tv-phase::after {
	content: ""; position: absolute; top: 50%; right: -1.1rem; width: 1.1rem; height: 2px;
	background: var(--sand-deep); transform: translateY(-50%); z-index: 1;
}
.tv-phase:last-child::after { display: none; }

@media (max-width: 980px) {
	.two-visit__grid { grid-template-columns: 1fr; }
	.tv-phase::after { display: none; }
}

/* =====================================================================
   COMPARISON TABLE (corrective vs. relief care) — Phase 8
   ===================================================================== */
.compare-section .section-head { max-width: 720px; }
.compare {
	margin-top: 2.75rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	box-shadow: var(--shadow-lg);
}
.compare__head,
.compare__row {
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr;
	align-items: stretch;
}
.compare__head {
	background: rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.compare__row + .compare__row { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.compare__row:nth-child(even) { background: rgba(255, 255, 255, 0.02); }
.compare__cell {
	padding: 1.15rem 1.4rem;
	font-size: 0.97rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
}
.compare__cell--label {
	font-family: var(--font-display);
	font-weight: 600;
	color: #fff;
	align-items: center;
}
.compare__col {
	font-family: var(--font-display);
	font-weight: 600;
	color: #fff;
	align-items: center;
}
.compare__col--a { color: var(--accent-soft); }
.compare__col--a svg { color: var(--accent); flex: none; }
.compare__cell--a {
	color: #fff;
	border-left: 1px solid rgba(34, 211, 238, 0.18);
	background: rgba(34, 211, 238, 0.05);
}
.compare__cell--a svg { color: var(--accent); flex: none; margin-top: 3px; }
.compare__col--b,
.compare__cell--b { color: rgba(255, 255, 255, 0.55); }
.compare__cell--label .compare__cell,
.compare__cell[data-label]::before { content: none; }

@media (max-width: 760px) {
	.compare__head { display: none; }
	.compare__row { grid-template-columns: 1fr; }
	.compare__row + .compare__row { border-top: 6px solid rgba(255, 255, 255, 0.04); }
	.compare__cell { padding: 0.55rem 1.25rem; }
	.compare__cell--label {
		padding-top: 1.15rem;
		font-size: 1.1rem;
	}
	.compare__cell--a {
		border-left: 0;
		background: transparent;
	}
	.compare__cell--a,
	.compare__cell--b { flex-direction: column; gap: 0.2rem; }
	.compare__cell--a span,
	.compare__cell--b { padding-bottom: 0.35rem; }
	.compare__cell[data-label]::before {
		content: attr(data-label);
		display: block;
		font-size: 0.72rem;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		font-weight: 700;
		color: rgba(255, 255, 255, 0.5);
	}
	.compare__cell--a[data-label]::before { color: var(--accent-soft); }
}

/* =====================================================================
   SIGNATURE APPROACH BAND (Corrective Care + CBP) — Phase 10
   ===================================================================== */
.signature__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
	align-items: stretch;
}
.sig-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 2.4rem 2.1rem 2.1rem;
	background: var(--bone);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.sig-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-deep), var(--accent));
	opacity: 0;
	transition: opacity var(--ease);
}
.sig-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-soft);
}
.sig-card:hover::before { opacity: 1; }
.sig-card--flag {
	border-color: var(--accent-soft);
	box-shadow: 0 24px 60px -32px rgba(14, 116, 144, 0.45);
}
.sig-card--flag::before { opacity: 1; }
.sig-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	align-self: flex-start;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	background: rgba(34, 211, 238, 0.12);
	color: var(--accent-deep);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.sig-card__badge svg { color: var(--accent-deep); }
.sig-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-top: 1.3rem;
	border-radius: var(--radius);
	background: var(--ink);
	color: var(--accent-soft);
}
.sig-card--flag .sig-card__icon {
	background: linear-gradient(135deg, var(--accent-deep), var(--ink));
}
.sig-card__eyebrow {
	display: block;
	margin-top: 1.3rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-deep);
}
.sig-card__title {
	margin-top: 0.5rem;
	font-size: clamp(1.5rem, 1.1rem + 1.4vw, 1.95rem);
}
.sig-card__sub {
	margin-top: 0.8rem;
	color: var(--muted);
	line-height: 1.6;
}
.sig-card__list {
	display: grid;
	gap: 0.65rem;
	margin-top: 1.4rem;
}
.sig-card__list li {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	font-size: 0.97rem;
	color: var(--ink-soft);
}
.sig-card__list .icon { flex: none; margin-top: 3px; color: var(--accent-deep); }
.sig-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: auto;
	padding-top: 1.6rem;
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--ink);
}
.sig-card__link svg { transition: transform var(--ease); }
.sig-card:hover .sig-card__link { color: var(--accent-deep); }
.sig-card:hover .sig-card__link svg { transform: translateX(4px); }

@media (max-width: 760px) {
	.signature__grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   LOCATION / LOCAL SEO PAGE — Phase 11
   ===================================================================== */
.hero-rating {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.95rem;
	color: var(--ink-soft);
}
.hero-rating svg { color: var(--accent-deep); }

.location-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 2rem;
	align-items: start;
}
.location-card {
	background: var(--bone);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 1.6rem 1.6rem 0.6rem;
}
.location-card__title {
	font-size: clamp(1.4rem, 1.1rem + 1vw, 1.7rem);
	margin-bottom: 0.4rem;
}
.location-card .info-row {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	padding: 1rem 0;
	border-top: 1px solid var(--line);
	color: var(--ink);
	transition: color var(--ease);
}
.location-card .info-row:hover { color: var(--accent-deep); }
.location-card .info-row__icon {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--radius);
	background: var(--sand);
	color: var(--accent-deep);
}
.location-card .info-row__label {
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.location-card .info-row__value { font-weight: 600; }
.info-row--block { align-items: flex-start; }
.info-row__grow { width: 100%; }

.hours-list { display: grid; gap: 0.4rem; }
.hours-list__row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.93rem;
}
.hours-list__row dt { margin: 0; }
.hours-list__row dd { margin: 0; font-weight: 600; }

.dir-list { display: grid; gap: 0.55rem; }
.dir-list li {
	display: flex;
	gap: 0.55rem;
	align-items: flex-start;
	font-size: 0.93rem;
	color: var(--ink-soft);
}
.dir-list .icon { flex: none; margin-top: 3px; color: var(--accent-deep); }

.location-map-col { position: sticky; top: 100px; }
.map-wrap.location-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	aspect-ratio: 4 / 3.4;
}
.map-wrap.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-map__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--ink);
}
.location-map__cta svg { color: var(--accent-deep); transition: transform var(--ease); }
.location-map__cta:hover { color: var(--accent-deep); }
.location-map__cta:hover svg:last-child { transform: translateX(4px); }

.area-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}
.area-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.6rem 1rem;
	background: var(--bone);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	box-shadow: var(--shadow-sm);
	transition: transform var(--ease), border-color var(--ease), color var(--ease);
}
.area-chip svg { color: var(--accent-deep); }
.area-chip:hover {
	transform: translateY(-2px);
	border-color: var(--accent-soft);
	color: var(--accent-deep);
}

@media (max-width: 980px) {
	.location-grid { grid-template-columns: 1fr; }
	.location-map-col { position: static; }
	.map-wrap.location-map { aspect-ratio: 16 / 10; }
}

/* =====================================================================
   TESTIMONIAL CONDITION FILTER — Phase 12
   ===================================================================== */
.tfilter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.55rem;
}
.tfilter__btn {
	appearance: none;
	border: 1px solid var(--line);
	background: var(--bone);
	color: var(--ink-soft);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.92rem;
	padding: 0.55rem 1.05rem;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
	transition: transform var(--ease), border-color var(--ease), color var(--ease), background var(--ease);
}
.tfilter__btn:hover {
	transform: translateY(-2px);
	border-color: var(--accent-soft);
	color: var(--accent-deep);
}
.tfilter__btn.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
}
.tfilter__empty {
	text-align: center;
	color: var(--muted);
	margin-top: 1.5rem;
}
.tcard[hidden] { display: none; }

/* =====================================================================
   LOCAL "AREAS WE SERVE" PAGES — Phase 13
   ===================================================================== */
.area-chips--tight { gap: 0.45rem; }
.area-chips--tight .area-chip {
	padding: 0.4rem 0.8rem;
	font-size: 0.85rem;
}
.location-card .info-row__grow p { color: var(--ink-soft); line-height: 1.6; margin-top: 0.35rem; }

.lcare-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1rem;
}
.lcare-card {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 1.4rem;
	background: var(--bone);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	color: var(--ink);
	text-decoration: none;
	position: relative;
	transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.lcare-card:hover, .lcare-card:focus-visible {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: color-mix(in srgb, var(--accent-deep) 35%, var(--line));
}
.lcare-card__icon {
	width: 46px;
	height: 46px;
	border-radius: 13px;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 18%, var(--bone)), var(--sand));
	color: var(--accent-deep);
}
.lcare-card__title { font-weight: 700; font-size: 1.02rem; }
.lcare-card__cta {
	margin-top: auto;
	color: var(--accent-deep);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 600;
	font-size: 0.9rem;
	transition: gap var(--ease);
}
.lcare-card:hover .lcare-card__cta { gap: 0.7rem; }

/* Town cards on the /chiropractor/ archive */
.lcare-grid--towns { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.lcare-card__town { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; line-height: 1.15; }
.lcare-card__blurb { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }

@media (max-width: 640px) {
	.lcare-grid { grid-template-columns: 1fr 1fr; }
	.lcare-grid--towns { grid-template-columns: 1fr; }
}

/* =====================================================================
   JOURNAL / BLOG — Phase 14
   ===================================================================== */
.jcats { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.jcat {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--bone);
	color: var(--ink-soft);
	font-weight: 600;
	font-size: 0.88rem;
	text-decoration: none;
	box-shadow: var(--shadow-sm);
	transition: transform var(--ease), border-color var(--ease), color var(--ease), background var(--ease);
}
.jcat:hover { transform: translateY(-2px); border-color: var(--accent-soft); color: var(--accent-deep); }
.jcat.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.jmeta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--muted);
}
.jmeta__cat { color: var(--accent-deep); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; }
.jmeta--hero { color: var(--ink-soft); font-size: 0.85rem; gap: 0.9rem; }
.jmeta--hero svg { vertical-align: -2px; margin-right: 0.2rem; color: var(--accent-deep); }

/* Featured article */
.jfeature {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(1.2rem, 3vw, 2.6rem);
	align-items: center;
	background: var(--bone);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	color: var(--ink);
	box-shadow: var(--shadow-sm);
	transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.jfeature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent-deep) 30%, var(--line)); }
.jfeature__media { aspect-ratio: 16 / 11; border-radius: 0; }
.jfeature__body { padding: clamp(1.4rem, 3vw, 2.4rem); display: flex; flex-direction: column; gap: 0.7rem; }
.jfeature__title { font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.12; }
.jfeature__excerpt { color: var(--ink-soft); line-height: 1.6; }
.jfeature__placeholder, .jcard__placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--accent-deep); background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 14%, var(--bone)), var(--sand)); }

/* Card grid */
.jgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
.jcard {
	display: flex;
	flex-direction: column;
	background: var(--bone);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	color: var(--ink);
	box-shadow: var(--shadow-sm);
	transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.jcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent-deep) 30%, var(--line)); }
.jcard__media { aspect-ratio: 16 / 10; border-radius: 0; }
.jcard__body { padding: 1.3rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.jcard__title { font-size: 1.18rem; line-height: 1.2; }
.jcard__excerpt { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }
.jcard .card__link, .jfeature .card__link { margin-top: auto; }

/* Inline tags under an article */
.jtags { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }

@media (max-width: 860px) {
	.jfeature { grid-template-columns: 1fr; }
	.jfeature__media { aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
	.jgrid { grid-template-columns: 1fr; }
}


/* =====================================================================
   INSURANCE COVERAGE CHECKER (Insurance & Payment sections)
   ===================================================================== */
.icheck { background: #fff; border: 1px solid var(--line); border-radius: var(--radius, 20px); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08); }
.icheck__title { font-family: var(--font-display); font-size: 1.35rem; }
.icheck__intro { margin-top: 0.6rem; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.icheck__select { width: 100%; margin-top: 1.1rem; padding: 0.85rem 2.6rem 0.85rem 1rem; font: inherit; color: var(--ink); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230F172A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 1rem center; border: 1px solid var(--line); border-radius: 12px; appearance: none; cursor: pointer; }
.icheck__select:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 2px; }
.icheck__result { margin-top: 1rem; padding: 0.95rem 1.1rem; border-radius: 12px; border-left: 4px solid var(--line); background: var(--sand); }
.icheck__result.is-in { border-left-color: #16a34a; background: #f0fdf4; }
.icheck__result.is-out { border-left-color: #d97706; background: #fffbeb; }
.icheck__result.is-other { border-left-color: var(--accent-deep); background: var(--sand); }
.icheck__msg { font-weight: 600; }
.icheck__note { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.icheck__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.25rem; }
.icheck__fine { margin-top: 1rem; font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* =====================================================================
   PATIENT RESOURCES — downloadable PDF cards (/resources/ + condition pages)
   ===================================================================== */
.rgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.rcard { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: 16px; text-decoration: none; color: inherit; transition: transform 0.25s var(--ease, ease), box-shadow 0.25s var(--ease, ease), border-color 0.25s; }
.rcard:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10); border-color: transparent; }
.rcard__icon { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(34, 211, 238, 0.12); color: var(--accent-deep); }
.rcard__body { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.rcard__title { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.35; }
.rcard__desc { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.rcard__cta { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.25rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-deep); }
.rcard:hover .rcard__cta { text-decoration: underline; text-underline-offset: 3px; }
.rmore { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; color: var(--accent-deep); text-decoration: none; }
.rmore:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 640px) {
	.rgrid { grid-template-columns: 1fr; }
}

/* =====================================================================
   YOUTUBE CHANNEL CTA BAND
   ===================================================================== */
.ytcta__band { display: flex; align-items: center; justify-content: space-between; gap: clamp(1.5rem, 4vw, 3rem); padding: clamp(1.75rem, 4vw, 2.75rem); background: var(--ink); color: #fff; border-radius: var(--radius, 20px); flex-wrap: wrap; }
.ytcta__title { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
.ytcta__text { color: rgba(255,255,255,0.75); max-width: 46rem; }
.ytcta__actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.ytcta__count { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.ytcta__count strong { display: block; font-family: var(--font-display); font-size: 1.8rem; color: #fff; line-height: 1.1; }
.ytcta--compact .ytcta__band { padding: clamp(1.4rem, 3vw, 2rem); }
@media (max-width: 760px) {
	.ytcta__band { flex-direction: column; align-items: flex-start; }
}
