/* =========================================================================
   Anchor v2 — Page sections
   Brand colors only: #421B49 (primary), #C9561C (secondary), #7A7A7A (text)
   No invented colors. Sections that need depth use image backgrounds.
   ========================================================================= */

/* ---------- Reveal utility (subtle, not laggy) ---------- */

[data-reveal] {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ---------- Shared section heading ---------- */

.s-head {
	max-width: 700px;
	margin: 0 auto 40px;
	text-align: center;
}

.s-head__eyebrow {
	display: inline-block;
	font-size: var(--fs-eyebrow);
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--brand-secondary);
	margin-bottom: 12px;
}

.s-head__title {
	font-family: var(--font-display);
	font-size: clamp(26px, 3.6vw, var(--fs-heading));
	font-weight: 500;
	line-height: 1.2;
	color: var(--brand-secondary);
	margin: 0 0 12px;
}

.s-head__title .accent {
	color: var(--brand-primary);
	font-style: italic;
}

.s-head__lede {
	font-size: 17px;
	line-height: 1.65;
	color: var(--brand-text);
	margin: 0;
	max-width: 580px;
	margin-inline: auto;
}

.section--tight { padding-block: clamp(48px, 6vw, 72px); }
.section--snug  { padding-block: clamp(32px, 4vw, 56px); }


/* ============================================================
   1. INTRO RIBBON
   ============================================================ */

.intro {
	padding-block: clamp(48px, 7vw, 80px);
	background: #fff;
}

.intro__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
	gap: clamp(28px, 5vw, 56px);
	align-items: center;
}

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

.intro__welcome {
	font-family: var(--font-script);
	font-size: clamp(34px, 4.6vw, 48px);
	color: var(--brand-secondary);
	line-height: 1;
	margin: 0 0 4px;
}

.intro__title {
	font-family: var(--font-display);
	font-size: clamp(26px, 3.4vw, 36px);
	font-weight: 500;
	line-height: 1.2;
	color: var(--brand-primary);
	margin: 0 0 12px;
}

.intro__body {
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.7;
	color: var(--brand-text);
	margin: 0 0 20px;
	max-width: 56ch;
	font-weight: 300;
}

.intro__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}


/* ============================================================
   2. TRUST METRICS — image background (no flat purple)
   ============================================================ */

.metrics {
	position: relative;
	padding-block: clamp(56px, 8vw, 88px);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
	background-color: var(--brand-primary); /* fallback */
}

.metrics__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}

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

.metrics::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(66,27,73,0.88) 0%, rgba(66,27,73,0.78) 100%);
}

/* Decorative top + bottom hairlines using brand color */
.metrics::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 24px;
	width: 60px;
	height: 1px;
	background: rgba(255, 255, 255, 0.18);
}

.metrics__lead {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 40px;
}

.metrics__eyebrow {
	color: #fff;
	opacity: 0.7;
	display: inline-block;
	font-size: var(--fs-eyebrow);
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.metrics__title {
	font-family: var(--font-display);
	font-size: clamp(26px, 3.4vw, 36px);
	font-weight: 500;
	color: #fff;
	line-height: 1.2;
	margin: 0;
}

.metrics__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

@media (max-width: 860px) { .metrics__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .metrics__grid { grid-template-columns: 1fr; } }

.metric {
	text-align: center;
	padding: 24px 12px;
	border-radius: var(--radius-md);
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.05);
	transition: border-color var(--dur-base) var(--ease), background-color var(--dur-base) var(--ease);
}

.metric:hover {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.08);
}

.metric__num {
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 52px);
	font-weight: 600;
	line-height: 1;
	color: #fff;
	margin-bottom: 8px;
	font-variant-numeric: tabular-nums;
}

.metric__num::after { content: attr(data-suffix); color: var(--brand-secondary); }

.metric__label {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.82);
}


/* ============================================================
   3. SERVICES — sophisticated cards with reveal-on-hover
   ============================================================ */

.services {
	padding-block: clamp(56px, 7vw, 80px);
	background: var(--surface-soft);
}

.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

@media (max-width: 860px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }

.service-card {
	position: relative;
	display: block;
	aspect-ratio: 5 / 4;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
	color: #fff;
	isolation: isolate;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.service-card__img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--ease), filter 400ms var(--ease);
	z-index: 0;
}

.service-card:hover .service-card__img {
	transform: scale(1.08);
	filter: saturate(1.1);
}

.service-card::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(66,27,73,0) 25%, rgba(66,27,73,0.55) 60%, rgba(66,27,73,0.95) 100%);
	pointer-events: none;
	z-index: 1;
	transition: background var(--dur-slow) var(--ease);
}

.service-card:hover::after {
	background: linear-gradient(180deg, rgba(66,27,73,0.20) 0%, rgba(66,27,73,0.65) 50%, rgba(66,27,73,0.95) 100%);
}

.service-card__number {
	position: absolute;
	top: 18px; right: 22px;
	z-index: 3;
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.1em;
	transition: color var(--dur-base) var(--ease);
}

.service-card:hover .service-card__number { color: #fff; }

.service-card__content {
	position: absolute;
	inset: auto 0 0 0;
	padding: 24px 22px 22px;
	z-index: 3;
	transform: translateY(0);
	transition: transform var(--dur-slow) var(--ease);
}

.service-card__title {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.25;
	margin: 0 0 8px;
	color: #fff;
}

.service-card__desc {
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 14px;
	font-weight: 300;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition:
		max-height 400ms var(--ease),
		opacity 300ms var(--ease) 80ms,
		margin var(--dur-base) var(--ease);
}

.service-card:hover .service-card__desc {
	max-height: 80px;
	opacity: 1;
	margin: 0 0 14px;
}

.service-card__cta {
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.service-card__cta::after {
	content: "→";
	display: inline-block;
	transition: transform var(--dur-base) var(--ease);
}

.service-card:hover .service-card__cta::after { transform: translateX(4px); }

.service-card__cta-line {
	display: inline-block;
	width: 18px;
	height: 1px;
	background: var(--brand-secondary);
	margin-left: 6px;
	transition: width var(--dur-base) var(--ease);
	vertical-align: middle;
}

.service-card:hover .service-card__cta-line { width: 32px; }


/* ============================================================
   4. BELIEVE — clean split, no decoration overload
   ============================================================ */

.believe {
	padding-block: clamp(56px, 7vw, 80px);
	background: #fff;
}

.believe__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

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

.believe__quote {
	font-family: var(--font-display);
	font-size: clamp(22px, 2.6vw, 28px);
	line-height: 1.4;
	color: var(--brand-primary);
	font-weight: 500;
	margin: 0 0 18px;
	position: relative;
	padding-left: 24px;
	border-left: 3px solid var(--brand-secondary);
}

.believe__body {
	font-size: 17px;
	line-height: 1.7;
	color: var(--brand-text);
	margin: 0 0 24px;
	font-weight: 300;
}

.believe__media {
	position: relative;
	aspect-ratio: 5 / 4;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

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


/* ============================================================
   5. TEAM — elegant grid with sliding name plate
   ============================================================ */

.team-sec {
	padding-block: clamp(56px, 7vw, 80px);
	background: var(--surface-soft);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1100px;
	margin-inline: auto;
}

@media (max-width: 860px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

.tm-card {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--brand-primary-08);
	isolation: isolate;
}

.tm-card__img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 700ms var(--ease), filter 400ms var(--ease);
	filter: saturate(0.95);
}

.tm-card:hover .tm-card__img {
	transform: scale(1.06);
	filter: saturate(1.05);
}

.tm-card::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(66, 27, 73, 0.86) 100%);
	pointer-events: none;
	transition: background var(--dur-slow) var(--ease);
}

.tm-card:hover::after {
	background: linear-gradient(180deg, rgba(66, 27, 73, 0.10) 0%, rgba(66, 27, 73, 0.90) 100%);
}

.tm-card__overlay {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 22px 20px;
	color: #fff;
	z-index: 2;
}

.tm-card__name {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 4px;
	color: #fff;
	letter-spacing: -0.005em;
}

.tm-card__role {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.86);
	margin: 0;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Line decoration appears via the role's ::after — no extra markup needed */
.tm-card__role {
	display: inline-block;
}

.tm-card__role::after {
	content: "";
	display: block;
	width: 22px;
	height: 1px;
	background: var(--brand-secondary);
	margin-top: 10px;
	transition: width var(--dur-slow) var(--ease);
}

.tm-card:hover .tm-card__role::after { width: 56px; }


/* ============================================================
   6. TESTIMONIALS
   ============================================================ */

.tst {
	padding-block: clamp(56px, 7vw, 80px);
	background: #fff;
}

.tst__track {
	position: relative;
	max-width: 820px;
	margin: 0 auto;
}

.tst__slide {
	display: none;
	text-align: center;
	padding: 0 16px;
}

.tst__slide.is-active {
	display: block;
	animation: tstFade 600ms var(--ease);
}

@keyframes tstFade {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}

.tst__quote {
	font-family: var(--font-display);
	font-size: clamp(19px, 2.2vw, 24px);
	line-height: 1.5;
	color: var(--brand-primary);
	margin: 0 0 24px;
	font-weight: 400;
	font-style: italic;
	position: relative;
}

.tst__quote::before {
	content: "“";
	display: block;
	font-size: 80px;
	line-height: 0.4;
	color: var(--brand-secondary);
	opacity: 0.4;
	margin-bottom: 20px;
}

.tst__author {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 500;
	color: var(--brand-primary);
	margin: 0;
}

.tst__role {
	font-size: 13px;
	color: var(--brand-text);
	margin-top: 4px;
}

.tst__controls {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
}

.tst__dot {
	width: 8px; height: 8px;
	border-radius: var(--radius-full);
	background: var(--brand-primary-15);
	cursor: pointer;
	transition: background-color var(--dur-base) var(--ease), width var(--dur-base) var(--ease);
	border: none;
	padding: 0;
}

.tst__dot.is-active {
	background: var(--brand-secondary);
	width: 24px;
}


/* ============================================================
   7. WHAT'S HOT
   ============================================================ */

.hot {
	padding-block: clamp(56px, 7vw, 80px);
	background: var(--surface-soft);
}

.hot__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

@media (max-width: 980px) { .hot__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hot__grid { grid-template-columns: 1fr; } }

.hot-card {
	background: #fff;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
	display: flex; flex-direction: column;
	border: 1px solid var(--line-soft);
	position: relative;
}

.hot-card::before {
	content: "";
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 3px;
	background: var(--brand-secondary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--dur-slow) var(--ease);
	z-index: 3;
}

.hot-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--brand-primary-15);
}

.hot-card:hover::before { transform: scaleX(1); }

.hot-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	position: relative;
}

.hot-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--ease);
}

.hot-card:hover .hot-card__media img { transform: scale(1.06); }

.hot-card__tag {
	position: absolute;
	top: 12px; left: 12px;
	padding: 5px 12px;
	border-radius: var(--radius-full);
	background: #fff;
	color: var(--brand-primary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hot-card__body {
	padding: 18px;
	flex: 1;
	display: flex; flex-direction: column;
}

.hot-card__date {
	font-size: 11px;
	font-weight: 600;
	color: var(--brand-secondary);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.hot-card__title {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 500;
	color: var(--brand-primary);
	margin: 0 0 8px;
	line-height: 1.3;
}

.hot-card__desc {
	font-size: 14px;
	line-height: 1.55;
	color: var(--brand-text);
	margin: 0 0 12px;
	font-weight: 300;
}

.hot-card__cta {
	margin-top: auto;
	font-size: 13px;
	font-weight: 600;
	color: var(--brand-secondary);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}


/* ============================================================
   8. PARTNERS — full color, consistent height, even spacing
   ============================================================ */

.partners {
	padding-block: clamp(48px, 6vw, 72px);
	background: #fff;
	border-top: 1px solid var(--line-soft);
	border-bottom: 1px solid var(--line-soft);
	overflow: hidden;
}

.partners__head {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 36px;
}

.partners__eyebrow {
	display: inline-block;
	font-size: var(--fs-eyebrow);
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--brand-secondary);
	margin-bottom: 10px;
}

.partners__title {
	font-family: var(--font-display);
	font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 500;
	color: var(--brand-primary);
	margin: 0;
	line-height: 1.25;
}

.marquee {
	position: relative;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee__track {
	display: flex;
	gap: 64px;
	align-items: center;
	width: max-content;
	animation: marquee 42s linear infinite;
	padding-block: 8px;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
	flex: 0 0 auto;
	height: 70px;
	width: 160px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
}

.marquee__item img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	/* No grayscale — show full color logos as requested */
	transition: transform var(--dur-base) var(--ease);
}

.marquee__item:hover img {
	transform: scale(1.06);
}

@keyframes marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}


/* ============================================================
   9. FOUNDER LETTER — image-backed card (not plain purple)
   ============================================================ */

.letter {
	padding-block: clamp(56px, 7vw, 80px);
	background: var(--surface-soft);
}

.letter__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
	border-radius: var(--radius-xl);
	overflow: hidden;
	min-height: 360px;
	color: #fff;
	isolation: isolate;
}

.letter__bg {
	position: absolute; inset: 0; z-index: -2;
}

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

.letter__inner::before {
	content: "";
	position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(95deg, rgba(66,27,73,0.92) 0%, rgba(66,27,73,0.72) 60%, rgba(66,27,73,0.45) 100%);
}

.letter__body-wrap {
	padding: clamp(32px, 5vw, 56px);
	max-width: 520px;
}

.letter__title {
	font-family: var(--font-display);
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 500;
	line-height: 1.25;
	margin: 0 0 14px;
	color: #fff;
}

.letter__title .script {
	font-family: var(--font-script);
	font-style: normal;
	font-size: 1.25em;
	color: var(--brand-secondary);
}

.letter__body {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 20px;
	font-weight: 300;
}

.letter__form {
	display: flex;
	gap: 6px;
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.25);
	padding: 5px;
	border-radius: 10px;
	max-width: 400px;
}

.letter__form input {
	flex: 1;
	padding: 10px 14px;
	background: transparent;
	border: none;
	color: #fff;
	font-family: inherit;
	font-size: 14px;
	outline: none;
}

.letter__form input::placeholder { color: rgba(255, 255, 255, 0.6); }

.letter__form button {
	padding: 10px 20px;
	background: var(--brand-secondary);
	color: #fff;
	border-radius: 8px;
	font-weight: 500;
	font-size: 14px;
	font-family: inherit;
	cursor: pointer;
	border: none;
	transition: background-color var(--dur-base) var(--ease);
}

.letter__form button:hover { background: var(--brand-primary); }

.letter__portrait {
	position: relative;
	height: 100%;
	min-height: 320px;
}

.letter__portrait img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center top;
}

@media (max-width: 860px) {
	.letter__inner { grid-template-columns: 1fr; }
	.letter__portrait { display: none; }
}


/* ============================================================
   10. FOOTER CTA BANNER — image-backed, full-width
   Sits above the footer.
   ============================================================ */

.footer-cta {
	position: relative;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
	padding-block: clamp(80px, 10vw, 140px);
	border-top: 1px solid var(--line-soft);
}

.footer-cta__bg { position: absolute; inset: 0; z-index: -2; }
.footer-cta__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }

.footer-cta::before {
	content: "";
	position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(180deg, rgba(66,27,73,0.55) 0%, rgba(66,27,73,0.85) 100%);
}

.footer-cta__inner {
	max-width: 720px;
	text-align: center;
	margin-inline: auto;
}

.footer-cta__eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 22px;
}

.footer-cta__eyebrow::before,
.footer-cta__eyebrow::after {
	content: "";
	display: inline-block;
	width: 28px;
	height: 1px;
	background: var(--brand-secondary);
	vertical-align: middle;
	margin: 0 16px;
}

.footer-cta__title {
	font-family: var(--font-display);
	font-size: clamp(32px, 5vw, 60px);
	font-weight: 500;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 18px;
	letter-spacing: -0.015em;
	text-wrap: balance;
}

.footer-cta__title em {
	font-style: italic;
	color: var(--brand-secondary);
	font-weight: 400;
}

.footer-cta__body {
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.86);
	margin: 0 0 32px;
	font-weight: 300;
}

.footer-cta__actions {
	display: inline-flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-cta__primary,
.footer-cta__secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	transition: background-color var(--dur-base) var(--ease), color var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}

.footer-cta__primary {
	background: var(--brand-secondary);
	color: #fff;
}

.footer-cta__primary:hover { background: #fff; color: var(--brand-primary); }

.footer-cta__secondary {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-cta__secondary:hover { background: rgba(255, 255, 255, 0.10); border-color: #fff; }


/* ============================================================
   FOOTER — refined, editorial (now without the lead block)
   ============================================================ */

.site-footer {
	background: #fff;
	color: var(--brand-text);
	padding-top: clamp(48px, 6vw, 72px);
	padding-bottom: 28px;
	border-top: 1px solid var(--line-soft);
}

.site-footer__top { display: none; }

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr repeat(3, 1fr);
	gap: clamp(28px, 4vw, 56px);
	margin-bottom: clamp(40px, 5vw, 56px);
}

@media (max-width: 860px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; gap: 28px; } }

.site-footer__brand img {
	max-width: 120px;
	margin-bottom: 14px;
}

.site-footer__tagline {
	font-size: 14px;
	line-height: 1.6;
	color: var(--brand-text);
	margin: 0 0 22px;
	max-width: 260px;
	font-weight: 300;
}

.site-footer__contact {
	font-size: 13px;
	line-height: 1.8;
	color: var(--brand-text);
}

.site-footer__contact a {
	color: var(--brand-primary);
	transition: color var(--dur-base) var(--ease);
}

.site-footer__contact a:hover { color: var(--brand-secondary); }

.site-footer__socials {
	display: flex;
	gap: 14px;
	margin-top: 18px;
}

.site-footer__socials a {
	color: var(--brand-text);
	transition: color var(--dur-base) var(--ease);
}

.site-footer__socials a:hover { color: var(--brand-secondary); }
.site-footer__socials svg { width: 18px; height: 18px; }

.site-footer__col h4 {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	color: var(--brand-primary);
	margin: 0 0 18px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.site-footer__col ul {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-direction: column;
	gap: 12px;
}

.site-footer__col a {
	font-size: 14px;
	color: var(--brand-text);
	transition: color var(--dur-base) var(--ease);
	font-weight: 300;
}

.site-footer__col a:hover { color: var(--brand-primary); }

.site-footer__bottom {
	padding-top: 24px;
	border-top: 1px solid var(--line-soft);
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 12px;
	color: var(--muted-2, var(--brand-text));
	letter-spacing: 0.04em;
}

.site-footer__bottom a {
	color: var(--brand-text);
	transition: color var(--dur-base) var(--ease);
}

.site-footer__bottom a:hover { color: var(--brand-primary); }


/* ============================================================
   11. WHATSAPP FAB
   ============================================================ */

.fab-chat {
	position: fixed;
	right: 20px; bottom: 20px;
	z-index: var(--z-toast);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px 10px 10px;
	background: #25D366;
	color: #fff;
	border-radius: var(--radius-full);
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.32);
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	transition: transform var(--dur-base) var(--ease);
}

.fab-chat:hover { transform: translateY(-2px); }

.fab-chat__avatar {
	width: 32px; height: 32px;
	border-radius: var(--radius-full);
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.fab-chat__avatar svg { width: 18px; height: 18px; color: #25D366; }

.fab-chat__text { display: flex; flex-direction: column; line-height: 1.1; }
.fab-chat__text small { font-size: 10px; opacity: 0.9; margin-bottom: 2px; letter-spacing: 0.06em; }

@media (max-width: 520px) {
	.fab-chat__text { display: none; }
	.fab-chat { padding: 10px; }
}


/* ============================================================
   12. PAGE HEADER — for inner pages
   ============================================================ */

.page-head {
	position: relative;
	min-height: 360px;
	padding-top: 110px;
	padding-bottom: 60px;
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.page-head__bg { position: absolute; inset: 0; z-index: -2; }
.page-head__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

.page-head::before {
	content: "";
	position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(180deg, rgba(66,27,73,0.5) 0%, rgba(66,27,73,0.78) 100%);
}

.page-head__eyebrow {
	display: inline-block;
	font-size: var(--fs-eyebrow);
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 12px;
}

.page-head__title {
	font-family: var(--font-display);
	font-size: clamp(32px, 4.6vw, 50px);
	font-weight: 500;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 12px;
}

.page-head__lede {
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	max-width: 580px;
	font-weight: 300;
}

.breadcrumbs {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 20px;
}

.breadcrumbs a { color: rgba(255, 255, 255, 0.7); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: rgba(255, 255, 255, 0.4); margin: 0 8px; }


/* ============================================================
   13. PROSE — for blog/about long-form content
   ============================================================ */

.prose {
	max-width: 720px;
	margin-inline: auto;
}

.prose p, .prose li {
	font-size: 17px;
	line-height: 1.75;
	color: var(--brand-text);
	font-weight: 300;
	margin: 0 0 1.1em;
}

.prose h2 {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 500;
	color: var(--brand-primary);
	margin: 1.4em 0 0.5em;
}

.prose h3 {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 500;
	color: var(--brand-primary);
	margin: 1.2em 0 0.4em;
}

.prose a {
	color: var(--brand-secondary);
	border-bottom: 1px solid var(--brand-secondary-15);
}

.prose a:hover { border-bottom-color: var(--brand-secondary); }

.prose blockquote {
	font-family: var(--font-display);
	font-size: 22px;
	color: var(--brand-primary);
	line-height: 1.5;
	margin: 1.4em 0;
	padding-left: 24px;
	border-left: 3px solid var(--brand-secondary);
	font-style: italic;
}


/* ============================================================
   14. CONTACT FORM (for contact page)
   ============================================================ */

.contact-form {
	display: grid;
	gap: 16px;
	max-width: 560px;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 560px) { .contact-form__row { grid-template-columns: 1fr; } }

.contact-form input,
.contact-form textarea,
.contact-form select {
	width: 100%;
	padding: 14px 16px;
	font-family: inherit;
	font-size: 15px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	color: var(--ink);
	transition: border-color var(--dur-base) var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	outline: none;
	border-color: var(--brand-secondary);
}

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

.contact-form label {
	font-size: 13px;
	font-weight: 500;
	color: var(--brand-primary);
	margin-bottom: 4px;
	display: block;
}
