/* TreVita theme — design system ported verbatim from trevita.netlify.app
   (tokens, type scale, and component styling extracted from its inline CSS). */

:root {
	--navy:  #002B51;
	--blue:  #0F4C81;
	--sky:   #BEE1FF;
	--bari:  #1CA6DA;
	--baril: #46C1EF;
	--stem:  #2CCCD3;
	--plas:  #7C3AB7;
	--hair:  #C8993A;
	--bg:    #F6F8FB;
	--w:     #FFFFFF;
	--bdr:   #E2EAF2;
	--bdr2:  #EDF2F7;
	--t1:    #060E18;
	--t2:    #3B4D60;
	--t3:    #8496AA;
	--sh:    0 1px 2px rgba(6,14,24,.04), 0 6px 24px rgba(6,14,24,.07);
	--sh2:   0 2px 8px rgba(6,14,24,.05), 0 16px 48px rgba(6,14,24,.10);
	--sh3:   0 4px 16px rgba(6,14,24,.06), 0 32px 80px rgba(6,14,24,.13);
	--font-head: 'Montserrat', sans-serif;
	--font-body: 'DM Sans', system-ui, sans-serif;
	--radius: 18px;
	--section-pad: clamp(56px, 7vw, 96px);
	--sp-sm: clamp(24px, 3vw, 40px);
	--sp-md: clamp(44px, 5vw, 72px); /* ref b376a57/ae4bd7b: 72px section rhythm */
	--sp-lg: clamp(64px, 8vw, 110px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
	font-family: var(--font-body);
	background: var(--bg);
	color: var(--t1);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	line-height: 1.6;
}
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
p { margin: 0 0 .9em; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1320px; margin-inline: auto; padding-inline: 5%; }
.component { padding-block: var(--sp-md); }

/* Buttons — .btn-fill / .btn-pill from the reference */
.button {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .3px;
	padding: 12px 26px;
	border-radius: 100px;
	transition: all .2s;
	white-space: nowrap;
	cursor: pointer;
}
.button--primary { color: #fff; background: var(--navy); border: 1.5px solid var(--navy); }
.button--primary:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(15,76,129,.28); }
.button--secondary { color: var(--blue); background: transparent; border: 1.5px solid var(--bdr); }
.button--secondary:hover { border-color: var(--blue); background: rgba(15,76,129,.04); }
.button--text { border: none; padding: 0; color: var(--blue); font-weight: 600; }
.buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* Section headings — .sec-lbl / .sec-h2 from the reference */
.section-heading { max-width: 760px; margin-bottom: 40px; }
.section-heading__eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 10px; font-weight: 700; letter-spacing: 3px;
	text-transform: uppercase; color: var(--blue); margin: 0 0 14px;
}
.section-heading__eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--blue); border-radius: 1px; }
.section-heading__title {
	font-size: clamp(32px, 3.8vw, 52px); font-weight: 800;
	letter-spacing: -1.5px; line-height: 1.03;
}
.section-heading__title em, .section-heading__title i { font-style: italic; color: var(--blue); }
.section-heading__sub { font-size: 17px; color: var(--t2); margin: 14px 0 0; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero:not(.hero--has-video)::before {
	content: ''; position: absolute; top: -180px; right: -120px;
	width: 650px; height: 650px; border-radius: 50%; pointer-events: none;
	background: radial-gradient(ellipse, rgba(190,225,255,.55) 0%, rgba(28,166,218,.18) 35%, transparent 68%);
}
.hero:not(.hero--has-video)::after {
	content: ''; position: absolute; bottom: -80px; left: -60px;
	width: 400px; height: 400px; border-radius: 50%; pointer-events: none;
	background: radial-gradient(ellipse, rgba(15,76,129,.14) 0%, transparent 65%);
}
.hero__inner { position: relative; z-index: 1; display: grid; gap: 32px; align-items: center; }
.hero__inner:has(.hero__media) { grid-template-columns: 1fr 1fr; }
.hero .section-heading { margin-bottom: 0; }
.hero .section-heading__title {
	font-size: clamp(44px, 5.8vw, 78px); font-weight: 800;
	line-height: .99; letter-spacing: -2.5px;
}
.hero--minimal { padding-block: calc(var(--section-pad) * .65); }
.hero--minimal .section-heading__title { font-size: clamp(36px, 4.5vw, 60px); }
.hero--has-video { background: var(--navy); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,20,38,.45), rgba(0,20,38,.62)); }
.hero--has-video .section-heading__title { color: #fff; }
.hero--has-video .section-heading__sub { color: var(--sky); }
.hero--has-video .section-heading__eyebrow { color: var(--sky); }
.hero--has-video .section-heading__eyebrow::before { background: var(--sky); }
.hero--has-video .button--secondary { color: #fff; border-color: rgba(255,255,255,.4); }
.hero--has-video .button--secondary:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* Stats bar */
.stats-bar__grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; margin: 0; }
.stats-bar__stat {
	flex: 1 1 180px; text-align: center; background: var(--w);
	border: 1px solid var(--bdr); border-radius: var(--radius);
	padding: 28px 20px; box-shadow: var(--sh);
}
.stats-bar__value { font-family: var(--font-head); font-size: clamp(28px, 3vw, 40px); font-weight: 800; letter-spacing: -1px; color: var(--navy); }
.stats-bar__label { margin: 4px 0 0; color: var(--t2); font-size: 14px; }

/* Social proof */
.social-proof { padding-block: 28px; border-block: 1px solid var(--bdr2); background: var(--w); }
.social-proof__inner { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: center; }
.social-proof__rating, .social-proof__lives { margin: 0; color: var(--t2); font-size: 14px; }
.social-proof__rating strong, .social-proof__lives strong { font-family: var(--font-head); color: var(--navy); font-weight: 800; font-size: 18px; }
.social-proof__logos { display: flex; flex-wrap: wrap; gap: 22px; list-style: none; margin: 0; padding: 0; align-items: center; }
.social-proof__logos img { height: 30px; width: auto; filter: grayscale(1); opacity: .65; }
.social-proof__logo-text { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--t3); }
.stars { color: var(--hair); letter-spacing: 2px; font-size: 14px; }

/* Cards (base) */
.card {
	background: var(--w);
	border: 1px solid var(--bdr);
	border-radius: var(--radius);
	padding: 26px;
	box-shadow: var(--sh);
	transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh2); }

/* Card grid */
.card-grid__grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card--grid-item__media { margin: -26px -26px 18px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.card--grid-item__media img { width: 100%; height: 180px; object-fit: cover; transition: transform .4s; }
.card:hover .card--grid-item__media img { transform: scale(1.04); }
.card--grid-item__number { font-family: var(--font-head); font-size: 13px; font-weight: 800; letter-spacing: 2px; color: var(--bari); }
.card--grid-item__heading { font-size: 18px; font-weight: 700; letter-spacing: -.3px; margin: 8px 0 6px; }
.card--grid-item__text { color: var(--t2); font-size: 14.5px; margin: 0 0 14px; }
.card--grid-item__link { font-weight: 700; font-size: 13px; }
.card--grid-item__link::after { content: ' →'; }

/* Testimonial card */
.card--testimonial__outcome { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--bari); margin: 0 0 6px; letter-spacing: -.2px; }
.card--testimonial__quote { margin: 8px 0 16px; font-size: 15px; color: var(--t2); font-style: normal; }
.card--testimonial__meta { display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: 13px; color: var(--t3); }
.card--testimonial__name { font-weight: 700; color: var(--navy); }
.card--testimonial__source { color: var(--blue); font-weight: 600; }
.card--testimonial__video { display: inline-block; margin-top: 12px; font-weight: 700; font-size: 13px; color: var(--blue); }

/* Team card (ref 80e512e standardized: horizontal, initials avatar) */
.card--team-member { --svc: var(--bari); display: flex; align-items: center; gap: 22px; padding: 28px 30px; border-radius: 20px; }
.card--team-member__photo img,
.card--team-member__initials {
	width: 78px; height: 78px; border-radius: 50%; object-fit: cover; display: flex;
	align-items: center; justify-content: center; flex-shrink: 0;
}
.card--team-member__initials {
	background: linear-gradient(145deg, color-mix(in srgb, var(--svc) 55%, #fff) 0%, var(--svc) 55%, color-mix(in srgb, var(--svc) 35%, #06121f) 100%);
	font-family: var(--font-head); font-size: 22px; font-weight: 800; color: #fff; letter-spacing: .5px;
}
.card--team-member__name { font-size: 18px; font-weight: 800; letter-spacing: -.2px; margin: 0; }
.card--team-member__role { font-size: 12px; font-weight: 700; color: var(--svc); letter-spacing: 1px; text-transform: uppercase; margin: 6px 0 4px; }
.card--team-member__loc { font-size: 12.5px; color: var(--t3); margin: 0; }

/* Facility card */
.facility-grid__grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card--facility { padding: 0; overflow: hidden; }
.card--facility__body { padding: 22px; }
.card--facility__type { text-transform: uppercase; font-size: 10px; letter-spacing: 2.5px; font-weight: 700; color: var(--bari); margin: 0 0 6px; }
.card--facility__name { font-size: 18px; letter-spacing: -.3px; }
.card--facility__address, .card--facility__hours { font-size: 13.5px; color: var(--t2); }
.card--facility__travel, .card--facility__amenities { list-style: none; padding: 0; margin: 12px 0; font-size: 13.5px; color: var(--t2); }
.card--facility__travel span { font-weight: 700; color: var(--navy); }
.card--facility__staff { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.card--facility__tour { font-weight: 700; font-size: 13px; }

/* Newsroom card */
.resource-cards__grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card--newsroom__metric { font-family: var(--font-head); font-weight: 800; font-size: 20px; letter-spacing: -.5px; color: var(--blue); margin: 0 0 10px; }
.card--newsroom__title { font-size: 16.5px; font-weight: 700; letter-spacing: -.3px; line-height: 1.3; }
.card--newsroom__title a { color: inherit; }
.card--newsroom__excerpt { color: var(--t2); font-size: 14px; }
.card--newsroom__meta { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 12.5px; color: var(--t3); margin: 10px 0 0; }
.card--newsroom__link { display: inline-block; margin-top: 12px; font-weight: 700; font-size: 13px; }
.card--newsroom__link::after { content: ' ↗'; }

/* Numbered steps */
.numbered-steps__list { counter-reset: step; list-style: none; padding: 0; display: grid; gap: 22px; }
.numbered-steps--horizontal .numbered-steps__list { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.numbered-steps__step {
	position: relative; padding: 26px 26px 26px 74px;
	background: var(--w); border: 1px solid var(--bdr); border-radius: var(--radius); box-shadow: var(--sh);
}
.numbered-steps--horizontal .numbered-steps__step { padding: 26px; }
.numbered-steps__step::before {
	counter-increment: step; content: counter(step, decimal-leading-zero) "/";
	position: absolute; left: 26px; top: 26px;
	font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--bari); letter-spacing: 1px;
}
.numbered-steps--horizontal .numbered-steps__step::before { position: static; display: block; margin-bottom: 10px; }
.numbered-steps__heading { font-size: 17px; font-weight: 700; letter-spacing: -.3px; }
.numbered-steps__step p { color: var(--t2); font-size: 14.5px; }
.numbered-steps__details { list-style: none; padding: 0; margin: 10px 0 0; font-size: 13.5px; color: var(--t2); }
.numbered-steps__details li { padding-left: 20px; position: relative; margin-bottom: 4px; }
.numbered-steps__details li::before { content: '✓'; position: absolute; left: 0; color: var(--bari); font-weight: 700; }

/* Tabs */
.tabbed-content__nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tabbed-content__tab {
	font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: .2px;
	padding: 10px 22px; border: 1.5px solid var(--bdr); border-radius: 100px;
	background: var(--w); color: var(--blue); cursor: pointer; transition: all .2s;
}
.tabbed-content__tab:hover { border-color: var(--blue); }
.tabbed-content__tab[aria-selected="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.tabbed-content__badge { font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; margin-left: 8px; color: var(--hair); font-weight: 700; }
.tabbed-content__panel {
	background: var(--w); border: 1px solid var(--bdr); border-radius: var(--radius);
	padding: clamp(24px, 3vw, 40px); box-shadow: var(--sh);
}
.tabbed-content__prose { color: var(--t2); font-size: 15px; max-width: 720px; }
.tabbed-content__checklists { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-block: 22px; }
.tabbed-content__checklists h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--t3); font-family: var(--font-body); font-weight: 700; margin-bottom: 10px; }
.tabbed-content__facts { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); margin-block: 22px; }
.tabbed-content__facts > div { background: var(--bg); border-radius: 12px; padding: 14px 16px; }
.tabbed-content__facts dt { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--t3); font-weight: 700; }
.tabbed-content__facts dd { margin: 2px 0 0; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy); letter-spacing: -.2px; }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding-left: 24px; position: relative; margin-bottom: 8px; color: var(--t2); font-size: 14.5px; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--bari); font-weight: 700; }

/* Comparison table */
.table-scroll { overflow-x: auto; background: var(--w); border: 1px solid var(--bdr); border-radius: var(--radius); box-shadow: var(--sh); }
.comparison-table table { border-collapse: collapse; width: 100%; min-width: 640px; }
.comparison-table th, .comparison-table td { padding: 14px 20px; border-bottom: 1px solid var(--bdr2); text-align: left; font-size: 14px; }
.comparison-table thead th { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: -.2px; color: var(--navy); }
.comparison-table tbody th { font-weight: 600; color: var(--t2); }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .is-highlight { background: rgba(190,225,255,.18); }
.comparison-table thead .is-highlight { color: var(--blue); }
.comparison-table .check { color: var(--bari); font-weight: 800; }
.comparison-table .cross { color: var(--t3); }

/* Journey timeline */
.journey-timeline__track { list-style: none; padding: 0; display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); counter-reset: stage; }
.journey-timeline__stage { border-top: 3px solid var(--bari); padding-top: 14px; }
.journey-timeline__stage::before {
	counter-increment: stage; content: "Step " counter(stage);
	font-size: 10px; text-transform: uppercase; letter-spacing: 2.5px; color: var(--bari); font-weight: 700;
}
.journey-timeline__stage h3 { font-size: 15px; letter-spacing: -.2px; margin: 6px 0 4px; }
.journey-timeline__stage p { font-size: 13.5px; color: var(--t2); margin: 0; }

/* Carousel */
.carousel { position: relative; }
.carousel__track {
	display: grid; grid-auto-flow: column; grid-auto-columns: min(340px, 85%);
	gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
	padding: 4px 4px 12px; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; }
.carousel__arrow {
	position: absolute; top: 40%; width: 42px; height: 42px; border-radius: 50%;
	border: 1px solid var(--bdr); background: var(--w); box-shadow: var(--sh);
	font-size: 20px; color: var(--navy); cursor: pointer; display: grid; place-items: center; z-index: 2; transition: all .2s;
}
.carousel__arrow:hover { border-color: var(--blue); color: var(--blue); }
.carousel__arrow--prev { left: -12px; }
.carousel__arrow--next { right: -12px; }

/* Filter buttons */
.filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-buttons button {
	font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .2px;
	padding: 8px 20px; border-radius: 100px; border: 1.5px solid var(--bdr);
	background: var(--w); color: var(--blue); cursor: pointer; transition: all .2s;
}
.filter-buttons button:hover { border-color: var(--blue); }
.filter-buttons button.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
[data-filterable] [data-service].is-hidden { display: none; }

/* FAQ */
.faq-accordion__group { font-size: 20px; letter-spacing: -.5px; margin: 36px 0 8px; }
.faq-accordion__list { background: var(--w); border: 1px solid var(--bdr); border-radius: var(--radius); box-shadow: var(--sh); padding: 0 26px; }
.faq-item { border-bottom: 1px solid var(--bdr2); }
.faq-item:last-child { border-bottom: none; }
.faq-item__question {
	padding: 18px 36px 18px 0; font-weight: 600; font-size: 15px; color: var(--navy);
	cursor: pointer; list-style: none; position: relative;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::after { content: '+'; position: absolute; right: 4px; top: 16px; color: var(--bari); font-weight: 700; font-size: 18px; }
.faq-item[open] .faq-item__question::after { content: '–'; }
.faq-item__answer { padding: 0 0 18px; color: var(--t2); font-size: 14.5px; max-width: 700px; }
.faq-accordion__cta { margin-top: 28px; color: var(--t2); font-size: 15px; }

/* Content + media */
.content-media__inner { display: grid; gap: 40px; align-items: center; }
.content-media__inner:has(.content-media__media) { grid-template-columns: 1fr 1fr; }
.content-media--flip .content-media__media { order: -1; }
.content-media__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh2); }
.content-media__quote { border-left: 3px solid var(--bari); margin: 22px 0; padding-left: 18px; font-style: italic; color: var(--navy); font-size: 16px; }
.prose { color: var(--t2); font-size: 15px; }
.prose strong { color: var(--navy); }
.prose ul { padding-left: 0; list-style: none; }
.prose ul li { padding-left: 24px; position: relative; margin-bottom: 8px; }
.prose ul li::before { content: '✓'; position: absolute; left: 0; color: var(--bari); font-weight: 700; }

/* CTA banner */
.cta-banner { background: var(--navy); border-radius: 0; color: #fff; }
.cta-banner__inner { text-align: center; }
.cta-banner .section-heading { margin-inline: auto; }
.cta-banner .section-heading__title { color: #fff; }
.cta-banner .section-heading__sub { color: var(--sky); }
.cta-banner .section-heading__eyebrow { color: var(--sky); }
.cta-banner .section-heading__eyebrow::before { background: var(--sky); }
.cta-banner__bullets { text-align: left; display: inline-block; margin-top: 8px; }
.cta-banner .checklist li { color: var(--sky); }
.cta-banner .buttons { justify-content: center; }
.cta-banner .button--secondary { color: #fff; border-color: rgba(255,255,255,.35); }
.cta-banner .button--secondary:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.contact-methods { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; margin-top: 22px; font-size: 14px; font-weight: 600; }
.cta-banner .contact-methods__item { color: var(--sky); }

/* Consultation form */
.consultation-form { background: var(--w); border-top: 1px solid var(--bdr2); }
.consultation-form__inner { display: grid; gap: 48px; grid-template-columns: 1fr 1fr; align-items: start; }
.consultation-form__form { background: var(--bg); border-radius: var(--radius); padding: 32px; border: 1px solid var(--bdr); box-shadow: var(--sh); }
.consultation-form__placeholder { color: var(--t3); font-size: 14px; }
.consultation-form__privacy { font-size: 12px; color: var(--t3); margin-top: 12px; }

/* App promo */
.app-promo { background: var(--navy); color: #fff; }
.app-promo .section-heading__title { color: #fff; }
.app-promo .section-heading__sub { color: var(--sky); }
.app-promo .section-heading__eyebrow { color: var(--sky); }
.app-promo .section-heading__eyebrow::before { background: var(--sky); }
.app-promo .checklist li { color: var(--sky); }
.app-promo__inner { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; align-items: center; }
.app-promo__stores { display: flex; gap: 12px; margin-top: 22px; }
.app-promo .button--secondary { color: #fff; border-color: rgba(255,255,255,.35); }

/* Guided quiz */
.guided-quiz .container { max-width: 880px; }
.guided-quiz__steps { background: var(--w); border: 1px solid var(--bdr); border-radius: var(--radius); box-shadow: var(--sh2); padding: clamp(28px, 4vw, 48px); }
.guided-quiz__step { border: none; }
.guided-quiz__question { font-family: var(--font-head); font-size: 22px; font-weight: 700; letter-spacing: -.5px; color: var(--navy); margin-bottom: 20px; }
.guided-quiz__answers { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.guided-quiz__answer {
	font-family: var(--font-body); padding: 18px; border: 1.5px solid var(--bdr); border-radius: 14px;
	background: var(--w); font-size: 14px; font-weight: 600; color: var(--navy);
	cursor: pointer; text-align: left; transition: all .2s;
}
.guided-quiz__answer:hover { border-color: var(--bari); background: rgba(190,225,255,.12); transform: translateY(-1px); }

/* Article */
.article { background: var(--w); }
.article__header { padding-block: var(--section-pad) 16px; max-width: 780px; }
.article__type { text-transform: uppercase; letter-spacing: 2.5px; font-size: 10px; font-weight: 700; color: var(--bari); margin-bottom: 12px; }
.article__title { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; }
.article__meta { display: flex; flex-wrap: wrap; gap: 4px 16px; font-size: 13px; color: var(--t3); }
.article__author { font-weight: 600; color: var(--t2); }
.article__body { max-width: 780px; padding-block: 16px var(--section-pad); }
.article__body h2, .article__body h3 { letter-spacing: -.5px; margin-top: 1.4em; }
.article__footer { max-width: 780px; padding-bottom: var(--section-pad); }
.article__footer .cta-banner { border-radius: var(--radius); }

/* Prose page (legal) */
.page-prose { padding-block: var(--section-pad); max-width: 780px; }

/* Header */
.site-header {
	position: sticky; top: 0; z-index: 100;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	height: 64px; padding-inline: 5%;
	background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--bdr2);
}
.site-logo { display: flex; align-items: center; }
.site-logo__img { height: 30px; width: auto; }
.site-header nav ul { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 0; padding: 0; }
.site-header nav a { color: var(--navy); font-size: 15px; font-weight: 500; letter-spacing: .1px; transition: color .2s; white-space: nowrap; }
.site-header nav a:hover { color: var(--blue); }
.site-header__phone {
	font-size: 12px; font-weight: 700; color: #fff; letter-spacing: .3px;
	padding: 9px 22px; background: var(--navy); border-radius: 100px; transition: all .2s; white-space: nowrap;
}
.site-header__phone:hover { background: var(--blue); }

/* Footer */
.site-footer { background: var(--navy); color: var(--sky); padding: var(--section-pad) 5% 32px; font-size: 14px; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--sky); }
.site-footer__logo img { height: 30px; width: auto; margin-bottom: 20px; }
.site-footer__mission { max-width: 460px; color: var(--sky); opacity: .85; }
.site-footer nav ul { display: flex; flex-wrap: wrap; gap: 10px 24px; list-style: none; margin: 24px 0 0; padding: 0; font-weight: 500; }
.site-footer__legal { font-size: 12px; opacity: .55; margin-top: 36px; max-width: 880px; line-height: 1.7; }
.site-footer > p:last-child { margin-top: 24px; font-size: 12px; opacity: .55; }

@media (max-width: 860px) {
	.hero__inner:has(.hero__media),
	.content-media__inner:has(.content-media__media),
	.consultation-form__inner,
	.app-promo__inner { grid-template-columns: 1fr; }
	.content-media--flip .content-media__media { order: 0; }
	.site-header nav { display: none; }
}

/* Fidelity pass — top bar, dropdown nav, video-hero details (ref parity) */
.topbar { background: var(--navy); color: #fff; font-size: 13px; }
.topbar__inner { max-width: 1320px; margin-inline: auto; padding: 10px 5%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__phone { color: #fff; font-weight: 600; }
.topbar__announcement { margin: 0; display: flex; align-items: center; gap: 8px; color: var(--sky); }
.topbar__announcement a { color: #fff; }
.topbar__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--stem); box-shadow: 0 0 8px var(--stem); }
.topbar__login { color: rgba(255,255,255,.65); }
.topbar__login:hover { color: #fff; }

.site-header__nav > ul > li { position: relative; }
.site-header__nav .sub-menu {
	display: none; position: absolute; top: 100%; left: -16px; z-index: 60;
	min-width: 220px; padding: 8px; margin: 0; list-style: none;
	background: var(--w); border: 1px solid var(--bdr); border-radius: 14px; box-shadow: var(--sh2);
}
.site-header__nav li:hover > .sub-menu, .site-header__nav li:focus-within > .sub-menu { display: block; }
.site-header__nav .sub-menu li { display: block; }
.site-header__nav .sub-menu a { display: block; padding: 11px 15px 13px; font-size: 14px; font-weight: 600; }
.site-header__nav .menu-item-has-children > a::after { content: ' ⌄'; font-size: 11px; color: var(--t3); }
.site-header__cta { padding: 9px 22px; font-size: 12px; }

/* Video hero: badge-pill eyebrow, two-tone headline, sky primary button */
.hero--has-video .section-heading__eyebrow {
	border: 1px solid rgba(190,225,255,.35); border-radius: 100px;
	padding: 8px 16px; letter-spacing: 1.5px; font-size: 11px; text-transform: none;
	background: rgba(0,43,81,.35); color: #dbe9f7;
}
.hero--has-video .section-heading__eyebrow::before { width: 7px; height: 7px; border-radius: 50%; background: var(--stem); }
.hero--has-video .section-heading__title em,
.hero--has-video .section-heading__title i { font-style: normal; color: var(--baril); display: block; }
.hero--has-video .section-heading__title { letter-spacing: -2.5px; }
.hero--has-video .button--primary { background: var(--sky); border-color: var(--sky); color: var(--navy); }
.hero--has-video .button--primary:hover { background: #fff; border-color: #fff; box-shadow: 0 6px 20px rgba(190,225,255,.35); transform: translateY(-1px); }
.hero--has-video .button--secondary { border: none; padding-block: 12px; }
.hero--has-video .button--secondary::after { content: ' →'; }
.hero--has-video .buttons { gap: 22px; align-items: center; }

/* Signature service gradient cards (ref: 2×2 grid, photo top, gradient body,
   watermark number, white text) */
.card-grid--services .card-grid__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; counter-reset: svc; }
.card-grid--services .card { border: none; color: #fff; position: relative; overflow: hidden; padding: 32px; counter-increment: svc; }
.card-grid--services .card::after {
	content: counter(svc, decimal-leading-zero);
	position: absolute; right: 18px; bottom: -14px;
	font-family: var(--font-head); font-weight: 900; font-size: 120px; line-height: 1;
	color: rgba(255,255,255,.10); pointer-events: none;
}
/* Gradient derived from the linked Service term's Brand color (--svc). */
.card-grid--services .card {
	--svc: var(--blue);
	background: linear-gradient(185deg,
		color-mix(in srgb, var(--svc) 24%, #061423) 0%,
		color-mix(in srgb, var(--svc) 78%, #0b2233) 70%,
		var(--svc) 100%);
}
.card-grid--services .card--grid-item__media { margin: -32px -32px 22px; border-radius: 0; }
.card-grid--services .card--grid-item__media img { height: 240px; }
.card-grid--services .card--grid-item__heading { color: #fff; font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: -.8px; max-width: 12ch; }
.card-grid--services .card--grid-item__text { color: rgba(255,255,255,.82); font-size: 15px; max-width: 46ch; }
.card-grid--services .card--grid-item__link { color: #fff; }
@media (max-width: 760px) { .card-grid--services .card-grid__grid { grid-template-columns: 1fr; } }

/* Google review cards (ref: colored top bar, initials avatar, G mark) */
.card--testimonial-reviews { border-top: 3px solid var(--bdr); }
.card--testimonial__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.card--testimonial__avatar {
	width: 40px; height: 40px; border-radius: 50%; flex: 0 0 40px;
	display: grid; place-items: center;
	background: var(--bg); border: 1px solid var(--bdr);
	font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--blue);
}
.card--testimonial__head-name { display: flex; flex-direction: column; gap: 2px; font-weight: 700; color: var(--navy); font-size: 14px; }
.card--testimonial__g { margin-left: auto; font-family: var(--font-head); font-weight: 800; color: var(--t3); font-size: 18px; }
.card--testimonial-reviews .card--testimonial__quote { font-style: italic; }

/* Video story cards (ref .sc: 9:16 portrait tile, centered play, scrim) */
.card--testimonial-video {
	border: none; color: #fff; position: relative; overflow: hidden;
	aspect-ratio: 9 / 16; min-height: 0; width: 100%;
	padding: 14px; border-radius: 16px;
	display: flex; flex-direction: column; justify-content: flex-end;
}
/* video-story sliders use narrow portrait columns (track is a grid) */
.testimonial-cards .carousel__track { grid-auto-columns: min(210px, 60%); }
.card--testimonial-video > * { position: relative; z-index: 2; }
.card--testimonial-video::before {
	content: '▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 46px; height: 46px; border-radius: 50%; z-index: 2;
	display: grid; place-items: center; font-size: 13px; padding-left: 3px;
	background: rgba(255,255,255,.25); border: 1.5px solid rgba(255,255,255,.55);
	color: #fff; backdrop-filter: blur(8px);
}
.card--testimonial-video::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 45%; z-index: 1;
	background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, transparent 100%); pointer-events: none;
}
.card--testimonial-video .card--testimonial__chip { position: absolute; top: 12px; left: 12px; margin: 0; }
.card--testimonial-video .card--testimonial__quote { display: none; }
.card--testimonial-video .card--testimonial__outcome { font-size: 10.5px; margin: 0 0 3px; opacity: .85; }
.card--testimonial-video .card--testimonial__quote,
.card--testimonial-video .card--testimonial__meta,
.card--testimonial-video .card--testimonial__name,
.card--testimonial-video .card--testimonial__outcome,
.card--testimonial-video .card--testimonial__source,
.card--testimonial-video .card--testimonial__video { color: #fff; }
.card--testimonial-video .stars { color: #FFD97A; }

/* Punch-list pass */

/* Service card chips */
.card--grid-item__badge {
	display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px;
	text-transform: uppercase; color: #fff; background: rgba(6,14,24,.35);
	padding: 6px 12px; border-radius: 100px; margin-bottom: 12px;
}
.card-grid--services .section-heading {
	display: grid; grid-template-columns: 1.2fr 1fr; column-gap: 48px;
	align-items: end; max-width: none;
}
.card-grid--services .section-heading__eyebrow { grid-column: 1; grid-row: 1; }
.card-grid--services .section-heading__title { grid-column: 1; grid-row: 2; max-width: 19ch; }
.card-grid--services .section-heading__sub { grid-column: 2; grid-row: 2; align-self: end; max-width: 46ch; }
@media (max-width: 760px) {
	.card-grid--services .section-heading { grid-template-columns: 1fr; }
	.card-grid--services .section-heading__title, .card-grid--services .section-heading__sub { grid-column: 1; }
	.card-grid--services .section-heading__sub { grid-row: 3; }
}

/* Dark (navy) component theme — ref "Why TreVita" section */
.component--dark { background: linear-gradient(180deg, #032243 0%, var(--navy) 100%); border-top: 3px solid var(--bari); }
.component--dark .section-heading__title { color: #fff; }
.component--dark .section-heading__sub { color: var(--sky); }
.component--dark .section-heading__eyebrow { color: var(--sky); }
.component--dark .section-heading__eyebrow::before { background: var(--sky); }
.component--dark .numbered-steps__step { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); box-shadow: none; }
.component--dark .numbered-steps__heading { color: #fff; }
.component--dark .numbered-steps__step p, .component--dark .numbered-steps__details { color: var(--sky); }
.component--dark .numbered-steps__step::before { color: var(--baril); }

/* Stats bar directly after a video hero reads as part of the hero (ref) */
.hero--has-video + .stats-bar { background: var(--navy); padding-block: 0 56px; }
.hero--has-video + .stats-bar .stats-bar__grid { justify-content: flex-start; gap: 48px; }
.hero--has-video + .stats-bar .stats-bar__stat {
	flex: 0 0 auto; background: transparent; border: none; box-shadow: none;
	text-align: left; padding: 0;
}
.hero--has-video + .stats-bar .stats-bar__value { color: #fff; }
.hero--has-video + .stats-bar .stats-bar__label { color: var(--sky); }
.hero--has-video { padding-block-end: 24px; }

/* Outcome ticker */
.outcome-ticker { padding-block: 18px; background: var(--navy); border-block: 1px solid rgba(255,255,255,.08); overflow: hidden; }
.outcome-ticker__track { display: flex; width: max-content; animation: tv-ticker 40s linear infinite; }
.outcome-ticker__group { display: flex; gap: 48px; padding-right: 48px; }
.outcome-ticker__item { white-space: nowrap; color: var(--sky); font-size: 13.5px; }
.outcome-ticker__item strong { color: #fff; margin-right: 6px; }
@keyframes tv-ticker { to { transform: translateX(-50%); } }

/* Hero bento cards */
.hero__inner--bento { grid-template-columns: 1.2fr 1fr; align-items: center; }
.hero__bento { display: grid; gap: 16px; }
.hero__bento-card {
	background: var(--w); border: 1px solid var(--bdr); border-radius: var(--radius);
	padding: 20px 22px; box-shadow: var(--sh2); position: relative; overflow: hidden;
}
/* ref 0423100: centered gradient accent line, service-page style */
.hero__bento-card::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.hero__bento-card:first-child::before { height: 4px; }
.hero__bento-card:nth-child(2)::before { background: linear-gradient(90deg, transparent, var(--stem), transparent); }
.hero__bento-card:nth-child(2) { margin-left: 28px; }
.hero__bento-card h3 { font-size: 15px; letter-spacing: -.2px; margin-bottom: 4px; }
.hero__bento-card p { font-size: 13px; color: var(--t2); margin: 0; }
.hero--has-video .hero__bento-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); backdrop-filter: blur(8px); }
.hero--has-video .hero__bento-card h3 { color: #fff; }
.hero--has-video .hero__bento-card p { color: var(--sky); }
@media (max-width: 860px) { .hero__inner--bento { grid-template-columns: 1fr; } .hero__bento-card:nth-child(2) { margin-left: 0; } }

/* Footer columns (ref layout) */
.site-footer__inner {
	max-width: 1320px; margin-inline: auto;
	display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
}
.site-footer__col h4 { color: #fff; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; margin-bottom: 14px; }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer__col a { font-size: 14px; color: rgba(255,255,255,.75); font-weight: 400; }
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom { max-width: 1320px; margin: 48px auto 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; }
.site-footer__legal-menu { display: flex; flex-wrap: wrap; gap: 8px 20px; list-style: none; margin: 0 0 16px; padding: 0; }
.site-footer__legal-menu a { font-size: 12px; color: rgba(255,255,255,.6); }
.site-footer__copyright { font-size: 12px; opacity: .55; margin-top: 16px; }
@media (max-width: 860px) { .site-footer__inner { grid-template-columns: 1fr 1fr; } }

/* Scroll-in animation (ref data-r fade-up) */
@media (prefers-reduced-motion: no-preference) {
	.tv-reveal { opacity: 0; transform: translateY(14px); transition: opacity .45s ease, transform .45s ease; }
	.tv-reveal.in-view { opacity: 1; transform: none; }
}

/* Cycling hero word */
.section-heading__title em[data-words] { display: inline-block; min-width: 6ch; transition: opacity .35s, transform .35s; }
.section-heading__title em.is-cycling { opacity: 0; transform: translateY(.35em); }

/* Per-block spacing utilities (Padding/Margin selects on every component) */
.component.pt-none { padding-top: 0; }
.component.pt-sm { padding-top: var(--sp-sm); }
.component.pt-md { padding-top: var(--sp-md); }
.component.pt-lg { padding-top: var(--sp-lg); }
.component.pb-none { padding-bottom: 0; }
.component.pb-sm { padding-bottom: var(--sp-sm); }
.component.pb-md { padding-bottom: var(--sp-md); }
.component.pb-lg { padding-bottom: var(--sp-lg); }
.component.mt-sm { margin-top: var(--sp-sm); }
.component.mt-md { margin-top: var(--sp-md); }
.component.mt-lg { margin-top: var(--sp-lg); }
.component.mb-sm { margin-bottom: var(--sp-sm); }
.component.mb-md { margin-bottom: var(--sp-md); }
.component.mb-lg { margin-bottom: var(--sp-lg); }

/* Re-asserted after utilities so coupled sections stay coupled */
.hero--has-video { padding-block-end: 24px; }
.hero--has-video + .stats-bar { background: var(--navy); padding-block: 0 44px; }
.outcome-ticker { padding-block: 18px; }
.social-proof { padding-block: 28px; }
.social-proof__label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--t3); }
.social-proof__logo-text { border: 1px solid var(--bdr); border-radius: 8px; padding: 8px 14px; display: inline-block; }
.team-grid__row { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

/* Carousel polish: room for card shadows (no hard clip top/bottom) and
   soft transparent fade at the sides instead of a hard cut-off. */
.carousel__track {
	padding: 32px 40px 72px;
	margin: -32px -40px -60px;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
	mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.carousel__track { scroll-padding-inline: 40px; }
/* Arrows straddle the snapped card edge 50/50 — never over text */
.carousel__arrow--prev { left: -21px; }
.carousel__arrow--next { right: -21px; }

/* FAQ hover: subtle lift + color shift on the question row */
.faq-item__question { transition: color .2s ease, transform .25s ease; }
.faq-item__question::after { transition: color .2s ease, transform .25s ease; }
@media (prefers-reduced-motion: no-preference) {
	.faq-item:not([open]) .faq-item__question:hover { transform: translateY(-1px); }
	.faq-item:not([open]) .faq-item__question:hover::after { transform: translateY(1px); }
}
.faq-item__question:hover { color: var(--blue); }
.faq-item__question:hover::after { color: var(--blue); }

/* ── PX pass: home hero rebuilt to reference .vhero spec ─────────────── */
.hero--has-video {
	display: flex; align-items: center;
	min-height: 600px; height: calc(100vh - 105px); max-height: 820px;
	padding-block: 0;
}
.hero--has-video .hero__inner { width: 100%; }
.hero__scrim {
	background:
		linear-gradient(90deg, rgba(0,18,36,.84) 0%, rgba(0,24,46,.55) 46%, rgba(0,30,58,.22) 100%),
		linear-gradient(0deg, rgba(0,15,30,.6) 0%, transparent 42%);
}
.hero--has-video::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 4;
	background: linear-gradient(90deg, var(--blue) 0%, var(--bari) 35%, var(--stem) 65%, var(--sky) 100%);
}
.hero--has-video .section-heading__title { font-size: clamp(44px, 6vw, 80px); line-height: 1.02; margin-bottom: 22px; }
.hero--has-video .section-heading__sub {
	font-size: clamp(15px, 1.5vw, 18px); line-height: 1.7;
	color: rgba(224,238,255,.88); max-width: 580px; margin-bottom: 0;
}
.hero--has-video .buttons { margin-top: 34px; gap: 12px 22px; }
.hero--has-video .button--primary {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 16px 32px; font-size: 14.5px; letter-spacing: .2px;
}
.hero--has-video .button--primary::before {
	content: ''; width: 17px; height: 17px; background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.hero--has-video .button--secondary { font-size: 14px; padding: 15px 6px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; margin-top: 46px; }
.hero__trust-item { display: flex; align-items: center; gap: 11px; }
.hero__trust-item .stars { font-size: 11px; letter-spacing: 1.5px; color: #E8B93E; }
.hero__trust-n { font-family: var(--font-head); font-size: 23px; font-weight: 800; color: #fff; letter-spacing: -.5px; line-height: 1; }
.hero__trust-l { font-size: 11px; color: rgba(190,225,255,.72); font-weight: 500; line-height: 1.35; max-width: 120px; }
.hero__trust-div { width: 1px; height: 32px; background: rgba(190,225,255,.2); }
/* Certs card (reference .certs-box) directly after the video hero */
.hero--has-video + .social-proof { background: transparent; border: none; padding: 0 5% 28px; }
.hero--has-video + .social-proof .social-proof__inner {
	background: var(--w); border: 1px solid var(--bdr); border-radius: 18px;
	padding: 24px 32px; flex-direction: column; gap: 16px; max-width: 1320px; margin-inline: auto;
}
.hero--has-video + .social-proof .social-proof__label { font-size: 9.5px; color: var(--blue); }
/* Topbar announcement details */
.topbar__announcement strong { color: #fff; }
.topbar__announcement a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; margin-left: 4px; }
.topbar__phone { display: inline-flex; align-items: center; gap: 8px; }
/* Screenshot mode (?tvnoanim=1): freeze reveals and cycling */
.tv-noanim .tv-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.tv-noanim .outcome-ticker__track { animation: none !important; }

/* ══ PX pass 2 — section-by-section parity with the reference build ══ */

/* Topbar (ref .ann) */
.topbar { font-size: 11.5px; font-weight: 500; letter-spacing: .2px; color: rgba(190,225,255,.75); }
.topbar__inner { gap: 24px; }
.topbar__phone { font-weight: 700; font-size: 11.5px; }
.topbar__announcement { flex: 1; justify-content: center; color: rgba(190,225,255,.75); }
.topbar__announcement a { color: var(--sky); text-decoration-color: rgba(190,225,255,.3); }
.topbar__dot { width: 6px; height: 6px; box-shadow: none; background: var(--baril); }
.topbar__login { color: rgba(190,225,255,.6); font-size: 11.5px; }

/* Header (ref nav) */
.site-header { background: rgba(246,248,251,.95); backdrop-filter: blur(20px); border-bottom-color: var(--bdr); }
.site-logo__img { height: 46px; }
.site-header__right { display: flex; align-items: center; gap: 22px; }
.site-header__phone-link { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--navy); white-space: nowrap; transition: color .2s; }
.site-header__phone-link svg { color: var(--blue); flex-shrink: 0; }
.site-header__phone-link:hover { color: var(--blue); }
@media (max-width: 1100px) { .site-header__phone-link { display: none; } }

/* Hero: keep "Transform your life" on one line (ref .vhero-h1 max-width 820px) */
.hero--has-video { height: calc(100vh - 64px); }
.hero--has-video .section-heading { max-width: 820px; }
.hero--has-video .section-heading__title em,
.hero--has-video .section-heading__title i { color: #8FD4F0; }

/* Certs card (ref .certs-box): 1176px box, dashed logo placeholders + pills */
.hero--has-video + .social-proof .social-proof__inner { max-width: 1176px; padding: 24px 32px; gap: 16px; }
.social-proof__logos { gap: 10px; justify-content: center; }
.social-proof__logo-ph { width: 104px; height: 40px; border-radius: 8px; background: var(--bg); border: 1.5px dashed var(--bdr2); display: flex; align-items: center; justify-content: center; }
.social-proof__logo-ph span { font-size: 8px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--t3); }
.social-proof__pills { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; list-style: none; margin: 0; padding: 0; }
.social-proof__pill { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 600; color: var(--t2); background: rgba(15,76,129,.05); border: 1px solid rgba(15,76,129,.1); padding: 5px 14px; border-radius: 100px; }
.social-proof__pill::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--blue); display: block; flex-shrink: 0; }

/* Services grid (ref .services/.scard) */
.card-grid--services { background: linear-gradient(180deg, var(--bg) 0%, #EEF5FF 50%, var(--bg) 100%); }
.card-grid--services .card-grid__grid { gap: 14px; }
.card-grid--services .card { border-radius: 22px; display: flex; flex-direction: column; min-height: 520px; }
.card-grid--services .card--grid-item__media { margin: -32px -32px 26px; }
.card-grid--services .card--grid-item__media img { height: 220px; filter: saturate(.78) contrast(1.05) brightness(1.02) sepia(.14); }
.card-grid--services .card--grid-item__heading { font-size: 24px; letter-spacing: -.5px; margin: 0 0 10px; max-width: 12ch; }
.card-grid--services .card--grid-item__badge {
	align-self: flex-start; font-size: 9px; letter-spacing: 2.5px; padding: 5px 12px;
	background: rgba(255,255,255,.12); margin-bottom: 20px;
}
.card-grid--services .card .card--grid-item__badge {
	color: color-mix(in srgb, var(--svc) 35%, #fff);
	border: 1px solid color-mix(in srgb, var(--svc) 30%, transparent);
}
.card-grid--services .card--grid-item__text { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.6); max-width: 46ch; margin: 0; }
.card-grid--services .card--grid-item__link { margin-top: auto; padding-top: 22px; font-size: 12px; letter-spacing: .3px; }
.card-grid--services .card::after { font-size: 100px; letter-spacing: -5px; right: 16px; bottom: -10px; }

/* Quiz (ref .quiz — dark glass card on navy) */
.guided-quiz { background: var(--navy); position: relative; overflow: hidden; }
.guided-quiz::before { content: ''; position: absolute; top: -180px; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(ellipse, rgba(28,166,218,.45) 0%, rgba(15,76,129,.6) 35%, transparent 65%); pointer-events: none; }
.guided-quiz::after { content: ''; position: absolute; bottom: -60px; right: 4%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(ellipse, rgba(44,204,211,.18) 0%, rgba(190,225,255,.06) 50%, transparent 70%); pointer-events: none; }
.guided-quiz .container { max-width: 660px; position: relative; z-index: 2; padding-inline: 0; }
.guided-quiz .section-heading { text-align: center; margin: 0 auto 36px; max-width: none; }
.guided-quiz .section-heading__eyebrow { color: rgba(190,225,255,.45); }
.guided-quiz .section-heading__eyebrow::before { background: rgba(190,225,255,.3); }
.guided-quiz .section-heading__title { color: #fff; font-size: clamp(32px, 4vw, 50px); letter-spacing: -1.5px; line-height: 1.04; margin-bottom: 10px; }
.guided-quiz .section-heading__sub { font-size: 14.5px; color: rgba(190,225,255,.45); line-height: 1.8; margin-top: 0; }
.guided-quiz__steps { background: rgba(255,255,255,.06); border: 1.5px solid rgba(190,225,255,.22); border-radius: 22px; padding: 38px 40px; backdrop-filter: blur(16px); box-shadow: 0 0 60px rgba(28,166,218,.18), 0 0 120px rgba(15,76,129,.25); }
.guided-quiz__progress { display: flex; gap: 5px; margin-bottom: 26px; }
.guided-quiz__seg { height: 3px; flex: 1; border-radius: 2px; background: rgba(190,225,255,.15); }
.guided-quiz__seg.is-on { background: var(--sky); }
.guided-quiz__question { font-size: 19px; color: #fff; margin-bottom: 22px; line-height: 1.35; letter-spacing: 0; }
.guided-quiz__answers { grid-template-columns: 1fr 1fr; gap: 9px; }
.guided-quiz__answer { background: rgba(255,255,255,.04); border: 1.5px solid rgba(190,225,255,.15); color: rgba(190,225,255,.65); padding: 13px 16px; border-radius: 10px; font-size: 13px; font-weight: 500; line-height: 1.4; }
.guided-quiz__answer:hover { border-color: rgba(190,225,255,.5); color: #fff; background: rgba(190,225,255,.1); transform: none; }
.guided-quiz__answer.is-picked { background: rgba(28,166,218,.22); border-color: var(--bari); color: #fff; font-weight: 600; }
.guided-quiz__foot { margin-top: 22px; display: flex; justify-content: flex-end; }
.guided-quiz__next { background: var(--sky); color: var(--navy); border: none; padding: 11px 28px; border-radius: 100px; font-weight: 700; font-size: 12.5px; cursor: pointer; font-family: var(--font-body); letter-spacing: .3px; transition: all .2s; }
.guided-quiz__next:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(190,225,255,.2); }
@media (max-width: 768px) { .guided-quiz__answers { grid-template-columns: 1fr; } .guided-quiz .container { padding-inline: 5%; } }

/* Testimonials (ref .testi): heading row + rating badge, small top-right arrows */
.testimonial-carousel__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.testimonial-carousel__head .section-heading { margin-bottom: 0; }
.testimonial-carousel__head .section-heading__sub { display: none; } /* shown inside the badge (ref .tbs-note) */
.testimonial-carousel .section-heading__title { font-size: clamp(30px, 3.5vw, 46px); letter-spacing: -1.2px; }
.testimonial-badge { display: flex; align-items: center; gap: 14px; background: var(--bg); border: 1px solid var(--bdr); border-radius: 14px; padding: 14px 22px; }
.testimonial-badge__stars { color: #F5C518; font-size: 14px; letter-spacing: 2px; display: block; line-height: 1.2; }
.testimonial-badge__n { font-family: var(--font-head); font-size: 26px; font-weight: 800; letter-spacing: -1px; color: var(--navy); display: block; line-height: 1.1; }
.testimonial-badge__l { font-size: 10px; font-weight: 500; color: var(--t2); display: block; }
.testimonial-badge__div { width: 1px; height: 36px; background: var(--bdr); }
.testimonial-badge__trust { font-size: 10.5px; font-weight: 700; color: var(--blue); background: rgba(15,76,129,.08); padding: 4px 12px; border-radius: 100px; display: inline-block; }
.testimonial-badge__note { font-size: 10.5px; color: var(--navy); max-width: 180px; line-height: 1.55; font-style: italic; margin: 4px 0 0; }
.testimonial-badge__cta { background: var(--navy); color: #fff; font-size: 11.5px; font-weight: 700; padding: 9px 20px; border-radius: 100px; border: 1.5px solid var(--navy); transition: all .2s; white-space: nowrap; }
.testimonial-badge__cta:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.testimonial-carousel .carousel__arrow { width: 32px; height: 32px; font-size: 13px; color: var(--t3); border: 1.5px solid var(--bdr); box-shadow: none; }
.testimonial-carousel .carousel__arrow:hover { color: var(--blue); border-color: var(--blue); }
.testimonial-carousel .carousel__arrow--prev { left: auto; right: 39px; top: -46px; }
.testimonial-carousel .carousel__arrow--next { right: 0; top: -46px; }

/* Google review cards (ref .rc) — data-service slugs are full ("bariatric-surgery") */
.card--testimonial-reviews { border-top-width: 5px; border-radius: 16px; padding: 22px; }
.card--testimonial__avatar { width: 36px; height: 36px; flex-basis: 36px; font-size: 11px; background: var(--blue); border: none; color: #fff; }
.card--testimonial__head-name { font-size: 12px; }
.card--testimonial__head-name .stars { color: #F5C518; font-size: 11px; letter-spacing: 1px; }
.card--testimonial-reviews .card--testimonial__quote { font-size: 12.5px; line-height: 1.8; margin: 0 0 10px; }
.card--testimonial-reviews .card--testimonial__meta { font-size: 9.5px; font-weight: 600; letter-spacing: .3px; color: var(--t3); }

/* Why TreVita (ref .why): two-column, sticky intro, accent-bordered rows */
.numbered-steps.component--dark { background: var(--navy); border-top: 4px solid var(--bari); position: relative; overflow: hidden; }
.numbered-steps.component--dark::before { content: ''; position: absolute; top: -100px; right: -8%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(ellipse, rgba(44,204,211,.18) 0%, rgba(15,76,129,.35) 40%, transparent 68%); pointer-events: none; }
.numbered-steps.component--dark::after { content: ''; position: absolute; bottom: -60px; left: 3%; width: 450px; height: 450px; border-radius: 50%; background: radial-gradient(ellipse, rgba(28,166,218,.22) 0%, rgba(15,76,129,.3) 45%, transparent 68%); pointer-events: none; }
.numbered-steps.component--dark .container { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(48px, 7vw, 100px); align-items: start; position: relative; z-index: 2; }
.numbered-steps.component--dark .section-heading { position: sticky; top: 80px; margin-bottom: 0; }
.numbered-steps.component--dark .section-heading__eyebrow { color: rgba(190,225,255,.62); font-size: 11px; }
.numbered-steps.component--dark .section-heading__eyebrow::before { background: rgba(190,225,255,.3); }
.numbered-steps.component--dark .section-heading__title { font-size: clamp(32px, 3.8vw, 50px); margin-bottom: 16px; }
.numbered-steps.component--dark .section-heading__sub { font-size: 16px; color: rgba(190,225,255,.7); line-height: 1.75; margin-top: 0; }
.numbered-steps.component--dark .numbered-steps__list { gap: 0; }
.numbered-steps.component--dark .numbered-steps__step {
	background: transparent; border: none; box-shadow: none; border-radius: 0;
	border-bottom: 1px solid rgba(190,225,255,.07);
	border-left: 4px solid var(--bari);
	padding: 32px 0 32px 90px;
}
.numbered-steps.component--dark .numbered-steps__step:first-child { border-top: 1px solid rgba(190,225,255,.07); }
.numbered-steps.component--dark .numbered-steps__step::before { left: 20px; top: 34px; font-size: 13px; letter-spacing: .5px; color: var(--bari); }
.numbered-steps.component--dark .numbered-steps__step:nth-child(2) { border-left-color: var(--stem); }
.numbered-steps.component--dark .numbered-steps__step:nth-child(2)::before { color: var(--stem); }
.numbered-steps.component--dark .numbered-steps__step:nth-child(3) { border-left-color: var(--sky); }
.numbered-steps.component--dark .numbered-steps__step:nth-child(3)::before { color: var(--sky); }
.numbered-steps.component--dark .numbered-steps__step:nth-child(4) { border-left-color: var(--baril); }
.numbered-steps.component--dark .numbered-steps__step:nth-child(4)::before { color: var(--baril); }
.numbered-steps.component--dark .numbered-steps__step:nth-child(5) { border-left-color: var(--bari); }
.numbered-steps.component--dark .numbered-steps__step:nth-child(5)::before { color: var(--bari); }
.numbered-steps.component--dark .numbered-steps__heading { font-size: 16px; letter-spacing: -.2px; margin-bottom: 7px; line-height: 1.25; }
.numbered-steps.component--dark .numbered-steps__step p { font-size: 16px; line-height: 1.75; color: rgba(190,225,255,.7); }
@media (max-width: 1100px) {
	.numbered-steps.component--dark .container { grid-template-columns: 1fr; }
	.numbered-steps.component--dark .section-heading { position: static; }
}

/* Experience cards (ref .exp/.ecard): gradient video tile above each card body */
.home .card-grid--features { background: linear-gradient(180deg, var(--bg) 0%, #EBF5FF 50%, var(--bg) 100%); }
.home .card-grid--features .section-heading { display: grid; grid-template-columns: 1fr auto; column-gap: 30px; align-items: end; max-width: none; margin-bottom: 48px; }
.home .card-grid--features .section-heading__eyebrow { grid-column: 1; grid-row: 1; }
.home .card-grid--features .section-heading__title { grid-column: 1; grid-row: 2; font-size: clamp(30px, 3.5vw, 46px); letter-spacing: -1.2px; max-width: 21ch; }
.home .card-grid--features .section-heading__sub { grid-column: 2; grid-row: 2; align-self: end; font-size: 14px; line-height: 1.8; max-width: 360px; margin: 0; }
.home .card-grid--features .card-grid__grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
.home .card-grid--features .card { padding: 0 0 20px; border-radius: 18px; overflow: hidden; }
.home .card-grid--features .card::before {
	content: '▶'; display: flex; align-items: center; justify-content: center;
	aspect-ratio: 9 / 16; margin: 0 0 18px; font-size: 13px; color: #fff;
	background:
		radial-gradient(circle at center, rgba(255,255,255,.22) 0 20px, rgba(255,255,255,.45) 20px 21.5px, transparent 22px),
		linear-gradient(165deg, #46C1EF 0%, #0F4C81 55%, #002B51 100%);
}
.home .card-grid--features .card:nth-child(2)::before {
	background:
		radial-gradient(circle at center, rgba(255,255,255,.22) 0 20px, rgba(255,255,255,.45) 20px 21.5px, transparent 22px),
		linear-gradient(165deg, #BEE1FF 0%, #0F4C81 50%, #002B51 100%);
}
.home .card-grid--features .card:nth-child(3)::before {
	background:
		radial-gradient(circle at center, rgba(255,255,255,.22) 0 20px, rgba(255,255,255,.45) 20px 21.5px, transparent 22px),
		linear-gradient(165deg, #90CFFF 0%, #0A3A6E 55%, #001D38 100%);
}
.home .card-grid--features .card:nth-child(4)::before {
	background:
		radial-gradient(circle at center, rgba(255,255,255,.22) 0 20px, rgba(255,255,255,.45) 20px 21.5px, transparent 22px),
		linear-gradient(165deg, #BEE1FF 0%, #083060 55%, #001020 100%);
}
.home .card-grid--features .card--grid-item__heading { font-size: 13px; letter-spacing: -.1px; margin: 0 18px 5px; }
.home .card-grid--features .card--grid-item__text { font-size: 11.5px; line-height: 1.65; margin: 0 18px; }
@media (max-width: 1100px) { .home .card-grid--features .card-grid__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
	.home .card-grid--features .section-heading { grid-template-columns: 1fr; }
	.home .card-grid--features .section-heading__sub { grid-column: 1; grid-row: 3; }
	/* Ref @768: one-at-a-time swipe carousel (.exp-grid → flex + scroll-snap) */
	.home .card-grid--features .card-grid__grid {
		display: flex; grid-template-columns: none;
		overflow-x: auto; -webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory; scroll-padding: 0 5%;
		gap: 14px; padding-bottom: 8px;
	}
	.home .card-grid--features .card-grid__grid::-webkit-scrollbar { height: 0; }
	.home .card-grid--features .card { flex: 0 0 84%; scroll-snap-align: center; }
	.home .card-grid--features .card::before { aspect-ratio: 3 / 4; }
}

/* Included band (ref .incl) — restyled cta-banner, tied to the experience grid */
.home .cta-banner { background: transparent; color: inherit; padding-block: 0; margin-top: calc(-1 * var(--sp-md) + 16px); padding-bottom: var(--sp-md); }
.home .cta-banner__inner {
	max-width: 1176px; text-align: left; position: relative;
	background: linear-gradient(135deg, rgba(15,76,129,.1) 0%, rgba(28,166,218,.08) 50%, rgba(190,225,255,.14) 100%);
	border: 1.5px solid rgba(15,76,129,.2); border-radius: 18px; padding: 28px 34px;
}
.home .cta-banner .section-heading { margin: 0 0 20px; max-width: none; }
.home .cta-banner .section-heading__title { color: var(--blue); font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; line-height: 1.4; margin: 0; }
.home .cta-banner .section-heading__sub { position: absolute; top: 28px; right: 34px; margin: 0; background: var(--blue); color: #fff; font-size: 9.5px; font-weight: 700; padding: 4px 13px; border-radius: 100px; }
.home .cta-banner__bullets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 0; }
.home .cta-banner .checklist li { color: var(--t1); font-size: 12.5px; line-height: 1.6; font-weight: 500; padding-left: 16px; margin: 0; }
.home .cta-banner .checklist li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); top: 6px; opacity: .8; }
@media (max-width: 1100px) { .home .cta-banner__bullets { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .home .cta-banner__bullets { grid-template-columns: 1fr; } }

/* Contact (ref .contact): light bg, 1fr/1.15fr, white form card, pill channels */
.consultation-form { background: var(--bg); border-top: 1px solid var(--bdr); }
.consultation-form__inner { max-width: 1100px; grid-template-columns: 1fr 1.15fr; gap: 80px; padding-inline: 0; }
@media (max-width: 1180px) { .consultation-form__inner { padding-inline: 5%; } }
.consultation-form .section-heading__title { font-size: clamp(32px, 4vw, 52px); line-height: 1.06; letter-spacing: -1.5px; }
.consultation-form .section-heading__sub { font-size: 14.5px; line-height: 1.85; max-width: 400px; }
.consultation-form .contact-methods { justify-content: flex-start; margin-top: 36px; gap: 10px; }
.consultation-form .contact-methods__item { display: inline-flex; align-items: center; gap: 8px; background: var(--w); border: 1.5px solid var(--bdr); color: var(--t2); padding: 10px 18px; border-radius: 100px; font-size: 12px; font-weight: 600; transition: all .2s; }
.consultation-form .contact-methods__item:hover { border-color: var(--blue); color: var(--blue); background: rgba(15,76,129,.04); }
.consultation-form__form { background: var(--w); border: 1px solid var(--bdr); border-radius: 22px; padding: 42px 38px; box-shadow: var(--sh2); }

/* Footer (ref canonical footer) */
.site-footer { background: #010D1C; border-top: 1px solid rgba(190,225,255,.06); padding: 60px 5% 28px; font-size: 13px; }
.site-footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; }
.site-footer__logo img { height: 46px; margin-bottom: 18px; }
.site-footer__mission { font-size: 13px; color: rgba(190,225,255,.6); line-height: 1.85; max-width: 280px; opacity: 1; margin-bottom: 18px; }
.site-footer__pills { display: flex; gap: 7px; flex-wrap: wrap; margin: 0 0 16px; }
.site-footer__pill { background: rgba(190,225,255,.08); border: 1px solid rgba(190,225,255,.18); color: rgba(190,225,255,.7); padding: 5px 12px; border-radius: 100px; font-size: 10px; font-weight: 600; transition: all .2s; }
.site-footer__pill:hover { color: rgba(190,225,255,.95); border-color: rgba(190,225,255,.35); }
.site-footer__soc { display: flex; gap: 8px; }
.site-footer__sb { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(190,225,255,.18); display: flex; align-items: center; justify-content: center; background: rgba(190,225,255,.06); transition: all .2s; }
.site-footer__sb:hover { border-color: rgba(190,225,255,.35); background: rgba(190,225,255,.12); }
.site-footer__sb svg { width: 15px; height: 15px; }
.site-footer__col h4 { font-size: 9px; letter-spacing: 2.5px; color: rgba(190,225,255,.55); margin-bottom: 16px; }
.site-footer__col nav ul { display: block; margin: 0; }
.site-footer__col nav li { margin-bottom: 9px; }
.site-footer__col a { font-size: 13px; color: rgba(190,225,255,.62); }
.site-footer__col a:hover { color: rgba(190,225,255,.95); }
.site-footer__bottom { margin-top: 52px; border-top: 1px solid rgba(190,225,255,.1); padding-top: 20px; }
.site-footer__legal-menu { justify-content: center; gap: 8px 20px; margin: 0 0 16px; }
.site-footer__legal-menu a { font-size: 11px; color: rgba(190,225,255,.55); }
.site-footer__legal-menu a:hover { color: rgba(190,225,255,.85); }
.site-footer__copyright { text-align: center; font-size: 11px; color: rgba(190,225,255,.45); opacity: 1; margin-top: 0; }

/* ── Mobile menu (ref pattern: burger → white dropdown panel) ────────── */
.site-header__burger { display: none; }
@media (max-width: 860px) {
	.topbar__announcement { display: none; }
	.site-header { position: sticky; }
	.site-header__burger {
		display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
		width: 40px; height: 40px; padding: 8px;
		background: none; border: none; cursor: pointer;
	}
	.site-header__burger span { display: block; height: 2.5px; width: 100%; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .2s; }
	.site-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
	.site-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.site-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
	.site-header__phone-link { display: none; }
	.site-header__cta { padding: 9px 18px; }
	/* Panel */
	.site-header .site-header__nav {
		display: none;
		position: absolute; top: 100%; left: 0; right: 0; z-index: 60;
		background: var(--w); border-bottom: 1px solid var(--bdr);
		box-shadow: var(--sh2); padding: 12px 5% 22px;
		max-height: calc(100vh - 105px); overflow-y: auto;
	}
	.site-header.menu-open .site-header__nav { display: block; }
	.site-header .site-header__nav > ul { display: block; }
	.site-header__nav > ul > li { border-bottom: 1px solid var(--bdr2); }
	.site-header__nav > ul > li:last-child { border-bottom: none; }
	.site-header__nav > ul > li > a {
		display: flex; align-items: center; justify-content: space-between;
		padding: 18px 2px; font-size: 21px; font-weight: 600; letter-spacing: -.3px;
	}
	.site-header__nav .menu-item-has-children > a::after {
		content: ''; width: 10px; height: 10px; margin-left: 12px;
		border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
		transform: rotate(45deg); transition: transform .2s;
	}
	.site-header__nav .menu-item-has-children.is-open > a::after { transform: rotate(225deg); }
	/* Submenus: accordion instead of hover dropdown */
	.site-header__nav .sub-menu { display: none; position: static; min-width: 0; border: none; box-shadow: none; border-radius: 0; padding: 0 0 12px; }
	.site-header__nav li:hover > .sub-menu, .site-header__nav li:focus-within > .sub-menu { display: none; }
	.site-header__nav .menu-item-has-children.is-open > .sub-menu { display: block; }
	.site-header__nav .sub-menu a { padding: 10px 16px; font-size: 16px; color: var(--t2); font-weight: 500; }
}

/* ══ Mobile parity pass (390px loop) — must stay after the desktop overrides
   above so the cascade favors these at small widths ══ */
@media (max-width: 860px) {
	/* Hero collapses to natural height (ref .vhero @860) */
	.hero--has-video { height: auto; min-height: 0; max-height: none; padding-block: 54px 58px; }
	.hero__trust { gap: 14px 22px; margin-top: 36px; }
	.hero__trust-div { display: none; }

	/* Carousel: desktop -40px side bleed exceeds the container's 5% padding
	   at narrow widths and pushed the track past the viewport edge */
	.carousel__track {
		margin: -32px -5vw -60px;
		padding: 32px 5vw 72px;
		scroll-padding-inline: 5vw;
		-webkit-mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
		mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
		grid-auto-columns: 84%;
	}

	/* Testimonials: heading row stacks, badge wraps (ref .testi-head-row @768) */
	.testimonial-carousel__head { flex-direction: column; align-items: flex-start; }
	.testimonial-badge { flex-wrap: wrap; max-width: 100%; row-gap: 10px; }

	/* Footer columns (ref .ft-top @768) — re-asserted after the desktop
	   4-col override that otherwise wins the cascade at every width */
	.site-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }

	/* Included banner (ref .incl @768) — badge stays pinned top-right */
	.home .cta-banner__inner { padding: 24px 20px; }
	.home .cta-banner .section-heading__sub { top: 24px; right: 20px; }
	.home .cta-banner .section-heading__title { max-width: 20ch; }

	/* Contact stacks (ref .contact-in @1100) — re-asserted after the
	   desktop 1fr/1.15fr override that otherwise wins the cascade */
	.consultation-form__inner { grid-template-columns: 1fr; gap: 56px; }
	.consultation-form__form { padding: 30px 22px; }
}

@media (max-width: 600px) {
	/* Ref .vhero-h1 / .vhero-eyebrow @600 */
	.hero--has-video .section-heading__title { font-size: 38px; letter-spacing: -1px; line-height: 1.06; }
	.hero--has-video .section-heading__eyebrow { font-size: 10.5px; letter-spacing: .5px; padding: 6px 14px 6px 12px; }
	/* Cycling word never wraps (ref .cw is nowrap inside an overflow-hidden
	   line); longest word overflows ~1px on the narrowest phones and clips */
	.section-heading__title em[data-words] { white-space: nowrap; max-width: 100%; overflow: hidden; }
	.guided-quiz__steps { padding: 28px 22px; }
}

@media (max-width: 520px) {
	/* Ref .ft-top @520 */
	.site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Service-driven color system ──────────────────────────────────────
   Each service term carries a Brand color (ACF color picker on the term).
   Cards expose it as --svc via an inline style; everything below derives
   from that one value. --svc falls back to the site blue when unset. */
.card--testimonial { --svc: var(--blue); }
.card--testimonial-reviews { border-top-color: var(--svc); }
.card--testimonial-reviews .card--testimonial__avatar { background: var(--svc); color: #fff; border: none; }
.card--testimonial-video {
	background: linear-gradient(160deg, color-mix(in srgb, var(--svc) 26%, #071626), var(--svc));
}
.card--testimonial__chip {
	display: inline-block; align-self: flex-start; margin-bottom: 12px;
	font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
	color: #fff; background: color-mix(in srgb, var(--svc) 82%, #fff);
	padding: 6px 13px; border-radius: 100px;
	box-shadow: 0 2px 10px rgba(6,14,24,.25);
}
.card--testimonial-video { position: relative; }
.card--testimonial__service { color: var(--t3); }
.card--testimonial__service a { color: inherit; }
.card--testimonial__service a:hover { color: var(--svc); }

/* ── Candidacy quiz app (v4) ──────────────────────────────────────── */
.tv-quiz { max-width: 660px; margin-inline: auto; }
.tvq-progress { display: flex; gap: 8px; margin-bottom: 22px; }
.tvq-progress > div { flex: 1; }
.tvq-seg::before { content: ''; display: block; height: 4px; border-radius: 2px; background: rgba(190,225,255,.22); }
.tvq-seg.is-on::before { background: var(--baril); }
.tvq-seg__label { display: block; margin-top: 6px; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(190,225,255,.6); }
.tvq-seg.is-on .tvq-seg__label { color: #fff; }
.tvq-card {
	background: rgba(255,255,255,.06); border: 1.5px solid rgba(190,225,255,.22);
	border-radius: 18px; padding: clamp(24px, 4vw, 40px); position: relative;
}
.tvq-back { position: absolute; top: 14px; left: 18px; background: none; border: none; color: rgba(190,225,255,.7); font-size: 12px; cursor: pointer; }
.tvq-title { color: #fff; font-family: var(--font-head); font-size: 21px; font-weight: 700; letter-spacing: -.4px; margin: 10px 0 6px; }
.tvq-subhead { color: rgba(190,225,255,.75); font-size: 13.5px; margin: 0 0 18px; }
.tvq-body { display: grid; gap: 10px; }
.tvq-answer, .tvq-chip {
	font-family: var(--font-body); text-align: left; padding: 14px 18px; font-size: 14px; font-weight: 600;
	color: #fff; background: rgba(255,255,255,.05); border: 1.5px solid rgba(190,225,255,.25);
	border-radius: 12px; cursor: pointer; transition: all .15s;
}
.tvq-chip { display: inline-block; padding: 9px 16px; border-radius: 100px; }
.tvq-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.tvq-answer:hover, .tvq-chip:hover { border-color: var(--baril); }
.tvq-answer.is-picked, .tvq-chip.is-picked { background: var(--sky); border-color: var(--sky); color: var(--navy); }
.tvq-fieldlabel { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(190,225,255,.6); margin: 6px 0 2px; display: block; }
.tvq-select, .tvq-text {
	width: 100%; padding: 12px 14px; border-radius: 10px; font-size: 14px;
	background: rgba(255,255,255,.08); border: 1.5px solid rgba(190,225,255,.25); color: #fff;
}
.tvq-select option { color: var(--navy); }
.tvq-next {
	justify-self: end; margin-top: 10px; padding: 12px 26px; border-radius: 100px;
	background: var(--sky); color: var(--navy); border: none; font-weight: 700; font-size: 13.5px; cursor: pointer;
}
.tvq-next:disabled { opacity: .6; }
.tvq-next.is-shake { animation: tvq-shake .35s; }
@keyframes tvq-shake { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.tvq-visual { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; }
.tvq-visual__opt {
	background: rgba(255,255,255,.05); border: 1.5px solid rgba(190,225,255,.25); border-radius: 12px;
	padding: 12px; cursor: pointer; color: #fff; font-size: 12.5px; font-weight: 600; display: grid; gap: 6px; justify-items: center;
}
.tvq-visual__opt img { width: 84px; height: 84px; }
.tvq-visual__opt.is-picked { border: 2px solid #0F4C81; background: var(--sky); color: var(--navy); }
.tvq-panel { color: rgba(224,238,255,.9); font-size: 14px; }
.tvq-panel h4 { color: #fff; font-size: 17px; margin: 0 0 10px; }
.tvq-panel ul { padding-left: 18px; display: grid; gap: 8px; }
.tvq-panel summary { cursor: pointer; color: var(--baril); margin-top: 10px; }
.tvq-full { display: grid; gap: 12px; }
.tvq-field { display: block; }
.tvq-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: rgba(224,238,255,.8); }
.tvq-consent input { margin-top: 3px; }
.tvq-results { color: #fff; font-size: 16px; line-height: 1.7; }

/* ref c483fd1: values card grids become swipe carousels on mobile */
@media (max-width: 768px) {
	.card-grid--values .card-grid__grid {
		display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 10px;
	}
	.card-grid--values .card-grid__grid::-webkit-scrollbar { display: none; }
	.card-grid--values .card { flex: 0 0 62%; scroll-snap-align: start; }
}

/* ── Location cards (ref locs-grid, 110fdf2/aef4ecb/1121b00 final) ──── */
.location-cards__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.loc-card {
	position: relative; background: #fff; border: 1px solid color-mix(in srgb, var(--plas) 22%, #fff);
	border-radius: 22px; overflow: hidden; display: flex; flex-direction: column;
	transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(62,21,99,.12); }
.loc-card__map {
	background: linear-gradient(160deg, color-mix(in srgb, var(--plas) 8%, #fff) 0%, #fff 100%);
	border-bottom: 1px solid color-mix(in srgb, var(--plas) 22%, #fff); flex-shrink: 0;
}
.loc-card__map img { width: 100%; height: auto; display: block; }
.loc-card__inner { padding: 26px 28px; flex: 1; }
.loc-card__inner h3 { font-size: 20px; font-weight: 800; letter-spacing: -.5px; line-height: 1.1; margin: 0; }
.loc-card__flag { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--plas); margin: 4px 0 12px; }
.loc-card__text { font-size: 14px; line-height: 1.7; color: var(--t2); margin: 0; }
.loc-card__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.loc-card__chip {
	font-size: 12px; font-weight: 600; color: var(--plas);
	background: color-mix(in srgb, var(--plas) 8%, #fff);
	border: 1px solid color-mix(in srgb, var(--plas) 24%, #fff);
	border-radius: 100px; padding: 5px 13px;
}
@media (max-width: 860px) { .location-cards__grid { grid-template-columns: 1fr; } }

/* ref 7c80490: Five Stages timeline swipes on mobile */
@media (max-width: 768px) {
	.journey-timeline__track {
		display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 10px;
	}
	.journey-timeline__track::-webkit-scrollbar { display: none; }
	.journey-timeline__stage { flex: 0 0 72%; scroll-snap-align: start; }
}

/* ref 56876ec: Services dropdown per-service colors (diamond + underline) */
.site-header__nav .sub-menu a { --c: var(--blue); --ct: rgba(15,76,129,.08); position: relative; display: flex; align-items: center; gap: 11px; border-radius: 10px; transition: background .18s, color .18s; }
.site-header__nav .sub-menu a[href*="/stem-cell"] { --c: #0FA6AD; --ct: rgba(15,166,173,.10); }
.site-header__nav .sub-menu a[href*="/plastic"] { --c: #7C3AB7; --ct: rgba(124,58,183,.10); }
.site-header__nav .sub-menu a[href*="/hair-transplant"] { --c: #B5822A; --ct: rgba(181,130,42,.12); }
.site-header__nav .sub-menu a[href*="/bariatric"] { --c: #1591C7; --ct: rgba(21,145,199,.10); }
.site-header__nav .sub-menu a::before {
	content: ''; width: 8px; height: 8px; flex-shrink: 0; background: var(--c);
	border-radius: 2px; transform: rotate(45deg); transition: transform .22s, box-shadow .22s;
}
.site-header__nav .sub-menu a::after {
	content: ''; position: absolute; left: 15px; right: 15px; bottom: 7px; height: 2px; border-radius: 2px;
	background: var(--c); opacity: .3; transform-origin: left; transition: opacity .2s;
}
.site-header__nav .sub-menu a:hover { background: var(--ct); color: var(--c); }
.site-header__nav .sub-menu a:hover::before { transform: rotate(45deg) scale(1.18); box-shadow: 0 0 0 4px var(--ct); }
.site-header__nav .sub-menu a:hover::after { opacity: 1; }
@media (max-width: 860px) {
	.site-header__nav .sub-menu a::after { display: none; }
}
/* ref 4e20bc6: hide in-nav phone at narrow-desktop; keep nav from overflowing */
@media (max-width: 1024px) {
	.site-header__phone-link { display: none; }
	.site-header nav ul { gap: 12px; }
	.site-header nav a { font-size: 14px; }
}

/* ── Jump nav (ref faq-jump: sticky translucent pill bar) ───────────── */
.component-jumpnav {
	position: sticky; top: 63px; z-index: 90;
	background: rgba(246,248,251,.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--bdr); padding: 12px 5%;
}
.jumpnav__inner { max-width: 920px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 9px; }
.jumpnav__pill {
	font-size: 12px; font-weight: 600; color: #55606B; padding: 7px 15px;
	border: 1.5px solid rgba(10,37,64,.12); border-radius: 100px; background: var(--w);
	white-space: nowrap; letter-spacing: .2px; transition: all .2s; box-shadow: 0 1px 2px rgba(6,14,24,.03);
}
.jumpnav__pill:hover { color: var(--blue); border-color: var(--blue); }
.jumpnav__pill.is-active { color: #fff; background: var(--navy); border-color: var(--navy); }
.jumpnav__div { width: 1px; height: 18px; background: var(--bdr); }
@media (max-width: 860px) {
	.jumpnav__inner { gap: 7px; }
	.jumpnav__pill { padding: 6px 13px; }
}

/* ref 6e35d69: per-item translucent FAQ boxes (open = solid + blue tint) */
.faq-accordion__list { background: none; border: none; box-shadow: none; padding: 0; }
.faq-item {
	background: rgba(255,255,255,.55); border: 1px solid var(--bdr); border-radius: 12px;
	margin-bottom: 10px; overflow: hidden; box-shadow: 0 1px 2px rgba(6,14,24,.04);
	transition: border-color .25s, box-shadow .25s, background .25s;
}
.faq-item[open] { background: var(--w); border-color: rgba(15,76,129,.25); box-shadow: 0 6px 20px rgba(15,76,129,.09); }
.faq-item__question { padding: 16px 40px 16px 18px; }
.faq-item__question::after { right: 16px; }
.faq-item__answer { padding: 0 18px 16px; }

/* ── G9 polish (2c79e05 a7b6dd1 7430b9d 485ba4b e594421) ────────────── */
/* Home: badge foot under Google Reviews; extra air between the two rows */
.testimonial-badge-foot { display: flex; justify-content: center; margin-top: 48px; }
.testimonial-badge-foot .testimonial-badge { flex-wrap: wrap; justify-content: center; }
/* Cycling word never clips its final letter */
.section-heading__title em[data-words] { padding-right: .18em; }
/* Experience: hero orbs + section glows in logo navy */
.page-experience .hero:not(.hero--has-video)::before,
.page-experience .hero:not(.hero--has-video)::after {
	background: radial-gradient(ellipse, rgba(0,43,81,.13) 0%, rgba(15,76,129,.05) 40%, transparent 70%);
}
/* Hair: "How it's done" step cards get gold media panels (rings motif) */
.page-hair-transplant .numbered-steps--horizontal .numbered-steps__step { padding: 0; overflow: hidden; }
.page-hair-transplant .numbered-steps--horizontal .numbered-steps__step::before {
	position: static; display: block; content: counter(step, decimal-leading-zero) "/";
	height: 132px; padding: 96px 0 0 24px; margin-bottom: 14px;
	background:
		radial-gradient(circle at 108% -18%, transparent 62px, rgba(221,184,0,.16) 63px, transparent 64px),
		radial-gradient(circle at -6% 118%, transparent 44px, rgba(221,184,0,.18) 45px, transparent 46px),
		linear-gradient(150deg, #FDF2C8 0%, #FCF8E8 58%, #FFFFFF 100%);
	border-bottom: 1px solid var(--bdr); color: var(--hair);
}
.page-hair-transplant .numbered-steps--horizontal .numbered-steps__step > * { padding-inline: 24px; }
.page-hair-transplant .numbered-steps--horizontal .numbered-steps__step > *:last-child { padding-bottom: 24px; }

/* ref 0e9b215: color-coded service jump pills */
.jumpnav__pill[data-section^="stem"] { border-color: rgba(15,166,173,.4); color: #0FA6AD; }
.jumpnav__pill[data-section^="plastic"] { border-color: rgba(124,58,183,.35); color: #7C3AB7; }
.jumpnav__pill[data-section^="hair"] { border-color: rgba(181,130,42,.4); color: #B5822A; }
.jumpnav__pill[data-section^="bariatric"] { border-color: rgba(21,145,199,.4); color: #1591C7; }
.team-grid__meet { margin-top: 26px; }

/* ── Comparison table: stacked cards on mobile (ref b7d1bbd) ────────── */
@media (max-width: 768px) {
	.table-scroll { overflow-x: visible; border: none; background: transparent; box-shadow: none; border-radius: 0; }
	.comparison-table table, .comparison-table tbody { display: block; width: 100%; min-width: 0; }
	.comparison-table thead { display: none; }
	.comparison-table tbody tr { display: block; background: var(--w); border: 1px solid var(--bdr); border-radius: 14px; overflow: hidden; margin-bottom: 12px; }
	.comparison-table td { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 14px; font-size: 12.5px; color: var(--t2); }
	.comparison-table tbody th { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); background: var(--bg); padding: 10px 14px; }
	.comparison-table td::before { content: attr(data-label); font-weight: 600; color: var(--t2); }
	.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 1px solid var(--bdr2); }
	.comparison-table tbody tr td:last-child { border-bottom: none; }
}

/* ── Newsroom filter bar + service-line gems (ref e4dbb50/18d4a2f) ──── */
.nr-filter { padding: 18px 5%; border-bottom: 1px solid var(--bdr); background: rgba(246,248,251,.95); }
.nr-filter__inner { max-width: 1140px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.nr-filter__label { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--t3, #8a94a0); margin-right: 2px; }
.nr-filter__sep { width: 1px; height: 20px; background: var(--bdr); margin: 0 8px; }
.nr-filter__pill { font-size: 12px; font-weight: 600; color: #55606B; padding: 7px 14px; border: 1.5px solid rgba(10,37,64,.12); border-radius: 100px; background: var(--w); white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; transition: all .2s; }
.nr-filter__pill:hover { border-color: var(--blue); color: var(--blue); }
.nr-filter__pill.is-on { color: #fff; background: var(--navy); border-color: var(--navy); }
.nr-filter__gem { color: var(--svc, var(--blue)); font-size: 10px; }
.card--newsroom__line { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 600; color: var(--svc, var(--t2)); }
.card--newsroom__line .nr-filter__gem { font-size: 9px; }
.card--newsroom.is-filtered, .component.is-filtered { display: none; }
@media (max-width: 768px) {
	.nr-filter__inner { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
	.nr-filter__inner::-webkit-scrollbar { display: none; }
}

/* ── Brand marks in section backgrounds (ref dmark/procs-deco/sep) ──── */
.tv-mark { display: inline-block; }
.tv-mark--dmark { display: block; width: 68px; margin: 0 auto 22px; color: #BEE1FF; opacity: .18; }
.tv-mark--corner { position: absolute; top: 32px; right: 4%; width: 60px; opacity: .2; pointer-events: none; z-index: 0; color: var(--blue); }
.tabbed-content, .content-media { position: relative; }
.tv-mark--closer { display: block; width: 48px; margin: 0 auto 22px; color: #0F4C81; }
.page-stem-cell .tv-mark--corner { color: #008187; }
.page-plastic .tv-mark--corner { color: #7C3AB7; }
.page-bariatric .tv-mark--corner { color: #46C1EF; }
.page-hair-transplant .tv-mark--corner { color: #DDB800; }
.tv-diamond-sep { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 32px 0 0; }
.tv-diamond-sep__line { flex: 1; max-width: 120px; height: 1px; background: linear-gradient(90deg, transparent, var(--bdr), transparent); }
.tv-mark--sep { width: 24px; }
.tv-mark-chip { display: inline-flex; align-items: center; justify-content: center; padding: 8px 14px; border-radius: 10px; height: 44px; color: #fff; margin-bottom: 14px; }
.tv-mark--chip { width: 20px; }

/* ── Service themes (ACF "Theme" dropdown → theme-* on the section) ─── */
/* Palettes hand-tuned to the ref pages (accent / dark / bright / tints). */
.theme-stem      { --svc: #008187; --svc-dark: #083335; --svc-bright: #2CCCD3; --svc-tint: rgba(0,129,135,.08); --svc-tint2: rgba(0,129,135,.14); --svc-brd: rgba(0,129,135,.18); --svc-glow1: rgba(44,204,211,.13); --svc-glow2: rgba(191,252,255,.05); }
.theme-bariatric { --svc: #1CA6DA; --svc-dark: #084C72; --svc-bright: #46C1EF; --svc-tint: rgba(28,166,218,.08); --svc-tint2: rgba(28,166,218,.14); --svc-brd: rgba(28,166,218,.18); --svc-glow1: rgba(70,193,239,.13); --svc-glow2: rgba(191,252,255,.05); }
.theme-plastic   { --svc: #7C3AB7; --svc-dark: #3E1563; --svc-bright: #A855F7; --svc-tint: rgba(124,58,183,.08); --svc-tint2: rgba(124,58,183,.14); --svc-brd: rgba(124,58,183,.18); --svc-glow1: rgba(124,58,183,.10); --svc-glow2: rgba(180,120,220,.05); }
.theme-hair      { --svc: #B8960A; --svc-dark: #4A3A12; --svc-bright: #DDB800; --svc-tint: rgba(221,184,0,.12); --svc-tint2: rgba(221,184,0,.2);  --svc-brd: rgba(221,184,0,.3); --svc-glow1: rgba(255,219,110,.18); --svc-glow2: rgba(255,231,165,.06); }

/* Accent hooks inside any themed section */
.component[class*="theme-"] .section-heading__title em,
.component[class*="theme-"] .section-heading__title i { color: var(--svc); }
.component[class*="theme-"] .section-heading__eyebrow { color: var(--svc); }
.component[class*="theme-"] .section-heading__eyebrow::before { background: var(--svc); }
.component[class*="theme-"] .button--primary { background: var(--svc-dark); border-color: var(--svc-dark); }
.component[class*="theme-"] .button--primary:hover { background: var(--svc); border-color: var(--svc); box-shadow: 0 8px 28px var(--svc-tint2); }
.component[class*="theme-"] .tv-mark--corner { color: var(--svc); }
.component[class*="theme-"] .card--grid-item__link { color: var(--svc); }
.component[class*="theme-"] .tabbed-content__tab:hover { border-color: var(--svc); color: var(--svc); }
.component[class*="theme-"] .tabbed-content__tab[aria-selected="true"] { background: var(--svc-dark); color: #fff; border-color: var(--svc-dark); box-shadow: 0 4px 14px var(--svc-tint2); }

/* Themed hero: eyebrow becomes the ref pill with a pulsing dot, the
   secondary button reads as a text link, mesh orbs take the accent. */
@keyframes tv-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.hero[class*="theme-"] .section-heading__eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--svc-tint); border: 1px solid var(--svc-brd);
	padding: 5px 14px 5px 8px; border-radius: 100px;
	font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: none;
}
.hero[class*="theme-"] .section-heading__eyebrow::before {
	width: 7px; height: 7px; border-radius: 50%; background: var(--svc);
	animation: tv-pulse 2.5s ease-in-out infinite;
}
.tv-noanim .hero[class*="theme-"] .section-heading__eyebrow::before { animation: none; }
.hero[class*="theme-"] .button--secondary { border: none; background: none; padding-inline: 0; color: var(--svc); }
.hero[class*="theme-"] .button--secondary:hover { color: var(--svc-dark); }
.hero[class*="theme-"] .button--secondary::after { content: ' →'; }

/* ── Stats bento (themed stats_bar → ref hero stat cards) ───────────── */
.stats-bento { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: auto auto; gap: 12px; align-items: stretch; }
.stats-bento__main { grid-row: 1 / 3; }
.stats-bento__main {
	background: linear-gradient(145deg, #EEF5FF 0%, #F4F8FD 50%, #EAF2FA 100%);
	border: 1px solid rgba(15,76,129,.12); border-radius: 22px; position: relative; overflow: hidden;
	padding: 32px 32px 30px; min-height: 220px; display: flex; flex-direction: column; justify-content: space-between;
}
.stats-bento__main::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--svc-bright), transparent); }
.stats-bento__tag {
	display: inline-flex; align-items: center; gap: 6px; width: fit-content;
	background: var(--svc-tint); border: 1px solid var(--svc-brd); color: var(--svc-dark);
	font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
	padding: 4px 12px; border-radius: 100px; margin-bottom: 18px;
}
.stats-bento__tag span { color: var(--svc); }
.stats-bento__num { font-family: var(--font-head); font-size: clamp(48px, 5vw, 74px); font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -3.5px; }
.stats-bento__num em { color: var(--svc); font-style: normal; font-size: .72em; }
.stats-bento__lbl { font-size: 14px; font-weight: 600; color: var(--t2); letter-spacing: .2px; margin-top: 8px; }
.stats-bento__sub { font-size: 12px; color: var(--t3, #8a94a0); margin-top: 4px; }
.stats-bento__meta { font-size: 12px; color: var(--t2); font-weight: 500; margin-top: 18px; }
.stats-bento__sm {
	background: var(--w); border: 1px solid var(--bdr); border-radius: 18px; padding: 22px 20px;
	display: flex; flex-direction: column; justify-content: space-between; min-height: 140px;
	transition: box-shadow .3s, transform .3s;
}
.stats-bento__sm:hover { box-shadow: var(--sh2); transform: translateY(-3px); }
.stats-bento__sm-label { font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--t3, #8a94a0); margin-bottom: 8px; }
.stats-bento__sm-num { font-family: var(--font-head); font-size: 38px; font-weight: 800; letter-spacing: -1.8px; color: var(--navy); line-height: 1; }
.stats-bento__sm-num em { color: var(--svc); font-style: normal; font-size: .6em; }
.stats-bento__sm-sub { font-size: 12px; color: var(--t3, #8a94a0); margin-top: 6px; }
@media (max-width: 900px) {
	.stats-bento { grid-template-columns: 1fr 1fr; }
	.stats-bento__main { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 560px) { .stats-bento { grid-template-columns: 1fr; } }

/* ── Themed procedure panels (ref .proc-panel/.proc-vis) ────────────── */
.proc-panel { display: grid; grid-template-columns: 1fr 1.5fr; gap: 18px; align-items: stretch; }
.proc-panel[hidden] { display: none; }
.proc-vis {
	position: relative; border-radius: 22px; padding: 38px 32px; min-height: 500px; overflow: hidden;
	display: flex; flex-direction: column; justify-content: space-between; color: #fff;
	background: linear-gradient(145deg, var(--svc-dark) 0%, var(--svc) 70%, var(--svc-bright) 100%);
}
.theme-plastic   .proc-vis { background: linear-gradient(145deg, #2A0E44 0%, #4B1E78 35%, #7C3AB7 78%, #9A5BD0 100%); }
.theme-bariatric .proc-vis { background: linear-gradient(145deg, #003650 0%, #005A7A 35%, #1CA6DA 75%, #46C1EF 100%); }
.theme-stem      .proc-vis { background: linear-gradient(145deg, #062224 0%, #083335 35%, #008187 78%, #18AAB0 100%); }
.theme-hair      .proc-vis { background: linear-gradient(145deg, #4A3800 0%, #765A00 38%, #B8960A 74%, #DDB800 100%); }
.proc-vis__ring, .proc-vis__ring2 { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; }
.proc-vis__ring { width: 240px; height: 240px; border: 1px solid rgba(255,255,255,.12); }
.proc-vis__ring2 { width: 340px; height: 340px; border: 1px solid rgba(255,255,255,.06); }
.proc-vis__badge {
	position: absolute; top: 24px; right: 24px; z-index: 3; color: #fff;
	background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.36);
	font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
	padding: 5px 12px; border-radius: 100px; backdrop-filter: blur(8px);
}
.proc-vis__illus { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; }
.proc-vis__illus svg { width: 120px; height: 120px; }
.tv-mark--illus { width: 90px; color: rgba(255,255,255,.7); }
.proc-vis__lbl { font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 14px; }
.proc-vis__title { font-family: var(--font-head); font-size: 24px; font-weight: 800; letter-spacing: -.5px; line-height: 1.15; margin-bottom: 6px; position: relative; z-index: 2; }
.proc-vis__sub { font-size: 13px; color: rgba(255,255,255,.78); line-height: 1.55; position: relative; z-index: 2; }
.proc-content {
	background: var(--w); border: 1px solid var(--bdr); border-radius: 22px; padding: 32px 34px;
	min-height: 500px; display: flex; flex-direction: column; justify-content: space-between;
}
.proc-subtabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; border-bottom: 1px solid var(--bdr2); padding-bottom: 16px; }
.proc-subtab {
	font-size: 11.5px; font-weight: 600; color: var(--t3, #8a94a0); background: transparent;
	border: 1.5px solid var(--bdr); padding: 7px 14px; border-radius: 100px; cursor: pointer;
	transition: all .2s; letter-spacing: .2px;
}
.proc-subtab.is-active { background: var(--svc-tint); color: var(--svc); border-color: var(--svc-brd); }
.proc-subpanel { display: none; }
.proc-subpanel.is-active { display: block; }
.proc-desc { font-size: 14px; color: var(--t2); line-height: 1.8; margin-bottom: 22px; }
.proc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.proc-stats__box { background: var(--bg); border: 1px solid var(--bdr); border-radius: 12px; padding: 14px 16px; }
.proc-stats__lbl { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--t3, #8a94a0); margin-bottom: 6px; display: block; }
.proc-stats__val { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -.3px; }
.proc-list-lbl { font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--t3, #8a94a0); margin-bottom: 14px; display: block; }
.proc-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.proc-tag { font-size: 11px; padding: 8px 15px; background: var(--svc-tint); color: var(--svc); border-radius: 100px; font-weight: 600; border: 1px solid var(--svc-brd); }
.who-list { list-style: none; margin: 0; padding: 0; }
.who-list li { padding: 13px 0; border-bottom: 1px solid var(--bdr2); font-size: 13px; color: var(--t2); line-height: 1.6; display: flex; align-items: flex-start; gap: 12px; }
.who-list li span { color: var(--svc); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.proc-actions { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--bdr2); display: flex; gap: 10px; flex-wrap: wrap; }
.proc-actions .button { flex: 1; justify-content: center; text-align: center; min-width: 200px; }
@media (max-width: 860px) {
	.proc-panel { grid-template-columns: 1fr; }
	.proc-vis { min-height: 320px; }
	.proc-content { min-height: 0; }
	.proc-stats { grid-template-columns: 1fr; }
}

/* Ref per-service section glow: radial wash on every light themed section */
.component[class*="theme-"]:not(.component--dark):not(.hero) {
	background: radial-gradient(120% 60% at 50% 40%, var(--svc-glow1) 0%, var(--svc-glow2) 44%, transparent 72%), var(--bg);
}
/* Themed hero: mesh orbs take the service tint (ref .hero-mesh) */
.hero[class*="theme-"]:not(.hero--has-video)::before { background: radial-gradient(ellipse, var(--svc-glow1) 0%, var(--svc-glow2) 40%, transparent 70%); }
.hero[class*="theme-"]:not(.hero--has-video)::after { background: radial-gradient(ellipse, var(--svc-glow1) 0%, transparent 65%); }

/* ── Hero duo: themed hero + stats compose into ref's 2-col hero band ── */
.hero-duo { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.05fr 1fr; gap: 0 32px; align-items: center; max-width: 1320px; margin: 0 auto; padding: 0 5%; }
.hero-duo > .hero { padding: 56px 0 64px; overflow: visible; }
.hero-duo > .hero::before, .hero-duo > .hero::after { display: none; }
.hero-duo > .stats-bar { padding: 40px 0 64px; background: none !important; }
.hero-duo > .component .container { padding-inline: 0; max-width: none; }
.hero-duo[class*="theme-"]::before {
	content: ''; position: absolute; top: -180px; right: -120px; width: 650px; height: 650px;
	border-radius: 50%; pointer-events: none;
	background: radial-gradient(ellipse, var(--svc-glow1) 0%, var(--svc-glow2) 40%, transparent 70%);
}
.hero-duo[class*="theme-"]::after {
	content: ''; position: absolute; bottom: -80px; left: -60px; width: 400px; height: 400px;
	border-radius: 50%; pointer-events: none;
	background: radial-gradient(ellipse, var(--svc-glow1) 0%, transparent 65%);
}
.hero-duo .stats-bento { grid-template-columns: 1fr 1fr; }
.hero-duo .stats-bento__main { grid-row: auto; grid-column: 1 / -1; }
@media (max-width: 900px) {
	.hero-duo { grid-template-columns: 1fr; gap: 0; }
	.hero-duo > .hero { padding-bottom: 8px; }
	.hero-duo > .stats-bar { padding-top: 16px; }
}

/* ── Themed dark steps → ref .story: light section, dark rounded card ── */
.numbered-steps.component--dark[class*="theme-"] {
	background: radial-gradient(120% 60% at 50% 40%, var(--svc-glow1) 0%, var(--svc-glow2) 44%, transparent 72%), var(--bg);
	border-top: none;
}
.numbered-steps.component--dark[class*="theme-"] .section-heading__title { color: var(--navy); }
.numbered-steps.component--dark[class*="theme-"] .section-heading__title em { color: var(--svc); }
.numbered-steps.component--dark[class*="theme-"] .section-heading__sub { color: var(--t2); }
.numbered-steps.component--dark[class*="theme-"] .section-heading__eyebrow { color: var(--svc); }
.numbered-steps.component--dark[class*="theme-"] .section-heading__eyebrow::before { background: var(--svc); }
.numbered-steps.component--dark[class*="theme-"] .numbered-steps__list {
	background: linear-gradient(145deg, #062224 0%, var(--svc-dark) 38%, var(--svc) 100%);
	border-radius: 28px; padding: 44px 40px; overflow: hidden;
}
.theme-plastic.numbered-steps.component--dark .numbered-steps__list { background: linear-gradient(145deg, #1d0a30 0%, var(--svc-dark) 38%, var(--svc) 100%); }
.theme-hair.numbered-steps.component--dark .numbered-steps__list { background: linear-gradient(145deg, #2e2408 0%, var(--svc-dark) 38%, var(--svc) 100%); }
.theme-bariatric.numbered-steps.component--dark .numbered-steps__list { background: linear-gradient(145deg, #032243 0%, var(--svc-dark) 38%, var(--svc) 100%); }
.numbered-steps.component--dark[class*="theme-"] .numbered-steps__step::before { color: var(--svc-bright); }
/* Themed dark steps: story card, not the corporate standards layout */
.numbered-steps.component--dark[class*="theme-"]::before,
.numbered-steps.component--dark[class*="theme-"]::after { display: none; }
.numbered-steps.component--dark[class*="theme-"] .container { display: block; }
.numbered-steps.component--dark[class*="theme-"] .section-heading { position: static; margin-bottom: 32px; }
.numbered-steps.component--dark[class*="theme-"] .section-heading__title { font-size: clamp(30px, 3.2vw, 44px); }
.numbered-steps.component--dark[class*="theme-"] .numbered-steps__list {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.numbered-steps.component--dark[class*="theme-"] .numbered-steps__step {
	border: none; padding: 0; background: transparent;
	border-top: 1px dashed rgba(191,252,255,.28); padding-top: 22px; position: relative;
}
.numbered-steps.component--dark[class*="theme-"] .numbered-steps__step::before {
	position: static; display: block; margin-bottom: 8px; color: rgba(255,255,255,.85);
	font-size: 11px; letter-spacing: 2px;
}
.numbered-steps.component--dark[class*="theme-"] .numbered-steps__step p { color: rgba(255,255,255,.75); font-size: 12.5px; line-height: 1.7; }
@media (max-width: 860px) {
	.numbered-steps.component--dark[class*="theme-"] .numbered-steps__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
	.numbered-steps.component--dark[class*="theme-"] .numbered-steps__list { grid-template-columns: 1fr; }
}

/* Themed benefit cards: ref .ben-card illustration + 3-col grid */
.card-grid--features.component[class*="theme-"] .card-grid__grid { grid-template-columns: repeat(3, 1fr) !important; gap: 16px; }
.card--grid-item__ben { margin-bottom: 18px; }
.card--grid-item__ben svg { width: 100%; max-width: 150px; height: auto; display: block; }
@media (max-width: 860px) { .card-grid--features.component[class*="theme-"] .card-grid__grid { grid-template-columns: 1fr !important; } }

/* Ref .surg-card spotlight (lone surgeon on themed pages) */
.surg-spot { background: var(--w); border: 1px solid var(--bdr); border-radius: 22px; box-shadow: var(--sh); padding: 40px 38px 34px; max-width: 420px; margin: 0 auto; text-align: center; }
.surg-spot__photo { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px; background: linear-gradient(145deg, var(--svc-dark), var(--svc)); display: flex; align-items: center; justify-content: center; font-size: 40px; color: #fff; }
.surg-spot__photo img { width: 100%; height: 100%; object-fit: cover; }
.surg-spot__name { font-size: 22px; font-weight: 800; letter-spacing: -.5px; color: var(--navy); margin-bottom: 4px; }
.surg-spot__role { font-size: 12px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; color: var(--svc); }
.surg-spot__div { height: 1px; background: var(--bdr2); margin: 20px 0; }
.surg-spot__meta { list-style: none; margin: 0; padding: 0; text-align: left; }
.surg-spot__meta li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--bdr2); font-size: 13px; }
.surg-spot__meta li:last-child { border-bottom: none; }
.surg-spot__meta span { color: var(--t3, #8a94a0); }
.surg-spot__meta strong { color: var(--navy); font-weight: 600; }
.surg-spot__cta { display: block; margin-top: 20px; text-align: center; }

/* Themed facility cards (ref .fac-card) */
.card--facility--themed { border-radius: 18px; overflow: hidden; }
.card--facility__vid {
	aspect-ratio: 16 / 9; position: relative; display: flex; align-items: center; justify-content: center;
	background: linear-gradient(150deg, var(--svc-dark, #083335) 0%, var(--svc, #008187) 55%, var(--svc-bright, #2CCCD3) 100%);
}
.card--facility__vtag { position: absolute; top: 14px; left: 14px; font-size: 8.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.85); }
.card--facility__play { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.22); border: 1.5px solid rgba(255,255,255,.42); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; }
.card--facility__play::after { content: ''; width: 0; height: 0; border-style: solid; border-width: 8px 0 8px 15px; border-color: transparent transparent transparent #fff; margin-left: 3px; }
.card--facility__pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.card--facility__pill { font-size: 8.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; background: var(--svc-tint, rgba(0,129,135,.08)); color: var(--svc, var(--blue)); border: 1px solid var(--svc-brd, rgba(0,129,135,.16)); }
.card--facility__dist { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.card--facility__dist-box { background: var(--bg); border: 1px solid var(--bdr2); border-radius: 10px; padding: 9px 12px; }
.card--facility__dist-box span { display: block; font-size: 9px; color: var(--t3, #8a94a0); font-weight: 600; letter-spacing: .3px; }
.card--facility__dist-box strong { font-size: 12px; color: var(--navy); font-weight: 700; }

/* Themed 2-step process cards sit side by side (ref stem .itin) */
.numbered-steps[class*="theme-"]:not(.component--dark) .numbered-steps__list:has(> li:nth-child(2):last-child) { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
@media (max-width: 860px) { .numbered-steps[class*="theme-"]:not(.component--dark) .numbered-steps__list:has(> li:nth-child(2):last-child) { grid-template-columns: 1fr; } }

/* ── Themed journey tiles (ref .fstage-card) ─────────────────────────── */
.journey-timeline__track--tiles .journey-timeline__stage { border-top: none; }
.journey-timeline__track--tiles .journey-timeline__stage::before { display: none; }
.journey-timeline__track--tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; list-style: none; margin: 0; padding: 0; }
.journey-timeline__track--tiles .journey-timeline__stage { background: var(--w); border: 1px solid var(--bdr); border-radius: 18px; overflow: hidden; padding: 0; transition: transform .3s, box-shadow .3s; }
.journey-timeline__track--tiles .journey-timeline__stage:hover { transform: translateY(-3px); box-shadow: var(--sh2); }
.journey-timeline__vid { aspect-ratio: 9 / 16; position: relative; display: flex; align-items: center; justify-content: center; background: linear-gradient(165deg, var(--svc-bright) 0%, var(--svc) 55%, var(--svc-dark) 100%); }
.journey-timeline__num { position: absolute; top: 12px; left: 12px; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--svc); font-family: var(--font-head); font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.journey-timeline__play { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.22); border: 1.5px solid rgba(255,255,255,.42); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; }
.journey-timeline__play::after { content: ''; width: 0; height: 0; border-style: solid; border-width: 7px 0 7px 13px; border-color: transparent transparent transparent #fff; margin-left: 3px; }
.journey-timeline__body { padding: 18px 16px 20px; }
.journey-timeline__body h3 { font-size: 13.5px; font-weight: 700; letter-spacing: -.1px; margin-bottom: 6px; }
.journey-timeline__body p { font-size: 12px; color: var(--t2); line-height: 1.6; }
@media (max-width: 900px) { .journey-timeline__track--tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .journey-timeline__track--tiles { grid-template-columns: 1fr; } }

/* ── Themed referral panel (ref .ref-wrap) ───────────────────────────── */
.refwrap { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.refwrap__dark { background: linear-gradient(150deg, #062224 0%, var(--svc-dark) 45%, var(--svc) 100%); border-radius: 24px; padding: 44px 42px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.refwrap__dark .section-heading__title, .refwrap__dark p { color: #fff; }
.refwrap__dark .section-heading__title { font-size: clamp(26px, 2.6vw, 36px); }
.refwrap__dark .section-heading__title em { color: var(--svc-bright); }
.refwrap__dark p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.82); margin-bottom: 12px; }
.refwrap__dark p.refwrap__amt { font-family: var(--font-head); font-size: 64px; font-weight: 800; letter-spacing: -3px; line-height: 1; margin: 20px 0 0; color: #fff; }
.refwrap__dark p.refwrap__amt-sub { font-size: 13px; color: rgba(255,255,255,.72); margin: 8px 0 0; }
.refwrap__card { background: var(--w); border: 1px solid var(--bdr); border-radius: 24px; padding: 38px 36px; box-shadow: var(--sh); }
.refwrap__card p strong { display: block; font-size: 16px; font-weight: 800; color: var(--navy); margin: 18px 0 6px; }
.refwrap__card ul { list-style: none; margin: 0 0 8px; padding: 0; }
.refwrap__card ul li { padding: 8px 0 8px 26px; position: relative; font-size: 13.5px; color: var(--t2); line-height: 1.6; }
.refwrap__card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--svc); font-weight: 800; }
@media (max-width: 860px) { .refwrap { grid-template-columns: 1fr; } }

/* ── Themed comparison polish (ref .comp) ────────────────────────────── */
.comparison-table[class*="theme-"] thead th { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--t3, #8a94a0); }
.comparison-table[class*="theme-"] thead th:first-child:empty::before { content: 'What matters to you'; }
.comparison-table[class*="theme-"] thead th.is-highlight { color: var(--svc); box-shadow: inset 0 3px 0 var(--svc); }
.comparison-table[class*="theme-"] .is-highlight { background: var(--svc-tint); }
.comparison-table[class*="theme-"] td:not(.is-highlight) { color: #B5822A; font-weight: 600; font-size: 12.5px; }
.comparison-table[class*="theme-"] td .check { color: var(--svc); }

/* ── Themed aggregate rating card (ref) ──────────────────────────────── */
.testi-badge-card {
	background: var(--w); border: 1px solid var(--bdr); border-radius: 16px; box-shadow: var(--sh);
	padding: 22px 28px; margin: 4px 0 36px; display: inline-flex; align-items: center; gap: 26px; max-width: 720px;
}
.testi-badge-card__score { display: flex; flex-direction: column; }
.testi-badge-card__score .stars { color: #F5A524; font-size: 16px; letter-spacing: 2px; }
.testi-badge-card__score strong { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1.1; letter-spacing: -1.5px; }
.testi-badge-card__count { font-size: 13px; color: var(--t2); margin-top: 2px; }
.testi-badge-card__div { width: 1px; align-self: stretch; background: var(--bdr2); }
.testi-badge-card__tag { font-style: italic; font-size: 15px; color: var(--t2); line-height: 1.6; max-width: 300px; }
@media (max-width: 560px) { .testi-badge-card { flex-direction: column; align-items: flex-start; gap: 14px; } .testi-badge-card__div { display: none; } }

/* Step + small benefit icons (ref .step-ico / .ben-ico) */
.numbered-steps__ico svg { width: 48px; height: 48px; fill: none; stroke: currentColor; color: var(--svc, var(--blue)); display: block; margin: 18px auto 4px; }
.card--grid-item__ben svg[viewBox="0 0 24 24"] { width: 22px; height: 22px; fill: none; stroke: var(--svc, var(--blue)); stroke-width: 2; padding: 11px; background: var(--svc-tint, rgba(15,76,129,.08)); border-radius: 50%; box-sizing: content-box; max-width: none; }

/* Themed itinerary day cards (ref .stage-card) */
.stages { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; align-items: stretch; }
.stage-card { background: var(--w); border: 1px solid var(--bdr); border-radius: 18px; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.stage-card:hover { transform: translateY(-3px); box-shadow: var(--sh2); }
.stage-card__top {
	position: relative; padding: 22px 18px 20px; min-height: 118px; overflow: hidden;
	display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
	background: linear-gradient(160deg, color-mix(in srgb, var(--svc) 45%, #fff) 0%, var(--svc) 55%, var(--svc-dark) 100%);
}
.stage-card:nth-child(even) .stage-card__top { background: linear-gradient(160deg, color-mix(in srgb, var(--svc) 25%, #fff) 0%, var(--svc) 50%, var(--svc-dark) 100%); }
.stage-card:last-child .stage-card__top { background: linear-gradient(160deg, color-mix(in srgb, var(--svc) 45%, #fff) 0%, var(--svc-dark) 55%, color-mix(in srgb, var(--svc-dark) 60%, #000) 100%); }
.stage-card__num { position: absolute; top: 12px; left: 12px; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--navy); font-family: var(--font-head); font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.stage-card__day { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.8); }
.stage-card__phase { font-family: var(--font-head); font-size: 15px; font-weight: 800; letter-spacing: -.2px; margin-top: 3px; }
.stage-card__list { list-style: none; margin: 0; padding: 16px 16px 20px; }
.stage-card__list li { position: relative; padding: 6px 0 6px 15px; font-size: 11.5px; color: var(--t2); line-height: 1.5; }
.stage-card__list li::before { content: ''; position: absolute; left: 0; top: 12px; width: 5px; height: 5px; border-radius: 50%; background: var(--svc); }
@media (max-width: 560px) { .stages { grid-template-columns: 1fr; } }

/* Card icon chips (ACF Icon dropdown) — tinted circle, theme accent */
.card--grid-item__icon, .tv-icon-chip { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--svc-tint, rgba(15,76,129,.08)); margin-bottom: 16px; color: var(--svc, var(--blue)); }
.card--grid-item__icon .tv-mark--card, .tv-icon-chip .tv-mark--card { width: 22px; height: auto; display: block; }
.card--facility--themed .card--facility__address { display: flex; gap: 7px; align-items: flex-start; font-size: 12.5px; }
.tv-mark--addr { width: 11px; flex-shrink: 0; margin-top: 2px; color: var(--svc, var(--blue)); }

/* Section divider (ref .color-band): 4px gradient strip, theme-tinted */
.tv-color-band { height: 4px; background: linear-gradient(90deg, transparent 0%, var(--svc, var(--blue)) 30%, var(--svc-dark, var(--navy)) 50%, var(--svc, var(--blue)) 70%, transparent 100%); }

/* Themed jump-nav pills (ref .sj-pill hover/active in the service accent) */
.component-jumpnav[class*="theme-"] .jumpnav__pill:hover { color: var(--svc); border-color: color-mix(in srgb, var(--svc) 40%, transparent); }
.component-jumpnav[class*="theme-"] .jumpnav__pill.is-active { color: #fff; background: var(--svc); border-color: var(--svc); box-shadow: 0 3px 12px var(--svc-tint2); }

/* Facility slider (3+ facilities scroll with the reviews' fade mask) */
.facility-grid .carousel__track .facility-grid__cell { flex: 0 0 clamp(320px, 31%, 430px); }
.facility-grid .carousel__track .facility-grid__cell .card { height: 100%; }

/* Carousel arrows disappear at the ends of the track */
.carousel__arrow.is-off { opacity: 0; pointer-events: none; }
.carousel__arrow { transition: opacity .25s; }
