/* =======================================================
   PREMIUM DENTAL THEME CSS - LUXURY & ELEGANCE
   ======================================================= */
:root {
	/* Accent — warm bronze from the brand mark */
	--gold: #b2814e;
	--gold-light: #c89a66;
	--gold-dark: #8f6335;

	/* Dark sections — deep navy (trust, authority, elegance) */
	--dark-bg: #162238;
	--dark-card: #20304b;
	--dark-accent: #2a4162;

	/* Light sections — cooler clinical neutrals */
	--light-bg: #f7fafc;
	--off-white: #fcfdff;
	--paper-1: #f4f8fb;
	--paper-2: #eef3f7;
	--paper-3: #e5edf4;
	--paper-line-pattern: repeating-linear-gradient(
		180deg,
		rgba(178, 129, 78, 0.11) 0,
		rgba(178, 129, 78, 0.11) 1px,
		transparent 1px,
		transparent 26px
	);
	--paper-line-sheen: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.08));
	--white: #ffffff;

	/* Typography */
	--text-body: #445468;
	--text-dark: #182433;
	--text-muted: #6f8093;

	/* Borders & lines */
	--line-light: rgba(255, 255, 255, 0.12);
	--line-dark: rgba(26, 35, 50, 0.1);

	/* Shadows */
	--shadow-soft: 0 12px 28px rgba(24, 36, 51, 0.06);
	--shadow-strong: 0 22px 46px rgba(20, 32, 48, 0.11);
	--focus-ring: rgba(197, 141, 118, 0.92);
	--focus-shadow-light: 0 0 0 3px rgba(197, 141, 118, 0.18);
	--focus-shadow-dark: 0 0 0 3px rgba(240, 235, 227, 0.18);

	/* Fonts */
	--font-serif: 'Lora', serif;
	--font-sans: 'Montserrat', sans-serif;

	--transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
	overscroll-behavior-x: none;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	color: var(--text-body);
	background-color: var(--light-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
	overscroll-behavior-x: none;
}

body.preloader-active {
	overflow: hidden;
}

.site-preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	background:
		radial-gradient(circle at top, rgba(200, 154, 102, 0.14), transparent 34%),
		linear-gradient(180deg, #1e304b 0%, #162238 100%);
	opacity: 1;
	visibility: visible;
	transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-preloader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.site-preloader__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: preloaderFloat 1.6s ease-in-out infinite;
}

.site-preloader__logo {
	width: min(88px, 24vw);
	height: auto;
	filter: drop-shadow(0 18px 34px rgba(5, 10, 18, 0.22));
}

@keyframes preloaderFloat {
	0%, 100% {
		transform: translateY(0);
		opacity: 0.96;
	}

	50% {
		transform: translateY(-6px);
		opacity: 1;
	}
}

.site-main {
	background:
		radial-gradient(circle at top left, rgba(178, 129, 78, 0.08), transparent 24%),
		linear-gradient(180deg, rgba(250, 248, 245, 0.92) 0%, rgba(246, 242, 236, 0.96) 52%, rgba(241, 235, 226, 0.98) 76%, rgba(236, 229, 219, 1) 100%);
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

iframe {
	width: 100%;
	border: 0;
}

h1,
h2,
h3,
.font-serif,
.display-title {
	font-family: var(--font-serif);
	letter-spacing: -0.02em;
	color: var(--text-dark);
}

h1,
h2,
.display-title,
.section-title {
	font-weight: 600;
}

h3,
.font-serif {
	font-weight: 600;
}

p,
li {
	font-family: var(--font-sans);
	font-weight: 400;
	line-height: 1.75;
	color: var(--text-body);
}

.site-shell {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-padding {
	padding: 100px 0;
}

.bg-dark {
	background-color: var(--dark-bg);
	color: var(--white);
}

.bg-light {
	background-color: var(--light-bg);
}

.text-white {
	color: var(--white);
}

.text-gray {
	color: var(--text-muted);
}

.bg-dark .text-gray {
	color: rgba(255, 255, 255, 0.65);
}

.gold-text {
	color: var(--gold);
}

.text-center {
	text-align: center;
}

.mb-5 {
	margin-bottom: 3rem;
}

.mt-2 {
	margin-top: 0.5rem;
}

.mt-4 {
	margin-top: 1.5rem;
}

.mt-5 {
	margin-top: 3rem;
}

.gold-accent-line {
	display: inline-block;
	font-family: var(--font-sans);
	color: var(--gold);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1rem;
	position: relative;
}

.gold-accent-line::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--gold);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gold-accent-line.is-visible::after {
	transform: scaleX(1);
}

.section-title {
	font-size: clamp(2.2rem, 5vw, 3.2rem);
	line-height: 1.2;
	margin: 0 0 2rem;
	color: var(--text-dark);
}

.section-title.text-white,
.display-title.text-white {
	color: var(--white);
}

.subtitle-text {
	max-width: 720px;
	margin: 0 auto;
	font-size: 1.15rem;
	line-height: 1.8;
	color: var(--text-body);
}

.quote-text {
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.8;
	color: var(--text-body);
}

.author {
	margin-top: 1.5rem;
	font-weight: 500;
	color: var(--text-body);
}

.btn-gold-solid {
	font-family: var(--font-sans);
	background-color: var(--gold);
	color: #ffffff;
	padding: 14px 32px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: var(--transition);
	display: inline-block;
}

.btn-gold-solid:hover {
	background-color: var(--gold-dark);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(143, 99, 53, 0.35);
}

.btn-gold-outline {
	font-family: var(--font-sans);
	border: 1px solid var(--gold);
	color: rgba(255, 246, 241, 0.98);
	padding: 12px 28px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgba(178, 129, 78, 0.28), rgba(22, 34, 56, 0.62));
	box-shadow: 0 14px 26px rgba(8, 12, 18, 0.22);
	backdrop-filter: blur(10px);
}

.btn-gold-outline:hover {
	background-color: var(--gold-dark);
	border-color: var(--gold-dark);
	color: var(--off-white);
}

.btn-link-white {
	font-family: var(--font-sans);
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--white);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.brand:focus-visible,
.site-nav a:focus-visible,
.btn-gold-solid:focus-visible,
.btn-gold-outline:focus-visible,
.btn-link-white:focus-visible,
.header-phone-shortcut:focus-visible,
.nav-toggle:focus-visible,
.vb-card:focus-visible,
.bd-services__row:focus-visible,
.bd-services__cta:focus-visible,
.reviews-carousel__arrow:focus-visible,
.contact-form-note a:focus-visible,
.privacy-embed__action:focus-visible,
.privacy-panel__actions .btn-gold-solid:focus-visible,
.privacy-panel__actions .btn-gold-outline:focus-visible,
.footer-links a:focus-visible,
.footer-brand__actions a:focus-visible,
.footer-social__link:focus-visible,
.footer-cookie-link:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 3px;
}

.brand:focus-visible,
.site-nav a:focus-visible,
.btn-gold-solid:focus-visible,
.btn-gold-outline:focus-visible,
.btn-link-white:focus-visible,
.header-phone-shortcut:focus-visible,
.nav-toggle:focus-visible,
.vb-card:focus-visible,
.bd-services__row:focus-visible,
.bd-services__cta:focus-visible,
.reviews-carousel__arrow:focus-visible,
.privacy-embed__action:focus-visible,
.privacy-panel__actions .btn-gold-solid:focus-visible,
.privacy-panel__actions .btn-gold-outline:focus-visible,
.footer-links a:focus-visible,
.footer-brand__actions a:focus-visible,
.footer-social__link:focus-visible,
.footer-cookie-link:focus-visible {
	box-shadow: var(--focus-shadow-dark);
}

.contact-form-note a:focus-visible {
	box-shadow: var(--focus-shadow-light);
	border-radius: 4px;
}

.arrow-right {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 1px;
	background: currentColor;
}

.arrow-right::after {
	content: '';
	position: absolute;
	top: -3px;
	right: 0;
	width: 8px;
	height: 8px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg);
}

.site-header-shell {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: var(--transition);
}

.site-header-shell.is-scrolled {
	background-color: rgba(15, 25, 39, 0.94);
	border-bottom-color: rgba(194, 205, 219, 0.14);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
	.site-header-shell.is-scrolled {
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
}

body.admin-bar .site-header-shell {
	top: 32px;
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 2rem;
	min-height: 92px;
}

.site-header__controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.85rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.95rem;
	text-decoration: none;
	min-width: 0;
}

.brand__logo {
	display: block;
	width: clamp(8.5rem, 14vw, 11.5rem);
	height: auto;
	filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.24));
}

.brand__logo--mark {
	width: clamp(2.7rem, 4.2vw, 3.6rem);
	flex: 0 0 auto;
}

.brand__logo--footer {
	width: min(100%, 12rem);
	filter: none;
}

.brand__text {
	display: grid;
	gap: 0.1rem;
}

.brand__eyebrow {
	font-family: var(--font-sans);
	font-size: 0.68rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(178, 129, 78, 0.86);
	font-weight: 700;
}

.brand__name {
	font-size: 2.1rem;
	color: var(--white);
	font-family: var(--font-serif);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 0.95;
	text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.site-nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-nav a {
	font-family: var(--font-sans);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: var(--transition);
}

.site-nav a:hover {
	color: var(--gold);
}

.site-nav a:focus-visible {
	color: var(--gold-light);
	border-radius: 8px;
}

/* Dropdown Menu Styles */
.site-nav .has-dropdown {
	position: relative;
}

.site-nav .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background: rgba(20, 31, 47, 0.97);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(190, 201, 216, 0.16);
	min-width: 280px;
	padding: 1rem 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border-radius: 12px;
	box-shadow: 0 22px 46px rgba(12, 20, 32, 0.28);
	display: block !important; /* Override flex if needed */
	z-index: 100;
}

.site-nav .has-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.site-nav .dropdown-menu li {
	display: block;
	padding: 0;
}

.site-nav .dropdown-menu a {
	display: block;
	padding: 0.8rem 2rem;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.8);
	transition: var(--transition);
	white-space: nowrap;
}

.site-nav .dropdown-menu a:hover {
	background: rgba(178, 129, 78, 0.12);
	color: var(--gold-light);
	padding-left: 2.5rem;
}

.site-nav .dropdown-menu a:focus-visible {
	background: rgba(178, 129, 78, 0.12);
	color: var(--gold-light);
	padding-left: 2.5rem;
}

.nav-toggle {
	display: none;
	border: 0;
	background: transparent;
	padding: 0;
	border-radius: 12px;
}

.header-phone-shortcut {
	display: none;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px 0;
	background: var(--white);
}

.home-hero {
	position: relative;
	min-height: 100vh;
	padding: 140px 0 100px;
	display: flex;
	align-items: center;
	color: var(--white);
	overflow: hidden;
	isolation: isolate;
}

.home-hero__media,
.service-hero__media,
.page-hero__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: -1;
	overflow: hidden;
}

.home-hero__video,
.service-hero__video {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center center;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.home-hero__overlay,
.service-hero__overlay,
.page-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right,
			rgba(26, 35, 50, 0.78) 0%,
			rgba(26, 35, 50, 0.60) 20%,
			rgba(26, 35, 50, 0.42) 45%,
			rgba(26, 35, 50, 0.22) 70%,
			rgba(26, 35, 50, 0.12) 100%
		),
		linear-gradient(rgba(26, 35, 50, 0.32), rgba(26, 35, 50, 0.32));
	z-index: -1;
}

.home-hero__content {
	width: 100%;
	position: relative;
}

.home-hero__text {
	max-width: 820px;
	position: relative;
}

.hero-meta-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1.4rem;
	position: relative;
	z-index: 1;
}

.hero-meta-rule {
	display: block;
	width: 36px;
	height: 1px;
	background: linear-gradient(to right, var(--gold), rgba(178, 129, 78, 0.4));
}

.hero-meta-text {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-light);
	opacity: 0.85;
}

.display-title {
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	line-height: 1.15;
	margin: 0 0 2rem;
	color: #f9f4ef;
	text-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
	position: relative;
	z-index: 1;
}

.home-hero__text .display-title {
	max-width: 11ch;
}

.home-hero__text .display-title::first-line {
	color: var(--gold-light);
}

.home-hero__copy {
	max-width: 720px;
	font-size: 1.08rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.96);
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
	position: relative;
	z-index: 1;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	margin-top: 2rem;
	position: relative;
	z-index: 1;
}

.hero-actions .btn-link-white {
	padding: 0.78rem 1.2rem;
	border: 1px solid rgba(200, 154, 102, 0.42);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
	box-shadow: 0 12px 24px rgba(8, 12, 18, 0.18);
}

/* ==============================================
   HERO SPLIT — text left, oval frame bleeding right
   ============================================== */

.home-hero--split {
	background: var(--dark-bg);
	padding: 0;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

/* Dot grid over the entire hero bg */
.home-hero--split::before {
	content: none;
}

/* Warm glow spotlight behind the text column */
.home-hero--split::after {
	content: none;
}

.home-hero--split .home-hero__media,
.home-hero--split .home-hero__overlay {
	display: none;
}

/* Text column — site-shell provides max-width + centering */
.hero-split__text-wrap {
	position: relative;
	z-index: 2;
	padding-top: 120px;
	padding-bottom: 80px;
	width: 100%;
}

.home-hero--split .home-hero__text {
	max-width: min(40vw, 520px);
}

/* Frame wrapper — anchored right, with a broad curved left edge */
.hero-split__media {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 1;
	width: min(58vw, 1080px);
	pointer-events: none;
	padding: 18px 0 18px 22px;
}

/* Warm halo behind the frame — lifts it off the navy hero */
.hero-split__media::before {
	content: '';
	position: absolute;
	inset: -6% -4% -6% 4%;
	border-radius: min(28rem, 42%) 0 0 min(28rem, 42%) / 50% 0 0 50%;
	background:
		radial-gradient(ellipse at 70% 50%, rgba(200, 154, 102, 0.22) 0%, rgba(200, 154, 102, 0.08) 38%, transparent 64%),
		radial-gradient(ellipse at 30% 50%, rgba(22, 34, 56, 0.35) 0%, transparent 60%);
	filter: blur(28px);
	opacity: 0.9;
	z-index: 0;
	pointer-events: none;
}

/* Outer matted gold border — offset 14px around the frame */
.hero-split__media::after {
	content: '';
	position: absolute;
	inset: 4px 0 4px 8px;
	border-radius: min(26rem, 38%) 0 0 min(26rem, 38%) / 50% 0 0 50%;
	border: 1px solid rgba(178, 129, 78, 0.35);
	border-right: none;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

.hero-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 1.55 / 1;
	border-radius: min(24rem, 36%) 0 0 min(24rem, 36%) / 50% 0 0 50%;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 34%),
		linear-gradient(135deg, rgba(178, 129, 78, 0.24), rgba(22, 34, 56, 0.24));
	isolation: isolate;
	pointer-events: auto;
	z-index: 2;
	box-shadow:
		0 38px 90px rgba(10, 18, 30, 0.34),
		0 14px 40px rgba(10, 18, 30, 0.22),
		inset 0 0 0 1px rgba(178, 129, 78, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-frame::before,
.hero-frame::after {
	content: '';
	position: absolute;
	border-radius: inherit;
	pointer-events: none;
}

/* Solid gold border fill — fills the strip between frame edge and inner boundary */
.hero-frame::before {
	inset: 0;
	border: 10px solid rgba(178, 129, 78, 0.95);
	border-right: none;
	background: transparent;
	z-index: 3;
}

/* Glaze: subtle highlight top-left + warm vignette bottom-right */
.hero-frame::after {
	inset: 0;
	background:
		linear-gradient(155deg, rgba(255, 255, 255, 0.14) 0%, transparent 22%, transparent 70%, rgba(22, 34, 56, 0.22) 100%),
		linear-gradient(90deg, rgba(22, 34, 56, 0.2) 0%, rgba(22, 34, 56, 0.02) 18%, transparent 30%);
	z-index: 2;
}


.home-hero--split .home-hero__video {
	top: 50%;
	left: 55%;
	bottom: auto;
	width: 108%;
	height: 126%;
	min-width: 108%;
	min-height: 126%;
	transform: translate(-50%, -50%);
	object-position: center center;
	z-index: 1;
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.about-section {
	position: relative;
	background:
		radial-gradient(circle at top left, rgba(14, 165, 233, 0.09), transparent 24%),
		linear-gradient(180deg, rgba(249, 252, 255, 0.96) 0%, rgba(243, 248, 252, 0.97) 28%, rgba(235, 242, 248, 0.99) 62%, rgba(229, 237, 244, 1) 100%);
}

.about-section > .site-shell {
	position: relative;
	z-index: 1;
}

.features-list {
	display: grid;
	gap: 2rem;
}

.feature-item {
	position: relative;
	display: flex;
	gap: 1.65rem;
	padding-left: 0.25rem;
}

.feature-item::before {
	content: '';
	position: absolute;
	left: 3.18rem;
	top: 0.25rem;
	bottom: 0.4rem;
	width: 3px;
	border-radius: 999px 45% 999px 35%;
	background: linear-gradient(180deg, rgba(178, 129, 78, 0.16), rgba(200, 154, 102, 0.85) 18%, rgba(178, 129, 78, 0.46) 56%, rgba(178, 129, 78, 0.1) 100%);
	transform: rotate(1.5deg);
	transform-origin: top center;
	opacity: 0.92;
}

.feature-item::after {
	content: '';
	position: absolute;
	left: 3.34rem;
	top: 0.45rem;
	bottom: 0.65rem;
	width: 1px;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.04));
	transform: rotate(-1.8deg);
	opacity: 0.75;
}

.feature-number {
	flex: 0 0 auto;
	position: relative;
	width: 2.5rem;
	font-size: 3rem;
	font-family: var(--font-serif);
	color: var(--gold-light);
	line-height: 1;
	text-align: left;
}

.feature-text h3 {
	font-size: 1.8rem;
	margin: 0 0 0.5rem;
}

.feature-text p {
	margin: 0;
	color: var(--text-body);
	line-height: 1.8;
}

.team-arch-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	align-items: stretch;
}

.small-badge {
	font-size: 0.8rem;
	letter-spacing: 0.12em;
}

.team-intro__intro {
	max-width: 980px;
	margin: 0 auto;
}

.arch-card {
	background: var(--white);
	padding: 20px;
	border-radius: 20px;
	box-shadow: var(--shadow-strong);
	text-align: center;
	transition: var(--transition);
	height: 100%;
}

.arch-card:hover {
	transform: translateY(-10px);
}

.arch-image {
	width: 100%;
	aspect-ratio: 4 / 5;
	height: auto;
	border-radius: 140px 140px 18px 18px;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.arch-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.arch-info h3 {
	margin: 0 0 0.5rem;
	font-size: 1.8rem;
	color: var(--text-dark);
}

.uppercase-small {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.italic-desc {
	margin: 1rem 0 0;
	color: #59606d;
	font-style: italic;
	line-height: 1.8;
}

.glass-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.glass-card-grid--services {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 1.5rem;
}

.glass-card {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 3rem 2rem;
	border-radius: 20px;
	text-align: center;
	transition: var(--transition);
	box-shadow: var(--shadow-soft);
}

.glass-card:hover {
	transform: translateY(-10px);
	background: var(--white);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.glass-card,
.glass-card:visited {
	color: inherit;
}

.glass-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	background: rgba(178, 129, 78, 0.1);
	color: var(--gold);
}

.icon-tooth::before {
	content: '✦';
	font-size: 1.8rem;
	line-height: 1;
}

.glass-card h3 {
	margin: 0 0 1rem;
	font-size: 2rem;
}

.glass-card p {
	margin: 0;
	line-height: 1.8;
	color: #5b6472;
}

.glass-card--service {
	position: relative;
	display: block;
	isolation: isolate;
	min-height: 460px;
	padding: 0;
	overflow: hidden;
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(26, 35, 50, 0.96), rgba(33, 45, 62, 0.98)),
		var(--dark-bg);
	border: 1px solid rgba(178, 129, 78, 0.15);
	box-shadow: 0 28px 70px rgba(26, 35, 50, 0.3);
}

.glass-card-grid--services .glass-card--service:nth-child(1) {
	grid-column: span 7;
	min-height: 540px;
}

.glass-card-grid--services .glass-card--service:nth-child(2) {
	grid-column: span 5;
	min-height: 540px;
}

.glass-card-grid--services .glass-card--service:nth-child(n + 3) {
	grid-column: span 4;
	min-height: 360px;
}

.glass-card--service::before {
	content: '';
	position: absolute;
	inset: 14px;
	z-index: 1;
	border-radius: 24px;
	border: 1px solid rgba(244, 242, 239, 0.14);
	pointer-events: none;
}

.glass-card--service::after {
	content: '';
	position: absolute;
	left: -4%;
	bottom: 32%;
	z-index: 1;
	width: 46%;
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(178, 129, 78, 0.22), transparent 72%);
	filter: blur(14px);
	opacity: 0.72;
	pointer-events: none;
}

.glass-card--service:hover {
	transform: translateY(-10px) scale(1.01);
	background:
		linear-gradient(180deg, rgba(26, 35, 50, 0.96), rgba(33, 45, 62, 0.98)),
		var(--dark-bg);
	box-shadow: 0 34px 78px rgba(26, 35, 50, 0.35);
}

.glass-card__media,
.service-card__image {
	position: absolute;
	inset: 0;
	display: block;
}

.glass-card__media img,
.service-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.82) brightness(0.68) contrast(1.04) blur(0.35px);
	transition: transform 0.8s ease, filter 0.8s ease;
}

.glass-card__mask,
.service-card__mask {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 18%, rgba(178, 129, 78, 0.16), transparent 24%),
		linear-gradient(145deg, rgba(51, 51, 51, 0.28) 0%, rgba(51, 51, 51, 0.12) 24%, rgba(51, 51, 51, 0.4) 54%, rgba(51, 51, 51, 0.74) 100%);
	backdrop-filter: blur(1px);
	transition: opacity 0.5s ease, background 0.5s ease;
}

.glass-card__content,
.service-card__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: grid;
	gap: 0.9rem;
	padding: 2rem;
	color: var(--white);
	text-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.glass-card--service .glass-card__content {
	top: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 0.95rem;
	padding: 1.9rem;
}

.glass-card__content h3,
.service-card__body h2 {
	margin: 0;
	font-size: clamp(1.9rem, 2.5vw, 2.4rem);
	line-height: 1.05;
	color: var(--white);
	max-width: 11ch;
}

.glass-card__cta,
.service-card__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	width: fit-content;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.88);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.glass-card__cta::after,
.service-card__link::after {
	content: '';
	width: 22px;
	height: 1px;
	background: currentColor;
	position: relative;
}

.glass-card__cta::before,
.service-card__link::before {
	content: '';
	position: absolute;
	right: -1px;
	width: 8px;
	height: 8px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
}

.glass-card--service:hover .glass-card__media img,
.service-card--visual:hover .service-card__image img {
	transform: scale(1.05);
	filter: saturate(0.94) brightness(0.78) contrast(1.04) blur(0.1px);
}

.glass-card--service:hover .glass-card__mask,
.service-card--visual:hover .service-card__mask {
	background:
		radial-gradient(circle at 18% 18%, rgba(178, 129, 78, 0.2), transparent 28%),
		linear-gradient(145deg, rgba(51, 51, 51, 0.18) 0%, rgba(51, 51, 51, 0.1) 22%, rgba(51, 51, 51, 0.28) 48%, rgba(51, 51, 51, 0.58) 100%);
}

.glass-card--service:hover .glass-card__cta,
.service-card--visual:hover .service-card__link {
	opacity: 1;
	transform: translateY(0);
	color: var(--gold-light);
}

.bg-black {
	background-color: #05070a;
}

/* ─── Services Grid — editorial cards with animated icons ───── */
.vb-section {
	background:
		radial-gradient(circle at 84% 20%, rgba(14, 165, 233, 0.08), transparent 30%),
		linear-gradient(180deg, rgba(249, 252, 255, 0.96) 0%, rgba(243, 248, 252, 0.97) 28%, rgba(235, 242, 248, 0.99) 62%, rgba(229, 237, 244, 1) 100%);
	padding: 80px 0;
}

.vb-shell {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.vb-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 56px;
}

.vb-eyebrow {
	font-family: var(--font-sans);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #C5824A;
	text-transform: uppercase;
	margin-bottom: 14px;
	display: inline-block;
	position: relative;
}

.vb-eyebrow::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #C5824A;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vb-eyebrow.is-visible::after {
	transform: scaleX(1);
}

.vb-title {
	font-family: var(--font-serif);
	font-size: clamp(2.2rem, 5vw, 3.2rem);
	font-weight: 600;
	color: #1C2B4A;
	line-height: 1.15;
	margin: 0;
}

.vb-title em {
	font-style: italic;
	font-weight: 300;
}

.vb-cta {
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: #C5824A;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	text-decoration: none;
	padding-bottom: 4px;
}

.vb-cta:hover {
	color: #D4956A;
}

.vb-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}

.vb-card:nth-child(-n+3) {
	grid-column: span 2;
}

.vb-card:nth-child(n+4) {
	grid-column: span 3;
}

.vb-card {
	background: #f4f7fb;
	border: 1.5px solid rgba(28, 43, 74, 0.22);
	box-shadow: 0 2px 16px rgba(28, 43, 74, 0.07);
	padding: 40px 28px 36px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: background 0.4s cubic-bezier(.4,0,.2,1), border-color 0.4s;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}

.vb-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: #C5824A;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.vb-card:hover {
	background: #1C2B4A;
	border-color: #1C2B4A;
}

.vb-card:focus-visible {
	background: #1C2B4A;
	border-color: #C5824A;
}

.vb-card:hover::after {
	transform: scaleX(1);
}

.vb-card:focus-visible::after {
	transform: scaleX(1);
}

.vb-icon {
	width: 52px;
	height: 52px;
	margin-bottom: 4px;
	flex-shrink: 0;
}

.vb-icon svg {
	overflow: visible;
	display: block;
}

.vb-card-name {
	font-family: var(--font-serif);
	font-size: 1.8rem;
	font-weight: 600;
	color: #1C2B4A;
	line-height: 1.25;
	transition: color 0.4s;
}

.vb-card:hover .vb-card-name {
	color: #F0EBE3;
}

.vb-card:focus-visible .vb-card-name {
	color: #F0EBE3;
}

.vb-card-desc {
	font-family: var(--font-sans);
	font-size: 0.92rem;
	color: rgba(28, 43, 74, 0.68);
	font-weight: 400;
	line-height: 1.6;
	transition: color 0.4s;
}

.vb-card-desc strong {
	color: #1C2B4A;
	font-weight: 600;
	transition: color 0.4s;
}

.vb-card:hover .vb-card-desc,
.vb-card:focus-visible .vb-card-desc {
	color: rgba(240, 235, 227, 0.82);
}

.vb-card:hover .vb-card-desc strong,
.vb-card:focus-visible .vb-card-desc strong {
	color: #F0EBE3;
}

.vb-card-link {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: #C5824A;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: auto;
}

.vb-card:hover .vb-card-link {
	color: #D4956A;
}

.vb-card:focus-visible .vb-card-link {
	color: #D4956A;
}

.vb-arrow {
	display: inline-block;
	width: 12px;
	height: 1px;
	background: currentColor;
	position: relative;
	flex-shrink: 0;
	transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

.vb-arrow::after {
	content: '';
	position: absolute;
	top: -3px;
	right: -1px;
	width: 5px;
	height: 5px;
	border-right: 1.2px solid currentColor;
	border-top: 1.2px solid currentColor;
	transform: rotate(45deg);
}

.vb-card:hover .vb-arrow {
	transform: translateX(4px);
}

.vb-cta .vb-arrow {
	width: 16px;
}

.w-full {
	width: 100%;
}

.mb-4 {
	margin-bottom: 1.5rem;
}

.mt-3 {
	margin-top: 1rem;
}

.reviews-section {
	position: relative;
	background: linear-gradient(180deg, #20304b, #162238 72%);
	color: var(--white);
	overflow: hidden;
}

.reviews-section__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 2rem;
	align-items: end;
	margin-bottom: 2.5rem;
}

.reviews-section__intro .section-title {
	margin-bottom: 1.25rem;
	max-width: 780px;
}

.reviews-section__copy {
	margin: 0;
	max-width: 760px;
	color: rgba(255, 255, 255, 0.72);
}

.reviews-section__badge {
	padding: 1.5rem;
	border: 1px solid rgba(244, 242, 239, 0.1);
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(244, 242, 239, 0.08), rgba(244, 242, 239, 0.03));
	box-shadow: var(--shadow-strong);
}

.reviews-section__badge-stars {
	margin-bottom: 0.75rem;
	color: var(--gold);
	letter-spacing: 0.2em;
	font-size: 1rem;
}

.reviews-section__badge strong {
	display: block;
	font-size: 2rem;
	font-family: var(--font-serif);
	font-weight: 600;
	color: var(--white);
}

.reviews-section__badge p {
	margin: 0.75rem 0 0;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.72);
}

.reviews-carousel {
	position: relative;
}

.reviews-carousel__controls {
	display: flex;
	justify-content: flex-end;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.reviews-carousel__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: var(--white);
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	transition: var(--transition);
}

.reviews-carousel__button:hover:not(:disabled) {
	background: rgba(178, 129, 78, 0.14);
	border-color: rgba(178, 129, 78, 0.5);
	color: var(--gold-light);
	transform: translateY(-2px);
}

.reviews-carousel__button:disabled {
	opacity: 0.35;
	cursor: default;
}

.reviews-carousel__viewport {
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 0.35rem;
}

.reviews-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.reviews-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 3rem) / 3);
	gap: 1.5rem;
}

.review-card {
	scroll-snap-align: start;
	display: grid;
	gap: 1.35rem;
	min-height: 100%;
	padding: 2rem;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow-strong);
}

.review-card__top {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.review-card__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--avatar-color, #2d6a4f);
	color: var(--white);
	font-size: 1.8rem;
	font-weight: 700;
	flex: 0 0 auto;
}

.review-card__identity h3 {
	margin: 0;
	font-size: 1.55rem;
	font-family: var(--font-sans);
	font-weight: 700;
	letter-spacing: -0.03em;
}

.review-card__identity p {
	margin: 0.35rem 0 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.95rem;
	line-height: 1.5;
}

.review-card__rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.8rem;
}

.review-card__stars {
	color: #ffbf23;
	letter-spacing: 0.15em;
	font-size: 1rem;
}

.review-card__time {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.95rem;
}

.review-card__quote {
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.08rem;
	line-height: 1.85;
}

.reviews-grid-featured {
	display: grid;
	gap: 2rem;
	margin-top: 3rem;
	align-items: stretch;
}

.reviews-carousel--featured .reviews-grid-featured {
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 4rem) / 3);
}

.review-card {
	min-width: 0;
	background: linear-gradient(180deg, rgba(22, 33, 49, 0.96), rgba(12, 19, 29, 0.99));
	border: 1px solid rgba(178, 129, 78, 0.18);
	padding: 2.5rem;
	border-radius: 20px;
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	scroll-snap-align: start;
}

.review-card:hover {
	transform: translateY(-10px);
	border-color: rgba(198, 213, 226, 0.34);
	box-shadow: 0 22px 42px rgba(10, 18, 28, 0.28);
}

.review-card__stars {
	color: #d4af37;
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	letter-spacing: 2px;
}

.review-card__quote {
	color: rgba(255, 255, 255, 0.86);
	font-family: var(--font-sans);
	font-weight: 500;
	font-size: 1.15rem;
	line-height: 1.7;
	margin: 0 0 2rem;
	position: relative;
	flex: 1 1 auto;
}

.review-card__footer {
	display: flex;
	align-items: center;
	gap: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 1.5rem;
}

.review-card__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	flex: 0 0 auto;
}

.review-card__info h4 {
	color: var(--white);
	margin: 0;
	font-size: 1rem;
	font-family: var(--font-sans);
	font-weight: 700;
	letter-spacing: 0;
}

.review-card__info span {
	color: rgba(244, 242, 239, 0.58);
	font-size: 0.85rem;
	display: block;
	margin-top: 2px;
}

.reviews-carousel--featured .reviews-carousel__controls {
	display: none;
}

.reviews-carousel--featured .reviews-carousel__viewport {
	padding-bottom: 0.5rem;
	overflow: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.reviews-carousel--featured.is-looping .reviews-carousel__viewport {
	scroll-behavior: auto;
	scroll-snap-type: none;
}

.reviews-carousel--featured.is-looping .review-card {
	scroll-snap-align: unset;
}

.reviews-carousel--featured {
	position: relative;
	padding: 0 2.5rem;
}

.reviews-carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.42);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
	backdrop-filter: blur(4px);
}

.reviews-carousel__arrow span {
	display: block;
	font-size: 1.1rem;
	line-height: 1;
	transform: translateY(-1px);
}

.reviews-carousel__arrow:hover {
	background: rgba(244, 242, 239, 0.08);
	color: rgba(178, 129, 78, 0.92);
}

.reviews-carousel__arrow:focus-visible {
	background: rgba(244, 242, 239, 0.08);
	color: rgba(178, 129, 78, 0.92);
}

.reviews-carousel__arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.reviews-carousel__arrow--prev {
	left: 0;
}

.reviews-carousel__arrow--next {
	right: 0;
}

.contact-section {
	background:
		radial-gradient(circle at top left, rgba(178, 129, 78, 0.1), transparent 28%),
		linear-gradient(180deg, var(--paper-1), var(--paper-2) 70%);
}

.contact-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 3rem;
	align-items: start;
}

.contact-section__lead {
	max-width: 700px;
	margin: 0 0 1.5rem;
	font-size: 1.08rem;
	line-height: 1.85;
	color: var(--text-body);
}

.contact-section__benefits {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 1rem;
}

.contact-section__benefits li {
	position: relative;
	padding-left: 1.5rem;
	line-height: 1.8;
	color: var(--text-body);
}

.contact-section__benefits li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.82rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
}

.contact-section__details {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.contact-section__details div {
	padding: 1.25rem;
	border-radius: 22px;
	background: rgba(248, 250, 253, 0.92);
	border: 1px solid var(--line-dark);
	box-shadow: var(--shadow-soft);
}

.contact-section__details span {
	display: block;
	margin-bottom: 0.55rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

.contact-section__details a,
.contact-section__details p {
	margin: 0;
	color: var(--text-dark);
	line-height: 1.7;
	font-weight: 600;
}

.contact-section__form-wrap {
	padding: 2rem;
	border-radius: 32px;
	background: linear-gradient(180deg, #253446, #1a2332 72%);
	box-shadow: var(--shadow-strong);
}

.contact-form__notice {
	margin-bottom: 1rem;
	padding: 1rem 1.1rem;
	border-radius: 18px;
	font-weight: 600;
	line-height: 1.7;
}

.contact-form__notice--success {
	background: #e9f7ee;
	border: 1px solid #8fcca1;
	color: #14532d;
}

.contact-form__notice--error {
	background: #fde8e8;
	border: 1px solid #ef9a9a;
	color: #7f1d1d;
}

.contact-section__form {
	display: grid;
	gap: 1.25rem;
}

.contact-section__form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.contact-form__field {
	display: grid;
	gap: 0.55rem;
}

.contact-form__field--full {
	grid-column: 1 / -1;
}

.contact-form__field span {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.74);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
	width: 100%;
	padding: 1rem 1.05rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
	font: inherit;
	appearance: none;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
	color: rgba(255, 255, 255, 0.42);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
	outline: none;
	border-color: rgba(178, 129, 78, 0.65);
	box-shadow: 0 0 0 3px rgba(178, 129, 78, 0.12);
}

.contact-form__field select option {
	color: var(--text-dark);
}

.contact-form__field textarea {
	resize: vertical;
	min-height: 150px;
}

.contact-form__submit {
	justify-self: start;
}

.contact-fullwidth {
	background:
		radial-gradient(circle at top left, rgba(14, 165, 233, 0.09), transparent 24%),
		linear-gradient(180deg, rgba(249, 252, 255, 0.96) 0%, rgba(243, 248, 252, 0.97) 28%, rgba(235, 242, 248, 0.99) 62%, rgba(229, 237, 244, 1) 100%);
	position: relative;
	overflow: hidden;
}

.contact-fullwidth--with-bg {
	background-image:
		linear-gradient(180deg, rgba(15, 22, 34, 0.5), rgba(15, 22, 34, 0.6)),
		var(--contact-section-bg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	isolation: isolate;
}

.contact-fullwidth--with-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top left, rgba(56, 189, 248, 0.11), transparent 28%),
		radial-gradient(circle at bottom right, rgba(15, 25, 39, 0.18), transparent 34%);
	z-index: -1;
}

.contact-fullwidth--with-bg .contact-fullwidth__header {
	padding: 1.75rem 2rem;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(15, 22, 34, 0.62), rgba(15, 22, 34, 0.48));
	box-shadow: 0 18px 40px rgba(8, 10, 14, 0.18);
}

.contact-fullwidth--with-bg .gold-accent-line,
.contact-fullwidth--with-bg .section-title,
.contact-fullwidth--with-bg .contact-fullwidth__copy {
	color: var(--white);
}

.contact-fullwidth--with-bg .contact-fullwidth__copy {
	color: rgba(255, 255, 255, 0.84);
}

.contact-fullwidth__header {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.contact-fullwidth__copy {
	color: #587084;
	font-size: 1.05rem;
	line-height: 1.8;
	margin: 0;
}

.contact-fullwidth__card {
	max-width: 860px;
	margin: 0 auto;
	background: var(--white);
	padding: 3.5rem 4rem;
	border-radius: 24px;
	box-shadow:
		0 8px 22px rgba(24, 36, 51, 0.04),
		0 24px 48px rgba(24, 36, 51, 0.08);
	border: 1px solid rgba(24, 36, 51, 0.08);
}

.contact-fullwidth--with-bg .contact-fullwidth__card {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
}

.contact-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.contact-form--fullwidth label {
	color: #444;
}

.contact-form--fullwidth input,
.contact-form--fullwidth select,
.contact-form--fullwidth textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	border: 1.5px solid #d4dee7;
	border-radius: 12px;
	background: #f7fafc;
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--text-dark);
	transition: all 0.3s ease;
	appearance: none;
}

.contact-form--fullwidth input:focus,
.contact-form--fullwidth select:focus,
.contact-form--fullwidth textarea:focus {
	outline: none;
	border-color: var(--gold);
	background: var(--white);
	box-shadow: 0 0 0 4px rgba(178, 129, 78, 0.12);
}

.contact-form--fullwidth input::placeholder,
.contact-form--fullwidth textarea::placeholder {
	color: #aaa;
	font-weight: 400;
}

.contact-form--fullwidth select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c58d76' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.25rem center;
	padding-right: 3rem;
}

.contact-form--fullwidth .btn-gold-solid {
	padding: 1.1rem 2rem;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	letter-spacing: 0.04em;
}

/* Footer Map */
.footer-map {
	position: relative;
	margin-top: 3rem;
	overflow: hidden;
	border-radius: 16px;
	margin-left: 2rem;
	margin-right: 2rem;
}

.contact-section {
	background:
		radial-gradient(circle at top left, rgba(178, 129, 78, 0.14), transparent 24%),
		radial-gradient(circle at bottom right, rgba(40, 58, 80, 0.15), transparent 28%),
		linear-gradient(180deg, #212d3e, #1a2332 72%);
	color: var(--white);
}

.contact-section .section-title,
.contact-section .contact-section__text strong,
.contact-section .contact-section__text a,
.contact-section .contact-section__text p {
	color: var(--white);
}

.contact-section .gold-accent-line {
	color: var(--gold);
}

.contact-section .contact-form-card {
	background-color: var(--light-bg);
	border: 1px solid var(--line-dark);
}

.contact-section .contact-form-card h3,
.contact-section .contact-form label,
.contact-section .contact-form input,
.contact-section .contact-form select,
.contact-section .contact-form textarea {
	color: var(--text-dark);
}

.contact-section .contact-form input,
.contact-section .contact-form select,
.contact-section .contact-form textarea {
	border-bottom-color: #cfc9c1;
}

.contact-section__layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	align-items: start;
}

.contact-section__info {
	padding-top: 1rem;
}

.contact-section__list {
	margin-top: 2.5rem;
}

.contact-section__item {
	display: flex;
	gap: 1.2rem;
	margin-bottom: 2rem;
}

.contact-section__icon {
	color: var(--gold);
	font-size: 1.2rem;
	margin-top: 4px;
	flex: 0 0 auto;
}

.contact-section__text strong {
	display: block;
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 0.3rem;
}

.contact-section__text p,
.contact-section__text a {
	color: var(--text-body);
	text-decoration: none;
	line-height: 1.6;
	margin: 0;
}

.contact-form-card {
	background-color: var(--light-bg);
	padding: 3rem;
	box-shadow: 0 30px 60px rgba(51, 51, 51, 0.1);
	border: 1px solid var(--line-dark);
	border-radius: 4px;
}

.contact-form-group {
	margin-bottom: 1.5rem;
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.contact-form label {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #77726b;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 0.8rem 0;
	border: none;
	border-bottom: 1px solid #dcd9d4;
	background: transparent;
	transition: border-color 0.3s;
	font-family: inherit;
	appearance: none;
	border-radius: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-bottom-color: var(--gold);
	box-shadow: none;
}

.contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-form-note {
	margin: 0 0 1rem;
	color: #5b7081;
	font-size: 0.95rem;
	line-height: 1.65;
}

.contact-form-note a {
	color: var(--gold-dark);
	text-decoration: underline;
	text-underline-offset: 0.18rem;
	border-radius: 4px;
}

.legal-page {
	max-width: 920px;
}

.legal-page__updated {
	margin: 0 0 1.25rem;
	color: #6e675f;
	font-size: 0.95rem;
}

.legal-page__intro {
	margin: 0 0 2rem;
	color: var(--text-body);
	font-size: 1.05rem;
	line-height: 1.8;
}

.legal-page__section + .legal-page__section {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(28, 43, 74, 0.12);
}

.legal-page__section h2 {
	margin: 0 0 0.85rem;
	color: var(--text-dark);
	font-size: clamp(1.4rem, 2vw, 1.85rem);
}

.legal-page__section p {
	margin: 0;
	color: var(--text-body);
	line-height: 1.8;
}

.legal-page__section p + p {
	margin-top: 1rem;
}

.privacy-embed {
	position: relative;
	min-height: 300px;
	background: linear-gradient(135deg, rgba(22, 34, 56, 0.96), rgba(32, 48, 75, 0.94));
}

.privacy-embed iframe {
	width: 100%;
	height: 100%;
	min-height: 300px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.privacy-embed.is-active iframe {
	opacity: 1;
	pointer-events: auto;
}

.privacy-embed__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 2rem;
	text-align: center;
	background:
		radial-gradient(circle at top, rgba(178, 129, 78, 0.18), transparent 48%),
		linear-gradient(135deg, rgba(22, 34, 56, 0.96), rgba(32, 48, 75, 0.98));
	z-index: 1;
}

.privacy-embed.is-active .privacy-embed__placeholder {
	display: none;
}

.privacy-embed__placeholder p {
	max-width: 34rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
}

.privacy-embed__action {
	border: 0;
	cursor: pointer;
}

.privacy-panel {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 24px;
	z-index: 2147483000;
	width: auto;
	max-width: 680px;
	margin-inline: auto;
	pointer-events: auto;
}

.privacy-panel[hidden] {
	display: none;
	pointer-events: none;
}

.privacy-panel__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(182, 197, 213, 0.22);
	border-radius: 20px;
	background: rgba(19, 31, 47, 0.96);
	box-shadow: 0 26px 60px rgba(10, 18, 30, 0.24);
	pointer-events: auto;
}

.privacy-panel__inner p {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.95rem;
	line-height: 1.6;
}

.privacy-panel__actions {
	display: flex;
	flex: 0 0 auto;
	gap: 0.75rem;
	align-items: center;
}

.privacy-panel__actions .btn-gold-outline,
.privacy-panel__actions .btn-gold-solid {
	border: 0;
	cursor: pointer;
	pointer-events: auto;
	position: relative;
	z-index: 1;
	touch-action: manipulation;
}

.footer-cookie-link {
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-decoration: underline;
	text-underline-offset: 0.18rem;
	cursor: pointer;
}

.page-hero,
.service-hero {
	position: relative;
	padding: 180px 0 90px;
	overflow: hidden;
	isolation: isolate;
}

.service-hero {
	color: var(--white);
}

.page-hero {
	background:
		radial-gradient(circle at top left, rgba(178, 129, 78, 0.16), transparent 35%),
		radial-gradient(circle at bottom right, rgba(166, 166, 161, 0.14), transparent 30%),
		linear-gradient(135deg, var(--paper-1), var(--paper-2) 65%, var(--paper-3));
	color: var(--text-dark);
}

.page-hero--visual {
	color: var(--white);
	background: #162238;
}

.page-hero--visual h1,
.page-hero--visual .page-hero__copy,
.page-hero--visual .eyebrow {
	color: var(--white);
}

.page-hero--visual .eyebrow::after {
	background-color: rgba(255, 255, 255, 0.9);
}

.page-hero--pricing .page-hero__media {
	background-position: center 42%;
	transform: scale(1.06);
	filter: saturate(0.92) brightness(0.48) contrast(1.04);
}

.page-hero--pricing .page-hero__overlay {
	background:
		linear-gradient(90deg, rgba(15, 22, 34, 0.54), rgba(15, 22, 34, 0.22)),
		linear-gradient(180deg, rgba(15, 22, 34, 0.14), rgba(15, 22, 34, 0.18));
}

.page-hero--pricing {
	min-height: 78vh;
	display: flex;
	align-items: center;
}

.page-hero h1,
.service-hero h1 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(3rem, 6vw, 5rem);
	line-height: 1;
}

.hero-word-accent {
	color: var(--gold-light);
}

.service-hero h1 {
	color: var(--white);
	text-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.eyebrow {
	display: inline-block;
	margin: 0 0 1rem;
	font-family: var(--font-sans);
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.8rem;
	font-weight: 700;
	position: relative;
}

.eyebrow::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.eyebrow.is-visible::after {
	transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.gold-accent-line::after,
	.eyebrow::after,
	.vb-eyebrow::after {
		transform: scaleX(1);
		transition: none;
	}

	.bd-services__name[data-aos] {
		opacity: 1 !important;
		transform: none !important;
	}

	.site-header-shell,
	.btn-gold-solid,
	.btn-gold-outline,
	.btn-link-white,
	.doctor-inline-card,
	.doctor-inline-card__image img,
	.review-card,
	.glass-card__media img,
	.glass-card__mask,
	.glass-card__cta,
	.service-card__image img,
	.service-card__mask,
	.service-card__link,
	.vb-card,
	.vb-card::after,
	.vb-card-name,
	.vb-card-desc,
	.vb-arrow {
		animation: none !important;
		transition: none !important;
	}
}

.page-hero__copy,
.service-hero__copy {
	max-width: 760px;
	margin: 1.5rem 0 0;
	font-size: 1.05rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.96);
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.section-block {
	padding: 88px 0;
}

.section-block--editorial {
	position: relative;
	background: linear-gradient(180deg, #f7f9fc 0%, #f9f9f8 38%, #fdfcfa 68%, #ffffff 100%);
}

.section-block--editorial .site-shell {
	position: relative;
	z-index: 1;
}

.section-block--soft {
	background: linear-gradient(180deg, rgba(11, 15, 20, 0.03), rgba(11, 15, 20, 0.06));
}

.about-story {
	background: linear-gradient(135deg, rgba(248, 250, 253, 0.96) 0%, rgba(251, 252, 254, 0.98) 46%, rgba(255, 255, 255, 1) 100%);
}

.page-hero--services + .section-block,
.page-hero--services + .section-block + .section-block.section-block--soft {
	background: linear-gradient(135deg, rgba(248, 250, 253, 0.96) 0%, rgba(251, 252, 254, 0.98) 46%, rgba(255, 255, 255, 1) 100%);
}

.section-block--service-form {
	position: relative;
	background-image:
		linear-gradient(180deg, rgba(15, 22, 34, 0.5), rgba(15, 22, 34, 0.62)),
		var(--service-form-bg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	isolation: isolate;
}

.section-block--service-form::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top left, rgba(200, 154, 102, 0.16), transparent 28%),
		radial-gradient(circle at bottom right, rgba(15, 22, 34, 0.24), transparent 34%);
	z-index: -1;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 2.5rem;
}

.section-heading h2 {
	margin: 0;
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	line-height: 1.08;
}

.split-section,
.doctor-highlight,
.visit-section,
.service-detail {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 3rem;
	align-items: center;
}

.split-section__copy p,
.doctor-highlight__copy p,
.prose-content p,
.service-detail__copy p {
	line-height: 1.9;
	color: var(--text-body);
}

.split-section__media img,
.doctor-highlight__image img,
.service-detail__media img {
	width: 100%;
	border-radius: 28px;
	box-shadow: var(--shadow-strong);
	object-fit: cover;
}

.feature-list,
.team-list,
.footer-list,
.pricing-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-list,
.team-list,
.footer-list {
	display: grid;
	gap: 0.9rem;
}

.feature-list li {
	padding-left: 1.4rem;
	position: relative;
	line-height: 1.8;
}

.feature-list li span {
	display: block;
	color: var(--text-body);
	font-size: 0.95rem;
	line-height: 1.7;
}

.feature-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.75rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
}

.doctor-role {
	margin-top: 0;
	color: var(--gold);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.82rem;
}

.team-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.about-story--with-bridge {
	padding-bottom: 190px;
}

.team-bridge {
	position: relative;
	z-index: 3;
	margin-top: -145px;
	margin-bottom: -145px;
}

.team-bridge--homepage {
	margin-top: -18px;
	margin-bottom: -392px;
	overflow: hidden;
	background: linear-gradient(180deg, #e5edf4 0 42%, var(--dark-bg) 42% 100%);
}

.team-bridge--homepage::before {
	content: none;
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.team-bridge--homepage > .site-shell {
	position: relative;
	z-index: 1;
}

.team-bridge__card {
	max-width: 1080px;
	margin: 0 auto;
	padding: 14px;
	border-radius: 34px;
	background: linear-gradient(180deg, rgba(248, 250, 253, 0.92), rgba(252, 252, 250, 0.68));
	border: 1px solid rgba(178, 129, 78, 0.28);
	box-shadow: 0 24px 60px rgba(51, 51, 51, 0.12);
	backdrop-filter: blur(12px);
}

.team-bridge__card img {
	width: 100%;
	aspect-ratio: 16 / 7;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: var(--shadow-strong);
}

/* Homepage variant — gallery-framed dark card harmonized with doctor portraits */
.team-bridge--homepage .team-bridge__card {
	position: relative;
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 60%),
		linear-gradient(135deg, #1c2c47 0%, #20304b 55%, #243556 100%);
	border: 1.5px solid rgba(178, 129, 78, 0.55);
	box-shadow:
		0 38px 90px rgba(10, 18, 30, 0.42),
		0 14px 40px rgba(10, 18, 30, 0.28),
		inset 0 0 0 1px rgba(200, 154, 102, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.14);
	backdrop-filter: none;
	isolation: isolate;
}

.team-bridge--homepage .team-bridge__card::before {
	content: '';
	position: absolute;
	inset: -8% -2% -8% -2%;
	z-index: -1;
	background:
		radial-gradient(ellipse at 50% 50%, rgba(200, 154, 102, 0.22) 0%, rgba(200, 154, 102, 0.08) 38%, transparent 64%),
		radial-gradient(ellipse at 50% 100%, rgba(22, 34, 56, 0.4) 0%, transparent 60%);
	filter: blur(36px);
	opacity: 0.85;
	pointer-events: none;
	border-radius: inherit;
}

.team-bridge--homepage .team-bridge__card::after {
	content: '';
	position: absolute;
	inset: -10px;
	border: 1px solid rgba(178, 129, 78, 0.32);
	border-radius: 36px;
	pointer-events: none;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
	z-index: 0;
}

.team-bridge--homepage .team-bridge__card img {
	position: relative;
	border-radius: 22px;
	box-shadow:
		0 18px 40px rgba(10, 18, 30, 0.32),
		inset 0 0 0 1px rgba(178, 129, 78, 0.22);
	z-index: 1;
	object-position: 50% 15%;
}

.team-showcase {
	padding-top: 205px;
}

.team-showcase--homepage {
	padding-top: 2.25rem;
	padding-bottom: 5rem;
	background: linear-gradient(180deg, #162238 0%, #16243c 100%);
}

.team-showcase > .site-shell {
	max-width: 1760px;
	position: relative;
	padding-left: clamp(1.25rem, 2vw, 2.6rem);
	padding-right: clamp(1.25rem, 2vw, 2.6rem);
	padding-top: 2rem;
	padding-bottom: 2rem;
	isolation: isolate;
}

.team-showcase--homepage > .site-shell::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: 42px;
	background:
		radial-gradient(circle at 50% 0%, rgba(200, 154, 102, 0.08), transparent 28%),
		radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.05), transparent 24%),
		radial-gradient(circle at 88% 50%, rgba(255, 255, 255, 0.05), transparent 24%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.008) 100%),
		linear-gradient(135deg, rgba(29, 46, 76, 0.72) 0%, rgba(22, 35, 58, 0.84) 52%, rgba(18, 30, 50, 0.88) 100%);
	box-shadow:
		0 34px 70px rgba(10, 18, 30, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.team-showcase--homepage > .site-shell::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: 42px;
	background:
		linear-gradient(90deg, transparent 0%, rgba(200, 154, 102, 0.18) 18%, rgba(200, 154, 102, 0.18) 82%, transparent 100%) top center / calc(100% - 7rem) 1px no-repeat,
		linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.08) 80%, transparent 100%) bottom center / calc(100% - 9rem) 1px no-repeat,
		radial-gradient(circle at top center, rgba(200, 154, 102, 0.12), transparent 30%);
	pointer-events: none;
}

@media (min-width: 992px) {
	.team-showcase > .site-shell {
		max-width: 1584px;
	}
}

.team-intro--with-bridge {
	padding-top: 405px;
	position: relative;
}

/* Warm gold spotlight that ties the bridge halo to the badge/heading */
.team-intro--with-bridge::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 360px;
	width: min(900px, 92vw);
	height: 380px;
	transform: translateX(-50%);
	background:
		radial-gradient(ellipse at center, rgba(200, 154, 102, 0.18) 0%, rgba(200, 154, 102, 0.06) 38%, transparent 68%);
	filter: blur(18px);
	pointer-events: none;
	z-index: 0;
}

.team-intro--with-bridge > .site-shell {
	position: relative;
	z-index: 1;
}

/* Decorative gold rule below the heading — echoes the doctor card rule */
.team-intro--with-bridge .section-title {
	position: relative;
	padding-bottom: 1.4rem;
	margin-bottom: 1.6rem;
}

.team-intro--with-bridge .section-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 110px;
	height: 1.5px;
	background: linear-gradient(90deg, transparent 0%, rgba(178, 129, 78, 0.3) 18%, var(--gold) 50%, rgba(178, 129, 78, 0.3) 82%, transparent 100%);
	border-radius: 2px;
}

.team-intro--with-bridge .small-badge {
	position: relative;
	box-shadow:
		0 0 0 1px rgba(200, 154, 102, 0.2),
		0 14px 26px rgba(8, 12, 18, 0.32);
}

.team-intro--with-bridge .team-intro__intro p {
	color: rgba(245, 242, 237, 0.78);
}

.team-intro--with-bridge .team-intro__intro p + p {
	margin-top: 1rem;
}

.team-intro__label {
	display: flex;
	width: fit-content;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.85rem;
	margin: 1.3rem auto 0;
	border-radius: 999px;
	border: 1px solid rgba(200, 154, 102, 0.34);
	background: linear-gradient(180deg, rgba(250, 245, 238, 0.08), rgba(250, 245, 238, 0.04));
	color: rgba(247, 239, 229, 0.92);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	line-height: 1;
	backdrop-filter: blur(10px);
	cursor: default;
}

.team-intro__label::before,
.team-intro__label::after {
	content: '';
	width: 24px;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(200, 154, 102, 0.92) 100%);
}

.team-intro__label::before {
	margin-right: 0.85rem;
}

.team-intro__label::after {
	margin-left: 0.85rem;
	transform: scaleX(-1);
}

.team-intro--with-bridge {
	padding-bottom: 3.5rem;
}

.team-showcase__heading {
	max-width: 980px;
	text-align: center;
	margin: 0 auto 2.5rem;
}

.team-showcase__heading p {
	line-height: 1.85;
	color: var(--text-body);
}

.doctor-inline-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1.65rem;
	align-items: stretch;
}

.doctor-inline-card {
	overflow: hidden;
	position: relative;
	border-radius: 30px 30px 22px 22px;
	min-height: 100%;
	background:
		linear-gradient(180deg, rgba(248, 243, 238, 0.98), rgba(238, 231, 224, 0.94)),
		linear-gradient(135deg, rgba(178, 129, 78, 0.1), rgba(32, 48, 75, 0.04));
	border: 1px solid rgba(178, 129, 78, 0.16);
	box-shadow: 0 18px 34px rgba(15, 25, 39, 0.12);
	transition: var(--transition);
}

.doctor-inline-card::before {
	content: '';
	position: absolute;
	inset: 0 0 auto 0;
	height: 6px;
	background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
	opacity: 0.92;
}

.doctor-inline-card::after {
	content: '';
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(32, 48, 75, 0.06);
	border-radius: 22px 22px 16px 16px;
	pointer-events: none;
}

.doctor-inline-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 26px 40px rgba(15, 25, 39, 0.18);
}

.doctor-inline-card__image {
	aspect-ratio: 5 / 6;
	overflow: hidden;
	margin: 12px 12px 0;
	border-radius: 22px;
	box-shadow: 0 16px 28px rgba(22, 34, 56, 0.12);
}

.doctor-inline-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 18%;
	transition: transform 0.5s ease;
}

.doctor-inline-card:hover .doctor-inline-card__image img {
	transform: scale(1.04);
}

.doctor-inline-card__body {
	padding: 1rem 1rem 1.2rem;
	text-align: center;
}

.doctor-inline-card__body h3 {
	margin: 0 0 0.45rem;
	font-size: 1.24rem;
	line-height: 1.1;
}

.doctor-inline-card__body p {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.6;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--gold-dark);
	font-weight: 700;
}

.team-columns--support {
	margin-top: 2.75rem;
}

.doctor-inline-grid--homepage .doctor-inline-card {
	background: linear-gradient(180deg, #1C2B4A 0%, #162240 100%);
	border-color: rgba(178, 129, 78, 0.25);
}

.doctor-inline-grid--homepage .doctor-inline-card__body h3 {
	color: #F0EBE3;
}

.doctor-inline-grid--homepage .doctor-inline-card__body p {
	color: var(--gold);
}

.team-support-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(190px, 1fr));
	gap: 1.35rem;
	margin-top: 1.4rem;
	align-items: stretch;
}

.team-support-card {
	border-radius: 26px 26px 20px 20px;
	min-height: 100%;
}

.team-support-card__image {
	aspect-ratio: 1 / 1.14;
	margin: 10px 10px 0;
	border-radius: 18px;
}

.team-support-card__image img {
	object-position: center 22%;
	transform: scale(1.04);
}

.team-support-card__body {
	padding: 1.08rem 0.95rem 1.18rem;
}

.team-support-card__body h3 {
	font-size: 1.18rem;
	line-height: 1.28;
}

.team-support-card__body p {
	font-size: 0.84rem;
	line-height: 1.6;
	letter-spacing: 0.08em;
}

.testimonial-grid,
.service-grid,
.pricing-grid,
.service-mini-grid {
	display: grid;
	gap: 1.5rem;
}

.testimonial-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card--light,
.service-card,
.pricing-card,
.visit-section__card,
.service-mini-card {
	background: var(--white);
	border: 1px solid rgba(11, 15, 20, 0.08);
	border-radius: 26px;
	box-shadow: var(--shadow-soft);
}

.testimonial-card--light,
.visit-section__card,
.pricing-card {
	padding: 2rem;
}

.testimonial-card--light p {
	margin-top: 0;
	line-height: 1.8;
	color: var(--text-body);
}

.testimonial-card--light cite {
	color: var(--text-dark);
	font-style: normal;
	font-weight: 700;
}

.visit-section__map iframe {
	min-height: 480px;
	border-radius: 28px;
	box-shadow: var(--shadow-soft);
}

.service-grid {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
	overflow: hidden;
}

.service-card--visual {
	position: relative;
	min-height: 440px;
	border-radius: 26px;
	background: var(--dark-bg);
	border: 1px solid rgba(178, 129, 78, 0.12);
	box-shadow: var(--shadow-strong);
}

.service-card__visual {
	position: relative;
	display: block;
	min-height: 440px;
	color: inherit;
}

.service-card__image {
	overflow: hidden;
}

.service-card__body {
	padding: 2rem;
}

.service-card__body h2,
.pricing-card h3,
.service-detail__copy h2 {
	margin-top: 0;
}

.pricing-grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-grid--full {
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.pricing-columns {
	display: grid;
	gap: 1.5rem;
}

.pricing-column {
	display: grid;
	gap: 1.5rem;
	align-content: start;
}

.pricing-list {
	display: grid;
	gap: 1rem;
}

.pricing-list--detailed li {
	align-items: start;
}

.pricing-list--detailed span {
	line-height: 1.7;
}

.pricing-list--detailed strong {
	flex: 0 0 auto;
	text-align: right;
	white-space: nowrap;
}

.pricing-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(11, 15, 20, 0.08);
}

.pricing-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.pricing-note {
	margin: 1.5rem 0 0;
	color: #6a7280;
}

.pricing-card--full h3 {
	margin-bottom: 1.5rem;
}

details.pricing-accordion {
	padding: 0;
	overflow: hidden;
}

.pricing-accordion__summary {
	list-style: none;
	cursor: default;
	padding: 2rem 2rem 0;
}

.pricing-accordion__summary::-webkit-details-marker {
	display: none;
}

.pricing-accordion__content {
	padding: 0 2rem 2rem;
}

@media (min-width: 961px) {
	.pricing-columns {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.pricing-accordion__summary {
		pointer-events: none;
	}
}

.service-hero {
	min-height: 72vh;
	display: flex;
	align-items: end;
	color: var(--white);
}

.service-hero__content {
	position: relative;
	z-index: 1;
	max-width: 980px;
}

.service-detail__copy h2 {
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	line-height: 1.08;
}

.service-detail--single {
	grid-template-columns: 1fr;
}

.service-detail--single .service-detail__copy {
	max-width: 1040px;
	margin: 0 auto;
}

.service-article {
	position: relative;
	width: min(100%, 1080px);
	margin: 0 auto;
	padding: 0;
}

.service-detail__copy {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 3rem;
}

.service-detail__intro {
	position: relative;
	max-width: 78rem;
	padding: 0 0 2.35rem;
	border-bottom: 1px solid rgba(178, 129, 78, 0.22);
}

.service-detail__intro::after {
	content: '';
	position: absolute;
	left: 0;
	top: -1.1rem;
	width: 112px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold-dark), rgba(178, 129, 78, 0));
}

.service-detail__intro p {
	margin: 0;
}

.service-detail__intro p + p {
	margin-top: 1rem;
}

.service-detail__intro p:first-of-type {
	font-family: var(--font-serif);
	max-width: 38ch;
	font-size: clamp(1.32rem, 2vw, 1.72rem);
	font-weight: 600;
	line-height: 1.62;
	letter-spacing: -0.01em;
	color: var(--text-dark);
}

.service-detail__intro p:not(:first-of-type) {
	max-width: 66ch;
	font-size: 1.02rem;
	font-weight: 500;
	line-height: 1.85;
	color: #5b6470;
}

.service-detail__body {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.5rem;
}

.service-detail__body p {
	width: min(100%, 70ch);
	margin: 0;
	font-size: 1.04rem;
	line-height: 1.95;
	color: #46505d;
}

.service-detail__body p:first-child {
	position: relative;
	padding-top: 1.5rem;
	font-size: 1.12rem;
	font-weight: 600;
	color: var(--text-dark);
}

.service-detail__body p:first-child::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 88px;
	height: 1px;
	background: linear-gradient(90deg, rgba(26, 35, 50, 0.72), rgba(26, 35, 50, 0));
}

.service-detail__body p:nth-child(3n + 2) {
	margin-left: clamp(0rem, 3vw, 2.6rem);
}

.service-detail__body p:nth-child(4n) {
	width: min(100%, 66ch);
	color: #3c4653;
}

.service-contact {
	max-width: 820px;
	margin: 0 auto;
}

.service-contact__card {
	border-radius: 28px;
	padding: 3rem;
	box-shadow: 0 30px 70px rgba(11, 15, 20, 0.1);
	background: rgba(248, 250, 253, 0.96);
	backdrop-filter: blur(8px);
}

.service-contact__selected {
	margin: 0 0 2rem;
	color: #59606d;
	line-height: 1.7;
}

.service-contact__selected strong {
	color: var(--text-dark);
}

.service-mini-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-mini-card {
	display: grid;
	gap: 0.8rem;
	padding: 1.5rem;
	transition: var(--transition);
}

.service-mini-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.service-mini-card strong {
	font-size: 1.15rem;
	font-family: var(--font-serif);
	font-weight: 600;
}

.service-mini-card span {
	color: var(--text-body);
	line-height: 1.7;
}

.prose-content {
	max-width: 820px;
}

.site-footer-main {
	padding: 72px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.85fr 0.95fr 1fr 0.9fr;
	gap: 3rem;
}

.footer-links h3,
.footer-brand h2 {
	margin-top: 0;
}

.footer-brand__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 1.5rem;
}

@media (min-width: 961px) {
	.footer-brand__actions .btn-gold-solid {
		display: none;
	}
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.9rem;
}

.footer-links a {
	color: var(--white);
}

.footer-links .text-gray {
	line-height: 1.8;
}

.footer-social {
	display: flex;
	gap: 14px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social__link {
	display: flex;
	align-items: center;
	gap: 7px;
	color: var(--white) !important;
	opacity: 0.75;
	transition: opacity 0.2s;
}

.footer-social__link:hover {
	opacity: 1;
}

.footer-bottom {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line-light);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem 1.5rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.1rem;
	color: rgba(255, 255, 255, 0.72);
}

.footer-bottom__meta a,
.footer-bottom__credit a {
	color: var(--white);
	opacity: 0.82;
	transition: opacity 0.2s ease;
}

.footer-bottom__meta a:hover,
.footer-bottom__credit a:hover {
	opacity: 1;
}

.footer-bottom__credit {
	text-align: right;
}

@media (max-width: 1100px) {
	.reviews-carousel__track {
		grid-auto-columns: calc((100% - 1.5rem) / 2);
	}

	.reviews-grid-featured {
		grid-auto-columns: calc((100% - 2rem) / 2);
	}

	.doctor-inline-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.glass-card-grid--services {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.glass-card-grid--services .glass-card--service,
	.glass-card-grid--services .glass-card--service:nth-child(1),
	.glass-card-grid--services .glass-card--service:nth-child(2),
	.glass-card-grid--services .glass-card--service:nth-child(n + 3) {
		grid-column: span 1;
		min-height: 420px;
	}

	.glass-card-grid--services .glass-card--service:last-child {
		grid-column: 1 / -1;
		min-height: 340px;
	}

}

@media (max-width: 960px) {
	#wpadminbar {
		display: none !important;
	}

	html {
		margin-top: 0 !important;
	}

	body.admin-bar {
		margin-top: 0 !important;
	}

	body.admin-bar .site-header-shell {
		top: 0;
	}

	.site-header__inner {
		grid-template-columns: auto auto;
	}

	.site-header-shell {
		top: 0;
	}

	.site-header__controls {
		gap: 0.7rem;
	}

	.header-phone-shortcut {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		border-radius: 999px;
		border: none;
		background: #22c55e;
		color: var(--white);
		box-shadow: 0 4px 16px rgba(34, 197, 94, 0.32);
		backdrop-filter: blur(10px);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		transition: opacity 0.18s ease, transform 0.18s ease;
	}

	.header-phone-shortcut svg {
		width: 18px;
		height: 18px;
		display: block;
	}

	.site-header-shell.is-scrolled .header-phone-shortcut {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0) scale(1);
		transition-delay: 0s;
	}

	.nav-toggle {
		display: inline-block;
		justify-self: end;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		left: 1rem;
		right: 1rem;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
		z-index: 30;
		background: transparent;
	}

	.menu-open .site-nav,
	.site-nav[aria-hidden="false"] {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
		transition-delay: 0s;
	}

	.site-nav ul,
	.site-nav li,
	.site-nav a {
		transition: opacity 0.14s ease, transform 0.14s ease, color 0.3s ease;
	}

	.site-nav[aria-hidden="true"] ul,
	.site-nav[aria-hidden="true"] li,
	.site-nav[aria-hidden="true"] a {
		opacity: 0;
		transform: translateY(-4px);
	}

	.menu-open .site-nav ul,
	.menu-open .site-nav li,
	.menu-open .site-nav a,
	.site-nav[aria-hidden="false"] ul,
	.site-nav[aria-hidden="false"] li,
	.site-nav[aria-hidden="false"] a {
		opacity: 1;
		transform: translateY(0);
	}

	.site-nav ul {
		flex-direction: column;
		align-items: stretch;
		padding: 1rem;
		gap: 0;
		background: #1a2332;
		border: 1px solid var(--line-light);
		border-radius: 18px;
		box-shadow: 0 24px 48px rgba(8, 10, 14, 0.42);
	}

	.site-nav li + li {
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.site-nav a {
		display: block;
		padding: 0.9rem 0.5rem;
	}

	.site-nav .has-dropdown {
		display: grid;
	}

	.site-nav .dropdown-menu {
		position: static;
		left: auto;
		top: auto;
		transform: none;
		min-width: 0;
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding: 0.15rem 0 0.35rem 0.85rem;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		backdrop-filter: none;
		opacity: 1;
		visibility: visible;
		display: none !important;
		justify-content: stretch;
		align-items: stretch;
		gap: 0;
		overflow: hidden;
		max-height: 0;
		pointer-events: none;
	}

	.site-nav .has-dropdown:hover .dropdown-menu,
	.site-nav .has-dropdown:focus-within .dropdown-menu {
		display: none !important;
	}

	.menu-open .site-nav .has-dropdown .dropdown-menu,
	.site-nav[aria-hidden="false"] .has-dropdown .dropdown-menu {
		display: none !important;
		max-height: 0 !important;
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	.site-nav .dropdown-menu li + li {
		border-top: 1px solid rgba(255, 255, 255, 0.06);
	}

	.site-nav .dropdown-menu a {
		width: 100%;
		padding: 0.72rem 0.4rem 0.72rem 0;
		font-size: 0.62rem;
		letter-spacing: 0.03em;
		white-space: normal;
		line-height: 1.45;
		text-transform: uppercase;
		word-break: break-word;
		overflow-wrap: anywhere;
	}

	.btn-gold-outline {
		display: none;
	}

	.privacy-panel__actions .btn-gold-outline {
		display: inline-flex;
	}

	.features-grid,
	.contact-section__grid,
	.contact-section__layout,
	.footer-grid,
	.split-section,
	.doctor-highlight,
	.visit-section,
	.service-detail,
	.testimonial-grid,
	.team-columns {
		grid-template-columns: 1fr;
	}

	.reviews-section__header {
		grid-template-columns: 1fr;
	}

	.reviews-grid-featured,
	.reviews-carousel--featured .reviews-grid-featured {
		grid-auto-columns: 100%;
		gap: 1rem;
		margin-top: 1.75rem;
	}

	.reviews-carousel--featured {
		padding: 0 0 3.25rem;
	}

	.reviews-carousel__arrow {
		top: auto;
		bottom: 0;
		transform: none;
		width: 34px;
		height: 34px;
		background: rgba(255, 255, 255, 0.08);
		color: rgba(255, 255, 255, 0.82);
	}

	.reviews-carousel__arrow--prev {
		left: calc(50% - 2.5rem);
	}

	.reviews-carousel__arrow--next {
		right: calc(50% - 2.5rem);
	}

	.reviews-carousel--featured .reviews-carousel__viewport {
		mask-image: none;
		-webkit-mask-image: none;
	}

	.contact-form__details {
		grid-template-columns: 1fr;
	}

	.contact-form-row {
		grid-template-columns: 1fr;
	}

	.contact-form-grid {
		grid-template-columns: 1fr;
	}

	.contact-fullwidth__card {
		padding: 2.5rem 2rem;
	}

	.pricing-accordion__summary {
		cursor: pointer;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 1rem;
		padding: 1.3rem 1.35rem;
	}

	.pricing-accordion__summary h3 {
		margin: 0;
		font-size: 1.05rem;
	}

	.pricing-accordion__summary::after {
		content: '';
		width: 10px;
		height: 10px;
		border-right: 1.5px solid rgba(26, 35, 50, 0.5);
		border-bottom: 1.5px solid rgba(26, 35, 50, 0.5);
		transform: translateY(-2px) rotate(45deg);
		transition: transform 0.25s ease;
	}

	.pricing-accordion[open] .pricing-accordion__summary::after {
		transform: translateY(1px) rotate(-135deg);
	}

	.pricing-accordion__content {
		padding: 0 1.35rem 1.35rem;
	}

	.contact-section__layout {
		grid-template-columns: 1fr;
	}

	.about-story--with-bridge {
		padding-bottom: 150px;
	}

	.team-bridge {
		margin-top: -110px;
		margin-bottom: -110px;
	}

	.team-bridge--homepage {
		margin-top: -16px;
		margin-bottom: -290px;
	}

	.team-showcase {
		padding-top: 165px;
	}

	.team-showcase--homepage {
		padding-top: 2rem;
	}

	.team-intro--with-bridge {
		padding-top: 315px;
	}

	.team-intro--with-bridge::before {
		top: 280px;
		height: 320px;
	}

	.doctor-inline-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.glass-card-grid--services .glass-card--service,
	.glass-card-grid--services .glass-card--service:nth-child(1),
	.glass-card-grid--services .glass-card--service:nth-child(2),
	.glass-card-grid--services .glass-card--service:nth-child(n + 3) {
		min-height: 380px;
	}

	.service-contact__card {
		padding: 2.4rem;
	}

	.vb-shell {
		padding: 0 40px;
	}

	.vb-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.vb-card:nth-child(-n+3),
	.vb-card:nth-child(n+4) {
		grid-column: span 1;
	}
}

@media (max-width: 680px) {
	.vb-section {
		padding: 60px 0;
	}

	.vb-shell {
		padding: 0 24px;
	}

	.vb-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		margin-bottom: 36px;
	}

	.vb-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (hover: none) {
	.vb-card::after {
		transform: scaleX(1);
	}

	.vb-card .vb-icon svg path,
	.vb-card .vb-icon svg line,
	.vb-card .vb-icon svg polyline,
	.vb-card .vb-icon svg rect,
	.vb-card .vb-icon svg circle,
	.vb-card .vb-icon svg ellipse {
		stroke: #C5824A;
		stroke-dashoffset: 0 !important;
		opacity: 1 !important;
	}

	.vb-card-link {
		opacity: 1;
	}
}

@media (max-width: 420px) {
	.vb-grid {
		grid-template-columns: 1fr;
	}

	.hero-split__text-wrap {
		padding-top: 76px;
	}

	.home-hero--split .display-title {
		font-size: clamp(2.12rem, 9.2vw, 2.52rem);
	}

	.home-hero--split .home-hero__copy {
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.hero-actions {
		gap: 1rem;
	}

	.home-hero--split .btn-gold-solid {
		padding: 12px 22px;
		font-size: 0.74rem;
	}

	.hero-actions .btn-link-white {
		font-size: 0.74rem;
	}
}

@media (max-width: 640px) {
	.site-shell {
		padding: 0 1.25rem;
	}

	.privacy-panel {
		left: 10px;
		right: 10px;
		bottom: 16px;
		width: auto;
	}

	.privacy-panel__inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 1rem;
	}

	.privacy-panel__actions {
		width: 100%;
		flex-direction: column;
	}

	.privacy-panel__actions .btn-gold-solid,
	.privacy-panel__actions .btn-gold-outline {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-bottom__credit {
		text-align: left;
	}

	.footer-map {
		margin-left: 1.25rem;
		margin-right: 1.25rem;
	}

	.brand__name {
		font-size: 1.7rem;
	}

	.brand__eyebrow {
		font-size: 0.6rem;
		letter-spacing: 0.2em;
	}

	.brand__logo {
		width: 8rem;
	}

	.brand__logo--mark {
		width: 2.6rem;
	}

	.section-padding {
		padding: 72px 0;
	}

	.display-title,
	.section-title {
		font-size: 2.8rem;
	}

	.home-hero {
		min-height: 88svh;
		padding-top: 104px;
		padding-bottom: 72px;
	}

	.service-hero__media,
	.page-hero__media {
		inset: 0;
	}

	.home-hero__media {
		inset: -3% -12%;
		background-position: 58% center;
	}

	.service-hero__video {
		top: 0;
		bottom: 0;
	}

	.home-hero__video {
		top: 50%;
		left: 50%;
		bottom: auto;
		width: 118%;
		height: 112%;
		min-width: 118%;
		min-height: 112%;
		transform: translate(-50%, -50%);
		object-position: 58% center;
	}

	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.1rem;
		margin-top: 2rem;
	}

	.hero-actions .btn-link-white {
		align-self: flex-start;
		margin-left: 0;
		padding: 0.72rem 1.05rem;
		font-size: 0.72rem;
		letter-spacing: 0.11em;
	}

	.home-hero--split {
		min-height: calc(var(--bonis-initial-vh, 1vh) * 108);
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-split__text-wrap {
		display: flex;
		align-items: flex-start;
		min-height: calc(var(--bonis-initial-vh, 1vh) * 100);
		padding-top: 56px;
		padding-bottom: 1.6rem;
	}

	.home-hero--split .home-hero__text {
		max-width: 100%;
	}

	.home-hero--split .display-title {
		font-size: clamp(2.5rem, 8.5vw, 3.1rem);
		line-height: 1.06;
		margin-bottom: 0.75rem;
	}

	.home-hero--split .home-hero__copy {
		max-width: 34rem;
		font-size: 1rem;
		line-height: 1.6;
	}

	.home-hero--split .btn-gold-solid,
	.home-hero--split .btn-link-white {
		font-size: 0.76rem;
		letter-spacing: 0.1em;
	}

	.home-hero--split .btn-gold-solid {
		padding: 12px 24px;
	}

	.hero-split__media {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: 100%;
		display: flex;
		justify-content: flex-end;
		pointer-events: auto;
		margin-top: 0.25rem;
		padding: 0 0 3.5rem 14px;
	}

	.hero-split__media::before {
		inset: auto;
		left: auto;
		right: -2%;
		top: 4px;
		bottom: calc(3.5rem - 6px);
		width: min(96vw, 740px);
		border-radius: min(13rem, 40%) 0 0 min(13rem, 40%) / 50% 0 0 50%;
		filter: blur(20px);
	}

	.hero-split__media::after {
		inset: auto;
		left: auto;
		right: 0;
		top: 4px;
		bottom: calc(3.5rem + 4px);
		width: min(94vw, 720px);
		border-radius: min(12rem, 38%) 0 0 min(12rem, 38%) / 50% 0 0 50%;
	}

	.hero-frame {
		width: min(94vw, 720px);
		aspect-ratio: 1.22 / 1;
		border-radius: min(11rem, 38%) 0 0 min(11rem, 38%) / 50% 0 0 50%;
		contain: paint;
		box-shadow:
			0 26px 60px rgba(10, 18, 30, 0.32),
			inset 0 0 0 1px rgba(178, 129, 78, 0.3),
			inset 0 1px 0 rgba(255, 255, 255, 0.16);
	}

	.hero-frame::before {
		inset: 0;
		border: 6px solid rgba(178, 129, 78, 0.85);
		border-right: none;
	}

	.home-hero--split .home-hero__video {
		inset: auto;
		top: 50%;
		left: 50%;
		width: 106%;
		height: 130%;
		min-width: 106%;
		min-height: 130%;
		transform: translate3d(-50%, -50%, 0);
		object-position: center center;
	}

	.feature-item {
		gap: 1rem;
		padding-left: 0.1rem;
	}

	.feature-item::before {
		left: 2.32rem;
		top: 0.12rem;
		bottom: 0.25rem;
		width: 2px;
	}

	.feature-item::after {
		left: 2.45rem;
		top: 0.28rem;
		bottom: 0.45rem;
	}

	.feature-number {
		width: 1.9rem;
		font-size: 2.2rem;
	}

	.arch-image {
		aspect-ratio: 4 / 5;
	}

	.page-hero,
	.service-hero {
		padding-top: 140px;
		padding-bottom: 72px;
	}

	.section-block--service-form {
		background-attachment: scroll;
	}

	.contact-fullwidth--with-bg {
		background-attachment: scroll;
	}

	.section-block {
		padding: 72px 0;
	}

	.pricing-list li {
		flex-direction: column;
	}

	.pricing-card--single {
		max-width: 100%;
	}

	.reviews-carousel__controls {
		justify-content: flex-start;
	}

	.reviews-carousel__track {
		grid-auto-columns: 100%;
	}

	.contact-form__form-wrap {
		padding: 1.35rem;
		border-radius: 24px;
	}

	.contact-form__form-grid {
		grid-template-columns: 1fr;
	}

	.review-card {
		padding: 1.75rem;
	}

	.contact-form-card {
		padding: 2rem 1.5rem;
	}

	.contact-section__item {
		gap: 0.9rem;
	}

	.glass-card-grid--services {
		grid-template-columns: 1fr;
	}

	.glass-card-grid--services .glass-card--service,
	.glass-card-grid--services .glass-card--service:nth-child(1),
	.glass-card-grid--services .glass-card--service:nth-child(2),
	.glass-card-grid--services .glass-card--service:nth-child(n + 3),
	.glass-card-grid--services .glass-card--service:last-child {
		grid-column: span 1;
		min-height: 360px;
	}

	.glass-card--service .glass-card__content {
		padding: 1.5rem;
	}

	.site-shell--services-wide {
		max-width: 100%;
	}

	.service-list-editorial {
		padding: 0;
	}

	.service-list-item {
		border-radius: 24px;
	}

	.service-list-item__trigger {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 0.85rem;
		padding: 1.2rem 1.1rem 1.1rem;
	}

	.service-list-item__title {
		font-size: 1.22rem;
		gap: 0.8rem;
	}

	.service-list-item__title::after {
		flex-basis: 2.8rem;
	}

	.service-list-item__trigger::after {
		width: 2.7rem;
		height: 2.7rem;
		border-radius: 20px;
		background:
			url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3.25 2.25 8.25 6 3.25 9.75' stroke='%23435167' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 0.72rem 0.72rem no-repeat,
			linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 239, 232, 0.92));
	}

	.service-list-item__panel-inner {
		display: flex;
		flex-direction: column;
		align-items: start;
		gap: 0.75rem;
		margin-bottom: 0.75rem;
	}

	.service-list-item__panel {
		padding: 0 0.95rem 0.1rem;
	}

	.service-list-item__media,
	.service-list-item:nth-child(even) .service-list-item__media {
		display: block;
		width: 100%;
		min-width: 100%;
		flex: 0 0 auto;
		aspect-ratio: 16 / 7.2;
		border-radius: 26px;
		transform: none;
		box-shadow: 0 14px 24px rgba(26, 35, 50, 0.08);
		z-index: 0;
	}

	.service-list-item__media img {
		display: block;
	}

	.service-list-item__media::before,
	.service-list-item:nth-child(even) .service-list-item__media::before {
		content: none;
	}

	.service-list-item__copy,
	.service-list-item:nth-child(even) .service-list-item__copy {
		align-content: start;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		flex: 0 0 auto;
		padding: 1rem 0.95rem 0.9rem;
		border-radius: 12px 24px 24px 24px;
		z-index: 1;
	}

	.service-list-item__copy::before {
		left: 0.95rem;
		top: 0.68rem;
	}

	.service-list-item__copy p {
		font-size: 0.84rem;
		line-height: 1.5;
	}

	.service-list-item__highlights li {
		font-size: 0.6rem;
		padding-bottom: 0.4rem;
	}

	.service-list-item__cta {
		font-size: 0.64rem;
	}

	.service-contact__card {
		padding: 2rem 1.5rem;
		border-radius: 24px;
	}

	.service-article {
		width: 100%;
	}

	.service-detail__intro {
		padding-bottom: 1.8rem;
	}

	.service-detail__intro p:first-of-type {
		font-size: 1.28rem;
		line-height: 1.7;
	}

	.service-detail__body p,
	.service-detail__body p:first-child {
		font-size: 1rem;
	}

	.service-detail__body p:nth-child(3n + 2) {
		margin-left: 0;
	}

	.about-story--with-bridge {
		padding-bottom: 110px;
	}

	.about-section {
		padding-bottom: 220px;
	}

	.about-section::after {
		content: none;
	}

	.team-bridge {
		margin-top: -72px;
		margin-bottom: -72px;
	}

	.team-bridge--homepage {
		margin-top: -16px;
		margin-bottom: -190px;
		transform: none;
		overflow: visible;
		background: none;
	}

	.team-bridge--homepage::before {
		content: none;
	}

	.team-bridge__card {
		padding: 10px;
		border-radius: 24px;
		transform: translateY(-64px);
	}

	.team-bridge__card img {
		aspect-ratio: auto;
		max-height: 320px;
		object-fit: contain;
		object-position: center top;
		background: linear-gradient(180deg, rgba(247, 249, 252, 0.92), rgba(252, 252, 250, 0.90));
		border-radius: 16px;
	}

	.team-bridge--homepage .team-bridge__card {
		border-radius: 22px;
		box-shadow:
			0 26px 60px rgba(10, 18, 30, 0.38),
			inset 0 0 0 1px rgba(200, 154, 102, 0.22),
			inset 0 1px 0 rgba(255, 255, 255, 0.12);
	}

	.team-bridge--homepage .team-bridge__card::after {
		inset: -6px;
		border-radius: 26px;
	}

	.team-bridge--homepage .team-bridge__card::before {
		filter: blur(28px);
	}

	.team-bridge--homepage .team-bridge__card img {
		background: linear-gradient(180deg, rgba(28, 44, 71, 0.55), rgba(20, 32, 53, 0.7));
		border-radius: 14px;
		box-shadow:
			0 12px 28px rgba(10, 18, 30, 0.28),
			inset 0 0 0 1px rgba(178, 129, 78, 0.22);
	}

	.team-showcase {
		padding-top: 120px;
	}

	.team-showcase--homepage {
		padding-top: 1.5rem;
		padding-bottom: 3rem;
	}

	.team-showcase > .site-shell {
		padding-top: 1.1rem;
		padding-bottom: 1.1rem;
	}

	.team-showcase--homepage > .site-shell::before {
		border-radius: 30px;
	}

	.team-showcase--homepage > .site-shell::after {
		border-radius: 30px;
	}

	.team-intro--with-bridge {
		padding-top: 210px;
	}

	.team-intro--with-bridge::before {
		top: 180px;
		height: 280px;
		filter: blur(14px);
	}

	.team-intro--with-bridge .section-title::after {
		width: 88px;
	}

	.doctor-inline-grid {
		grid-auto-flow: column;
		grid-auto-columns: minmax(220px, 78vw);
		grid-template-columns: none;
		gap: 1rem;
		overflow-x: auto;
		padding-bottom: 0.75rem;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
		-webkit-mask-image: linear-gradient(90deg, #000 0, #000 91%, transparent 100%);
		mask-image: linear-gradient(90deg, #000 0, #000 91%, transparent 100%);
	}

	.doctor-inline-grid::-webkit-scrollbar {
		display: none;
	}

	.doctor-inline-card {
		scroll-snap-align: start;
	}

	.team-support-grid {
		grid-auto-flow: column;
		grid-auto-columns: minmax(190px, 64vw);
		grid-template-columns: none;
		gap: 1rem;
		overflow-x: auto;
		padding-bottom: 0.75rem;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
		-webkit-mask-image: linear-gradient(90deg, #000 0, #000 91%, transparent 100%);
		mask-image: linear-gradient(90deg, #000 0, #000 91%, transparent 100%);
	}

	.team-support-grid::-webkit-scrollbar {
		display: none;
	}

	.review-card {
		padding: 1.5rem;
	}

	.review-card__identity h3 {
		font-size: 1.35rem;
	}

	.review-card__quote {
		font-size: 1rem;
		line-height: 1.8;
	}

}

/* =======================================================
   SERVICES GRID — Animated Cards with Icons
   ======================================================= */
.services-grid-section {
	background: var(--light-bg);
	padding: 5rem 2rem;
}

.services-grid-header {
	max-width: 800px;
	margin: 0 auto 3.5rem;
	text-align: center;
}

.services-grid-header .eyebrow {
	display: block;
	font-family: var(--font-sans);
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.services-grid-header .eyebrow::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 28px;
	height: 1px;
	background: var(--gold);
}

.services-grid-header h2 {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	line-height: 1.15;
	color: var(--text-dark);
	font-family: var(--font-serif);
	margin: 1.5rem 0 0;
}

.services-grid-header h2 em {
	font-style: italic;
	font-weight: 300;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2px;
	max-width: 1200px;
	margin: 0 auto;
}

@media (min-width: 1200px) {
	.services-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.service-card {
	background: var(--light-bg);
	border: 1px solid rgba(178, 129, 78, 0.15);
	padding: 2rem 1.5rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	cursor: pointer;
	transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s;
	position: relative;
	overflow: hidden;
}

.service-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
	background: var(--dark-bg);
	border-color: var(--dark-bg);
}

.service-card:hover::after {
	transform: scaleX(1);
}

.service-icon {
	width: 52px;
	height: 52px;
	position: relative;
	flex-shrink: 0;
}

.service-icon svg {
	width: 100%;
	height: 100%;
	overflow: visible;
	display: block;
}

.service-icon svg path,
.service-icon svg line,
.service-icon svg polyline,
.service-icon svg rect,
.service-icon svg circle,
.service-icon svg ellipse {
	stroke-dasharray: 60;
	stroke-dashoffset: 0;
	transition: none;
}

.service-card-name {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--text-dark);
	line-height: 1.25;
	transition: color 0.4s;
	margin: 0;
}

.service-card:hover .service-card-name {
	color: var(--light-bg);
}

.service-card-desc {
	font-size: 0.7rem;
	color: var(--text-muted);
	font-weight: 300;
	line-height: 1.5;
	flex: 1;
	transition: color 0.4s;
	margin: 0;
}

.service-card:hover .service-card-desc {
	color: rgba(250, 248, 245, 0.55);
}

.service-card-link {
	font-family: var(--font-sans);
	font-size: 0.55rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	text-decoration: none;
	transition: gap 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s;
	align-self: flex-start;
	margin-top: auto;
}

.service-card:hover .service-card-link {
	color: var(--gold-light);
	gap: 0.5rem;
}

.service-card-link svg {
	width: 8px;
	height: 8px;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-link svg {
	transform: translateX(4px);
}

/* Initial stroke styling for service icons */
.service-icon svg path,
.service-icon svg line,
.service-icon svg polyline,
.service-icon svg rect,
.service-icon svg circle,
.service-icon svg ellipse {
	stroke: var(--gold);
	opacity: 0.3;
}

/* ─── Services Accordion — mobil only ─────────────────────── */

/* Ascuns implicit pe desktop */
.bd-services__accordion,
.bd-services__footer {
	display: none;
}

/* Stiluri structurale (active doar când sunt vizibile pe mobil) */
.bd-services__item {
	border-bottom: 1px solid rgba(28, 43, 74, 0.13);
	overflow: visible;
	transition: opacity 0.4s cubic-bezier(.4,0,.2,1);
}
.bd-services__item.is-dimmed {
	opacity: 0.38;
}

.bd-services__row {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 17px 0;
	gap: 14px;
	cursor: pointer;
	background: transparent;
	border: none;
	text-align: left;
	-webkit-tap-highlight-color: transparent;
	transition: background 0.35s cubic-bezier(.4,0,.2,1);
	border-radius: 14px;
}

.bd-services__row:focus-visible {
	background: rgba(28, 43, 74, 0.06);
}
.bd-services__item.is-open .bd-services__row {
	background: transparent;
}

.bd-services__name {
	font-family: var(--font-serif);
	font-size: 17px;
	font-weight: 500;
	color: #1C2B4A;
	line-height: 1.2;
	flex: 1;
	transition: color 0.35s;
}
.bd-services__item.is-open .bd-services__name {
	color: #1C2B4A;
}

.bd-services__chevron {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bd-services__chevron svg { display: block; }
.bd-services__chevron path {
	stroke: var(--text-muted);
	transition: stroke 0.35s;
}
.bd-services__item.is-open .bd-services__chevron path {
	stroke: rgba(28, 43, 74, 0.45);
}

@keyframes bd-chevron-open {
	0%   { transform: rotate(0deg); }
	55%  { transform: rotate(196deg); }
	72%  { transform: rotate(172deg); }
	85%  { transform: rotate(184deg); }
	100% { transform: rotate(180deg); }
}
@keyframes bd-chevron-close {
	0%   { transform: rotate(180deg); }
	55%  { transform: rotate(-16deg); }
	72%  { transform: rotate(8deg); }
	85%  { transform: rotate(-4deg); }
	100% { transform: rotate(0deg); }
}
.bd-services__chevron.anim-open {
	animation: bd-chevron-open  0.52s cubic-bezier(.4,0,.2,1) forwards;
}
.bd-services__chevron.anim-close {
	animation: bd-chevron-close 0.52s cubic-bezier(.4,0,.2,1) forwards;
}

.bd-services__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.44s cubic-bezier(.4,0,.2,1);
	background: #1C2B4A;
}
.bd-services__item.is-open .bd-services__panel {
	grid-template-rows: 1fr;
}

.bd-services__panel-inner {
	overflow: hidden;
}

.bd-services__panel-content {
	padding: 0 0 22px 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	clip-path: inset(0 0 100% 0);
	transition: clip-path 0.46s 0.06s cubic-bezier(.4,0,.2,1);
}
.bd-services__item.is-open .bd-services__panel-content {
	clip-path: inset(0 0 0% 0);
}

.bd-services__icon {
	width: 52px;
	height: 52px;
}
.bd-services__icon svg {
	overflow: visible;
	display: block;
}

.bd-services__desc {
	font-family: var(--font-sans);
	font-size: 15px;
	color: rgba(240, 235, 227, 0.75);
	font-weight: 300;
	line-height: 1.65;
	letter-spacing: 0.01em;
	margin: 0;
}

.bd-services__cta {
	font-family: var(--font-sans);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: #D4956A;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	border-radius: 6px;
}

.bd-services__footer {
	border-top: 1px solid rgba(28, 43, 74, 0.13);
	padding: 18px 0 4px;
	justify-content: flex-end;
}
.bd-services__footer-cta {
	font-family: var(--font-sans);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: #C5824A;
	text-transform: uppercase;
	text-decoration: none;
}

/* Pe mobil: afișează accordion, ascunde gridul */
@media (max-width: 680px) {
	.vb-grid {
		display: none;
	}

	.bd-services__accordion {
		display: flex;
		flex-direction: column;
		margin-top: 8px;
		margin-left: -24px;
		margin-right: -24px;
		border-top: 1px solid rgba(28, 43, 74, 0.13);
	}

	.bd-services__row {
		padding-left: 24px;
		padding-right: 24px;
	}

	.bd-services__panel-content {
		padding-left: 24px;
		padding-right: 24px;
	}
}

/* Dezactivat hover transform pe touch screens (previne layout break la tap) */
@media (hover: none) {
	.review-card:hover {
		transform: none;
		box-shadow: none;
		border-color: rgba(178, 129, 78, 0.22);
	}
}

/* ═══════════════════════════════════════════════════════
   SERVICE SUBPAGE — EDITORIAL REDESIGN
   ═══════════════════════════════════════════════════════ */

.section-block--service-editorial {
	background: linear-gradient(155deg, #f7f9fc 0%, #f9f9f8 55%, #fdfcf9 100%);
	position: relative;
	overflow: hidden;
}

.section-block--service-editorial::before {
	content: '';
	position: absolute;
	top: -160px;
	right: -100px;
	width: 560px;
	height: 560px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(178, 129, 78, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

/* ── Intro wrap: 2 col desktop ── */
.svc-intro-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem 5rem;
	margin-bottom: 4.5rem;
	padding-bottom: 3.5rem;
	border-bottom: 1px solid rgba(178, 129, 78, 0.18);
	align-items: start;
}

.svc-intro-copy {
	position: relative;
}

.svc-intro-copy::before {
	content: '';
	display: block;
	width: 52px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold), transparent);
	margin-bottom: 1.4rem;
}

.svc-intro-copy p {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(1.1rem, 1.7vw, 1.38rem);
	line-height: 1.78;
	color: var(--text-dark);
}

.svc-intro-copy p + p {
	margin-top: 1.1rem;
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.85;
	color: #56606d;
}

/* ── Highlights ── */
.svc-highlights {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.svc-highlights__label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 1.2rem;
}

.svc-highlights-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.svc-highlights-list li {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.9rem 1.3rem;
	background: rgba(255, 255, 255, 0.72);
	border-left: 3px solid var(--gold);
	border-radius: 0 12px 12px 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-dark);
	box-shadow: 0 2px 14px rgba(178, 129, 78, 0.07);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-highlights-list li::before {
	content: '';
	flex-shrink: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--gold);
}

@media (hover: hover) {
	.svc-highlights-list li:hover {
		transform: translateX(5px);
		box-shadow: 0 4px 20px rgba(178, 129, 78, 0.14);
	}
}

/* ── Content sections ── */
.svc-body {
	display: flex;
	flex-direction: column;
	margin-bottom: 2.75rem;
}

.svc-body__section {
	display: grid;
	gap: 1.4rem;
	padding: 3rem 0;
	border-bottom: 1px solid rgba(178, 129, 78, 0.1);
}

.svc-body__section:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.svc-body__section--alt .svc-body__content p {
	margin-left: clamp(0px, 3vw, 2.6rem);
	max-width: 70ch;
	color: #3c4653;
}

.svc-body__section--alt .svc-body__content p:nth-child(even) {
	margin-left: clamp(0px, 4.5vw, 4rem);
	max-width: 67ch;
}

.svc-body__heading {
	font-family: var(--font-serif);
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	font-weight: 600;
	line-height: 1.2;
	color: var(--gold-dark);
	position: relative;
	margin: 0;
	padding-top: 1rem;
}

.svc-body__heading::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 48px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold), transparent);
}

.svc-body__content {
	display: grid;
	gap: 1.1rem;
}

.svc-body__content p {
	margin: 0;
	font-size: 1.04rem;
	line-height: 1.92;
	color: #46505d;
	max-width: 72ch;
}

.svc-body__content p:nth-child(even) {
	margin-left: clamp(0px, 3vw, 2.6rem);
	max-width: 68ch;
}

.svc-body__content p:first-child {
	font-size: 1.08rem;
	color: #38424f;
}

.svc-body__content p strong,
.svc-intro-copy p strong {
	font-weight: 700;
	color: var(--gold-dark);
}

/* ── Responsive ── */
@media (max-width: 860px) {
	.svc-intro-wrap {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		margin-bottom: 3rem;
		padding-bottom: 2.5rem;
	}

	.svc-body__section--alt .svc-body__content p,
	.svc-body__section--alt .svc-body__content p:nth-child(even) {
		margin-left: 0;
		max-width: 100%;
	}

	.svc-body__section {
		padding: 2.2rem 0;
	}
}

/* =============================================================================
   HERO V1 — WATERMARK ARCHITECTURE (adăugat 29.04.2026)
   Revert: section-versions/hero/v1-split-frame/README.md
   ============================================================================= */

.hero-v1 {
	background: var(--dark-bg);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	font-family: var(--font-sans);
}

.hero-v1__inner {
	flex: 1;
	display: grid;
	grid-template-columns: 50% 50%;
	overflow: hidden;
	min-height: calc(100vh - 64px);
}

/* Coloana stângă */
.hero-v1__left {
	position: relative;
	padding: 36px 40px 36px 64px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

/* Watermark "1991" */
.hero-v1__watermark {
	position: absolute;
	right: -24px;
	bottom: -16px;
	font-family: var(--font-serif);
	font-size: 230px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.028);
	user-select: none;
	line-height: 1;
	letter-spacing: -8px;
	pointer-events: none;
	z-index: 0;
}

/* Text vertical rotit */
.hero-v1__vertical {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	font-size: 8.5px;
	letter-spacing: 4px;
	color: rgba(178, 129, 78, 0.4);
	text-transform: uppercase;
	font-weight: 600;
	white-space: nowrap;
	pointer-events: none;
	z-index: 1;
}

/* Linie gold */
.hero-v1__rule {
	width: 48px;
	height: 1.5px;
	background: linear-gradient(to right, var(--gold), rgba(178, 129, 78, 0.2));
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
}

/* Eyebrow */
.hero-v1__eyebrow {
	font-size: 9.5px;
	letter-spacing: 3px;
	color: rgba(178, 129, 78, 0.85);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
}

/* Titlu H1 */
.hero-v1__title {
	font-family: var(--font-serif);
	font-size: 44px;
	font-weight: 600;
	color: var(--white);
	line-height: 1.1;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.hero-v1__title-accent {
	color: var(--gold);
}

/* Copy */
.hero-v1__copy {
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.48);
	line-height: 1.85;
	max-width: 310px;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

/* Butoane */
.hero-v1__actions {
	display: flex;
	gap: 20px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-v1__ghost {
	background: transparent;
	color: rgba(255, 255, 255, 0.6);
	font-family: var(--font-sans);
	font-size: 9.5px;
	letter-spacing: 2px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	padding: 12px 0;
	border: none;
	cursor: pointer;
	transition: color 0.3s ease;
}

.hero-v1__ghost:hover {
	color: rgba(255, 255, 255, 0.9);
}

/* Coloana dreaptă — video */
.hero-v1__right {
	padding: 32px 0 32px 8px;
	overflow: hidden;
}

.hero-v1__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px 0 0 20px;
	display: block;
}

@media (max-width: 767px) {
	.site-preloader__logo {
		width: min(76px, 22vw);
	}

	.hero-v1 {
		min-height: 100svh;
	}

	.hero-v1__inner {
		display: flex;
		flex-direction: column;
		min-height: unset;
	}

	.hero-v1__right {
		order: 1;
		height: 220px;
		flex-shrink: 0;
		padding: 0 20px;
	}

	.hero-v1__video {
		border-radius: 14px;
		height: 100%;
	}

	.hero-v1__left {
		order: 2;
		padding: 28px 24px;
		flex: 1;
		justify-content: center;
	}

	.hero-v1__watermark {
		font-size: 160px;
		right: -20px;
		bottom: -30px;
	}

	.hero-v1__vertical {
		display: none;
	}

	.hero-v1__title {
		font-size: 32px;
		margin-bottom: 16px;
	}

	.hero-v1__copy {
		font-size: 11.5px;
		max-width: none;
		margin-bottom: 24px;
	}

	.hero-v1__eyebrow {
		font-size: 8.5px;
		letter-spacing: 2.5px;
	}

	.hero-v1__ghost {
		display: none;
	}

	.hero-v1__actions .btn-gold-solid {
		padding: 13px 24px;
	}
}

/* =============================================================================
   TEAM T1 — FULL-BLEED GRADIENT (adăugat 29.04.2026)
   Revert: section-versions/team-bridge/v1-bridge-dark-header/README.md
   ============================================================================= */

.team-t1 {
	position: relative;
	min-height: 520px;
	overflow: hidden;
}

.team-t1__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
}

.team-t1__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		100deg,
		rgba(22, 34, 56, 0.96) 0%,
		rgba(22, 34, 56, 0.85) 38%,
		rgba(22, 34, 56, 0.45) 58%,
		rgba(22, 34, 56, 0.10) 75%,
		transparent 100%
	);
}

.team-t1__content {
	position: relative;
	z-index: 2;
	min-height: 520px;
	display: flex;
	align-items: center;
	padding: 60px 80px;
}

.team-t1__inner {
	max-width: 420px;
}

.team-t1__eyebrow {
	font-family: var(--font-sans);
	font-size: 9px;
	letter-spacing: 3.5px;
	color: var(--gold);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 16px;
}

.team-t1__rule {
	width: 52px;
	height: 1.5px;
	background: linear-gradient(to right, var(--gold), rgba(178, 129, 78, 0.2));
	margin-bottom: 18px;
}

.team-t1__title {
	font-family: var(--font-serif);
	font-size: 48px;
	font-weight: 600;
	color: var(--white);
	line-height: 1.1;
	margin-bottom: 20px;
}

.team-t1__title em {
	font-style: italic;
	color: var(--gold);
}

.team-t1__copy {
	font-family: var(--font-sans);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.58);
	line-height: 1.82;
	max-width: 340px;
}

/* ── Team T1 — Mobil (< 768px) ── */
@media (max-width: 767px) {
	.team-t1 {
		min-height: 620px;
	}

	.team-t1__overlay {
		background: linear-gradient(
			180deg,
			rgba(22, 34, 56, 0.25) 0%,
			rgba(22, 34, 56, 0.50) 40%,
			rgba(22, 34, 56, 0.95) 70%,
			var(--dark-bg) 100%
		);
	}

	.team-t1__content {
		align-items: flex-end;
		padding: 0 24px 36px;
		min-height: 620px;
	}

	.team-t1__eyebrow {
		font-size: 8.5px;
		letter-spacing: 3px;
	}

	.team-t1__title {
		font-size: 34px;
		margin-bottom: 14px;
	}

	.team-t1__copy {
		font-size: 12px;
		max-width: none;
	}
}
}

.seo-inline-links {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	row-gap: 1rem;
	column-gap: 1.35rem;
	margin-top: 5.35rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(165, 123, 98, 0.18);
}

.seo-inline-links__item {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 48px;
	padding: 0.95rem 1.25rem;
	border: 1px solid rgba(165, 123, 98, 0.26);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.98);
	color: var(--color-ink);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	line-height: 1.35;
	text-align: left;
	text-decoration: none;
	transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.seo-inline-links__item:hover,
.seo-inline-links__item:focus-visible {
	border-color: rgba(165, 123, 98, 0.52);
	background: rgba(255, 255, 255, 1);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(28, 43, 74, 0.08);
}

@media (max-width: 760px) {
	.seo-inline-links {
		margin-top: 4.2rem;
		padding-top: 1.05rem;
		row-gap: 0.95rem;
		column-gap: 0.95rem;
	}
}
