/* =====================================================================
   NADclinic — main.css
   Built to match the Figma file (dQcvLUtxLnAIwfrmGa5skg) home frame 1:6061
   Palette: predominantly black on white with teal cyan accents
   Typography: Montserrat (display), Inter (body/UI)
   Mobile-first, breakpoints at 768 (tablet), 1024 (small desktop), 1440 (desktop)
   ===================================================================== */

:root {
	/* Greyscale (the actual home design uses near-black not pure black) */
	--c-ink:        #2c2c2c;
	--c-ink-2:      #414042;
	--c-ink-3:      #565656;
	--c-mute:       #6a6869;
	--c-line:       #e3e2e1;
	--c-line-2:     #edebeb;
	--c-bg:         #ffffff;
	--c-bg-2:       #f3f3f3;
	--c-bg-3:       #fafafa;
	--c-near-black: #1d1d1b;
	--c-pure-black: #040404;

	/* Brand teal (accent only — used sparingly per the design) */
	--c-teal:       #5abebc;
	--c-teal-2:     #0dbfba;
	--c-teal-soft:  rgba(90, 190, 188, 0.1);

	/* Hero gradient stops (used for the dark-teal blue overlay) */
	--c-hero-1:     #2b8a92;
	--c-hero-2:     #3aa4ac;
	--c-hero-3:     #1f5f6a;

	/* Footer gradient — lighter teal-cyan than the hero */
	--c-footer-1:   #5fc4be;
	--c-footer-2:   #7fcecb;
	--c-footer-3:   #a4dad6;

	/* Form / peach */
	--c-peach:      #f8e5d0;
	--c-peach-2:    #f0d4b3;

	--font-display: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

	--container:        1280px;
	--container-narrow: 880px;
	--container-wide:   1440px;
	--gutter:           24px;

	--radius-sm: 4px;
	--radius:    8px;
	--radius-lg: 16px;

	--shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
	--shadow:    0 12px 30px rgba(0,0,0,0.08);

	--header-h:  72px;
}

/* =====================================================================
   Reset / base
   ===================================================================== */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--c-ink);
	background: var(--c-bg);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s ease; }
a:hover, a:focus { color: var(--c-teal-2); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }

h1,h2,h3,h4,h5,h6 {
	font-family: var(--font-display);
	color: var(--c-ink-2);
	font-weight: 700;
	letter-spacing: -0.005em;
	line-height: 1.15;
	margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(2rem,   4vw,   3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; color: var(--c-ink-2); }

.container        { width: 100%; max-width: var(--container);        margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow{ max-width: var(--container-narrow); }
.container--wide  { max-width: var(--container-wide); }

.eyebrow {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.75rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--c-ink-2);
	margin-bottom: 1rem;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }

.section-heading { margin-bottom: 3rem; }
.section-heading--centered { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-heading h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.section-heading--row { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) {
	.section-heading--row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

/* Buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	font-family: var(--font-body);
	padding: 0.8rem 1.6rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.92rem;
	letter-spacing: 0.01em;
	transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
	border: 1px solid transparent;
	white-space: nowrap;
}
.btn-dark      { background: var(--c-near-black); color: #fff; }
.btn-dark:hover{ background: var(--c-teal-2); color: #fff; transform: translateY(-1px); }
.btn-light     { background: #fff; color: var(--c-near-black); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); color: var(--c-near-black); }
.btn-outline   { border-color: var(--c-near-black); color: var(--c-near-black); background: transparent; }
.btn-outline:hover { background: var(--c-near-black); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--c-near-black); }
.btn-teal      { background: var(--c-teal-2); color: #fff; }
.btn-teal:hover { background: var(--c-near-black); color: #fff; transform: translateY(-1px); }

.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 100; border-radius: 6px; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
	background: var(--c-near-black);
	color: #fff;
	position: sticky;
	top: 0;
	z-index: 50;
}
.site-header--over-hero {
	position: absolute;
	top: 0; left: 0; right: 0;
	background: transparent;
}
.site-header__inner {
	position: relative;
	width: 100%;
	max-width: none;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.6rem var(--gutter);
}
.site-header__spacer { display: none; }
.site-header__brand {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	justify-content: center;
}
.site-header__brand img {
	width: clamp(220px, 38vh, 360px);
	max-width: 70vw;
	height: auto;
	display: block;
}
.site-logo-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.site-logo-text em { font-style: normal; color: var(--c-teal); }

.site-header__toggle {
	position: absolute;
	top: 28px;
	right: 36px;
	width: 44px; height: 44px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid rgba(255,255,255,0.55);
	border-radius: 4px;
	background: transparent;
	transition: background .2s;
}
.site-header__toggle:hover { background: rgba(255,255,255,0.12); }
.hamburger { display: inline-flex; flex-direction: column; gap: 4px; width: 18px; }
.hamburger i { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }

@media (max-width: 767px) {
	.site-header__inner { padding: 1rem var(--gutter); }
	.site-header__brand img { width: clamp(140px, 30vh, 200px); }
	.site-header__toggle { top: 18px; right: 18px; }
}

/* Slide-in nav panel (right → left) */
.primary-nav-overlay {
	position: fixed; inset: 0; z-index: 60;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
}
.primary-nav-overlay[hidden] { display: none; }
.primary-nav-overlay.is-open { opacity: 1; pointer-events: auto; }

.primary-nav-overlay__panel {
	position: absolute;
	top: 0; right: 0; bottom: 0;
	width: min(520px, 100vw);
	background: #1a1a1a;
	color: #fff;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform .35s ease;
	overflow-y: auto;
	overscroll-behavior: contain;
}
.primary-nav-overlay.is-open .primary-nav-overlay__panel { transform: translateX(0); }

.primary-nav-overlay__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.6rem 1.8rem 0.8rem;
	flex-shrink: 0;
}
.primary-nav-overlay__brand img {
	display: block;
	height: 40px;
	width: auto;
}
.primary-nav-overlay__close {
	width: 44px; height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.4);
	color: #fff;
	cursor: pointer;
	border-radius: 4px;
	padding: 0;
	transition: background .2s;
}
.primary-nav-overlay__close:hover { background: rgba(255,255,255,0.1); }

.primary-nav-overlay__nav {
	padding: 1.5rem 1.8rem 2rem;
	flex: 1 0 auto;
}

.nav-main { list-style: none; margin: 0; padding: 0; }
.nav-main__item { margin: 0; padding: 0; }
.nav-main__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}
.nav-main__link {
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 58px;
	font-style: normal;
	font-weight: 900;
	line-height: 60px;
	letter-spacing: 0.227px;
	text-decoration: none;
	display: block;
	flex: 1 1 auto;
	padding: 0.25rem 0;
}
.nav-main__link:hover { opacity: 0.8; }

.nav-main__toggle {
	flex: 0 0 auto;
	width: 36px; height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	padding: 0;
}
.nav-main__toggle-ico {
	display: block;
	position: relative;
	width: 16px; height: 16px;
}
.nav-main__toggle-ico::before,
.nav-main__toggle-ico::after {
	content: '';
	position: absolute;
	background: #fff;
	transition: transform .2s, opacity .2s;
}
.nav-main__toggle-ico::before {
	left: 0; right: 0;
	top: 50%;
	height: 2px;
	margin-top: -1px;
}
.nav-main__toggle-ico::after {
	top: 0; bottom: 0;
	left: 50%;
	width: 2px;
	margin-left: -1px;
}
.nav-main__toggle[aria-expanded="true"] .nav-main__toggle-ico::after { transform: scaleY(0); }

.nav-sub {
	list-style: none;
	margin: 0.4rem 0 0.6rem;
	padding: 0;
}
.nav-sub[hidden] { display: none; }
.nav-sub li { margin: 0; padding: 0; }
.nav-sub a {
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 27px;
	font-style: normal;
	font-weight: 900;
	line-height: 60px;
	letter-spacing: 0.092px;
	text-decoration: none;
	display: block;
}
.nav-sub a:hover { opacity: 0.8; }

.nav-secondary {
	list-style: none;
	margin: 1.6rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.nav-secondary a {
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 28px;
	text-decoration: none;
	display: block;
}
.nav-secondary a:hover { opacity: 0.8; }

.primary-nav-overlay__bottom {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1rem 1.5rem;
	align-items: end;
	padding: 1rem 1.8rem 1.8rem;
	flex-shrink: 0;
}
.primary-nav-overlay__bottom-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.8rem;
}
.primary-nav-overlay__bottom-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.5rem;
}

.nav-lang {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	border: 0;
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
}
.nav-lang__flag { font-family: 'Twemoji Country Flags', 'Inter', sans-serif; font-size: 16px; line-height: 1; }

.nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 220px;
	padding: 0.8rem 1rem;
	border: 1px solid rgba(255,255,255,0.6);
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: background .2s, color .2s;
}
.nav-cta:hover { background: #fff; color: #1a1a1a; }

.nav-social-label {
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.4px;
}
.nav-socials {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0.7rem;
}
.nav-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px; height: 22px;
	transition: opacity .2s;
}
.nav-socials a:hover { opacity: 0.7; }
.nav-socials img { display: block; width: 18px; height: 18px; object-fit: contain; }

@media (max-width: 600px) {
	.primary-nav-overlay__panel { width: 100vw; }
	.nav-main__link { font-size: 40px; line-height: 46px; }
	.nav-sub a { font-size: 22px; line-height: 44px; }
	.nav-cta { width: 100%; }
	.primary-nav-overlay__bottom { grid-template-columns: 1fr; }
	.primary-nav-overlay__bottom-right { align-items: flex-start; }
}

/* =====================================================================
   Hero — page-template version (used on inner pages)
   ===================================================================== */
.site-hero {
	position: relative;
	background: linear-gradient(120deg, var(--c-hero-1) 0%, var(--c-hero-2) 50%, var(--c-hero-3) 100%);
	color: #fff;
	overflow: hidden;
	padding: 4rem 0 3rem;
	min-height: 360px;
	display: flex;
	align-items: center;
}
.site-hero__inner {
	position: relative; z-index: 2;
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
	width: 100%;
}
.site-hero__label {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85);
	margin-bottom: 1rem;
}
.site-hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 5.5vw, 4rem);
	font-weight: 700;
	max-width: 18ch;
	margin-bottom: 1rem;
	color: #fff;
	letter-spacing: -0.005em;
}
.site-hero__subtitle {
	max-width: 60ch;
	font-size: 1.05rem;
	color: rgba(255,255,255,0.85);
	margin: 0;
}

.site-hero--split .site-hero__inner { max-width: var(--container-wide); }
.site-hero--split .site-hero__media {
	position: absolute; inset: 0 0 0 50%;
	background-size: cover; background-position: center;
}
.site-hero--split .site-hero__media::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(90deg, var(--c-hero-1) 0%, transparent 30%);
}
.site-hero--split .site-hero__inner > * { max-width: 50%; }

@media (max-width: 767px) {
	.site-hero { padding: 3rem 0 2.5rem; min-height: 280px; }
	.site-hero--split .site-hero__media {
		position: relative; inset: auto;
		height: 220px;
		margin: 0 calc(var(--gutter) * -1) 1.5rem;
	}
	.site-hero--split .site-hero__media::after { display: none; }
	.site-hero--split .site-hero__inner > * { max-width: 100%; }
}

/* =====================================================================
   Home hero — full-bleed waterfall with logo + nav over the top
   ===================================================================== */
.home-hero {
	position: relative;
	background: #000;
	color: #fff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: 0;
}
.home-hero__media {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
	background-color: #06181b;
}
.home-hero__media::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.18) 100%);
	pointer-events: none;
}
.home-hero__inner {
	position: relative; z-index: 2;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 var(--gutter) 3rem;
	text-align: center;
}
.home-hero__overlay {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
	max-width: 310px;
	user-select: none;
	pointer-events: none;
}

@media (max-width: 767px) {
	.home-hero { min-height: 100vh; }
	.home-hero__inner { padding: 1rem var(--gutter) 2.5rem; }
	.home-hero__overlay { max-width: 200px; }
}

/* =====================================================================
   Home — Gold Standard intro (2-col, divider, right/left aligned)
   ===================================================================== */
.gold-standard {
	background: #fff;
	padding: 6rem 0;
}
.gold-standard__inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1fr 3px 1fr;
	gap: 3rem;
	align-items: stretch;
}
.gold-standard__col--head {
	text-align: right;
	padding-right: 0.5rem;
}
.gold-standard__eyebrow {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 21px;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: #414042;
	margin-bottom: 1.4rem;
}
.gold-standard__title {
	font-family: 'Inter', sans-serif;
	font-size: 48px;
	font-weight: 900;
	line-height: 60px;
	color: #414042;
	margin: 0;
	letter-spacing: -0.005em;
}
.gold-standard__divider {
	width: 3px;
	background: #414042;
	justify-self: center;
}
.gold-standard__col--body {
	text-align: left;
	padding-left: 0.5rem;
	max-width: 480px;
}
.gold-standard__quote {
	font-family: 'Montserrat', sans-serif;
	font-size: 21px;
	line-height: 36px;
	font-weight: 400;
	color: #414042;
	margin: 0 0 1.6rem;
}
.gold-standard__lede {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	color: #414042;
	margin: 0;
}

@media (max-width: 1023px) {
	.gold-standard__eyebrow { font-size: 18px; margin-bottom: 1rem; }
	.gold-standard__title { font-size: 36px; line-height: 46px; }
	.gold-standard__quote { font-size: 18px; line-height: 30px; }
	.gold-standard__lede { font-size: 15px; line-height: 1.65; }
}

@media (max-width: 767px) {
	.gold-standard { padding: 3rem 0; }
	.gold-standard__inner {
		grid-template-columns: 1fr;
		gap: 1.6rem;
	}
	.gold-standard__divider { display: none; }
	.gold-standard__col--head {
		text-align: left;
		padding-right: 0;
		max-width: 100%;
	}
	.gold-standard__col--body { padding-left: 0; max-width: 100%; }
	.gold-standard__eyebrow { font-size: 14px; letter-spacing: 0.16em; margin-bottom: 0.8rem; }
	.gold-standard__title { font-size: 28px; line-height: 36px; }
	.gold-standard__quote { font-size: 16px; line-height: 26px; margin-bottom: 1.2rem; }
	.gold-standard__lede { font-size: 14px; line-height: 1.6; }
}

@media (max-width: 380px) {
	.gold-standard__title { font-size: 24px; line-height: 32px; }
}

/* =====================================================================
   Stats bar — 4 columns, big numbers + multi-line labels (reusable)
   ===================================================================== */
.stats-bar {
	background: #fff;
	padding: 0;
	border-top: 1px solid #d4d4d4;
}
.stats-bar__inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 4rem var(--gutter);
}
.stats-bar__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem 2.5rem;
	text-align: center;
	align-items: start;
}
.stats-bar__item {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: center;
	padding: 0 0.5rem;
}
.stats-bar__value {
	display: block;
	color: #414042;
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 48px;
	font-style: normal;
	font-weight: 900;
	line-height: 36px;
	letter-spacing: 1.2px;
	margin: 0;
}
.stats-bar__label {
	display: block;
	color: #414042;
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 0.45px;
	margin: 0;
}

@media (max-width: 1023px) {
	.stats-bar__inner { padding: 3rem var(--gutter); }
	.stats-bar__list { gap: 2.5rem 1.5rem; }
	.stats-bar__value { font-size: 38px; line-height: 32px; letter-spacing: 0.95px; }
	.stats-bar__label { font-size: 16px; line-height: 24px; letter-spacing: 0.4px; }
}
@media (max-width: 767px) {
	.stats-bar__inner { padding: 2.5rem var(--gutter); }
	.stats-bar__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1rem;
	}
	.stats-bar__item { gap: 0.9rem; }
	.stats-bar__value { font-size: 32px; line-height: 28px; letter-spacing: 0.8px; }
	.stats-bar__label { font-size: 14px; line-height: 22px; letter-spacing: 0.35px; }
}

/* =====================================================================
   Platform tabs / accordion section ("THE NADclinic PLATFORM")
   - Desktop: head bar + tabs row + full-width image panel below
   - Mobile : accordion (each panel header expands its body)
   ===================================================================== */
.platform { background: #fff; }
.platform__head { background: #ECECEB; padding: 4rem 0 0; }
.platform__head-inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.platform__eyebrow {
	display: block;
	color: #414042;
	font-family: 'Montserrat', sans-serif;
	font-size: 21px;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 2.1px;
	text-align: left;
	margin: 0 0 1.4rem;
}
.platform__heading {
	color: #414042;
	font-family: 'Inter', sans-serif;
	font-size: 48px;
	font-weight: 900;
	line-height: 48px;
	letter-spacing: 0.375px;
	text-align: left;
	margin: 0 0 1.2rem;
}
.platform__tabs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: end;
	gap: 1.5rem;
	border-bottom: 1px solid rgba(65,64,66,0.18);
}
.platform__tab {
	background: transparent;
	border: 0;
	padding: 0 0 1.4rem;
	color: #414042;
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 0.563px;
	cursor: pointer;
	position: relative;
	white-space: normal;
	text-align: left;
	transition: color .15s;
}
.platform__tab:hover { color: #1d1d1f; }
.platform__tab.is-active {
	font-weight: 700;
	color: #414042;
}
.platform__tab.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -7px;
	height: 12px;
	background: #414042;
	border-radius: 2px;
}

/* Panel container — full-bleed background image, 1440 inner content */
.platform__panels { position: relative; }
.platform__panel {
	background-color: #1d3539;
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	color: #414042;
	position: relative;
}
.platform__panel.is-active { display: block; }
.platform__panel[hidden] { display: none; }

.platform__panel-toggle { display: none; }

.platform__panel-inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 5rem var(--gutter);
	min-height: 560px;
	display: flex;
	align-items: center;
}
.platform__panel-content {
	max-width: 540px;
	width: 100%;
}
.platform__pre {
	color: #FFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 21px;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 1.05px;
	text-transform: uppercase;
	margin: 0 0 1.2rem;
}
.platform__title {
	color: #F3F3F3;
	font-family: 'Inter', sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 48px;
	letter-spacing: 0.07px;
	margin: 0 0 1.4rem;
}
.platform__sub {
	color: #FFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 21px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 0.021px;
	margin: 0 0 1.6rem;
}
.platform__body {
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 0.018px;
	margin: 0 0 2rem;
}
.platform__body p { margin: 0 0 1rem; color: #FFF; }
.platform__body p:last-child { margin-bottom: 0; }

.platform__btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 280px;
	height: 59px;
	padding: 0 1.4rem;
	background: transparent;
	border: 1px solid #FFF;
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	letter-spacing: 1.4px;
	text-decoration: none;
	transition: background .2s, color .2s;
}
.platform__btn:hover { background: #FFF; color: #1d1d1f; }
.platform__btn svg { flex: 0 0 auto; }

/* Tablet */
@media (max-width: 1023px) {
	.platform__head { padding-top: 3rem; }
	.platform__heading { font-size: 36px; line-height: 40px; margin-bottom: 1rem; }
	.platform__eyebrow { font-size: 18px; letter-spacing: 1.8px; }
	.platform__tabs { gap: 1.5rem; }
	.platform__tab { font-size: 18px; line-height: 24px; }
	.platform__panel-inner { padding: 4rem var(--gutter); min-height: 520px; }
	.platform__title { font-size: 30px; line-height: 40px; }
	.platform__sub  { font-size: 18px; line-height: 28px; }
	.platform__body { font-size: 16px; line-height: 28px; }
}

/* Mobile — turn into accordion */
@media (max-width: 767px) {
	.platform__head { padding: 2.5rem 0 0; background: #ECECEB; }
	.platform__heading { font-size: 28px; line-height: 34px; margin-bottom: 0; }
	.platform__eyebrow { font-size: 14px; letter-spacing: 1.4px; margin-bottom: 0.9rem; }
	.platform__tabs { display: none; }

	.platform__panels {
		background: #ECECEB;
	}
	.platform__panel {
		background-image: none !important;
		background-color: transparent;
		border-bottom: 1px solid rgba(65,64,66,0.18);
		display: block !important;
	}
	.platform__panel[hidden] { display: block !important; }
	.platform__panel-toggle {
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		padding: 1.4rem var(--gutter);
		background: transparent;
		border: 0;
		color: #414042;
		font-family: 'Montserrat', sans-serif;
		font-size: 17px;
		font-weight: 700;
		line-height: 1.3;
		text-align: left;
		cursor: pointer;
	}
	.platform__panel-toggle-ico {
		flex: 0 0 auto;
		transition: transform .2s;
	}
	.platform__panel.is-active .platform__panel-toggle-ico { transform: rotate(180deg); }

	.platform__panel-inner {
		max-height: 0;
		overflow: hidden;
		padding: 0 var(--gutter);
		min-height: 0;
		transition: max-height .35s ease, padding .35s ease;
		display: block;
	}
	.platform__panel.is-active .platform__panel-inner {
		max-height: 2000px;
		padding: 0 var(--gutter) 2rem;
	}
	.platform__panel-content {
		max-width: 100%;
		background: #fff;
		padding: 1.6rem;
		border-radius: 8px;
	}
	.platform__pre   { color: #5b5b5f; font-size: 13px; letter-spacing: 1.2px; margin-bottom: 0.8rem; }
	.platform__title { color: #1d1d1f; font-size: 22px; line-height: 28px; margin-bottom: 0.9rem; }
	.platform__sub   { color: #414042; font-size: 16px; line-height: 24px; margin-bottom: 1rem; }
	.platform__body  { color: #414042; font-size: 15px; line-height: 24px; margin-bottom: 1.4rem; }
	.platform__body p { color: #414042; }
	.platform__btn   { width: 100%; border-color: #1d1d1f; color: #1d1d1f; }
	.platform__btn:hover { background: #1d1d1f; color: #FFF; }
}

/* =====================================================================
   Philosophy / Mission — image left, content right (home page)
   ===================================================================== */
.philosophy { background: #fff; padding: 6rem 0; }
.philosophy__inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 4rem;
	align-items: stretch;
}
.philosophy__media { line-height: 0; align-self: stretch; }
.philosophy__media img {
	display: block;
	width: 853px;
	max-width: 100%;
	height: auto;
}
.philosophy__content {
	max-width: 640px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: stretch;
	min-height: 0;
	max-height: 100%;
	overflow: hidden;
}
.philosophy__heading { max-width: 14ch; }
.philosophy__pre {
	color: #414042;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 1.8px;
	margin: 0 0 1rem;
}
.philosophy__heading {
	color: #414042;
	font-family: 'Inter', sans-serif;
	font-size: 40px;
	font-weight: 900;
	line-height: 48px;
	letter-spacing: 0.164px;
	margin: 0 0 1.2rem;
}
.philosophy__sub {
	color: #414042;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: -0.082px;
	margin: 0 0 1.2rem;
}
.philosophy__body {
	color: #414042;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.047px;
	margin: 0 0 1.2rem;
}
.philosophy__body p { margin: 0 0 0.7rem; color: #414042; }
.philosophy__body p:last-child { margin-bottom: 0; }
.philosophy__btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 254px;
	height: 50px;
	padding: 0 1.2rem;
	background: transparent;
	border: 1px solid #414042;
	color: #414042;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	letter-spacing: 1.4px;
	text-decoration: none;
	transition: background .2s, color .2s;
}
.philosophy__btn:hover { background: #414042; color: #fff; }

@media (max-width: 1023px) {
	.philosophy { padding: 4rem 0; }
	.philosophy__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
	.philosophy__media img { width: 100%; max-width: 100%; }
	.philosophy__heading { font-size: 36px; line-height: 44px; max-width: 14ch; }
	.philosophy__sub { font-size: 18px; line-height: 28px; }
}
@media (max-width: 767px) {
	.philosophy { padding: 3rem 0; }
	.philosophy__inner { grid-template-columns: 1fr; gap: 2rem; align-items: start; }
	.philosophy__media img { max-width: 100%; height: auto; margin: 0 auto; }
	.philosophy__heading { max-width: 100%; }
	.philosophy__pre { font-size: 14px; letter-spacing: 1.4px; margin-bottom: 1rem; }
	.philosophy__heading { font-size: 28px; line-height: 36px; margin-bottom: 1.2rem; }
	.philosophy__sub { font-size: 16px; line-height: 26px; }
	.philosophy__body { font-size: 15px; line-height: 26px; }
	.philosophy__btn { width: 100%; }
}

/* =====================================================================
   Products carousel — "Gold-standard longevity medicines"
   ===================================================================== */
.products-section { background: #fff; padding: 4rem 0 6rem; }
.products-section__inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.products-section__inner--cta {
	margin-top: 3rem;
	padding-top: 2.5rem;
	border-top: 1.2px solid #d4d4d4;
}
.products-section__head { text-align: center; margin: 0 auto 3rem; }
.products-section__pre {
	color: #414042;
	font-family: 'Montserrat', sans-serif;
	font-size: 21px;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 2.1px;
	margin: 0 0 1rem;
}
.products-section__heading {
	color: #414042;
	font-family: 'Inter', sans-serif;
	font-size: 48px;
	font-weight: 900;
	line-height: 48px;
	letter-spacing: 0.117px;
	margin: 0 0 1.2rem;
	white-space: nowrap;
}
.products-section__content {
	color: #414042;
	font-family: 'Montserrat', sans-serif;
	font-size: 21px;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: -0.144px;
	margin: 0;
	white-space: nowrap;
}

/* Carousel: viewport sits inside 1440 container, arrows positioned OUTSIDE */
.products-carousel {
	position: relative;
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.products-carousel__prev,
.products-carousel__next {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	background: transparent;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	padding: 0;
	transition: transform .15s, opacity .2s;
}
.products-carousel__prev { left: 24px; }
.products-carousel__next { right: 24px; }
.products-carousel__prev img,
.products-carousel__next img {
	display: block;
	width: 32px;
	height: 32px;
	object-fit: contain;
}
.products-carousel__prev:hover,
.products-carousel__next:hover { transform: translateY(-50%) scale(1.1); }
.products-carousel__prev:disabled,
.products-carousel__next:disabled { opacity: 0.25; cursor: default; }
@media (min-width: 1500px) {
	.products-carousel__prev { left: calc((100% - var(--container-wide)) / 2 - 24px); }
	.products-carousel__next { right: calc((100% - var(--container-wide)) / 2 - 24px); }
}
@media (min-width: 768px) {
	.products-carousel__prev { display:none; }
	.products-carousel__next { display:none; }
}

.products-carousel__viewport { width: 100%; overflow: hidden; }
.products-carousel__track {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}
.products-carousel__slide {
	height: auto;
	display: flex;
}

.product-card {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	width: 100%;
	color: #414042;
	text-decoration: none;
	transition: transform .2s;
}
a.product-card:hover { transform: translateY(-4px); }
.product-card__media { background: transparent; line-height: 0; margin-bottom: 0.6rem; border-radius: 0; }
.product-card__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0;
}
.product-card__sub {
	color: #414042;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	margin: 0;
}
.product-card__heading {
	color: #414042;
	font-family: 'Inter', sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 42px;
	margin: 0;
}

.products-section__cta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

@media (max-width: 1023px) {
	.products-section { padding: 3rem 0 4rem; }
	.products-section__heading { font-size: 36px; line-height: 40px; white-space: normal; }
	.products-section__pre,
	.products-section__content { font-size: 18px; line-height: 24px; letter-spacing: 1.5px; white-space: normal; }
	.product-card__sub { font-size: 15px; line-height: 22px; letter-spacing: 1.4px; }
	.product-card__heading { font-size: 26px; line-height: 32px; }
	.products-carousel__prev { left: 8px; }
	.products-carousel__next { right: 8px; }
}
@media (max-width: 767px) {
	.products-section { padding: 2.5rem 0 3rem; }
	.products-section__head { margin-bottom: 2rem; }
	.products-section__heading { font-size: 28px; line-height: 32px; }
	.products-section__pre { font-size: 14px; letter-spacing: 1.4px; }
	.products-section__content { font-size: 15px; line-height: 22px; }
	.products-carousel__prev,
	.products-carousel__next { width: 36px; height: 36px; }
	.products-carousel__prev img,
	.products-carousel__next img { width: 24px; height: 24px; }
	.products-carousel__prev { left: 4px; }
	.products-carousel__next { right: 4px; }
	.products-section__cta { flex-direction: column; align-items: stretch; }
	.products-section__cta .philosophy__btn { width: 100%; }
}

/* =====================================================================
   Locations block — full-width bg image, content left, CTA
   ===================================================================== */
.locations-block {
	background-color: #0f3a44;
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	color: #fff;
	min-height: 720px;
	display: flex;
	align-items: center;
	padding: 7rem 0;
}
.locations-block__inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	width: 100%;
	padding: 0 var(--gutter);
}
.locations-block__pre {
	color: #FFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 2.1px;
	margin: 0 0 1.6rem;
}
.locations-block__heading {
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 48px;
	font-weight: 900;
	line-height: 60px;
	letter-spacing: -0.047px;
	margin: 0 0 1.6rem;
}
.locations-block__content {
	color: #FFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 2.4px;
	margin: 0 0 2.5rem;
}
.locations-block__btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 250.771px;
	height: 59px;
	padding: 0 1.4rem;
	background: transparent;
	border: 1px solid #FFF;
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	letter-spacing: 1.4px;
	text-decoration: none;
	transition: background .2s, color .2s;
}
.locations-block__btn:hover { background: #FFF; color: #1d1d1f; }

@media (max-width: 1023px) {
	.locations-block { padding: 5rem 0; min-height: 560px; }
	.locations-block__heading { font-size: 36px; line-height: 44px; }
	.locations-block__pre, .locations-block__content { font-size: 18px; line-height: 22px; letter-spacing: 1.6px; }
}
@media (max-width: 767px) {
	.locations-block { padding: 4rem 0; min-height: 440px; background-position: center; }
	.locations-block__heading { font-size: 28px; line-height: 36px; max-width: 100%; }
	.locations-block__pre { font-size: 14px; letter-spacing: 1.4px; margin-bottom: 1rem; }
	.locations-block__content { font-size: 16px; letter-spacing: 1.4px; margin-bottom: 1.6rem; }
	.locations-block__btn { width: 100%; }
}

/* =====================================================================
   Practitioners grid — "Trusted by the World's Leading Longevity Practitioners"
   ===================================================================== */
.practitioners-grid { background: #fff; padding: 5rem 0 6rem; }
.practitioners-grid__inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.practitioners-grid__head { text-align: center; max-width: 880px; margin: 0 auto 3.5rem; }
.practitioners-grid__heading {
	color: #414042;
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 48px;
	font-weight: 900;
	line-height: 60px;
	letter-spacing: 0.047px;
	margin: 0 0 1.4rem;
}
.practitioners-grid__content {
	color: #414042;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 21px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: -0.195px;
}
.practitioners-grid__content p { margin: 0 0 0.6rem; color: #414042; }
.practitioners-grid__content p:last-child { margin-bottom: 0; }

.practitioners-grid__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
}
.practitioner-card {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	padding: 0 0 0.8rem;
}
.practitioner-card__name,
.practitioner-card__link { padding-left: 0.2rem; }
.practitioner-card__media { line-height: 0; }
.practitioner-card__media img {
	display: block;
	width: 100%;
	height: auto;
}
.practitioner-card__name {
	color: #414042;
	font-family: 'Inter', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
	margin: 0;
}
.practitioner-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #414042;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 14px;
	text-decoration: none;
	transition: gap .15s;
}
.practitioner-card__link:hover { gap: 0.8rem; }
.practitioner-card__link img {
	width: 16.232px;
	height: 13.828px;
	object-fit: contain;
}

@media (max-width: 1023px) {
	.practitioners-grid { padding: 4rem 0; }
	.practitioners-grid__heading { font-size: 36px; line-height: 44px; }
	.practitioners-grid__content { font-size: 18px; line-height: 26px; }
	.practitioners-grid__list { grid-template-columns: repeat(3, 1fr); gap: 1.6rem 0; }
	.practitioner-card__name { font-size: 20px; line-height: 26px; }
}
@media (max-width: 767px) {
	.practitioners-grid { padding: 3rem 0; }
	.practitioners-grid__head { margin-bottom: 2rem; }
	.practitioners-grid__heading { font-size: 28px; line-height: 36px; }
	.practitioners-grid__content { font-size: 15px; line-height: 24px; }
	.practitioners-grid__list { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 0; }
	.practitioner-card__name { font-size: 17px; line-height: 22px; }
	.practitioner-card__link { font-size: 13px; }
}

/* =====================================================================
   Work tiles — "Work with NADclinic" (3 tiles, hover reveals body)
   ===================================================================== */
.work-tiles { background: #fff; padding: 5rem 0 6rem; }
.work-tiles__inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.work-tiles__head { text-align: center; margin: 0 auto 3rem; }
.work-tiles__pre {
	color: #414042;
	font-family: 'Montserrat', sans-serif;
	font-size: 21px;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 2.1px;
	margin: 0 0 1rem;
}
.work-tiles__heading {
	color: #414042;
	font-family: 'Inter', sans-serif;
	font-size: 48px;
	font-weight: 900;
	line-height: 48px;
	letter-spacing: 0.094px;
	margin: 0;
}
.work-tiles__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}
.work-tile {
	position: relative;
	display: block;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	border-radius: 0;
	background: #1d1d1f;
	line-height: 0;
}
.work-tile,
.work-tile__media,
.work-tile__media img,
.work-tile__overlay { border-radius: 0; }
.work-tile__media {
	display: block;
	width: 100%;
	height: 100%;
	transition: transform .4s;
}
.work-tile__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}
.work-tile:hover .work-tile__media { transform: scale(1.04); }
.work-tile::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
	pointer-events: none;
}
.work-tile__overlay {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	z-index: 2;
	padding: 1.6rem 1.8rem 1.8rem;
	display: flex;
	flex-direction: column;
}
.work-tile__pre {
	color: #FFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 42px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	margin: 0;
}
.work-tile__heading {
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 33px;
	margin: 0;
}
.work-tile__body {
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	margin: 0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height .4s ease, opacity .3s ease, margin-top .4s ease;
}
.work-tile:hover .work-tile__body,
.work-tile:focus-within .work-tile__body {
	max-height: 240px;
	opacity: 1;
	margin-top: 0.8rem;
}

@media (max-width: 1023px) {
	.work-tiles { padding: 4rem 0; }
	.work-tiles__heading { font-size: 36px; line-height: 40px; }
	.work-tile__heading { font-size: 24px; line-height: 33px; }
	.work-tile__pre { font-size: 14px; line-height: 22px; letter-spacing: 1.4px; }
}
@media (max-width: 767px) {
	.work-tiles { padding: 3rem 0; }
	.work-tiles__head { margin-bottom: 2rem; }
	.work-tiles__heading { font-size: 28px; line-height: 32px; }
	.work-tiles__pre { font-size: 14px; letter-spacing: 1.4px; }
	.work-tiles__grid { grid-template-columns: 1fr; }
	.work-tile__overlay { padding: 1.2rem 1.4rem 1.4rem; }
	/* On mobile: always show the body since hover doesn't apply on touch */
	.work-tile__body { max-height: 240px; opacity: 1; margin-top: 0.6rem; }
}

/* =====================================================================
   Press strip ("As seen on" — label + rule + logos row, reusable)
   ===================================================================== */
.press-strip {
	background: #fff;
	padding: 4rem 0 3.5rem;
}
.press-strip__inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.press-strip__head {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
.press-strip__label {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #414042;
	white-space: nowrap;
	letter-spacing: -0.005em;
}
.press-strip__rule {
	flex: 1;
	height: 1px;
	background: #d4d4d4;
}
.press-strip__list { position: relative; }
.press-strip__track {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2rem;
	align-items: center;
	justify-items: center;
}
/* Swiper takes over only on mobile (when JS adds .swiper class) */
.press-strip-swiper.swiper { overflow: hidden; }
.press-strip-swiper.swiper .press-strip__track {
	display: flex;
	grid-template-columns: none;
	gap: 0;
}
.press-strip-swiper.swiper .press-strip__item {
	flex-shrink: 0;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.press-strip__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.press-strip__item a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.press-strip__item img {
	max-height: 50px;
	width: auto;
	max-width: 100%;
	transition: opacity .2s;
}
.press-strip__item a:hover img { opacity: 0.78; }
/* Plain text fallback (until real logo PNGs are uploaded) */
.press-strip__name { font-family: serif; font-size: 1.35rem; color: #6b6b6e; white-space: nowrap; }
.press-strip__name--financial-times { font-family: 'Times New Roman', serif; font-weight: 700; }
.press-strip__name--luxx { letter-spacing: 0.5em; font-weight: 600; font-family: 'Montserrat', sans-serif; text-transform: uppercase; }
.press-strip__name--stylist { font-family: 'Times New Roman', serif; letter-spacing: 0.18em; text-transform: uppercase; font-style: italic; font-size: 1.25rem; }
.press-strip__name--bazaar { font-family: 'Bodoni Moda', 'Times New Roman', serif; letter-spacing: 0.15em; font-weight: 700; }
.press-strip__name--mail-online { font-family: 'Times New Roman', serif; font-style: italic; }

@media (max-width: 1023px) {
	.press-strip__track { gap: 1.5rem; }
	.press-strip__item img { max-height: 38px; }
}
@media (max-width: 767px) {
	.press-strip { padding: 2.5rem 0; }
	.press-strip__head { gap: 1rem; margin-bottom: 1.6rem; }
	.press-strip__label { font-size: 15px; }
	.press-strip__item img { max-height: 36px; }
	.press-strip__name { font-size: 1.05rem; }
}

/* =====================================================================
   "A 360° longevity infrastructure" — platform pillars
   ===================================================================== */
.platform-section { padding: 6rem 0 4rem; }
.platform-section__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.platform-section__head h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.platform-pillars {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-top: 2.5rem;
}
.platform-pillar { text-align: center; }
.platform-pillar h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.6rem; }
.platform-pillar p { font-size: 0.95rem; color: var(--c-ink-3); }
@media (min-width: 768px) { .platform-pillars { grid-template-columns: repeat(4, 1fr); } }

/* =====================================================================
   Two-column section with image + text (used many places)
   ===================================================================== */
.two-col {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	align-items: center;
	padding: 5rem 0;
}
.two-col__media {
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4/3;
	background: var(--c-bg-2);
}
.two-col__media img { width: 100%; height: 100%; object-fit: cover; }
.two-col__body h2 { margin-bottom: 1.2rem; }
.two-col__body p { color: var(--c-ink-3); font-size: 1.02rem; }
.two-col__body .quote {
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 2vw, 1.4rem);
	color: var(--c-ink-2);
	font-style: italic;
	margin: 1.5rem 0;
	padding-left: 1.5rem;
	border-left: 3px solid var(--c-teal);
}
@media (min-width: 768px) {
	.two-col { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 6rem var(--gutter); }
	.two-col--flip > .two-col__media { order: 2; }
}
.two-col-wrap { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }

/* =====================================================================
   Products grid — "Gold-standard longevity medicines"
   ===================================================================== */
.products { padding: 5rem 0; background: var(--c-bg); }
.products__head { text-align: center; margin-bottom: 3rem; }
.products__head .eyebrow { color: var(--c-ink-3); }
.products__head h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 0.6rem; }
.products__head p { color: var(--c-ink-3); }
.products__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.product-grid .product-card {
	display: flex; flex-direction: column;
	background: var(--c-bg);
	overflow: hidden;
}
.product-grid .product-card__media {
	aspect-ratio: 1;
	background: linear-gradient(135deg, #eaf6f5, #fbf3eb);
	border-radius: var(--radius);
	overflow: hidden;
}
.product-grid .product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__category {
	display: block;
	font-family: var(--font-display);
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-mute);
	margin-top: 1rem;
}
.product-card__name {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--c-ink-2);
	margin: 0.4rem 0 0;
}
.products__nav { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
.products__nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--c-line); background: #fff; }
.products__nav button:hover { background: var(--c-near-black); color: #fff; border-color: var(--c-near-black); }
@media (min-width: 600px)  { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products__grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

/* =====================================================================
   Anti-tamper / peach section
   ===================================================================== */
.anti-tamper {
	background: var(--c-peach);
	padding: 5rem 0;
}
.anti-tamper__inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	align-items: center;
}
.anti-tamper__media { aspect-ratio: 4/5; max-width: 380px; margin: 0 auto; }
.anti-tamper__media img { width: 100%; height: 100%; object-fit: contain; }
.anti-tamper__body .eyebrow { color: var(--c-ink-2); }
.anti-tamper__body h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 1rem; }
@media (min-width: 768px) { .anti-tamper__inner { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* =====================================================================
   Doctors / Practitioners row
   ===================================================================== */
.practitioners { padding: 5rem 0; background: var(--c-bg-3); }
.practitioners__head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.practitioners__head h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.practitioners__head p { color: var(--c-ink-3); font-size: 0.98rem; }
.practitioners__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.practitioner {
	text-align: center;
}
.practitioner__media {
	aspect-ratio: 1;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--c-bg-2);
	margin-bottom: 1rem;
	filter: grayscale(1);
}
.practitioner__media img { width: 100%; height: 100%; object-fit: cover; }
.practitioner__name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--c-ink-2); margin: 0; }
.practitioner__title { font-size: 0.85rem; color: var(--c-mute); margin: 0.2rem 0 0; }
.practitioner__cta { font-size: 0.85rem; color: var(--c-ink-2); margin-top: 0.6rem; display: inline-block; border-bottom: 1px solid var(--c-ink-2); padding-bottom: 1px; }
@media (min-width: 768px)  { .practitioners__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .practitioners__grid { grid-template-columns: repeat(5, 1fr); } }

/* =====================================================================
   Locations / world map / cities
   ===================================================================== */
.locations {
	background: linear-gradient(180deg, #144d56 0%, #0e3941 100%);
	color: #fff;
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}
.locations__inner {
	position: relative; z-index: 2;
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
	text-align: center;
}
.locations__inner .eyebrow { color: rgba(255,255,255,0.7); }
.locations__inner h2 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 0.5rem; }
.locations__inner p  { color: rgba(255,255,255,0.85); max-width: 60ch; margin: 0 auto 2.5rem; }
.locations__cities {
	display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; justify-content: center;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 2.4vw, 2rem);
	font-weight: 600;
	letter-spacing: 0.04em;
	color: rgba(255,255,255,0.95);
}
.locations__cities span { display: inline-block; }

/* (Old .work-with-us / .work-tile block removed — replaced by .work-tiles above) */

/* For doctors / Marketplace CTA strip */
.for-doctors {
	background: var(--c-near-black);
	color: #fff;
	padding: 5rem 0;
}
.for-doctors__inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid; gap: 2rem;
	grid-template-columns: 1fr;
	align-items: center;
}
.for-doctors .eyebrow { color: var(--c-teal); }
.for-doctors h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 1rem; }
.for-doctors p { color: rgba(255,255,255,0.85); }
.for-doctors__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }
.for-doctors__media { background: var(--c-hero-1); border-radius: var(--radius); aspect-ratio: 4/3; overflow: hidden; }
.for-doctors__media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1024px) { .for-doctors__inner { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }

/* =====================================================================
   Blog / archive cards
   ===================================================================== */
.blog-archive { padding: 4rem 0; }
.post-grid {
	display: grid; gap: 2rem;
	grid-template-columns: 1fr;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.post-card {
	display: flex; flex-direction: column;
	transition: transform .2s ease;
}
.post-card:hover { transform: translateY(-3px); }
.post-card__media {
	aspect-ratio: 16/10; display: block;
	background: var(--c-bg-2);
	border-radius: var(--radius);
	overflow: hidden;
}
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__placeholder {
	display: block; width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--c-teal-soft), var(--c-bg-2));
}
.post-card__body { padding: 1rem 0 0; display: flex; flex-direction: column; gap: 0.4rem; }
.post-card__date { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-mute); }
.post-card__title { font-family: var(--font-display); font-size: 1.1rem; color: var(--c-ink-2); margin: 0; }
.post-card__excerpt { color: var(--c-ink-3); font-size: 0.93rem; }
.post-card__link { font-weight: 600; font-size: 0.9rem; }

@media (min-width: 768px)  { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }

.pagination { margin: 3rem auto 0; display: flex; justify-content: center; gap: 0.4rem; max-width: var(--container); padding: 0 var(--gutter); }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 0.6rem;
	border-radius: 999px; border: 1px solid var(--c-line);
	font-weight: 600;
}
.pagination .page-numbers.current { background: var(--c-near-black); color: #fff; border-color: var(--c-near-black); }

/* Single post */
.single-post { padding: 3rem 0 5rem; }
.single-post__featured { margin-bottom: 2rem; border-radius: var(--radius); overflow: hidden; }
.single-post__meta { display: flex; gap: 1rem; color: var(--c-mute); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.4rem; }
.single-post__content { font-size: 1.05rem; color: var(--c-ink-2); }
.single-post__content h2, .single-post__content h3 { margin-top: 2rem; }
.single-post__nav {
	display: flex; justify-content: space-between; gap: 1rem;
	margin: 3rem 0 2rem; padding: 1.5rem 0;
	border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line);
}
.related-posts { padding: 4rem 0; background: var(--c-bg-3); }
.related-posts h3 { margin-bottom: 1.5rem; }

/* =====================================================================
   Page intro / generic content
   ===================================================================== */
.page-intro { padding: 5rem 0; }
.page-intro h2, .page-intro__head h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.page-intro__body { font-size: 1.02rem; color: var(--c-ink-3); }
.page-intro__head { text-align: center; max-width: 760px; margin: 0 auto 1rem; }
.page-intro__head .eyebrow { color: var(--c-ink-3); }

/* =====================================================================
   Service grid (4-up cards used by Hospitality, Become a Partner)
   ===================================================================== */
.service-grid { padding: 4rem 0; }
.service-grid__list {
	display: grid; gap: 2rem;
	grid-template-columns: 1fr;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.service-card {
	padding: 2rem 0;
	border-top: 1px solid var(--c-line);
}
.service-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin: 0 0 0.6rem; color: var(--c-ink-2); letter-spacing: 0.04em; text-transform: uppercase; }
.service-card__desc { color: var(--c-ink-3); font-size: 0.95rem; }
@media (min-width: 768px)  { .service-grid__list { grid-template-columns: repeat(2, 1fr); gap: 3rem 4rem; } }

/* =====================================================================
   Alternating section (Therapeutics, Human Performance Lab)
   ===================================================================== */
.alternating { padding: 3rem 0; }
.alternating__row {
	display: grid; gap: 2rem;
	grid-template-columns: 1fr;
	align-items: center;
	padding: 2.5rem 0;
	max-width: var(--container);
	margin: 0 auto;
	padding: 2.5rem var(--gutter);
}
.alternating__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--c-bg-2); }
.alternating__media img { width: 100%; height: 100%; object-fit: cover; }
.alternating__placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, var(--c-teal-soft), var(--c-peach)); }
.alternating__body h3 { margin-bottom: 0.6rem; font-size: 1.6rem; }
.alternating__copy { color: var(--c-ink-3); }
@media (min-width: 768px) {
	.alternating__row { grid-template-columns: 1fr 1fr; gap: 4rem; }
	.alternating__row.is-flipped > .alternating__media { order: 2; }
}

/* =====================================================================
   Partner logos grid (Hospitality)
   ===================================================================== */
.partner-logos { padding: 4rem 0; }
.partner-logos__head { text-align: center; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.partner-logos__grid {
	display: grid; gap: 2rem;
	grid-template-columns: repeat(2, 1fr);
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.partner-logos__item { text-align: center; padding: 1rem; }
.partner-logos__media { display: flex; align-items: center; justify-content: center; min-height: 60px; margin-bottom: 0.6rem; }
.partner-logos__media img { max-height: 50px; max-width: 100%; opacity: 0.8; filter: grayscale(1); }
.partner-logos__placeholder { font-family: serif; font-style: italic; font-size: 1.2rem; color: var(--c-ink-3); }
.partner-logos__sub { display: block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-mute); }
@media (min-width: 768px)  { .partner-logos__grid { grid-template-columns: repeat(4, 1fr); } }

/* =====================================================================
   Accordion (FAQ + dark variants)
   ===================================================================== */
.accordion { padding: 3rem 0 4rem; }
.accordion__list { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.accordion__item { border-bottom: 1px solid var(--c-line); }
.accordion__trigger {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between;
	padding: 1.6rem 0;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.05rem;
	text-align: left;
	color: var(--c-ink-2);
}
.accordion__icon {
	position: relative;
	width: 18px; height: 18px;
	flex-shrink: 0; margin-left: 1rem;
}
.accordion__icon::before, .accordion__icon::after {
	content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: var(--c-ink-2);
}
.accordion__icon::after { transform: rotate(90deg); transition: transform .2s ease; }
.accordion__item.is-open .accordion__icon::after { transform: rotate(0deg); }
.accordion__panel { padding: 0 0 1.6rem; color: var(--c-ink-3); max-width: 75ch; }

.accordion--dark { background: var(--c-near-black); color: #fff; padding: 4rem 0; }
.accordion--dark .accordion__trigger { color: #fff; }
.accordion--dark .accordion__icon::before, .accordion--dark .accordion__icon::after { background: #fff; }
.accordion--dark .accordion__item { border-color: rgba(255,255,255,0.15); }
.accordion--dark .accordion__panel { color: rgba(255,255,255,0.85); }

/* =====================================================================
   Citations (Research)
   ===================================================================== */
.citations { padding: 3rem 0 4rem; }
.citations__group + .citations__group { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--c-line); }
.citations__heading { margin-bottom: 0.4rem; }
.citations__intro { color: var(--c-mute); margin-bottom: 1.5rem; }
.citations__list { padding-left: 1.4rem; counter-reset: cit; }
.citations__item { list-style: none; counter-increment: cit; padding: 0.8rem 0; position: relative; border-bottom: 1px dashed var(--c-line); font-size: 0.92rem; }
.citations__item::before { content: counter(cit) '.'; position: absolute; left: -1.4rem; top: 0.8rem; color: var(--c-mute); font-weight: 600; }
.citations__links { display: inline-flex; flex-wrap: wrap; gap: 0.4rem 0.8rem; margin-top: 0.4rem; font-size: 0.85rem; }
.citations__links a { color: var(--c-teal-2); }

/* =====================================================================
   Peach contact form
   ===================================================================== */
.peach-form { background: #f0eae5; padding: 5rem 0; }
.peach-form__inner { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.peach-form__head { text-align: center; margin-bottom: 2.5rem; }
.peach-form__head h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 0 0 0.6rem; }
.peach-form__head p  { color: var(--c-ink-3); font-size: 0.95rem; }
.peach-form__form {}

.nadkwc-fallback-form, .nadkwc-cf7 form, .nadkwc-cf7 { display: flex; flex-direction: column; gap: 1.5rem; }
.nadkwc-fallback-form .form-row, .nadkwc-cf7 .form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .nadkwc-fallback-form .form-row, .nadkwc-cf7 .form-row { grid-template-columns: 1fr 1fr; } }
.nadkwc-fallback-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--c-ink-3); }
.nadkwc-fallback-form input, .nadkwc-fallback-form select, .nadkwc-fallback-form textarea,
.nadkwc-cf7 input[type="text"], .nadkwc-cf7 input[type="email"], .nadkwc-cf7 input[type="tel"],
.nadkwc-cf7 select, .nadkwc-cf7 textarea {
	width: 100%;
	padding: 0.9rem 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(13,28,31,0.3);
	font: inherit;
	color: var(--c-ink);
	border-radius: 0;
}
.nadkwc-fallback-form input:focus, .nadkwc-cf7 input:focus, .nadkwc-fallback-form textarea:focus, .nadkwc-cf7 textarea:focus { outline: 0; border-bottom-color: var(--c-near-black); }
.nadkwc-fallback-form .full { grid-column: 1 / -1; }
.nadkwc-fallback-form button { align-self: flex-start; }
.form-note { font-size: 0.85rem; color: var(--c-mute); margin: 0; }

/* =====================================================================
   Find Clinics — search + filter + map split
   ===================================================================== */
.clinics-finder { padding: 4rem 0; }
.clinics-finder__head { text-align: center; max-width: 720px; margin: 0 auto 2rem; padding: 0 var(--gutter); }
.clinics-finder__top { display: grid; gap: 1rem; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.clinics-finder__search { display: grid; gap: 0.8rem; grid-template-columns: 1fr; align-items: center; }
.clinics-finder__field { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 1rem; border: 1px solid var(--c-line); border-radius: 999px; background: #fff; }
.clinics-finder__field input, .clinics-finder__field select { border: 0; padding: 0.6rem 0.4rem; width: 100%; background: transparent; }
.clinics-finder__field--small { max-width: 220px; }
.clinics-finder__filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.filter-pill { padding: 0.55rem 1.2rem; border-radius: 999px; border: 1px solid var(--c-line); background: #fff; font-weight: 600; font-size: 0.88rem; color: var(--c-ink-3); }
.filter-pill.is-active { background: var(--c-near-black); color: #fff; border-color: var(--c-near-black); }

.clinics-finder__layout { display: grid; gap: 2rem; margin-top: 2rem; grid-template-columns: 1fr; max-width: var(--container-wide); margin-left: auto; margin-right: auto; padding: 0 var(--gutter); }
.clinics-finder__list { display: flex; flex-direction: column; gap: 1rem; max-height: 70vh; overflow: auto; }
.clinics-finder__map { position: relative; min-height: 360px; border-radius: var(--radius); overflow: hidden; background: var(--c-bg-2); }
.clinics-map { position: absolute; inset: 0; }
.clinics-map__note { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; padding: 0.6rem 1rem; background: rgba(255,255,255,0.95); border-radius: 8px; font-size: 0.85rem; color: var(--c-ink-3); }

@media (min-width: 1024px) {
	.clinics-finder__search { grid-template-columns: 1fr 220px auto; }
	.clinics-finder__layout { grid-template-columns: 380px 1fr; }
	.clinics-finder__map { min-height: 600px; }
}

.clinic-card { display: flex; gap: 1rem; padding: 1rem; border: 1px solid var(--c-line); border-radius: var(--radius); background: #fff; }
.clinic-card[hidden] { display: none; }
.clinic-card__media { flex: 0 0 100px; width: 100px; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; background: var(--c-bg-2); }
.clinic-card__media img { width: 100%; height: 100%; object-fit: cover; }
.clinic-card__placeholder { display: block; width: 100%; height: 100%; }
.clinic-card__body { display: flex; flex-direction: column; gap: 0.3rem; }
.clinic-card__tag { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-teal-2); font-weight: 600; }
.clinic-card__title { margin: 0; font-size: 1.05rem; font-family: var(--font-display); color: var(--c-ink-2); }
.clinic-card__address { color: var(--c-mute); font-size: 0.85rem; }
.clinic-card__cta { font-weight: 600; font-size: 0.9rem; margin-top: auto; }
.clinic-card.is-active { border-color: var(--c-teal-2); box-shadow: 0 0 0 3px rgba(13,191,186,0.18); }

/* Single clinic */
.clinic-about { padding: 4rem 0 2rem; }
.clinic-about__inner { display: grid; gap: 2rem; grid-template-columns: 1fr; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.clinic-about__copy h2 { margin-bottom: 0.6rem; }
.clinic-about__sidebar { background: var(--c-bg-3); padding: 2rem; border-radius: var(--radius); }
.clinic-meta { display: flex; flex-direction: column; gap: 1rem; }
.clinic-meta li { display: grid; gap: 0.2rem; }
.clinic-meta strong { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-mute); font-family: var(--font-display); }
@media (min-width: 1024px) { .clinic-about__inner { grid-template-columns: 1fr 360px; gap: 4rem; } }

.clinic-gallery { padding: 1rem 0 3rem; }
.clinic-gallery__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.clinic-gallery__grid figure { margin: 0; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); background: var(--c-bg-2); }
.clinic-gallery__grid img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) { .clinic-gallery__grid { grid-template-columns: repeat(3, 1fr); } }

.clinic-offerings { padding: 3rem 0; }
.clinic-offerings .container { max-width: var(--container); }
.check-list { display: flex; flex-direction: column; gap: 0.6rem; margin: 1rem 0 1.5rem; }
.check-list li { position: relative; padding-left: 1.6rem; color: var(--c-ink-2); }
.check-list li::before {
	content: ''; position: absolute; left: 0; top: 0.45em;
	width: 14px; height: 14px; border-radius: 999px;
	background: var(--c-teal-2);
}
.check-list--cols { display: grid; gap: 0.6rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .check-list--cols { grid-template-columns: 1fr 1fr; } }

.clinic-map-section { height: 480px; }
.single-clinic-map { width: 100%; height: 100%; background: var(--c-bg-2); }
.clinic-form { padding: 4rem 0; }

/* =====================================================================
   Legal content
   ===================================================================== */
.legal-content { padding: 3rem 0 5rem; }
.legal-content__body { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.legal-content__body p, .legal-content__body li { font-size: 0.98rem; color: var(--c-ink-3); }
.legal-content__body h3 { margin-top: 2rem; font-family: var(--font-display); font-weight: 600; }

/* =====================================================================
   Footer (lighter teal/cyan gradient)
   ===================================================================== */
.site-footer {
	background-color: #b8e7e6;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: rgba(255, 255, 255, 1);
	padding: 5rem 0 1.5rem;
}
.site-footer__inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}
.site-footer__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
}
.site-footer__logo {
	display: inline-block;
	line-height: 0;
}
.site-footer__logo img {
	max-height: 64px;
	width: auto;
	display: block;
}
.site-footer__main {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
.site-footer__h {
	color: rgba(44, 44, 44, 1);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	margin: 0 0 0.5rem;
	text-transform: none;
	letter-spacing: 0;
}
.site-footer__copy {
	color: rgba(44, 44, 44, 1);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}
.site-footer__copy p { margin: 0 0 0.8rem; color: rgba(44, 44, 44, 1); }
.site-footer__copy p:last-child { margin: 0; }
.site-footer__copy a { color: rgba(44, 44, 44, 1); text-decoration: underline; }
.site-footer__copy a:hover { text-decoration: none; }

.site-footer__cols {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem 1.5rem;
}
.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.footer-menu a {
	color: rgba(0, 0, 0, 1);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-decoration: none;
}
.footer-menu a:hover { text-decoration: underline; }

.site-footer__social {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.6rem;
}
.site-footer__social-label {
	color: rgba(44, 44, 44, 1);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}
.site-footer__social-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0.8rem;
}
.site-footer__social-list a {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	background: transparent;
	transition: opacity .2s;
}
.site-footer__social-list a:hover { opacity: 0.7; }
.site-footer__social-list img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}
.social-ico { width: 14px; height: 14px; background: var(--c-near-black); mask-size: contain; -webkit-mask-size: contain; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; mask-position: center; -webkit-mask-position: center; }
.social-ico--facebook  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M13 22v-8h3l1-4h-4V7.5C13 6 13.5 5 15.5 5H17V1.5C16.4 1.4 15.3 1.3 14 1.3 11.4 1.3 9.5 2.9 9.5 5.7V10H6v4h3.5v8z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M13 22v-8h3l1-4h-4V7.5C13 6 13.5 5 15.5 5H17V1.5C16.4 1.4 15.3 1.3 14 1.3 11.4 1.3 9.5 2.9 9.5 5.7V10H6v4h3.5v8z'/></svg>"); }
.social-ico--instagram { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M7 2C4.2 2 2 4.2 2 7v10c0 2.8 2.2 5 5 5h10c2.8 0 5-2.2 5-5V7c0-2.8-2.2-5-5-5H7zm0 2h10c1.7 0 3 1.3 3 3v10c0 1.7-1.3 3-3 3H7c-1.7 0-3-1.3-3-3V7c0-1.7 1.3-3 3-3zm10.5 1.5a1 1 0 100 2 1 1 0 000-2zM12 7a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M7 2C4.2 2 2 4.2 2 7v10c0 2.8 2.2 5 5 5h10c2.8 0 5-2.2 5-5V7c0-2.8-2.2-5-5-5H7zm0 2h10c1.7 0 3 1.3 3 3v10c0 1.7-1.3 3-3 3H7c-1.7 0-3-1.3-3-3V7c0-1.7 1.3-3 3-3zm10.5 1.5a1 1 0 100 2 1 1 0 000-2zM12 7a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6z'/></svg>"); }
.social-ico--x         { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M14.4 10.6L21 3h-2.1l-5.7 6.6L8.6 3H3l6.9 10-6.9 8h2.1l6-7 4.8 7H21l-7.6-10.4z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M14.4 10.6L21 3h-2.1l-5.7 6.6L8.6 3H3l6.9 10-6.9 8h2.1l6-7 4.8 7H21l-7.6-10.4z'/></svg>"); }
.social-ico--linkedin  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M4 3.5A2.5 2.5 0 116.5 6 2.5 2.5 0 014 3.5zM3 8h7v13H3zM12 8h6.5v1.8h.1c.9-1.7 3-1.8 4.4-1.8 4.7 0 5 3.1 5 7v8H21v-7c0-2 0-4-2.5-4S16 14 16 16v8h-7V8z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M4 3.5A2.5 2.5 0 116.5 6 2.5 2.5 0 014 3.5zM3 8h7v13H3zM12 8h6.5v1.8h.1c.9-1.7 3-1.8 4.4-1.8 4.7 0 5 3.1 5 7v8H21v-7c0-2 0-4-2.5-4S16 14 16 16v8h-7V8z'/></svg>"); }
.social-ico--youtube   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M23 7.5a3 3 0 00-2.1-2.1C19 5 12 5 12 5s-7 0-8.9.4A3 3 0 001 7.5C0.6 9.4 0.6 12 0.6 12s0 2.6.4 4.5a3 3 0 002.1 2.1C5 19 12 19 12 19s7 0 8.9-.4a3 3 0 002.1-2.1c.4-1.9.4-4.5.4-4.5s0-2.6-.4-4.5zM10 15.5v-7l6 3.5-6 3.5z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M23 7.5a3 3 0 00-2.1-2.1C19 5 12 5 12 5s-7 0-8.9.4A3 3 0 001 7.5C0.6 9.4 0.6 12 0.6 12s0 2.6.4 4.5a3 3 0 002.1 2.1C5 19 12 19 12 19s7 0 8.9-.4a3 3 0 002.1-2.1c.4-1.9.4-4.5.4-4.5s0-2.6-.4-4.5zM10 15.5v-7l6 3.5-6 3.5z'/></svg>"); }

.site-footer__legal {
	max-width: var(--container-wide);
	margin: 3rem auto 0;
	padding: 1.2rem var(--gutter) 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 1);
	text-align: center;
}

@media (min-width: 768px) {
	.site-footer__main {
		grid-template-columns: 1.2fr 2.6fr;
		gap: 3rem;
	}
	.site-footer__cols {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: min-content;
		gap: 2rem 2rem;
	}
}
@media (min-width: 1200px) {
	.site-footer__main { grid-template-columns: 1.4fr 3fr; gap: 3.5rem; }
}

/* =====================================================================
   404 / search form / utilities
   ===================================================================== */
.error-404 { padding: 6rem 0; text-align: center; }
.error-404 h1 { font-size: clamp(3rem, 6vw, 5rem); }
.error-404__cta { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1rem; }
.error-404__search { max-width: 480px; margin: 2rem auto 0; }

.search-form { display: flex; gap: 0.5rem; }
.search-form input { flex: 1; padding: 0.85rem 1rem; border: 1px solid var(--c-line); border-radius: 999px; }
.search-form button { padding: 0.85rem 1.6rem; border-radius: 999px; background: var(--c-near-black); color: #fff; font-weight: 600; }
.empty-state { text-align: center; padding: 3rem 0; color: var(--c-mute); }

.is-flipped {}
[hidden] { display: none !important; }

/* =====================================================================
   "Have questions?" contact form
   ===================================================================== */
/* Webfont covering only the flag-emoji codepoints, so Windows browsers
   (which lack flag glyphs) render flag emoji properly without affecting
   any other characters on the page. */
@font-face {
	font-family: 'Twemoji Country Flags';
	unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067,
	               U+E006C, U+E006E, U+E0073-E0074, U+E0077, U+E007F;
	src: url('https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@0.1/dist/TwemojiCountryFlags.woff2') format('woff2');
	font-display: swap;
}
.have-questions {
	background: #f0eae5;
	padding: 5rem 0 4rem;
}
.have-questions__inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 24px;
}
@media (max-width: 1023px) {
	.have-questions__inner { padding: 0 var(--gutter); }
}
.have-questions__head {
	text-align: center;
	margin-bottom: 3rem;
}
.have-questions__title {
	font-family: 'Inter', sans-serif;
	font-weight: 800;
	font-size: clamp(2rem, 4vw, 2.6rem);
	color: #2C2C2C;
	margin: 0 0 1rem;
}
.have-questions__sub {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #2C2C2C;
	margin: 0;
}

.have-questions__form { display: flex; flex-direction: column; gap: 2rem; }
.have-questions__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 768px) {
	.have-questions__row { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.hq-field { display: flex; flex-direction: column; gap: 0.4rem; }
.hq-label {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #2C2C2C;
}
.hq-req { color: #2bb5a7; font-weight: 700; margin-left: 2px; }
.hq-input {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #2C2C2C;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(44,44,44,0.35);
	padding: 0.55rem 0;
	border-radius: 0;
	outline: none;
	transition: border-color .2s;
	width: 100%;
}
.hq-input::placeholder { color: rgba(44,44,44,0.55); }
.hq-input:focus { border-bottom-color: #2bb5a7; }
.hq-input.is-invalid { border-bottom-color: #c64545; }
.hq-textarea { resize: vertical; min-height: 2.4rem; }

.hq-select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='%232C2C2C' stroke-width='1.6' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position: right 0.25rem center;
	padding-right: 1.6rem;
	cursor: pointer;
}

.hq-phone { display: flex; gap: 0.6rem; align-items: stretch; }
.hq-input--dial {
	width: auto;
	flex: 0 0 auto;
	min-width: 110px;
	padding-right: 1.4rem;
	background-position: right 0.1rem center;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='%232C2C2C' stroke-width='1.6' fill='none'/></svg>");
	background-repeat: no-repeat;
	font-family: 'Twemoji Country Flags', 'Inter', sans-serif;
}
.hq-input--phone { flex: 1 1 auto; }

.hq-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important; height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.have-questions__foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 0.5rem;
}
.have-questions__status {
	margin: 0;
	font-size: 14px;
	color: #2C2C2C;
	flex: 1 1 auto;
}
.have-questions__status.is-error { color: #c64545; }
.have-questions__status.is-success { color: #1f7a6f; }

.hq-submit {
	display: inline-flex;
	align-items: center;
	gap: 2.4rem;
	padding: 0.9rem 1.4rem;
	border: 1px solid #2C2C2C;
	background: transparent;
	color: #2C2C2C;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s, color .2s;
	margin-left: auto;
}
.hq-submit:hover { background: #2C2C2C; color: #fce8d4; }
.hq-submit[disabled] { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 600px) {
	.have-questions__foot { justify-content: stretch; }
	.hq-submit { width: 100%; justify-content: center; }
}

/* =====================================================================
   v1.1.0 — Targeted style additions (added without modifying existing rules)
   ===================================================================== */

/* --- Become a Partner: distinct nav link style ----------------------- */
/* Desktop default already uses Inter / 900 / ~58px. We override only the
   accent variant to the spec'd 48px / 60px / 0.39px tracking. */
.nav-main__link.nav-main__link--accent {
	font-family: 'Inter', sans-serif;
	font-size: 36px;
	font-weight: 900;
	text-decoration: underline !important;
	line-height: 60px;
	letter-spacing: 0.39px;
}

/* Mobile: scaled-down version that keeps the same weight and rhythm. */
@media (max-width: 600px) {
	.nav-main__link.nav-main__link--accent {
		font-size: 32px;
		line-height: 40px;
		letter-spacing: 0.13px;
	}
}

/* --- Discover NADairX: small red "NEW" badge ------------------------- */
.nav-secondary__badge {
	display: inline-block;
	background: #e53935;
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	padding: 3px 6px;
	border-radius: 3px;
	margin-left: 8px;
	vertical-align: middle;
	position: relative;
	top: -1px;
}

/* --- Platform panels: inline image on mobile ------------------------- */
/* The desktop accordion shows the image as a CSS background on the panel.
   On mobile, the existing rule sets that background to none and stacks
   each panel as an accordion. We now show the image as a real <img>
   inside the expanded content, after the heading. */
.platform__panel-image {
	display: none; /* Hidden on desktop — desktop uses the bg image */
}
@media (max-width: 1023px) {
	.platform__panel-image {
		display: block;
		width: 100%;
		height: auto;
		max-height: 240px;
		object-fit: cover;
		border-radius: 6px;
		margin: 0 0 1.2rem;
	}
}

/* --- Locations block: dark overlay on mobile ------------------------- */
/* The bg image dulls the heading text on small screens. Add a translucent
   dark overlay on mobile only so the white text reads cleanly. The inner
   wrapper is lifted above the overlay with z-index. */
@media (max-width: 767px) {
	.locations-block {
		position: relative;
		isolation: isolate; /* New stacking context — shields the rest of the page */
	}
	.locations-block::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
		z-index: 0;
		pointer-events: none;
	}
	.locations-block__inner {
		position: relative;
		z-index: 1;
	}
}

/* =====================================================================
   v1.1.2 — Product carousel image consistency + heading-only links
   ===================================================================== */

/* --- Therapeutic portfolio: taller media, full image visible --------
   3:4 portrait ratio gives roughly 33% more vertical space than the
   previous square. object-fit:contain shows 100% of each image (no
   cropping), with a soft background filling any letterboxing. */
.products-carousel .product-card { gap: 0; }
.products-carousel .product-card__media {
	/*aspect-ratio: 3 / 4;*/
	overflow: hidden;
	margin-bottom: 0;
	background: #f5f5f5;
}
.products-carousel .product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}

/* Sub-label and heading get their own breathing room (since the media
   no longer carries margin). */
.products-carousel .product-card__sub {
	margin-top: 0.8rem;
}

/* --- Heading-only link ---------------------------------------------- */
/* Only the <h4> text is clickable. Inherit colour, no underline, hint
   on hover. */
.product-card__heading a {
	color: inherit;
	text-decoration: none;
	transition: color .15s;
}
.product-card__heading a:hover,
.product-card__heading a:focus {
	color: var(--c-teal-2);
}

/* --- "Our Full Products" CTA: align right --------------------------- */
.products-section__cta {
	justify-content: flex-end;
}
@media (max-width: 767px) {
	.products-section__cta {
		justify-content: stretch;
	}
}
/* Landscape lock for small phones — show a "rotate device" message
   instead of the broken landscape layout. Only triggers on devices
   with short height (i.e., phones in landscape). Tablets and desktops
   are unaffected. */
.nadclinic-rotate-msg { display: none; }

@media (orientation: landscape) and (max-height: 500px) {
    body.is-home > *:not(.nadclinic-rotate-msg) {
        display: none !important;
    }
    .nadclinic-rotate-msg {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 99999;
        background: #1a1a1a;
        color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem;
        font-family: 'Inter', sans-serif;
    }
    .nadclinic-rotate-msg__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
        animation: nad-rotate-hint 2s ease-in-out infinite;
    }
    .nadclinic-rotate-msg__title {
        font-size: 22px;
        font-weight: 700;
        margin: 0 0 0.5rem;
    }
    .nadclinic-rotate-msg__sub {
        font-size: 15px;
        font-weight: 400;
        opacity: 0.85;
        margin: 0;
        max-width: 280px;
    }
}
@keyframes nad-rotate-hint {
    0%, 100% { transform: rotate(-90deg); }
    50%      { transform: rotate(0deg); }
}