/*
 * Greece Orthodontics — Main Stylesheet
 *
 * Projeto Gerado pelo Prompt Mestre do Desenvolvedor e Vibe Coder Dante Testa — www.dantetesta.com.br
 */

/* ── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
	--gordent-blue:        #3277A5;
	--gordent-blue-dark:   #1B4F72;
	--gordent-orange:      #E87722;
	--gordent-orange-dark: #C96310;
	--gordent-gray-light:  #F2F4F6;
	--gordent-gray-mid:    #E5E8EB;
	--gordent-white:       #FFFFFF;
	--gordent-text:        #1A1A1A;
	--gordent-text-light:  #555555;

	--gordent-font-heading: 'Barlow Condensed', sans-serif;
	--gordent-font-body:    'Inter', sans-serif;

	--gordent-radius:     12px;
	--gordent-radius-sm:  8px;
	--gordent-shadow:     0 4px 24px rgba(0,0,0,.10);
	--gordent-shadow-lg:  0 8px 40px rgba(0,0,0,.16);

	--gordent-nav-h:      80px;
	--gordent-transition: .25s ease;
}

/* ── Reset / Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
	font-family: var(--gordent-font-body);
	color: var(--gordent-text);
	background: var(--gordent-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utilities ─────────────────────────────────────────────────────────────── */
.gordent-container {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 24px;
}
.gordent-container--sm { max-width: 800px; }

.gordent-section-title {
	font-family: var(--gordent-font-heading);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	text-align: center;
	color: var(--gordent-text);
	margin-bottom: 2.5rem;
}
.gordent-section-title--white  { color: var(--gordent-white); }
.gordent-section-title--sm     { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: 1.5rem; }

.gordent-divider {
	border: none;
	border-top: 2px solid var(--gordent-gray-mid);
	margin: 2.5rem auto;
	max-width: 500px;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.gordent-btn {
	display: inline-block;
	font-family: var(--gordent-font-heading);
	font-size: .9rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .75rem 1.75rem;
	border-radius: var(--gordent-radius-sm);
	transition: background var(--gordent-transition), transform var(--gordent-transition), box-shadow var(--gordent-transition);
	white-space: nowrap;
}
.gordent-btn:focus-visible { outline: 3px solid var(--gordent-orange); outline-offset: 3px; }

.gordent-btn--orange {
	background: var(--gordent-orange);
	color: var(--gordent-white);
}
.gordent-btn--orange:hover { background: var(--gordent-orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,119,34,.35); }

.gordent-btn--outline-white {
	background: transparent;
	color: var(--gordent-white);
	border: 2px solid rgba(255,255,255,.6);
}
.gordent-btn--outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--gordent-white); }

.gordent-btn--ghost {
	background: transparent;
	color: var(--gordent-text);
	border: 2px solid var(--gordent-text);
	font-size: .8rem;
	padding: .5rem 1.25rem;
}
.gordent-btn--ghost:hover { background: var(--gordent-text); color: var(--gordent-white); }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.gordent-nav {
	position: fixed;
	inset-block-start: 0;
	inset-inline: 0;
	z-index: 1000;
	height: var(--gordent-nav-h);
	background: var(--gordent-white);
	box-shadow: 0 2px 12px rgba(0,0,0,.08);
	transition: box-shadow var(--gordent-transition);
	overflow: visible;
}
.gordent-nav.is-scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.14); }

.gordent-nav__inner {
	display: flex;
	align-items: center;
	gap: 2rem;
	height: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 24px;
}

.gordent-nav__logo img { height: 46px; width: auto; }

.gordent-nav__links {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-inline-start: auto;
	overflow: visible;
}
.gordent-nav__links a {
	font-size: .9rem;
	font-weight: 500;
	color: var(--gordent-text);
	position: relative;
	transition: color var(--gordent-transition);
}
.gordent-nav__links a::after {
	content: '';
	position: absolute;
	inset-block-end: -4px;
	inset-inline: 0;
	height: 2px;
	background: var(--gordent-orange);
	transform: scaleX(0);
	transition: transform var(--gordent-transition);
}
.gordent-nav__links a:hover { color: var(--gordent-orange); }
.gordent-nav__links a:hover::after,
.gordent-nav__links a.is-active::after { transform: scaleX(1); }

.gordent-nav__cta { margin-inline-start: 1rem; }

/* ── Mega Menu ──────────────────────────────────────────────────────────── */
.gordent-nav__item { position: relative; }

.gordent-nav__item--mega::after {
	content: '';
	position: absolute;
	top: 100%;
	left: -20px;
	right: -20px;
	height: 18px;
}

.gordent-nav__mega-trigger {
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}

.gordent-nav__chevron {
	transition: transform .25s ease;
	flex-shrink: 0;
}

.gordent-nav__item--mega:hover .gordent-nav__chevron { transform: rotate(180deg); }

.gordent-nav__mega-panel {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(-6px);
	min-width: 280px;
	background: var(--gordent-white);
	border-radius: 10px;
	box-shadow: 0 8px 32px rgba(0,0,0,.18);
	border-top: 3px solid var(--gordent-orange);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
	will-change: opacity, transform;
	z-index: 1100;
}

.gordent-nav__item--mega:hover .gordent-nav__mega-panel,
.gordent-nav__item--mega:focus-within .gordent-nav__mega-panel,
.gordent-nav__item--mega.is-mega-open .gordent-nav__mega-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.gordent-nav__item--mega.is-mega-open .gordent-nav__chevron { transform: rotate(180deg); }

.gordent-mega__inner {
	display: flex;
	flex-direction: column;
	padding: .5rem 0;
}

.gordent-mega__link {
	display: block;
	padding: .7rem 1.5rem;
	font-size: .875rem;
	font-weight: 500;
	color: var(--gordent-text) !important;
	transition: background var(--gordent-transition), color var(--gordent-transition);
	white-space: nowrap;
	text-decoration: none;
}
.gordent-mega__link::after { display: none !important; }
.gordent-mega__link:hover {
	background: #f5f8fb;
	color: var(--gordent-orange) !important;
}

/* ── Service Page ──────────────────────────────────────────────────────────── */
.gordent-service-page { display: flex; flex-direction: column; min-height: 100vh; }
.gordent-service-page main { flex: 1; }

/* ── Service Page — Hero ──────────────────────────────────────────────── */
.gordent-service-hero {
	background: linear-gradient(135deg, #dde8ed 0%, #eef2f4 60%, #c8d8de 100%);
	padding-block: calc(var(--gordent-nav-h) + 60px) 72px;
}

.gordent-service-hero__inner {
	display: flex;
	align-items: flex-start;
	gap: 3rem;
}

.gordent-service-hero__inner.has-logo { align-items: center; }

.gordent-service-hero__text { flex: 1; }

.gordent-service-hero__logo { flex-shrink: 0; max-width: 420px; }
.gordent-service-hero__logo img { max-width: 100%; height: auto; }

.gordent-service-hero__title {
	font-family: var(--gordent-font-heading);
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--gordent-text);
	line-height: 1.1;
	max-width: 680px;
	margin-bottom: 2rem;
}

.gordent-service-hero__question {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--gordent-text);
	margin-bottom: .4rem;
}

.gordent-service-hero__text p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--gordent-text);
	max-width: 580px;
	margin-bottom: .75rem;
}
.gordent-service-hero__text p:last-child { margin-bottom: 0; }

/* ── Service Page — Blue Card ─────────────────────────────────────────── */
.gordent-service-why {
	background: #7B9EB4;
	padding-block: 56px;
	text-align: center;
	border-radius: 0 0 20px 20px;
}

.gordent-service-why__title {
	font-family: var(--gordent-font-heading);
	font-size: clamp(1.3rem, 2.5vw, 1.8rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--gordent-white);
	letter-spacing: .04em;
	margin-bottom: 1.25rem;
}

.gordent-service-why__text {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--gordent-white);
}

/* ── Service Page — Bullet List ──────────────────────────────────────── */
.gordent-service-bullets { padding-block: 56px; }

.gordent-service-bullets__box {
	border: 1.5px solid #ddd;
	border-radius: var(--gordent-radius);
	padding: 2.5rem 3rem;
}

.gordent-service-bullet {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-block: .85rem;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--gordent-text);
	border-bottom: 1px solid #f0f0f0;
}
.gordent-service-bullet:last-child { border-bottom: none; }
.gordent-service-bullet__icon {
	width: 52px;
	height: 52px;
	object-fit: contain;
	flex-shrink: 0;
}

.gordent-service-bullet__marker {
	color: var(--gordent-text);
	font-size: 1.4rem;
	line-height: 1;
	flex-shrink: 0;
}

/* ── Service Page — WildSmiles 2-Col ─────────────────────────────────── */
.gordent-service-split { padding-block: 56px; }

.gordent-service-split__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border: 1.5px solid #ddd;
	border-radius: var(--gordent-radius);
	overflow: hidden;
}

.gordent-service-split__left {
	padding: 2.5rem 2.5rem;
	border-right: 1.5px solid #ddd;
}

.gordent-service-split__right {
	padding: 2.5rem 2.5rem;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--gordent-text);
}
.gordent-service-split__right p { margin-bottom: 1rem; }
.gordent-service-split__right p:last-child { margin-bottom: 0; }

/* ── Service Page — FAQ / CTA Rows ───────────────────────────────────── */
.gordent-service-rows { padding-block: 56px; }

.gordent-service-rows__box {
	border: 1.5px solid #ddd;
	border-radius: var(--gordent-radius);
	overflow: hidden;
}

.gordent-service-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-bottom: 1.5px solid #ddd;
}
.gordent-service-row:last-child { border-bottom: none; }

.gordent-service-row__left {
	padding: 2.5rem 2.5rem;
	font-family: var(--gordent-font-heading);
	font-size: clamp(1rem, 2vw, 1.3rem);
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.2;
	color: var(--gordent-text);
	border-right: 1.5px solid #ddd;
	display: flex;
	align-items: center;
}

.gordent-service-row__right {
	padding: 2.5rem 2.5rem;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--gordent-text);
	display: flex;
	align-items: center;
}

/* ── Service Page — Equal 2-Col ──────────────────────────────────────── */
.gordent-service-equal { padding-block: 56px; }

.gordent-service-equal__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border: 1.5px solid #ddd;
	border-radius: var(--gordent-radius);
	overflow: hidden;
}

.gordent-service-equal__col {
	padding: 3rem 2.5rem;
	text-align: center;
}
.gordent-service-equal__col + .gordent-service-equal__col {
	border-left: 1.5px solid #ddd;
}

.gordent-service-equal__title {
	font-family: var(--gordent-font-heading);
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--gordent-text);
	margin-bottom: 1rem;
}

.gordent-service-equal__col p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--gordent-text);
}

/* ── Service Page — Image Grid 2×2 ──────────────────────────────────── */
.gordent-service-imgrid { padding-block: 0; }

.gordent-imgrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 360px 360px;
	width: 100%;
}

.gordent-imgrid__cell {
	position: relative;
	overflow: hidden;
	min-height: 360px;
}

.gordent-imgrid__cell--photo {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #B8CDD6;
}

.gordent-imgrid__cell--dark {
	background: #1B4F72;
}

.gordent-imgrid__cell--empty {
	background: #B8CDD6;
}

.gordent-imgrid__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2.5rem 3rem;
}

.gordent-imgrid__cell--dark .gordent-imgrid__content { position: static; padding: 3rem; justify-content: center; height: 100%; box-sizing: border-box; }

.gordent-imgrid__title {
	font-family: var(--gordent-font-heading);
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--gordent-white);
	line-height: 1.2;
	margin-bottom: 1rem;
}

.gordent-imgrid__content p {
	font-size: .9rem;
	line-height: 1.65;
	color: var(--gordent-white);
}

/* ── WildSmiles icons grid (right col of split) ─────────────────────── */
.gordent-wildsmiles-icons {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem 1rem;
	align-content: center;
}

.gordent-wildsmiles-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
	text-align: center;
}

.gordent-wildsmiles-icon img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.gordent-wildsmiles-icon span {
	font-family: var(--gordent-font-heading);
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--gordent-navy);
}

/* ── Service Page — Icons Grid ───────────────────────────────────────── */
.gordent-service-icons { padding-block: 48px; }

.gordent-icons-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem 3rem;
}

.gordent-icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
	text-align: center;
	flex: 0 0 auto;
}

.gordent-icon-item__img {
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.gordent-icon-item__label {
	font-family: var(--gordent-font-heading);
	font-size: .85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--gordent-navy);
}

/* ── Service Page — Extra Text ───────────────────────────────────────── */
.gordent-service-extra {
	padding-block: 48px;
	text-align: center;
}

.gordent-service-extra p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--gordent-text);
	margin-bottom: .75rem;
}
.gordent-service-extra p:last-child { margin-bottom: 0; }

/* ── Service Page — Cost Box ─────────────────────────────────────────── */
.gordent-service-cost { padding-block: 56px; }

.gordent-service-cost__box {
	border: 1.5px solid #ddd;
	border-radius: var(--gordent-radius);
	padding: 3rem;
	text-align: center;
	max-width: 820px;
	margin-inline: auto;
}

.gordent-service-cost__title {
	font-family: var(--gordent-font-heading);
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--gordent-text);
	margin-bottom: 1.25rem;
}

.gordent-service-cost__box p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--gordent-text);
	margin-bottom: .75rem;
}
.gordent-service-cost__box p:last-child { margin-bottom: 0; }

/* ── Service Page — responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
	.gordent-service-hero__inner { flex-direction: column; gap: 1.5rem; }
	.gordent-service-hero__logo { max-width: 220px; }
	.gordent-service-bullets__box { padding: 1.5rem; }
	.gordent-service-split__grid,
	.gordent-service-rows__box .gordent-service-row,
	.gordent-service-equal__grid { grid-template-columns: 1fr; }
	.gordent-service-split__left { border-right: none; border-bottom: 1.5px solid #ddd; }
	.gordent-service-row__left { border-right: none; border-bottom: 1.5px solid #ddd; }
	.gordent-service-equal__col + .gordent-service-equal__col { border-left: none; border-top: 1.5px solid #ddd; }
	.gordent-imgrid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 280px); }
	.gordent-imgrid__cell { min-height: 280px; }
	.gordent-nav__mega-panel { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; border-top: 2px solid #f0f0f0; border-radius: 0; }
}

.gordent-nav__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 6px;
	margin-inline-start: auto;
}
.gordent-nav__toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--gordent-text);
	transition: transform var(--gordent-transition), opacity var(--gordent-transition);
}
.gordent-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gordent-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gordent-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.gordent-hero {
	position: relative;
	z-index: 0;
	min-height: 760px;
	display: flex;
	align-items: center;
	padding-block: var(--gordent-nav-h) 80px;
	overflow: hidden;
}

.gordent-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: top right;
	background-repeat: no-repeat;
}

.gordent-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
}

.gordent-hero__content {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 24px;
	max-width: 560px;
	margin-inline-start: max(24px, calc((100vw - 1200px)/2 + 24px));
}

.gordent-hero__headline {
	font-family: var(--gordent-font-heading);
	font-size: clamp(2.2rem, 5vw, 3.75rem);
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.05;
	color: var(--gordent-text);
	margin-bottom: 1rem;
}

.gordent-hero__subtitle {
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	color: var(--gordent-text);
	margin-bottom: 1.25rem;
	max-width: 440px;
}

.gordent-hero__tagline {
	font-size: 1rem;
	color: var(--gordent-text);
	margin-bottom: 2rem;
}

/* ══════════════════════════════════════════
   OUR SERVICES
══════════════════════════════════════════ */
.gordent-services {
	background: #83A7B9;
	padding-block: 72px;
}

.gordent-services .gordent-section-title { color: var(--gordent-white); }

.gordent-services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, 180px);
	justify-content: center;
	gap: 2rem;
	width: 100%;
}

.gordent-service-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: .75rem;
}

.gordent-service-card__icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: var(--gordent-white);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	margin-bottom: .5rem;
}
.gordent-service-card__icon img { width: 48px; height: 48px; object-fit: contain; }

.gordent-service-card__title {
	font-family: var(--gordent-font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: var(--gordent-white);
}

/* ══════════════════════════════════════════
   INSURANCE & PAYMENT
══════════════════════════════════════════ */
.gordent-insurance {
	background: var(--gordent-blue);
	padding-block: 72px;
}

.gordent-insurance .gordent-section-title { color: var(--gordent-white); }
.gordent-insurance .gordent-section-title--sm { color: var(--gordent-white); }
.gordent-insurance .gordent-insurance__note { color: rgba(255,255,255,.8); }
.gordent-insurance .gordent-divider { border-top-color: rgba(255,255,255,.2); }

.gordent-insurance__logos {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 1.25rem;
}

.gordent-insurance__logo-card {
	background: var(--gordent-white);
	border-radius: var(--gordent-radius);
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 120px;
	box-shadow: var(--gordent-shadow);
	flex-shrink: 0;
}
.gordent-insurance__logo-card img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	max-width: 150px;
	max-height: 80px;
}

.gordent-insurance__note {
	text-align: center;
	font-size: .9rem;
	color: var(--gordent-text-light);
}

.gordent-payment__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}

.gordent-payment-card {
	background: var(--gordent-white);
	border-radius: var(--gordent-radius);
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	width: 180px;
	height: 110px;
	box-shadow: var(--gordent-shadow);
	font-size: .85rem;
	font-weight: 500;
	text-align: center;
	flex-shrink: 0;
}
.gordent-payment-card img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	max-width: 130px;
	max-height: 52px;
}

.gordent-no-insurance {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--gordent-blue-dark);
	border-radius: var(--gordent-radius);
	padding: 1.5rem 2rem;
	margin-top: 1.5rem;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.gordent-no-insurance__text p {
	font-family: var(--gordent-font-heading);
	font-size: 1.4rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--gordent-white);
}

/* ══════════════════════════════════════════
   FAMILY MEMBERSHIP
══════════════════════════════════════════ */
.gordent-membership {
	background: var(--gordent-gray-light);
	padding-block: 72px;
}

.gordent-membership .gordent-container {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.gordent-membership__card {
	background: var(--gordent-blue-dark);
	border-radius: 20px;
	max-width: 520px;
	margin-inline: auto;
	padding: 3rem 2.5rem;
	text-align: center;
	box-shadow: var(--gordent-shadow-lg);
}

.gordent-membership__title {
	font-family: var(--gordent-font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--gordent-white);
	margin-bottom: .5rem;
}

.gordent-membership__price {
	font-family: var(--gordent-font-heading);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	color: var(--gordent-orange);
	text-transform: uppercase;
	line-height: 1;
	margin-block: .5rem;
}

.gordent-membership__note {
	font-size: .8rem;
	color: rgba(255,255,255,.7);
	text-transform: uppercase;
	letter-spacing: .03em;
	margin-bottom: 1.75rem;
}

.gordent-membership__benefits {
	background: rgba(255,255,255,.1);
	border-radius: var(--gordent-radius);
	padding: 1.5rem 2rem;
	margin-bottom: 2rem;
	text-align: left;
	display: inline-block;
	min-width: 240px;
}
.gordent-membership__benefits li {
	font-family: var(--gordent-font-heading);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	padding-block: .35rem;
	color: var(--gordent-white);
}
.gordent-membership__benefits li::before { content: '• '; color: var(--gordent-orange); }

/* ══════════════════════════════════════════
   MEET OUR TEAM
══════════════════════════════════════════ */
.gordent-team {
	background: var(--gordent-white);
	padding-block: 40px 72px;
}

.gordent-team .gordent-section-title { color: var(--gordent-text); }

.gordent-team__desc {
	color: var(--gordent-text-light);
	text-align: center;
	max-width: 560px;
	margin: -1.5rem auto 3rem;
	font-size: .95rem;
}

.gordent-team__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.25rem;
	max-width: 1100px;
	margin-inline: auto;
}

.gordent-team-card {
	flex: 0 0 240px;
	max-width: 260px;
}

.gordent-team-card {
	background: var(--gordent-white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 6px 32px rgba(0,0,0,.12);
	display: flex;
	flex-direction: column;
}

.gordent-team-card__photo-wrap {
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #e8e4df;
	flex: 1;
}
.gordent-team-card__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: transform;
	object-position: top center;
	transition: transform .5s ease;
	display: block;
}
.gordent-team-card:hover .gordent-team-card__photo { transform: scale(1.08); }

.gordent-team-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.gordent-team-card__info {
	padding: .85rem 1.1rem .9rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: .15rem;
	background: var(--gordent-white);
}
.gordent-team-card__name {
	font-family: var(--gordent-font-heading);
	font-size: 1rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: var(--gordent-text);
}
.gordent-team-card__role {
	font-size: .72rem;
	color: var(--gordent-text-light);
	text-transform: uppercase;
	letter-spacing: .07em;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.gordent-testimonials {
	background: var(--gordent-blue-dark);
	border-block-start: 1px solid rgba(255,255,255,.1);
	padding-block: 72px;
}

/* ── Carousel wrapper ───────────────────────────────────── */
.gordent-carousel {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	padding-inline: 48px;
}

.gordent-carousel__viewport {
	width: 100%;
	overflow: hidden;
}

.gordent-carousel__track {
	display: flex;
	transition: transform .45s cubic-bezier(.4,0,.2,1);
	will-change: transform;
}

/* Each slide = full viewport width */
.gordent-testimonial-card {
	flex: 0 0 100%;
	background: var(--gordent-white);
	border-radius: var(--gordent-radius);
	padding: 2rem 2.5rem;
	box-shadow: var(--gordent-shadow);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	border: 2px solid transparent;
	transition: border-color var(--gordent-transition);
	max-width: 720px;
	margin-inline: auto;
	box-sizing: border-box;
}

/* Arrows */
.gordent-carousel__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-60%);
	background: var(--gordent-white);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	color: var(--gordent-blue);
	box-shadow: var(--gordent-shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--gordent-transition), color var(--gordent-transition);
	z-index: 2;
}
.gordent-carousel__btn--prev { left: 0; }
.gordent-carousel__btn--next { right: 0; }
.gordent-carousel__btn:hover { background: var(--gordent-orange); color: var(--gordent-white); }

/* Dots */
.gordent-carousel__dots {
	display: flex;
	gap: .5rem;
}
.gordent-carousel__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,.4);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background var(--gordent-transition), transform var(--gordent-transition);
}
.gordent-carousel__dot.is-active {
	background: var(--gordent-white);
	transform: scale(1.25);
}

/* Card internals */
.gordent-testimonial-card__stars {
	display: flex;
	gap: 2px;
}
.gordent-star { font-size: 1.1rem; }
.gordent-star--full  { color: #f5a623; }
.gordent-star--empty { color: #ddd; }

.gordent-testimonial-card__text {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--gordent-text);
	flex: 1;
}

.gordent-testimonial-card__author {
	display: flex;
	align-items: center;
	gap: .75rem;
	font-weight: 600;
	font-size: .875rem;
	color: var(--gordent-text);
}

.gordent-testimonial-card__google-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: .75rem;
	font-weight: 500;
	color: #555;
	background: #f1f3f4;
	border-radius: 20px;
	padding: 2px 8px;
}

/* ══════════════════════════════════════════
   EMERGENCY
══════════════════════════════════════════ */
.gordent-emergency {
	background: var(--gordent-blue-dark);
	padding-block: 72px;
	border-block-start: 1px solid rgba(255,255,255,.1);
}

.gordent-emergency__box {
	border: 3px solid var(--gordent-orange);
	border-radius: 16px;
	padding: 3rem 2.5rem;
	text-align: center;
	max-width: 720px;
	margin-inline: auto;
}

.gordent-emergency__title {
	font-family: var(--gordent-font-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 1rem;
	color: var(--gordent-white);
}

.gordent-emergency__text {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.75rem;
	max-width: 540px;
	margin-inline: auto;
	color: rgba(255,255,255,.85);
}

.gordent-emergency__phone {
	margin-top: 1rem;
	font-size: 1.1rem;
	font-weight: 600;
}
.gordent-emergency__phone a { color: var(--gordent-white); }
.gordent-emergency__phone a:hover { color: var(--gordent-orange); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.gordent-faq {
	background: var(--gordent-blue);
	padding-block: 72px;
}

.gordent-faq .gordent-section-title { color: var(--gordent-white); }

.gordent-faq__list {
	border: 1px solid var(--gordent-gray-mid);
	border-radius: var(--gordent-radius);
	overflow: hidden;
	background: var(--gordent-white);
}

.gordent-faq__item { border-bottom: 1px solid var(--gordent-gray-mid); }
.gordent-faq__item:last-child { border-bottom: none; }

.gordent-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 1.5rem;
	font-size: .95rem;
	font-weight: 500;
	text-align: left;
	color: var(--gordent-text);
	transition: background var(--gordent-transition);
	gap: 1rem;
}
.gordent-faq__question:hover { background: var(--gordent-gray-light); }
.gordent-faq__question[aria-expanded="true"] { color: var(--gordent-blue); }

.gordent-faq__icon {
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--gordent-text);
	flex-shrink: 0;
	transition: transform var(--gordent-transition), color var(--gordent-transition);
	line-height: 1;
}
.gordent-faq__question[aria-expanded="true"] .gordent-faq__icon {
	transform: rotate(45deg);
	color: var(--gordent-orange);
}

.gordent-faq__answer {
	padding: 0 1.5rem 1.25rem;
	font-size: .9rem;
	line-height: 1.75;
	color: var(--gordent-text-light);
}
.gordent-faq__answer[hidden] { display: none; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.gordent-contact {
	background: var(--gordent-blue-dark);
	padding-block: 72px;
	border-block-start: 1px solid rgba(255,255,255,.1);
}

.gordent-contact__card {
	background: var(--gordent-gray-light);
	border-radius: 20px;
	margin-inline: auto;
	padding: 3rem 2.5rem;
	text-align: center;
}

.gordent-contact__title {
	font-family: var(--gordent-font-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: .25rem;
}

.gordent-contact__body {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 2rem;
	text-align: left;
}

.gordent-contact__info {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}
.gordent-contact__info p { font-size: .95rem; }
.gordent-contact__info a { color: var(--gordent-blue); }
.gordent-contact__info a:hover { color: var(--gordent-orange); }

.gordent-contact__map {
	border-radius: var(--gordent-radius);
	overflow: hidden;
	height: 200px;
}
.gordent-contact__map iframe {
	width: 100%;
	height: 200px;
	display: block;
	border-radius: var(--gordent-radius);
}

/* ══════════════════════════════════════════
   DOCTOR PROFILE PAGE
══════════════════════════════════════════ */
.gordent-doctor-page { display: flex; flex-direction: column; min-height: 100vh; }
.gordent-doctor-page main { flex: 1; }

.gordent-doctor {
	padding-top: var(--gordent-nav-h);
}

.gordent-doctor__hero {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	min-height: 460px;
	border-radius: 0;
	overflow: hidden;
}

.gordent-doctor__info {
	background: #B8CDD6;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4rem 3.5rem;
	gap: 1rem;
	border-radius: 0;
}

.gordent-doctor__name {
	font-family: var(--gordent-font-heading);
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--gordent-text);
	line-height: 1.1;
}

.gordent-doctor__role {
	font-family: var(--gordent-font-heading);
	font-size: 1.3rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--gordent-text);
	letter-spacing: .04em;
}

.gordent-doctor__bio-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	width: 100%;
}

.gordent-doctor__bio {
	font-size: .95rem;
	line-height: 1.72;
	color: var(--gordent-text);
	max-width: 480px;
}

.gordent-doctor__photo-wrap {
	overflow: hidden;
	background: #B8CDD6;
	border-radius: 0;
}

.gordent-doctor__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	border-radius: 0 !important;
}

.gordent-doctor__bar {
	height: 18px;
	background: var(--gordent-blue);
}

@media (max-width: 768px) {
	.gordent-doctor__hero { grid-template-columns: 1fr; }
	.gordent-doctor__photo-wrap { min-height: 320px; order: -1; }
	.gordent-doctor__info { padding: 2.5rem 1.5rem; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.gordent-footer {
	background: var(--gordent-blue-dark);
	border-block-start: 1px solid rgba(255,255,255,.1);
	padding-block: 1.5rem;
	text-align: center;
}
.gordent-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}
.gordent-footer__copy { font-size: .8rem; color: rgba(255,255,255,.55); }
.gordent-footer__privacy {
	font-size: .8rem;
	color: rgba(255,255,255,.55);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color var(--gordent-transition);
}
.gordent-footer__privacy:hover { color: var(--gordent-white); }
.gordent-footer__dev {
	display: flex;
	align-items: center;
	gap: .5rem;
	text-decoration: none;
}
.gordent-footer__dev span {
	font-size: .65rem;
	letter-spacing: .1em;
	color: rgba(255,255,255,.45);
}
.gordent-footer__dev img { opacity: .8; transition: opacity var(--gordent-transition); }
.gordent-footer__dev:hover img { opacity: 1; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
	.gordent-carousel { padding-inline: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
	/* Nav */
	.gordent-nav__toggle { display: flex; }
	.gordent-nav__cta    { display: none; }

	.gordent-nav__links {
		position: fixed;
		inset-block-start: var(--gordent-nav-h);
		inset-inline: 0;
		background: var(--gordent-white);
		flex-direction: column;
		align-items: flex-start;
		padding: 1.5rem 1.5rem 2rem;
		gap: 1.25rem;
		box-shadow: 0 8px 24px rgba(0,0,0,.12);
		transform: translateY(-110%);
		visibility: hidden;
		transition: transform .3s ease, visibility 0s linear .3s;
		z-index: 999;
		overflow-y: auto;
		max-height: calc(100vh - var(--gordent-nav-h));
	}
	.gordent-nav__links.is-open {
		transform: translateY(0);
		visibility: visible;
		transition: transform .3s ease, visibility 0s linear 0s;
	}

	/* Mega menu inline on mobile */
	.gordent-nav__item--mega { width: 100%; }
	.gordent-nav__item--mega::after { display: none; }
	.gordent-nav__mega-panel {
		position: static;
		transform: none !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		box-shadow: none;
		border-top: none;
		border-radius: 0;
		min-width: unset;
		display: none;
		background: var(--gordent-gray-light);
		border-radius: var(--gordent-radius-sm);
		margin-top: .25rem;
	}
	.gordent-nav__item--mega.is-mega-open .gordent-nav__mega-panel { display: block; }
	.gordent-mega__link { padding: .55rem 1rem; font-size: .85rem; }

	/* Hero */
	.gordent-hero { min-height: 480px; padding-block: calc(var(--gordent-nav-h) + 40px) 60px; }
	.gordent-hero__bg { background-position: 70% center; }
	.gordent-hero__overlay { background: rgba(255,255,255,.72) !important; }
	.gordent-hero__content { margin-inline-start: 24px; max-width: 90%; }
	.gordent-hero__headline { font-size: 2rem; }

	/* Services */
	.gordent-services__grid { gap: 1.5rem; }
	.gordent-service-card { flex: 0 0 140px; }

	/* Insurance */
	.gordent-insurance__logos { gap: 1rem; }
	.gordent-insurance__logo-card { min-width: 140px; padding: 1rem 1.25rem; }

	/* Team */
	.gordent-team__grid { gap: 1rem; }
	.gordent-team-card { flex: 0 0 calc(50% - .625rem); max-width: calc(50% - .625rem); }

	/* Testimonials carousel */
	.gordent-carousel { padding-inline: 32px; }
	.gordent-testimonial-card { padding: 1.5rem; }

	/* Membership */
	.gordent-membership__card { padding: 2rem 1.5rem; }

	/* Payment */
	.gordent-payment-card { width: 140px; height: 96px; padding: 1rem; flex-shrink: 1; }

	/* Contact */
	.gordent-contact__card { padding: 2rem 1.5rem; }
	.gordent-contact__body { flex-direction: column; }
	.gordent-contact__info { flex: unset; text-align: center; }
	.gordent-contact__map { min-height: 220px; }
}

@media (max-width: 480px) {
	.gordent-service-card { flex: 0 0 calc(50% - 1rem); }
	.gordent-team-card    { flex: 0 0 100%; max-width: 100%; }
	.gordent-hero__headline { font-size: 1.75rem; }
	.gordent-no-insurance   { flex-direction: column; text-align: center; }

	/* Payment: 2 por linha */
	.gordent-payment__grid  { gap: .75rem; }
	.gordent-payment-card   { width: calc(50% - .75rem); height: auto; min-height: 90px; }

	/* Footer empilhado */
	.gordent-footer__inner  { flex-direction: column; gap: 1rem; }
}

/* ── Scroll reveal ─────────────────────────────────────────────────────────── */
.gordent-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .6s ease, transform .6s ease;
}
.gordent-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.gordent-reveal--delay-1 { transition-delay: .1s; }
.gordent-reveal--delay-2 { transition-delay: .2s; }
.gordent-reveal--delay-3 { transition-delay: .3s; }
.gordent-reveal--delay-4 { transition-delay: .4s; }

/* ── Service card hover ────────────────────────────────────────────────────── */
.gordent-service-card {
	transition: transform .3s ease;
}
.gordent-service-card:hover {
	transform: translateY(-6px);
}
.gordent-service-card__icon {
	transition: transform .3s ease, box-shadow .3s ease;
}
.gordent-service-card:hover .gordent-service-card__icon {
	transform: scale(1.08);
	box-shadow: 0 8px 24px rgba(131,166,185,.45);
}

/* ── Insurance logo hover ──────────────────────────────────────────────────── */
.gordent-insurance__logo-card {
	transition: transform .25s ease, box-shadow .25s ease;
}
.gordent-insurance__logo-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(0,0,0,.13);
}

/* ── Payment card hover ────────────────────────────────────────────────────── */
.gordent-payment-card {
	transition: transform .25s ease, box-shadow .25s ease;
}
.gordent-payment-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* ── Team card hover ───────────────────────────────────────────────────────── */
.gordent-team-card {
	transition: transform .3s ease, box-shadow .3s ease;
}
.gordent-team-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(0,0,0,.22);
}

/* ══════════════════════════════════════════
   PRIVACY POLICY PAGE
══════════════════════════════════════════ */
.gordent-privacy-page { display: flex; flex-direction: column; min-height: 100vh; }
.gordent-pp-content { flex: 1; }

.gordent-pp-hero {
	background: linear-gradient(135deg, #1B4F72 0%, #3277A5 100%);
	padding-block: calc(var(--gordent-nav-h) + 48px) 56px;
}
.gordent-pp-hero__inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}
.gordent-pp-hero__title {
	font-family: var(--gordent-font-heading);
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--gordent-white);
	line-height: 1.05;
}
.gordent-pp-hero__pdf {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	flex-shrink: 0;
}

.gordent-pp-doc {
	background: var(--gordent-white);
	padding-block: 56px 72px;
}

/* Intro block */
.gordent-pp-intro {
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--gordent-gray-mid);
}
.gordent-pp-intro__subtitle {
	font-size: .85rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--gordent-text-light);
	margin-bottom: .35rem;
}
.gordent-pp-intro__rule {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.25rem;
	color: var(--gordent-text);
}
.gordent-pp-effective {
	font-size: .875rem;
	color: var(--gordent-text-light);
	margin-top: .75rem;
}

/* Field rows (underline style) */
.gordent-pp-field {
	display: flex;
	align-items: baseline;
	gap: .75rem;
	border-bottom: 1px solid var(--gordent-gray-mid);
	padding-block: .5rem;
	font-size: .9rem;
	text-align: left;
}
.gordent-pp-field__label {
	font-weight: 600;
	color: var(--gordent-text);
	white-space: nowrap;
	flex-shrink: 0;
}
.gordent-pp-field__value { color: var(--gordent-text); }

/* Alert */
.gordent-pp-alert {
	background: var(--gordent-blue);
	color: var(--gordent-white);
	border-radius: var(--gordent-radius-sm);
	padding: 1rem 1.5rem;
	font-size: .875rem;
	font-weight: 600;
	line-height: 1.65;
	margin-bottom: 1.5rem;
	text-align: center;
}

.gordent-pp-lead,
.gordent-pp-body {
	font-size: .9rem;
	line-height: 1.75;
	color: var(--gordent-text);
	margin-bottom: 1rem;
}

.gordent-pp-section-title {
	font-family: var(--gordent-font-heading);
	font-size: .95rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--gordent-orange);
	margin-top: 2rem;
	margin-bottom: .75rem;
	padding-bottom: .35rem;
	border-bottom: 1px solid var(--gordent-gray-mid);
}

.gordent-pp-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: .6rem;
	margin-bottom: 1rem;
	font-size: .875rem;
	line-height: 1.65;
	color: var(--gordent-text);
}
.gordent-pp-list li { padding-left: 1.1rem; position: relative; }
.gordent-pp-list li::before { content: '•'; position: absolute; left: 0; color: var(--gordent-orange); }
.gordent-pp-list--dash li::before { content: '•'; color: var(--gordent-blue); }

.gordent-pp-contact-block {
	background: var(--gordent-gray-light);
	border-radius: var(--gordent-radius);
	padding: 1.5rem 2rem;
	margin-bottom: 1.5rem;
	font-size: .875rem;
	line-height: 1.7;
}

.gordent-pp-note {
	font-size: .82rem;
	color: var(--gordent-text-light);
	background: var(--gordent-gray-light);
	border-left: 3px solid var(--gordent-blue);
	padding: .75rem 1rem;
	border-radius: 0 var(--gordent-radius-sm) var(--gordent-radius-sm) 0;
	margin-bottom: 2rem;
	line-height: 1.65;
}

/* PDF bar */
.gordent-pp-pdf-bar {
	display: flex;
	align-items: center;
	gap: .75rem;
	background: var(--gordent-blue-dark);
	color: rgba(255,255,255,.85);
	border-radius: var(--gordent-radius);
	padding: 1.25rem 1.75rem;
	font-size: .875rem;
	flex-wrap: wrap;
}
.gordent-pp-pdf-link {
	display: inline-flex;
	align-items: center;
	color: var(--gordent-white);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: opacity var(--gordent-transition);
}
.gordent-pp-pdf-link:hover { opacity: .8; }

@media (max-width: 768px) {
	.gordent-pp-hero__inner { flex-direction: column; align-items: flex-start; }
	.gordent-pp-contact-block { padding: 1rem 1.25rem; }
	.gordent-pp-field { flex-direction: column; gap: .2rem; }
}

/* ══════════════════════════════════════════
   HOUSE PLAN PAGE
══════════════════════════════════════════ */
.gordent-house-plan-page { display: flex; flex-direction: column; min-height: 100vh; }
.gordent-hp-content { flex: 1; }

/* ── Hero ── */
.gordent-hp-hero {
	background: linear-gradient(135deg, #4a7fa0 0%, #3277A5 50%, #1B4F72 100%);
	padding-block: calc(var(--gordent-nav-h) + 56px) 72px;
}

.gordent-hp-hero__title {
	font-family: var(--gordent-font-heading);
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--gordent-white);
	line-height: 1.05;
	margin-bottom: 1.5rem;
}

.gordent-hp-hero__question {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--gordent-white);
	margin-bottom: 1rem;
}

.gordent-hp-hero__bullets {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: .65rem;
}

.gordent-hp-hero__bullets li {
	display: flex;
	align-items: flex-start;
	gap: .6rem;
	color: rgba(255,255,255,.9);
	font-size: 1rem;
	line-height: 1.55;
}

.gordent-hp-hero__bullets li::before {
	content: '•';
	color: var(--gordent-orange);
	font-size: 1.2rem;
	line-height: 1.3;
	flex-shrink: 0;
}

/* ── Cost ── */
.gordent-hp-cost {
	background: var(--gordent-white);
	padding-block: 72px;
	text-align: center;
}

.gordent-hp-cost__title {
	font-family: var(--gordent-font-heading);
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--gordent-text);
	margin-bottom: 2.5rem;
}

.gordent-hp-cost__cards {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 420px;
	margin-inline: auto;
	margin-bottom: 1.75rem;
}

.gordent-hp-cost__card {
	background: var(--gordent-white);
	border: 2px solid var(--gordent-gray-mid);
	border-radius: var(--gordent-radius);
	padding: 1.5rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .35rem;
}

.gordent-hp-cost__value {
	font-family: var(--gordent-font-heading);
	font-size: clamp(2rem, 5vw, 2.8rem);
	font-weight: 800;
	color: var(--gordent-text);
	line-height: 1;
}

.gordent-hp-cost__label {
	font-size: .9rem;
	color: var(--gordent-text-light);
}

.gordent-hp-cost__note {
	font-size: .9rem;
	font-style: italic;
	color: var(--gordent-text-light);
	max-width: 480px;
	margin-inline: auto;
}

/* ── Benefits ── */
.gordent-hp-benefits {
	background: linear-gradient(135deg, #1B4F72 0%, #3277A5 100%);
	padding-block: 72px;
}

.gordent-hp-benefits__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem 5rem;
	max-width: 860px;
	margin-inline: auto;
}

.gordent-hp-benefits__title {
	font-family: var(--gordent-font-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--gordent-white);
	margin-bottom: 1.25rem;
}

.gordent-hp-benefits__subtitle {
	font-size: .95rem;
	font-weight: 600;
	color: rgba(255,255,255,.85);
	margin-bottom: .85rem;
	line-height: 1.5;
}

.gordent-hp-benefits__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.gordent-hp-benefits__list li {
	color: rgba(255,255,255,.9);
	font-size: .975rem;
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	gap: .5rem;
}

.gordent-hp-benefits__list--green li::before {
	content: '•';
	color: #6fcf97;
	font-size: 1.1rem;
	line-height: 1.35;
	flex-shrink: 0;
}

.gordent-hp-benefits__list--bullet li::before {
	content: '·';
	color: var(--gordent-orange);
	font-size: 1.3rem;
	line-height: 1.1;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.gordent-hp-benefits__grid { grid-template-columns: 1fr; gap: 2.5rem; }
	.gordent-hp-cost__cards { max-width: 100%; }
}

/* ── Special Care Page ─────────────────────────────────────────────────────── */

/* Page background — light gray so white cards float */
.gordent-special-care-page { background: #f0f2f4; }

/* Hero — dark blue, full width, text left ~50% */
.gordent-sc-hero {
	background: var(--gordent-blue);
	padding: 6rem 0 5rem;
	color: #fff;
}
.gordent-sc-hero__inner { max-width: 580px; }
.gordent-sc-hero__title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 1.25rem;
	color: #fff;
}
.gordent-sc-hero p { font-size: .92rem; line-height: 1.75; margin-bottom: .85rem; opacity: .88; }

/* Comfort Options — white card with rounded corners, text left | image right */
.gordent-sc-comfort { padding: 2.5rem 0; }
.gordent-sc-comfort__card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 420px;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.gordent-sc-comfort__text {
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gordent-sc-comfort__title {
	font-size: clamp(1rem, 1.8vw, 1.3rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--gordent-blue);
	margin-bottom: .75rem;
	line-height: 1.2;
}
.gordent-sc-comfort__intro { color: #444; margin-bottom: 1.1rem; font-size: .88rem; }
.gordent-sc-comfort__option { margin-bottom: .85rem; }
.gordent-sc-comfort__option h3 { font-size: .85rem; font-weight: 700; color: #111; margin-bottom: .15rem; }
.gordent-sc-comfort__option p { font-size: .8rem; color: #555; line-height: 1.65; }
.gordent-sc-comfort__image { overflow: hidden; position: relative; border-radius: 0 12px 12px 0; }
.gordent-sc-comfort__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* Medical Collaboration & Commitment — dark blue full-width sections */
.gordent-sc-collab,
.gordent-sc-commit {
	background: var(--gordent-blue);
	padding: 2rem 0;
	color: #fff;
}
.gordent-sc-collab__inner,
.gordent-sc-commit__inner {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 2.5rem;
	align-items: center;
}
.gordent-sc-collab__image,
.gordent-sc-commit__image {
	border-radius: 8px;
	overflow: hidden;
	width: 220px;
	height: 220px;
	background: rgba(255,255,255,.12);
	flex-shrink: 0;
}
.gordent-sc-collab__image img,
.gordent-sc-commit__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gordent-sc-collab__title,
.gordent-sc-commit__title {
	font-size: clamp(.9rem, 1.8vw, 1.15rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--gordent-orange);
	margin-bottom: .75rem;
	line-height: 1.2;
}
.gordent-sc-collab__text p,
.gordent-sc-commit__text p { font-size: .86rem; line-height: 1.75; opacity: .9; margin-bottom: .6rem; }

/* CTA Bottom — white card, 2 columns + centered orange button */
.gordent-sc-cta { padding: 2.5rem 0 3rem; }
.gordent-sc-cta__card {
	background: #fff;
	border-radius: 12px;
	padding: 3rem 2.5rem 2.5rem;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.gordent-sc-cta__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}
.gordent-sc-cta__title {
	font-size: clamp(1rem, 2vw, 1.3rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--gordent-blue);
	margin-bottom: .75rem;
	line-height: 1.2;
}
.gordent-sc-cta__col p { font-size: .86rem; color: #555; line-height: 1.75; margin-bottom: .45rem; }
.gordent-sc-cta__btn-wrap { text-align: center; }
.gordent-sc-cta__btn { font-size: .95rem; padding: .85rem 2.75rem; text-transform: uppercase; font-weight: 700; letter-spacing: .05em; }

@media (max-width: 768px) {
	.gordent-sc-comfort__card { grid-template-columns: 1fr; }
	.gordent-sc-comfort__text { padding: 2rem 1.5rem; }
	.gordent-sc-comfort__image { position: relative; min-height: 260px; border-radius: 0 0 12px 12px; }
	.gordent-sc-collab__inner,
	.gordent-sc-commit__inner { grid-template-columns: 1fr; gap: 1.25rem; }
	.gordent-sc-collab__image,
	.gordent-sc-commit__image { width: 100%; height: 200px; }
	.gordent-sc-cta__grid { grid-template-columns: 1fr; gap: 1.5rem; }
	.gordent-sc-cta__card { padding: 2rem 1.5rem; }
}

/* ── Reduced motion ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; }
	html { scroll-behavior: auto; }
	.gordent-reveal { opacity: 1; transform: none; }
}
