:root {
	--deep-blue: #1a2b3c;
	--gold: #c5a059;
	--hero-eyebrow-gold-top: #f2e0a8;
	--hero-eyebrow-gold-mid: #e3c67c;
	--hero-eyebrow-gold-deep: #b8923f;
	--cream: #f4f4f4;
	--soft-blue: #24374b;
	--text: #e8e8e8;
	--max-width: 860px;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	background: var(--deep-blue);
	background-image: url('../images/bg-body.jpg');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-attachment: fixed;
	background-size: 100% 100%;
	color: var(--text);
	font-family: 'Open Sans', Arial, sans-serif;
}

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

a {
	color: inherit;
}

.inline-block {
	display: inline-block;
}

.container {
	width: min(var(--max-width), calc(100% - 2rem));
	margin: 0 auto;
}

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

.flow-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.flow-single {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hero {
	position: relative;
	isolation: isolate;
}

.hero__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image:
		linear-gradient(to bottom, rgba(14, 23, 33, 0.3) 0%, rgba(14, 23, 33, 0.84) 62%, var(--deep-blue) 100%),
		var(--hero-bg-image);
	background-size: 100% 100%, 100% 100%;
	background-position: center, center;
	background-repeat: no-repeat;
}

.hero__shell {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.hero__shell::before {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 100%;
	aspect-ratio: 1920 / 73;
	background-image: url('../images/bg-intro-header.jpg');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
}

.hero__shell-inner .container {
	position: relative;
	top: -1rem;
	margin-bottom: -1rem;
}

.hero__shell-inner {
	flex: 1 1 auto;
	width: 100%;
	min-height: 0;
	background-image: url('../images/bg-intro-middle.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	padding: 0 0 0.1rem;
}

.hero__shell::after {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 100%;
	aspect-ratio: 1920 / 89;
	background-image: url('../images/bg-intro-footer.jpg');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
}

.hero-showcase {
	position: relative;
	width: 100%;
	border: clamp(8px, 0.6vw, 10px) solid transparent;
	border-image: linear-gradient(
		135deg,
		#6b4a1f 0%,
		#a57935 12%,
		#e5c579 28%,
		#f8e4ae 46%,
		#c99642 64%,
		#8d6227 82%,
		#5e3f18 100%
	) 1;
	box-shadow:
		inset 0 1px 0 rgba(255, 241, 203, 0.7),
		inset 0 -1px 0 rgba(86, 55, 18, 0.55),
		0 6px 18px rgba(0, 0, 0, 0.28);
}

.hero-showcase__slider {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: min(85vh, 52rem);
	overflow: hidden;
	background: #0f1a24;
}

.hero-showcase__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity 1s ease;
}

.hero-showcase__slide picture,
.hero-showcase__slide img {
	display: block;
	width: 100%;
	height: 100%;
}

.hero-showcase__slide img {
	object-fit: cover;
}

.hero-showcase__slide.is-active {
	opacity: 1;
}

.hero__logo {
	width: 80px;
	height: auto;
	margin: 0 auto 0.1rem;
	filter:
		drop-shadow(-3px -2px 2px rgba(255, 232, 162, 0.25))
		drop-shadow(-2px -3px 4px rgba(254, 253, 233, 0.5))
		drop-shadow(-3px -3px 2px rgba(204, 169, 105, 0.35))
		drop-shadow(-1px -4px 1px rgba(158, 118, 59, 0.25));
}

h1.hero__eyebrow,
h2.section-heading--primary {
	margin: 0 0 0.9rem;
	padding: 0;
	text-align: center;
	font-size: clamp(1.8rem, 5vw, 1.9rem);
	font-weight: 400;
	text-transform: none;
	letter-spacing: normal;
	color: inherit;
}

h2.section-heading--primary#admin-title {
	font-size: clamp(1.7rem, 5vw, 1.94rem);
}

h1.hero__eyebrow .hero__eyebrow-text,
h2.section-heading--primary .section-heading__text {
	font-weight: 500;
}

h1.hero__eyebrow .hero__eyebrow-text strong,
h2.section-heading--primary .section-heading__text strong {
	font-weight: 700;
}

.hero__eyebrow-text,
.section-heading--primary .section-heading__text {
	display: inline-block;
	max-width: 100%;
	font-weight: 600;
	font-size: 1em;
	border-radius: 1px;
	line-height: 1.25;
	letter-spacing: 0;
	text-transform: none;
	text-wrap: balance;
	background: linear-gradient(
		180deg,
		var(--hero-eyebrow-gold-top) 0%,
		var(--hero-eyebrow-gold-mid) 42%,
		var(--hero-eyebrow-gold-deep) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35));
}

.section-heading--primary .section-heading__text {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.hero__eyebrow-text {
	font-family: 'Open Sans', Arial, sans-serif;
}

.hero__eyebrow-line,
.section-heading--primary .section-heading__line {
	display: block;
}

.hero__eyebrow-line {
	line-height: 1.15;
}

.hero__eyebrow-rule,
.section-heading--primary .section-heading__rule,
.section-heading__rule.section-heading__rule--before-table,
.commercial-detail-card__rule {
	display: block;
	width: min(26rem, 70%);
	height: 5px;
	background: linear-gradient(
		90deg,
		rgba(227, 198, 124, 0.15) 0%,
		var(--hero-eyebrow-gold-mid) 22%,
		#d4af37 50%,
		var(--hero-eyebrow-gold-deep) 78%,
		rgba(184, 146, 63, 0.15) 100%
	);
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.48),
		0 0 1px rgba(0, 0, 0, 0.25);
	border-radius: 1px;
}

.hero__eyebrow-rule,
.section-heading--primary .section-heading__rule {
	margin: 1rem auto 0;
}

.section-heading__rule.section-heading__rule--before-table {
	margin: 0 auto 1.25rem;
}

.commercial-detail-card__rule {
	width: min(18em, 88%);
	margin: 0.85rem auto 0;
}

.hero__title-line,
.section-heading__title-line {
	display: block;
}

h1.hero__eyebrow {
	margin-bottom: 0.5rem;
	font-size: clamp(1.7rem, 5vw, 1.8rem);
}
.hero__eyebrow-rule {
	margin-top: 0.7rem;
	height: 3px;
}

h1,
h2,
h3 {
	font-family: 'Oswald', sans-serif;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 0.65rem;
}

h1 {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h2 {
	color: var(--gold);
	font-size: clamp(1.45rem, 3.2vw, 2.1rem);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-align: center;
}

h3 {
	font-size: clamp(1.1rem, 2.4vw, 1.6rem);
	text-align: center;
}

h3.section-heading--secondary,
h4.section-heading--secondary {
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 600;
	font-size: clamp(1.15rem, 3.3vw, 1.3rem);
	line-height: 1.25;
	letter-spacing: 0.0125em;
	color: #fdf5e6;
	text-align: center;
	text-transform: none;
	text-shadow:
		2px 2px 4px rgba(0, 0, 0, 0.8),
		1px 1px 2px rgba(0, 0, 0, 0.55);
	margin: 0 auto 0.85rem;
	max-width: 36rem;
	text-wrap: balance;
}

h2.hero__title {
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 500;
	font-size: clamp(1.15rem, 3.3vw, 1.35rem);
	line-height: 1.25;
	letter-spacing: 0;
	color: transparent;
	text-align: center;
	text-transform: none;
	text-shadow: none;
	margin: 0 auto 0.25rem;
	max-width: 36rem;
	text-wrap: balance;
}

/* Same gold metal fill as .metal-text--matte + .metal-text--diag-left (option-one-benefits primary line). */
h2.hero__title .hero__title-line {
	--metal-gradient: linear-gradient(
		8deg,
		#fffef8 0%,
		#fff3cb 10%,
		var(--hero-eyebrow-gold-top) 28%,
		#f0d575 46%,
		var(--hero-eyebrow-gold-mid) 62%,
		#d4af37 80%,
		var(--hero-eyebrow-gold-deep) 100%
	);
	--metal-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.74));
	color: transparent;
	background-image: var(--metal-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: var(--metal-shadow);
}

h3.section-heading--secondary strong,
h2.hero__title strong {
	font-weight: 800;
}

h3.section-heading--secondary {
	font-weight: 500;
}

h3.section-heading--gradient-warm {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	text-shadow: none;
	filter:
		drop-shadow(2px 4px 1px rgba(0, 0, 0, 0.82))
		drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.55));
	font-size: clamp(1.7rem, 3vw, 2.3rem);
}

h3.section-heading--gradient-warm .section-heading__title-line {
	background-image: linear-gradient(
		188deg,
		#fffef8 0%,
		#fff2c2 12%,
		var(--hero-eyebrow-gold-top) 28%,
		#f0d575 45%,
		var(--hero-eyebrow-gold-mid) 58%,
		#d4af37 72%,
		var(--hero-eyebrow-gold-deep) 90%,
		#9a7028 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.option-block h3.section-heading.section-heading--gradient-warm {
	font-size: clamp(1.6rem, 4vw, 1.8rem);
}

/* Opción 1: tighten first two lines only; third line stays spaced. */
.option-block:not(.option-block--two)
	h3.section-heading--gradient-warm
	.section-heading__title-line:first-of-type
	+ .section-heading__title-line {
	margin-top: 0.33em;
}

.option-block:not(.option-block--two)
	h3.section-heading--gradient-warm
	.section-heading__title-line:last-of-type {
	font-weight: 500;
}

.metal-text {
	--metal-gradient: linear-gradient(
		180deg,
		#fffef8 0%,
		#fff2c2 12%,
		var(--hero-eyebrow-gold-top) 30%,
		#f0d575 52%,
		var(--hero-eyebrow-gold-mid) 68%,
		var(--hero-eyebrow-gold-deep) 100%
	);
	--metal-shadow:
		drop-shadow(0 1px 2px rgba(0, 0, 0, 0.78))
		drop-shadow(0 0 5px rgba(227, 198, 124, 0.2));
	color: transparent;
	background-image: var(--metal-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: var(--metal-shadow);
}

.metal-text--matte {
	--metal-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.74));
}

.metal-text--sheen {
	--metal-shadow:
		drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8))
		drop-shadow(0 0 8px rgba(227, 198, 124, 0.28));
}

.metal-text--diag-right {
	--metal-gradient: linear-gradient(
		172deg,
		#fffef8 0%,
		#fff3cb 10%,
		var(--hero-eyebrow-gold-top) 28%,
		#f0d575 46%,
		var(--hero-eyebrow-gold-mid) 62%,
		#d4af37 80%,
		var(--hero-eyebrow-gold-deep) 100%
	);
}

.metal-text--diag-left {
	--metal-gradient: linear-gradient(
		8deg,
		#fffef8 0%,
		#fff3cb 10%,
		var(--hero-eyebrow-gold-top) 28%,
		#f0d575 46%,
		var(--hero-eyebrow-gold-mid) 62%,
		#d4af37 80%,
		var(--hero-eyebrow-gold-deep) 100%
	);
}

.metal-text--mirror {
	--metal-gradient: linear-gradient(
		90deg,
		var(--hero-eyebrow-gold-deep) 0%,
		var(--hero-eyebrow-gold-mid) 26%,
		#f9e2a1 50%,
		var(--hero-eyebrow-gold-mid) 74%,
		var(--hero-eyebrow-gold-deep) 100%
	);
}

.metal-text--level-1 {
	font-weight: 700;
}

.metal-text--level-2 {
	font-weight: 600;
}

.metal-text--level-3 {
	/* font-weight: 500; */
	font-weight: 600;
}

h4.section-heading--secondary {
	font-size: clamp(1.05rem, 2.2vw, 1.4rem);
}

.hero__intro {
	margin: 0 auto;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: clamp(1.1rem, 3vw, 1.2rem);
	line-height: 1.25;
	max-width: 34rem;
	text-wrap: balance;
	color: #fff;
}

.hero__intro .hero__intro-line {
	display: block;
	color: #fff;
	-webkit-text-fill-color: #fff;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.74));
}

.hero__intro strong {
	font-weight: 700;
}

.hero__intro u {
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.12em;
}

@media (min-width:700px){
	h2.hero__title,
	.hero__intro {
		max-width: 40rem;
	}
}


p,
li {
	line-height: 1.8;
	margin: 0;
}

.section {
	padding: 1.5rem 0;
}
@media (min-width:768px){
	.section {
		padding: 1rem 0;
	}
}


/* Gold bars like .section-heading__rule, edge-to-edge of the viewport. */
.section--options {
	position: relative;
	overflow-x: hidden;
	overflow-x: clip;
	padding: 2.5rem 0;
}

.section--options::before,
.section--options::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 1rem;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(
		90deg,
		rgba(227, 198, 124, 0.15) 0%,
		var(--hero-eyebrow-gold-mid) 22%,
		#d4af37 50%,
		var(--hero-eyebrow-gold-deep) 78%,
		rgba(184, 146, 63, 0.15) 100%
	);
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.48),
		0 0 1px rgba(0, 0, 0, 0.25);
	border-radius: 1px;
	opacity: 0.6;
}

.section--options::before {
	top: 0;
}

.section--options::after {
	bottom: 0;
}

/* Inversión: imágenes a ancho de viewport (centrado = centro de columna ≈ viewport). */
.section--options .section-banner-picture {
	display: block;
	width: 100%;
}

.section--options .section-banner,
.section--options .option-extra-heroes,
.section--options .option-copy,
.section--options .option-two-hero-pair {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: 0;
	margin-right: 0;
	transform: translateX(-50%);
}

.section-banner {
	width: 100%;
	border: 1px solid rgba(197, 160, 89, 0.4);
	border-radius: 0.5rem;
}

.section--options .section-banner {
	border-radius: 0;
	max-width: 480px;
	box-sizing: content-box;
}



.section--why .flow-single {
	gap: 0.7rem;
}

.feature-stack {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	padding: 0.85rem 0.7rem 1rem;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
	background: rgba(36, 55, 75, 0.5);
	border: 1px solid rgba(197, 160, 89, 0.35);
	border-radius: 0.9rem;
	max-width: 480px;
}

.feature-stack--combined {
	gap: 0;
}

.feature-stack__pane {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	width: 100%;
}

.feature-stack__pane + .feature-stack__pane {
	margin-top: 0.7rem;
	padding-top: 1.4rem;
	border-top: 1px solid rgba(197, 160, 89, 0.28);
}

.feature-stack--tax-row {
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: clamp(0.75rem, 3vw, 1.35rem);
	padding: 0.5rem 0;
	background: none;
	border: none;
	border-radius: 0;
}

.feature-stack__tax-copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex: 0 1 auto;
	min-width: 0;
	max-width: min(20rem, 100%);
	gap: 0.35rem;
}

.feature-stack__tax-copy h3.section-heading--secondary {
	margin: 0 auto;
	max-width: 100%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-height: 1.25;
}

.feature-stack__tax-copy > p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin: 0;
	line-height: 1.45;
	text-align: center;
}

.feature-stack > img,
.feature-stack__pane > img {
	margin: 0 auto 0.25rem;
	max-width: 110px;
	border-radius: 0.45rem;
	border: 1px solid var(--hero-eyebrow-gold-deep);
	box-shadow: 0 0 1em rgba(0,0,0,0.5);
	box-sizing: content-box;
}

.feature-stack.feature-stack--tax-row > img {
	flex-shrink: 0;
	margin: 0;
	max-width: min(80px, 34vw);
	align-self: center;
}

h3.section-heading--secondary.feature-stack__lead-title {
	font-weight: 500;
}

.section--why h3.section-heading--secondary {
	margin-bottom: 0.3rem;
}

.section--why .feature-stack > p {
	line-height: 1.45;
}

.feature-stack__lead-soft {
	font-weight: 500;
}

.feature-stack__lead-real {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.feature-stack__lead-real u {
	font-weight: inherit;
	text-decoration-thickness: 0.09em;
	text-underline-offset: 0.14em;
}

.feature-stack__lead-strong {
	font-weight: 700;
}

.feature-stack__chart {
	margin: 0.25rem 0 0;
}

.feature-stack__chart img {
	display: block;
	width: 100%;
	max-width: min(28rem, 100%);
	height: auto;
	margin: 0 auto;
	border-radius: 0.45rem;
}

.feature-stack__capital-block {
	margin-top: 0.55rem;
	padding-top: 1.25rem;
	border-top: 1px dashed rgba(197, 160, 89, 0.28);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
}

.feature-stack__capital-block > img {
	max-width: 110px;
	height: auto;
	margin: 0 auto;
	border-radius: 0.45rem;
	border: 1px solid var(--hero-eyebrow-gold-deep);
	box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}

.feature-stack__capital-copy {
	margin: 0;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: clamp(1rem, 2.6vw, 1.1rem);
	line-height: 1.45;
	color: var(--cream);
	text-wrap: balance;
}

/* Stronger than .feature-stack__capital-copy so gold metal fill applies when .metal-text is used. */
.section--why .feature-stack__capital-copy.metal-text {
	color: transparent;
	-webkit-text-fill-color: transparent;
}

/* Avoid cream h3 shadow showing behind gradient title lines. */
.section--why h3.section-heading--secondary:has(.metal-text) {
	color: transparent;
	text-shadow: none;
}

.feature-stack__capital-line {
	display: block;
}

.feature-stack__capital-copy strong {
	font-weight: 700;
}

.feature-stack__capital-copy u {
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.12em;
}

.option-block {
	background: rgba(36, 55, 75, 0.5);
	border: 1px solid rgba(197, 160, 89, 0.35);
	border-radius: 1rem;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.95rem;
	margin-left: auto;
	margin-right: auto;
}

.option-block--kpi {
	background: none;
	border: 0;
	border-radius: 0;
	padding: 0;
}

.option-one-kicker,
.option-two-kicker {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.5rem;
}

.option-one-kicker__title,
.option-two-kicker__title {
	margin: 0;
	font-family: 'Oswald', sans-serif;
	font-weight: 800;
	font-size: clamp(1.65rem, 4.6vw, 2rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	background-image: linear-gradient(to right, var(--gold), var(--hero-eyebrow-gold-deep));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Softer than section bars: scannable hand-off between OPCIÓN 1 and OPCIÓN 2. */
.option-block--two {
	position: relative;
	margin-top: 3.75rem;
	padding-top: 1rem;
}

/* Gallery sits outside the card (same as .option-extra-heroes). */
.option-block--two-head {
	padding: 0;
	border-radius: 1rem;
}

.option-block--two-head .option-two-intro {
	margin: 0;
	border-radius: 1rem;
	border-bottom: none;
}

.option-block--two::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -3rem;
	z-index: 2;
	height: 1em;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(197, 160, 89, 0) 0%,
		rgba(227, 198, 124, 0.45) 15%,
		var(--hero-eyebrow-gold-mid) 50%,
		rgba(184, 146, 63, 0.5) 85%,
		rgba(197, 160, 89, 0) 100%
	);
	border-radius: 1px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.option-two-hero-pair {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.option-two-hero-pair picture,
.option-two-hero-pair picture img {
	display: block;
	width: 100%;
}
.option-two-hero-pair picture img {
	box-sizing: content-box;
}

.option-two-intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	margin: -1rem -1rem 1.6rem;
	padding: 0.7rem 1rem 0.95rem;
	border-radius: 1rem 1rem 0 0;
	background: #0f2740;
	border-bottom: 1px solid rgba(197, 160, 89, 0.5);
	text-align: center;
}

.option-two-intro .section-heading--gradient-warm {
	margin: 0;
	max-width: clamp(30rem, 66vw, 40rem);
}

.option-two-intro .section-heading--gradient-warm .section-heading__title-line {
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0;
	text-transform: none;
}

/* Tighten first two lines only; lead line keeps its own margin-top. */
.option-two-intro
	.section-heading--gradient-warm
	.section-heading__title-line
	+ .section-heading__title-line:not(.option-two-intro__lead-line) {
	margin-top: -0.25em;
}

.option-two-intro .section-heading--gradient-warm .section-heading__title-line.option-two-intro__lead-line {
	margin-top: 0.5rem;
	font-weight: 700;
	font-size: clamp(1.3rem, 5.8vw, 1.8rem);
	letter-spacing: 0;
	text-transform: uppercase;
}

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

.option-copy img {
	display: block;
	width: 420px;
	max-width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.option-extra-heroes {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.option-extra-heroes picture,
.option-extra-heroes img {
	display: block;
	width: 100%;
}

.option-block ul {
	margin: 0;
	padding-left: 1.2rem;
}

.option-block li {
	margin-bottom: 0.45rem;
}

.option-two-kpi {
	padding: 0;
	border-radius: 0.75rem;
	text-align: center;
}

.option-two-kpi img {
	display: block;
	width: 420px;
	max-width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.option-two-velocity {
	padding: 0.95rem 1rem 1.1rem;
	border: 1px solid rgba(197, 160, 89, 0.7);
	border-top-color: rgba(242, 220, 175, 0.85);
	border-radius: 0.75rem;
	box-shadow: inset 0 1px 0 rgba(255, 240, 210, 0.22);
	text-align: center;
}

.option-two-velocity:not(.bg-box) {
	background: linear-gradient(180deg, #103760 0%, #0f2f51 100%);
}

.option-two-velocity.bg-box {
	background-color: #0f2f51;
	background-image:
		linear-gradient(180deg, rgba(16, 55, 96, 0.42) 0%, rgba(15, 47, 81, 0.48) 100%),
		var(--bg-box-art);
	background-size: 100% 100%, 100% 100%;
	background-position: center, center;
	background-repeat: no-repeat, no-repeat;
}

.option-two-velocity p {
	margin: 0 0 0.75rem;
	text-wrap: balance;
}

.option-two-velocity p:last-child {
	margin-bottom: 0;
}

.option-two-velocity__line--speed {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: clamp(1.15rem, 3.6vw, 1.35rem);
	line-height: 1;
}

.option-two-velocity__line--speed strong {
	font-weight: 800;
}

.option-two-velocity__line--tenants {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: clamp(1.18rem, 3.2vw, 1.45rem);
	line-height: 1.1;
}

.option-two-velocity__callout {
	margin: -0.4rem 0 1rem;
	font-family: 'Open Sans', Arial, sans-serif;
	font-style: italic;
	font-size: clamp(0.95rem, 2.2vw, 1.2rem);
	line-height: 1.35;
	letter-spacing: 0.01em;
}

.option-two-velocity__line--contract {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: clamp(1.12rem, 2.8vw, 1.35rem);
	line-height: 1.32;
}

.option-two-velocity__line--contract strong {
	font-weight: 800;
}

.option-two-velocity__line--roi,
.option-two-velocity__line--track,
.option-two-velocity__line--exp {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: clamp(1.02rem, 2.4vw, 1.14rem);
	line-height: 1.22;
}

.option-two-velocity__line--roi strong:not(.option-two-velocity__accent),
.option-two-velocity__line--track strong:not(.option-two-velocity__accent),
.option-two-velocity__line--exp strong {
	font-weight: 800;
}

.option-two-velocity__accent {
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 800;
	font-size: 1.08em;
	letter-spacing: 0.03em;
}

.option-two-velocity__accent u {
	text-decoration-thickness: 0.06em;
	text-underline-offset: 0.12em;
}

.option-block__featured-list {
	list-style: none;
	padding: 1rem 1rem 0.7rem;
	margin: 0;
	background: linear-gradient(180deg, #0f325a 0%, #102742 100%);
	border: 1px solid rgba(197, 160, 89, 0.5);
	border-radius: 0.75rem;
	text-align: center;
}

.option-block__featured-list li {
	margin: 0 0 0.75rem;
	font-weight: 700;
	line-height: 1.55;
}

.option-block__featured-list li:last-child {
	margin-bottom: 0;
}

.bg-box {
	--bg-box-art: url('../images/bg-box-wide.png');
	background-image: var(--bg-box-art);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media (max-width: 1199px) {
	.bg-box {
		--bg-box-art: url('../images/bg-box-square.png');
	}
}

@media (max-width: 899px) {
	.bg-box {
		--bg-box-art: url('../images/bg-box-tablet.png');
	}
}

@media (max-width: 639px) {
	.bg-box {
		--bg-box-art: url('../images/bg-box-mobile.png');
	}
}

@media (max-width: 419px) {
	.bg-box {
		--bg-box-art: url('../images/bg-box-mobile-sm.png');
	}
}

.option-one-benefits {
	padding: 1.1rem 1rem;
	border: 1px solid rgba(197, 160, 89, 0.7);
	border-top-color: rgba(242, 220, 175, 0.85);
	border-radius: 0.75rem;
	box-shadow: inset 0 1px 0 rgba(255, 240, 210, 0.22);
	text-align: center;
}

.option-one-benefits:not(.bg-box) {
	background: linear-gradient(180deg, #103760 0%, #0f2f51 100%);
}

.option-one-benefits.bg-box {
	background-color: #0f2f51;
	background-image:
		linear-gradient(180deg, rgba(16, 55, 96, 0.42) 0%, rgba(15, 47, 81, 0.48) 100%),
		var(--bg-box-art);
	background-size: 100% 100%, 100% 100%;
	background-position: center, center;
	background-repeat: no-repeat, no-repeat;
}

.option-one-benefits h4.section-heading--secondary,
.option-two-velocity h4.section-heading--secondary {
	margin: 0 0 0.5rem;
	max-width: none;
	font-weight: 600;
	font-size: clamp(1.5rem, 6vw, 2rem);
	line-height: 1;
	letter-spacing: 0;
	text-align: center;
	text-shadow: none;
}

/* Match primary/tertiary benefit lines (Open Sans). bg-box keeps option one in Open Sans. */
.option-one-benefits h4.section-heading--secondary {
	font-family: 'Open Sans', Arial, sans-serif;
}

.option-two-velocity h4.section-heading--secondary {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.option-one-benefits.bg-box h4.section-heading--secondary {
	font-family: 'Open Sans', Arial, sans-serif;
}

.option-one-benefits.bg-box .option-one-benefits__line--primary,
.option-one-benefits.bg-box .option-one-benefits__line--secondary,
.option-one-benefits.bg-box .option-one-benefits__line--tertiary,
.option-one-benefits.bg-box .option-one-benefits__accent {
	font-family: 'Open Sans', Arial, sans-serif;
}

.option-two-velocity.bg-box h4.section-heading--secondary,
.option-two-velocity.bg-box .option-two-velocity__line--speed,
.option-two-velocity.bg-box .option-two-velocity__line--tenants,
.option-two-velocity.bg-box .option-two-velocity__callout,
.option-two-velocity.bg-box .option-two-velocity__line--contract,
.option-two-velocity.bg-box .option-two-velocity__line--roi,
.option-two-velocity.bg-box .option-two-velocity__line--track,
.option-two-velocity.bg-box .option-two-velocity__line--exp,
.option-two-velocity.bg-box .option-two-velocity__accent {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.option-one-benefits.bg-box,
.option-two-velocity.bg-box {
	color: #fff;
}

.option-one-benefits.bg-box .metal-text,
.option-two-velocity.bg-box .metal-text {
	color: #fff;
	background-image: none;
	-webkit-text-fill-color: #fff;
}

.option-one-benefits__line {
	margin: 0 0 0.85rem;
	text-wrap: balance;
}

.option-one-benefits__line:last-child {
	margin-bottom: 0;
}

.option-one-benefits__line--primary {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: clamp(1.18rem, 4.25vw, 1.35rem);
	line-height: 1.2;
}

.option-one-benefits__line--secondary {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: clamp(1.35rem, 4vw, 1.4rem);
	line-height: 1.22;
}

.option-one-benefits__line--tertiary {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: clamp(1.24rem, 3.6vw, 1.32rem);
	line-height: 1.26;
}

.option-one-benefits__line--tertiary strong {
	font-weight: 800;
}

.option-one-benefits__accent {
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.spaced-paragraphs {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	text-align: center;
}

.admin-block {
	/* padding: 1rem 1.2rem; */
	/* border: 1px solid rgba(197, 160, 89, 0.7); */
	/* border-radius: 0.85rem; */
	/* background: linear-gradient(180deg, rgba(17, 58, 101, 0.169) 0%, rgba(11, 47, 83, 0.749) 100%); */
	text-align: center;
}

.admin-block__icon {
	display: block;
	margin: 0 auto 0.9rem;
	width: auto;
	height: auto;
}

.admin-block h2.section-heading--primary {
	margin-bottom: 1.25rem;
}

.admin-block__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: 100%;
	max-width: 38rem;
	margin: 0 auto;
	padding: 0.5rem 1rem;
	list-style: none;
	color: var(--hero-eyebrow-gold-top);
	background: rgba(0,0,0,0.25);
	border-radius: 0.8rem;
	box-shadow: 0 0 1em -0.5em var(--hero-eyebrow-gold-deep);
	border: 1px solid var(--gold);
}

.admin-block__list li {
	position: relative;
	margin: 0;
	padding-left: 1.6rem;
	font-size: clamp(1rem, 2.3vw, 1.1rem);
	font-weight: 500;
	line-height: 1.3;
	text-align: left;
	text-wrap: pretty;
	letter-spacing: -0.02em;
}

.admin-block__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 1rem;
	height: calc(1rem / 1.5);
	background-image: url('../images/bullet-triangle.svg');
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.section--table {
	font-family: 'Open Sans', Arial, sans-serif;
}

.section--table thead th {
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.table-wrap {
	overflow-x: auto;
	border: 1px solid rgba(197, 160, 89, 0.35);
	border-radius: 0.9rem;
}

.table-icon {
	margin: 0 auto 0.2rem;
}

.table-icon img {
	display: block;
	margin: 0 auto;
	border-radius: 0.45rem;
	border: 1px solid var(--hero-eyebrow-gold-deep);
	box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
	box-sizing: content-box;
}

.table-icon__caption {
	margin: 0.5rem auto 0;
	text-align: center;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: clamp(1.25rem, 3.3vw, 1.5rem);
	line-height: 1.08;
	letter-spacing: 0.01em;
	text-wrap: balance;
}

.table-icon__caption-line {
	display: block;
}

table {
	width: 100%;
	border-collapse: collapse;
	min-width: 440px;
}

th,
td {
	padding: 0.75rem;
	border-bottom: 1px solid rgba(244, 244, 244, 0.15);
	text-align: left;
	font-size: 0.9rem;
}

th {
	background: rgba(197, 160, 89, 0.14);
	color: var(--gold);
}

.form-block {
	display: grid;
	gap: 0.6rem;
	background: var(--soft-blue);
	border: 1px solid rgba(197, 160, 89, 0.35);
	border-radius: 1rem;
	padding: 1.2rem;
}

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

.form-block__title-icon {
	margin: 0 auto 0.6rem;
	padding: 0.25rem;
}

.form-block__intro h2.section-heading--primary {
	margin-bottom: 0.45em;
	font-size: 1.6rem;
}
.form-block__intro .section-heading--primary .section-heading__rule {
	margin: 0.75rem auto 0;
}

.form-block__intro > p {
	margin: 0 auto;
	max-width: 35rem;
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	line-height: 1.3;
	font-size: 0.9rem;
	letter-spacing: -0.02em;
}

.form-block__highlights {
	margin-top: 0.85rem;
	display: inline-flex;
	flex-direction: column;
	gap: 0.1rem;
	padding: 0.25rem 1.5rem;
	border: 1px solid rgba(197, 160, 89, 0.45);
	border-radius: 0.7rem;
	background: linear-gradient(180deg, #102f4f 0%, #0d2945 100%);
	font-family: 'Open Sans', Arial, sans-serif;
}

.form-block__highlights p {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	font-weight: 700;
	line-height: 1.4;
}

.form-block__highlights span {
	color: #9bd4a7;
	font-weight: 800;
}

.lead-form__grid {
	display: grid;
	gap: 0.8rem;
	font-family: 'Open Sans', Arial, sans-serif;
}

@media (min-width: 768px) {
	.lead-form__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lead-form__full {
		grid-column: 1 / -1;
	}
}

label span {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 0.35rem;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid rgba(197, 160, 89, 0.55);
	background: #122130;
	color: var(--cream);
	padding: 0.65rem 0.7rem;
	border-radius: 0.55rem;
	font: inherit;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

.lead-form__note {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 0.84rem;
	opacity: 0.9;
	margin-bottom: 0.5rem;
}

.lead-form {
	display: flex;
	flex-direction: column;
	width: 100%;
}

@media (max-width: 767px) {
	.lead-form {
		max-width: 480px;
		margin-inline: auto;
	}
}

.lead-form__submit {
	--btn-fs: calc(0.78rem * 1.25);
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: flex-end;
	margin-left: auto;
	width: 12.5rem;
	max-width: 100%;
	font-size: var(--btn-fs);
	padding: calc(0.68rem * 1.25) calc(1.15rem * 1.25);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.68rem 1.15rem;
	border-radius: 2rem;
	border: 1px solid var(--gold);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	background: transparent;
	color: var(--cream);
}

.btn--primary {
	background: var(--gold);
	color: var(--deep-blue);
}

.btn--ghost {
	margin-top: 0.8rem;
	align-self: center;
}

.project-card {
	position: relative;
	background: var(--soft-blue);
	border: 1px solid rgba(197, 160, 89, 0.35);
	border-radius: 1rem;
	overflow: hidden;
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: content-box;
}

.project-card--single picture,
.project-card--single img {
	display: block;
	width: 100%;
}

.project-card__badge {
	position: absolute;
	z-index: 1;
	left: clamp(2rem, 7vw, 4rem);
	bottom: clamp(2rem, 7vw, 4rem);
	padding: 0.35rem 1.2rem;
	font-family: 'Oswald', sans-serif;
	font-size: clamp(1.1rem, 6vw, 2.3rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	text-transform: uppercase;
	color: var(--deep-blue);
	border-radius: 999px;
	border: 1px solid rgba(94, 63, 24, 0.5);
	background-color: var(--hero-eyebrow-gold-mid);
	background-image: linear-gradient(
		175deg,
		#fffef8 0%,
		var(--hero-eyebrow-gold-top) 14%,
		#f0d575 34%,
		var(--hero-eyebrow-gold-mid) 52%,
		var(--gold) 70%,
		var(--hero-eyebrow-gold-deep) 88%,
		#a57935 100%
	);
	box-shadow:
		inset 0 1px 0 rgba(255, 252, 240, 0.92),
		inset 0 -2px 4px rgba(62, 42, 14, 0.32),
		0 2px 4px rgba(0, 0, 0, 0.55),
		0 8px 18px rgba(0, 0, 0, 0.5),
		0 14px 32px rgba(0, 0, 0, 0.38),
		0 0 22px rgba(255, 248, 220, 0.65),
		0 0 40px rgba(242, 224, 168, 0.35);
	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.28),
		0 -1px 1px rgba(0, 0, 0, 0.12);
}

.project-card__badge--top {
	top: clamp(0.5rem, 3.5vw, 1rem);
	left: clamp(0.5rem, 3.5vw, 1rem);
	bottom: auto;
	font-size: clamp(1.1rem, 3.5vw, 1.6rem);
	padding: 0.45rem 0.78rem;
}

.project-card--commercial {
	padding: 0.75rem;
}

.project-card__finished {
	position: relative;
}

.project-card--commercial .project-card__finished {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.project-card__finished-media {
	display: block;
	width: 100%;
	position: relative;
}

.project-card__finished-media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0.5rem;
}

.project-card--commercial .project-card__finished-media .project-card__badge--top {
	position: absolute;
	z-index: 2;
	top: clamp(0.5rem, 3.5vw, 1rem);
	left: clamp(0.5rem, 3.5vw, 1rem);
	right: auto;
	bottom: auto;
}

/* Commercial project snapshot card (above finished render). */
.commercial-detail-card {
	position: relative;
	isolation: isolate;
	margin: 0 0 0.85rem;
	padding: 1.1rem 1rem 0;
	text-align: center;
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	background:
		radial-gradient(ellipse 120% 80% at 50% 0%, rgba(52, 78, 108, 0.35) 0%, transparent 55%),
		linear-gradient(180deg, rgba(18, 33, 48, 0.98) 0%, rgba(8, 16, 28, 0.99) 100%);
	border: 1px solid rgba(197, 160, 89, 0.4);
	border-radius: 0.75rem;
	box-shadow:
		inset 0 1px 0 rgba(255, 252, 240, 0.06),
		inset 0 -1px 0 rgba(0, 0, 0, 0.35),
		0 4px 18px rgba(0, 0, 0, 0.35);
}

.commercial-detail-card__title {
	margin: 0;
	padding: 0 0.25rem;
	font-size: clamp(1.15rem, 3.2vw, 1.65rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-wrap: balance;
}

.commercial-detail-card__dates {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: stretch;
	gap: 0.5rem 0.85rem;
	margin: 1rem 0 0;
	padding: 0 0.25rem;
}

.commercial-detail-card__col {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0.15rem;
	min-width: 0;
}

.commercial-detail-card__label {
	margin: 0;
	font-size: clamp(1.42rem, 4vw, 1.5rem);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.25;
}

.commercial-detail-card__value {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.08rem;
	margin: 0;
	font-size: clamp(1.4rem, 4.5vw, 1.8rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.commercial-detail-card__value-line {
	display: block;
}

.commercial-detail-card__divider {
	width: 1px;
	align-self: stretch;
	min-height: 3.5rem;
	margin: 0.15rem 0;
	background: linear-gradient(
		180deg,
		rgba(212, 175, 55, 0) 0%,
		rgba(227, 198, 124, 0.55) 22%,
		#d4af37 50%,
		rgba(184, 146, 63, 0.55) 78%,
		rgba(212, 175, 55, 0) 100%
	);
	box-shadow: 0 0 6px rgba(227, 198, 124, 0.25);
}

.commercial-detail-card__footer {
	position: relative;
	margin-top: 1.15rem;
	padding: 0.55rem 0.85rem;
	border-radius: 0 0 0.6rem 0.6rem;
	background: linear-gradient(
		185deg,
		#fffef8 0%,
		var(--hero-eyebrow-gold-top) 16%,
		#f0d575 42%,
		var(--hero-eyebrow-gold-mid) 62%,
		var(--gold) 82%,
		#9a7028 100%
	);
	box-shadow:
		0 -4px 14px rgba(227, 198, 124, 0.28),
		inset 0 1px 0 rgba(255, 252, 240, 0.55),
		inset 0 -2px 5px rgba(62, 42, 14, 0.22);
}

.commercial-detail-card__icon {
	position: absolute;
	left: 50%;
	top: -30%;
	transform: translate(-50%, -52%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 50%;
	background: linear-gradient(
		160deg,
		#fffef8 0%,
		var(--hero-eyebrow-gold-top) 35%,
		var(--gold) 72%,
		var(--hero-eyebrow-gold-deep) 100%
	);
	border: 1px solid rgba(94, 63, 24, 0.45);
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.45),
		0 0 12px rgba(242, 224, 168, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.commercial-detail-card__icon svg {
	display: block;
	width: 1.65rem;
	height: 1.65rem;
}

.commercial-detail-card__footer-text {
	margin: 0;
	font-family: 'Oswald', sans-serif;
	font-size: clamp(0.95rem, 2.8vw, 1.2rem);
	font-weight: 800;
	letter-spacing: 0.07em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--deep-blue);
	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.2),
		0 -1px 0 rgba(0, 0, 0, 0.12);
}

.commercial-detail-card__footer-line {
	display: block;
}

@media (max-width: 420px) {
	.commercial-detail-card__dates {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.commercial-detail-card__divider {
		display: none;
	}

	.commercial-detail-card__col + .commercial-detail-card__divider + .commercial-detail-card__col {
		padding-top: 0.65rem;
		border-top: 1px solid rgba(197, 160, 89, 0.35);
	}

	.commercial-detail-card__footer {
		margin-top: 2.4rem;
	}
}

.project-card__stages {
	margin-top: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.project-card__stage {
	margin: 0;
	position: relative;
}

.project-card__stage img {
	width: 100%;
	/* aspect-ratio: 16 / 10; */
	object-fit: cover;
	border-radius: 0.5rem;
}

.project-card__stage figcaption {
	position: absolute;
	left: 0.45rem;
	top: 0.45rem;
	padding: 0.25rem 0.45rem;
	border-radius: 0.35rem;
	background: rgba(11, 31, 52, 0.9);
	border: 1px solid rgba(197, 160, 89, 0.7);
	color: var(--cream);
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	font-weight: 700;
	box-shadow: 0 1em 0.5em -0.8em rgba(0, 0, 0, 0.95), 0 0 1em rgba(0, 0, 0, 0.5);
}

.section--testimonials .container {
	font-family: 'Open Sans', Arial, sans-serif;
}

.testimonials__divider {
	max-width: 100%;
	height: auto;
	max-height: 18rem;
	object-fit: contain;
	margin: 0 auto 0.5rem;
	width: auto;
}

.testimonials__note {
	font-size: 0.8rem;
	opacity: 0.9;
	text-align: center;
	line-height: 1.1;
	max-width: 20rem;
	margin: auto;
	font-style: italic;
}

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

.testimonial {
	padding: 1rem;
	border: 1px solid rgba(197, 160, 89, 0.35);
	background: var(--soft-blue);
	border-radius: 0.8rem;
}

.section--testimonials .flow-single {
	gap: 0.6rem;
}
.section--testimonials .flow-center {
	line-height: 1.2;
	font-size: 0.9rem;
	letter-spacing: -0.02em;
}

.testimonial h3,
.testimonial p {
	text-align: left;
}
.testimonial p {
	line-height: 1.4;
}

.testimonial h3.section-heading--secondary {
	text-align: left;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.comment-content__summ {
	position: relative;
	height: 5.6em;
	overflow: hidden;
}

.comment-content__summ::after {
	background: linear-gradient(to right, rgba(36, 55, 75, 0) 0%, rgba(36, 55, 75, 1) 8%);
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-block;
	content: '\2026 Seguir leyendo';
	font: inherit !important;
	color: #9fc3ff;
	transition: all 0.4s ease;
	opacity: 1;
	padding-left: 1em;
	cursor: pointer;
}

.comment-content__summ:hover::after {
	color: #c5d8ff;
}

.comment-content__summ.is-not-overflowing {
	height: auto;
	overflow: visible;
}

.comment-content__summ.is-not-overflowing::after {
	display: none;
}

.testimonial.is-hidden {
	display: none;
}

.footer {
	padding: 2.2rem 0 1.4rem;
	border-top: 1px solid rgba(197, 160, 89, 0.3);
	background: #152434;
}

.footer__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.footer__brand {
	font-family: 'Oswald', sans-serif;
	color: var(--gold);
	font-size: 1.2rem;
	margin: 0;
}

.footer__legal {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(244, 244, 244, 0.12);
	font-size: 0.85rem;
}