/*
Theme Name: ORIGEN Espacio Terapeutico
Theme URI: https://origenec.com/
Author: ORIGEN Espacio Terapeutico
Description: Tema de WordPress para ORIGEN Espacio Terapeutico.
Version: 2.2.53
Requires at least: 6.0
Requires PHP: 5.6
License: GNU General Public License v2 or later
Text Domain: origen
*/

:root {
	/* Edit these variables first when you want to refresh the palette later. */
	--bg: #f8fffe;
	--bg-soft: #f2fffc;
	--surface: #ffffff;
	--surface-strong: #effcf9;
	--surface-alt: #f4fffd;
	--surface-chip: #ebfffb;
	--ink: #0f2c39;
	--muted: #263c45;
	--line: rgba(38, 60, 69, 0.14);
	--accent: #43c7cf;
	--accent-dark: #209da6;
	--accent-soft: rgba(67, 199, 207, 0.16);
	--accent-secondary: #67f7e9;
	--brand-deep: #11272f;
	--brand-strong: #209da6;
	--brand-mid: #43c7cf;
	--teal: #209da6;
	--sage: #67f7e9;
	--gold: #67f7e9;
	--rose: #43c7cf;
	--navy: #0f2c39;
	--success-soft: rgba(64, 224, 208, 0.14);
	--success-ink: #1a9c8e;
	--shadow: 0 24px 60px rgba(15, 44, 57, 0.12);
	--shadow-soft: 0 14px 36px rgba(15, 44, 57, 0.08);
	--glow: 0 22px 56px rgba(64, 224, 208, 0.24);
	--radius-xl: 30px;
	--radius-lg: 24px;
	--radius-md: 16px;
	--radius-sm: 12px;
	--shell: min(1380px, calc(100vw - 2.5rem));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Plus Jakarta Sans", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at top right, rgba(64, 224, 208, 0.18), transparent 24rem),
		radial-gradient(circle at 10% 25%, rgba(103, 247, 233, 0.14), transparent 22rem),
		linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
	line-height: 1.6;
	overflow-x: clip;
}

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

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

button,
input,
textarea,
select {
	font: inherit;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.75rem;
	font-family: "Sora", sans-serif;
	line-height: 1.02;
	letter-spacing: -0.045em;
}

h1 {
	font-size: clamp(3.2rem, 6.6vw, 5.4rem);
}

h2 {
	font-size: clamp(2.1rem, 4.3vw, 3.4rem);
}

h3 {
	font-size: clamp(1.35rem, 2vw, 1.7rem);
}

p {
	margin: 0 0 1rem;
	color: var(--muted);
}

.screen-reader-text,
.skip-link {
	position: absolute;
	left: -9999px;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	z-index: 99;
	background: var(--ink);
	color: #fff;
	padding: 0.75rem 1rem;
	border-radius: 999px;
}

.origen-shell {
	width: var(--shell);
	margin: 0 auto;
}

.origen-section {
	padding: clamp(4rem, 7vw, 5.5rem) 0;
}

.section-intro {
	max-width: 44rem;
	margin-bottom: 2rem;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent-dark);
}

.eyebrow::before {
	content: "";
	width: 1.5rem;
	height: 1px;
	background: currentColor;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 1.55rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-2px);
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 62%, var(--accent-secondary) 100%);
	color: var(--brand-deep);
	box-shadow: var(--glow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
	box-shadow: 0 26px 56px rgba(64, 224, 208, 0.24);
}

.btn-secondary {
	background: #fff;
	border-color: rgba(38, 60, 69, 0.16);
	color: var(--navy);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
	border-color: rgba(26, 156, 142, 0.28);
	background: var(--surface-chip);
}

.btn-ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.32);
	color: #fff;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 800;
	color: var(--accent-dark);
}

.pill,
.tag,
.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 700;
}

.pill {
	background: var(--success-soft);
	color: var(--success-ink);
}

.tag {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(92, 61, 245, 0.12);
	color: var(--navy);
}

.btn-card-action {
	width: 100%;
	min-height: 3.65rem;
	padding-inline: 1.35rem;
	box-shadow: 0 18px 36px rgba(67, 41, 201, 0.18);
}

.btn-card-toggle {
	width: 100%;
	min-height: 3.35rem;
}

.tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	padding: 1rem 0;
	backdrop-filter: blur(18px);
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(18, 33, 61, 0.06);
	box-shadow: 0 12px 34px rgba(15, 30, 70, 0.06);
}

.site-header__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) auto;
	align-items: center;
	gap: 1.25rem;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	min-width: 0;
}

.brand-mark__desktop {
	display: inline-flex;
	align-items: center;
}

.brand-mark__compact {
	display: none;
	align-items: center;
	gap: 0.8rem;
	min-width: 0;
}

.brand-mark__logo-image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
}

.brand-mark__logo-image--horizontal {
	width: clamp(11.5rem, 17vw, 15.5rem);
}

.brand-mark__logo-image--symbol {
	width: 2.9rem;
}

.brand-mark__compact-copy {
	display: grid;
	gap: 0.1rem;
	min-width: 0;
}

.brand-mark__compact-copy strong {
	display: block;
	font-size: 1.02rem;
	letter-spacing: -0.03em;
}

.brand-mark__compact-copy small {
	display: block;
	font-size: 0.74rem;
	line-height: 1.35;
	color: var(--muted);
}

.brand-mark__badge {
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 1.1rem;
	background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
	color: #fff;
	font-weight: 800;
	box-shadow: var(--glow);
}

.brand-mark__text {
	min-width: 0;
}

.brand-mark strong {
	display: block;
	font-size: 1.08rem;
	letter-spacing: -0.03em;
}

.brand-mark small {
	display: block;
	font-size: 0.78rem;
	color: var(--muted);
	max-width: 25ch;
	line-height: 1.4;
}

.site-nav__mobile-brand {
	display: block;
	max-width: 9.25rem;
}

.site-nav__mobile-logo {
	display: block;
	width: 100%;
	height: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	min-width: 0;
}

.menu.origen-menu {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 1.1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: 0;
}

.menu-item a {
	position: relative;
	font-weight: 700;
	font-size: 0.95rem;
	color: #243153;
	white-space: nowrap;
}

.menu-item a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.4rem;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 180ms ease;
}

.menu-item a:hover,
.menu-item a:focus-visible {
	color: var(--accent-dark);
}

.menu-item a:hover::after,
.menu-item a:focus-visible::after,
.current-menu-item > a::after,
.current_page_item > a::after {
	transform: scaleX(1);
}

.site-header__cta,
.nav-cta {
	white-space: nowrap;
	padding-inline: 1.45rem;
}

.nav-cta--mobile {
	display: none;
}

.mobile-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 1px solid rgba(92, 61, 245, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
}

.mobile-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 1rem;
	height: 2px;
	margin: 2px 0;
	background: var(--ink);
}

.floating-whatsapp {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 50;
}

.floating-whatsapp a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 8rem;
	padding: 0.95rem 1.15rem;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	font-weight: 800;
	box-shadow: 0 20px 34px rgba(37, 211, 102, 0.24);
}

.hero {
	position: relative;
	padding: clamp(3.4rem, 6.8vw, 5.2rem) 0 clamp(4.8rem, 8vw, 6.4rem);
	overflow: hidden;
}

.hero::before,
.hero::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	filter: blur(20px);
	pointer-events: none;
}

.hero::before {
	top: -6rem;
	right: -3rem;
	width: 22rem;
	height: 22rem;
	background: rgba(92, 61, 245, 0.14);
}

.hero::after {
	left: -6rem;
	bottom: -8rem;
	width: 20rem;
	height: 20rem;
	background: rgba(47, 124, 255, 0.12);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
	gap: clamp(2rem, 4.8vw, 4.4rem);
	align-items: center;
}

.hero-copy {
	position: relative;
	z-index: 1;
	max-width: 42rem;
}

.hero-lead {
	max-width: 40rem;
	font-size: clamp(1.08rem, 1.7vw, 1.22rem);
	line-height: 1.78;
}

.hero-actions,
.stacked-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 1.5rem;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.8rem;
}

.badge {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(92, 61, 245, 0.12);
	color: var(--navy);
}

.hero-visual {
	position: relative;
}

.hero-card,
.glass-panel,
.info-card,
.contact-card,
.page-hero__card,
.note-card,
.single-post,
.post-card,
.timeline-item,
.service-card,
.team-card,
.article-card,
.faq-item,
.metric-card,
.value-card {
	background: var(--surface);
	border: 1px solid rgba(18, 33, 61, 0.08);
	box-shadow: var(--shadow-soft);
}

.hero-card {
	position: relative;
	padding: 1.35rem;
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 0;
	background: linear-gradient(145deg, #11272f 0%, #1a9c8e 58%, #67f7e9 100%);
	box-shadow: var(--glow);
}

.hero-card__media {
	border-radius: calc(var(--radius-xl) - 8px);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-card__overlay {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.8rem;
}

.mini-metric {
	padding: 0.9rem;
	border-radius: 1.1rem;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(14px);
}

.mini-metric strong {
	display: block;
	font-size: 1.3rem;
	color: #fff;
}

.mini-metric span {
	display: block;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.78);
}

.feature-grid,
.metrics-grid,
.service-grid,
.team-grid,
.values-grid,
.process-grid,
.article-grid,
.contact-grid,
.support-grid {
	display: grid;
	gap: 1.25rem;
}

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

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

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

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

.metric-card,
.value-card {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
}

.metric-card strong {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 2rem;
	font-family: "Sora", sans-serif;
	color: var(--navy);
}

.feature-card {
	position: relative;
	min-height: 220px;
	padding: 1.7rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(145deg, #1a9c8e 0%, #40e0d0 45%, #67f7e9 100%);
	border: 0;
	box-shadow: var(--glow);
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	inset: auto -2rem -3rem auto;
	width: 8rem;
	height: 8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	filter: blur(4px);
}

.feature-card h3 {
	position: relative;
	font-size: 1.22rem;
	color: #fff;
}

.feature-card p {
	position: relative;
	color: rgba(255, 255, 255, 0.84);
}

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

.voice-card {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
	border: 1px solid rgba(92, 61, 245, 0.08);
	box-shadow: var(--shadow-soft);
}

.service-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	grid-auto-rows: 1fr;
}

.service-card {
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
	height: 100%;
	padding: 1.75rem;
	border-radius: var(--radius-lg);
	position: relative;
	background: linear-gradient(180deg, #ffffff 0%, var(--surface-alt) 100%);
	border: 1px solid rgba(92, 61, 245, 0.08);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
}

.service-card:hover,
.team-card:hover,
.article-card:hover,
.post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.service-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.service-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 1rem;
}

.service-symbol,
.article-card__icon {
	display: inline-grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(92, 61, 245, 0.12), rgba(47, 124, 255, 0.2));
	color: var(--accent-dark);
	font-weight: 800;
}

.service-copy {
	font-size: 0.98rem;
	line-height: 1.65;
}

.service-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.service-meta span {
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: var(--surface-chip);
	font-size: 0.84rem;
	font-weight: 700;
	color: #405178;
}

.service-details strong,
.team-meta strong {
	color: var(--ink);
}

.service-details {
	display: grid;
	gap: 0.9rem;
}

.service-card__action {
	margin-top: auto;
}

.story-grid,
.page-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 430px);
	gap: clamp(1.5rem, 4vw, 2.75rem);
	align-items: center;
}

.split-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: start;
}

.info-card,
.glass-panel,
.note-card {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
}

.page-hero {
	padding: clamp(2.7rem, 4.8vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.3rem);
	position: relative;
}

.page-hero__content {
	max-width: 46rem;
}

.page-hero__content h1 {
	max-width: 12ch;
	font-size: clamp(3rem, 5vw, 4.55rem);
	line-height: 0.96;
}

.page-hero__content p:not(.eyebrow) {
	max-width: 37rem;
	font-size: 1.06rem;
	line-height: 1.74;
}

.page-hero__card {
	width: min(100%, 430px);
	justify-self: end;
	padding: 1.85rem;
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, #effcf9 100%);
	border: 1px solid rgba(26, 156, 142, 0.16);
	box-shadow: var(--shadow);
}

.page-hero__card h3 {
	margin-bottom: 1rem;
}

.page-hero__card .tag-cloud {
	gap: 0.75rem;
}

.page-hero__meta {
	display: grid;
	gap: 0.85rem;
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
}

.page-hero__meta li {
	display: grid;
	gap: 0.2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(18, 33, 61, 0.08);
}

.page-hero__meta li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.page-hero__meta strong {
	color: var(--accent-dark);
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.page-hero__meta span {
	color: var(--ink);
	font-weight: 700;
}

.timeline {
	display: grid;
	gap: 1rem;
}

.timeline-item {
	padding: 1.25rem;
	border-radius: var(--radius-lg);
}

.timeline-item strong {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--accent-dark);
}

.team-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
}

.team-card {
	position: relative;
	height: 100%;
	min-height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.team-card:hover {
	transform: none;
	box-shadow: none;
}

.team-card__frame {
	position: relative;
	height: var(--team-card-height, 43rem);
	min-height: var(--team-card-height, 43rem);
	perspective: 1600px;
}

.team-card__surface {
	position: absolute;
	inset: 0;
	transform-style: preserve-3d;
	transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card.is-flipped .team-card__surface {
	transform: rotateY(180deg);
}

.team-card__face {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, #ffffff 0%, var(--surface-alt) 100%);
	border: 1px solid rgba(92, 61, 245, 0.08);
	box-shadow: var(--shadow-soft);
	backface-visibility: hidden;
	overflow: hidden;
}

.team-card__face--front {
	padding: 0;
}

.team-card__face--back {
	padding: 1.25rem;
	transform: rotateY(180deg);
	background: linear-gradient(180deg, #ffffff 0%, #f2fffc 100%);
	overflow-y: auto;
}

.team-card__portrait {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 18.25rem;
	padding: 1.35rem 1.25rem 1.1rem;
	border-radius: calc(var(--radius-xl) - 1px) calc(var(--radius-xl) - 1px) 1.55rem 1.55rem;
	overflow: hidden;
}

.team-card__portrait::before {
	content: "";
	position: absolute;
	inset: auto 14% 10% 14%;
	height: 70%;
	border-radius: 2rem;
	background: rgba(255, 255, 255, 0.14);
}

.team-card__portrait-shell {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: min(78%, 15rem);
	aspect-ratio: 4 / 4.8;
	border-radius: 2rem 2rem 1rem 1rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.team-card__portrait-shell--image {
	overflow: hidden;
	background: rgba(255, 255, 255, 0.1);
}

.team-card__portrait-shell--image::before,
.team-card__portrait-shell--image::after {
	display: none;
}

.team-card__portrait-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-card__portrait-shell::before,
.team-card__portrait-shell::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.17);
}

.team-card__portrait-shell::before {
	top: 18%;
	width: 40%;
	aspect-ratio: 1;
	border-radius: 999px;
}

.team-card__portrait-shell::after {
	bottom: 10%;
	width: 64%;
	height: 39%;
	border-radius: 999px 999px 1.4rem 1.4rem;
}

.team-card__portrait-initials {
	position: relative;
	z-index: 1;
	display: inline-grid;
	place-items: center;
	width: 4.35rem;
	height: 4.35rem;
	border-radius: 1.35rem;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	font-family: "Sora", sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
}

.team-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 0.75rem;
	padding: 0 1.25rem 1.25rem;
}

.team-card__summary {
	display: grid;
	gap: 0.7rem;
	min-height: var(--team-summary-height, clamp(13rem, 18vw, 15rem));
	align-content: start;
}

.team-card__body h3,
.team-card__back-header h3 {
	font-size: clamp(1.5rem, 2vw, 1.8rem);
}

.team-card__back-header {
	display: grid;
	gap: 0.5rem;
}

.team-card__bio {
	line-height: 1.72;
}

.team-card__actions {
	display: grid;
	gap: 0.7rem;
	padding-top: 0.15rem;
}

.team-meta {
	display: grid;
	gap: 0.65rem;
	padding: 1rem 1.05rem;
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(92, 61, 245, 0.08);
}

.team-focus {
	color: var(--ink);
}

.team-approach {
	color: var(--muted);
}

.team-card__body > .tag-cloud {
	margin-top: 0;
	align-content: start;
	min-height: var(--team-tag-height, 5.4rem);
}

.team-carousel {
	display: grid;
	gap: 1.4rem;
}

.team-carousel__stage {
	position: relative;
	padding-inline: 4.5rem;
}

.team-carousel__toolbar {
	display: block;
}

.team-carousel__copy {
	max-width: 44rem;
}

.team-carousel__copy h3 {
	margin-bottom: 0.55rem;
}

.team-carousel__control {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	padding: 0;
	border: 1px solid rgba(92, 61, 245, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--navy);
	font-weight: 800;
	font-size: 1.35rem;
	transform: translateY(-50%);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
	box-shadow: var(--shadow-soft);
}

.team-carousel__control:hover,
.team-carousel__control:focus-visible {
	transform: translateY(calc(-50% - 2px));
	border-color: rgba(92, 61, 245, 0.28);
	box-shadow: var(--shadow-soft);
	background: #fff;
}

.team-carousel__viewport {
	overflow: hidden;
	padding: 0.35rem 0 0.5rem;
}

.team-carousel__track {
	display: flex;
	align-items: stretch;
	gap: 1.25rem;
}

.team-carousel__slide {
	display: flex;
	flex: 0 0 calc((100% - 2.5rem) / 3);
	min-width: 0;
}

.team-carousel__slide .team-card {
	width: 100%;
}

.team-carousel__control--prev {
	left: 0.35rem;
}

.team-carousel__control--next {
	right: 0.35rem;
}

.accent-coral {
	background: linear-gradient(160deg, #1a9c8e, #40e0d0);
}

.accent-sage {
	background: linear-gradient(160deg, #11272f, #1a9c8e);
}

.accent-teal {
	background: linear-gradient(160deg, #0f2c39, #40e0d0);
}

.accent-gold {
	background: linear-gradient(160deg, #1a9c8e, #67f7e9);
}

.accent-rose {
	background: linear-gradient(160deg, #263c45, #40e0d0);
}

.team-role,
.team-focus,
.team-approach {
	font-weight: 700;
}

.team-role {
	color: var(--accent-dark);
}

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

.process-card {
	padding: 1.4rem;
	border-radius: var(--radius-lg);
	background: #fff;
	border: 1px solid rgba(38, 60, 69, 0.12);
	box-shadow: 0 12px 30px rgba(15, 44, 57, 0.06);
}

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

.article-card,
.post-card {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, #ffffff 0%, #f4fffd 100%);
	border: 1px solid rgba(38, 60, 69, 0.1);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card__meta,
.single-post__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-bottom: 1rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--accent-dark);
}

.faq-list {
	display: grid;
	gap: 0.85rem;
}

.faq-item {
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.faq-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.25rem 1.4rem;
	border: 0;
	background: transparent;
	color: var(--ink);
	text-align: left;
	font-weight: 800;
}

.faq-panel {
	padding: 0 1.4rem 1.3rem;
}

.faq-marker {
	font-size: 1.35rem;
	line-height: 1;
}

.faq-item.is-open .faq-marker {
	transform: rotate(45deg);
}

.contact-grid {
	grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
	align-items: start;
	gap: clamp(1.25rem, 3vw, 2rem);
}

.contact-stack {
	display: grid;
	gap: 1rem;
	position: sticky;
	top: 7rem;
}

.contact-card {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, #ffffff 0%, #f4fffd 100%);
	border: 1px solid rgba(38, 60, 69, 0.1);
}

.contact-list,
.footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-list li,
.footer-links li {
	margin-bottom: 0.75rem;
}

.form-card {
	padding: 1.6rem;
	border-radius: var(--radius-xl);
	background: #fff;
	border: 1px solid rgba(32, 48, 51, 0.08);
	box-shadow: var(--shadow);
}

.booking-preview-card,
.booking-panel,
.booking-sidebar__card {
	background: #fff;
	border: 1px solid rgba(92, 61, 245, 0.08);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
}

.booking-layout {
	display: grid;
	grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(1.5rem, 3vw, 2rem);
	align-items: start;
}

.booking-sidebar {
	position: sticky;
	top: 7rem;
}

.booking-sidebar__card {
	padding: 1.7rem;
	background: linear-gradient(145deg, #11272f 0%, #1a9c8e 62%, #67f7e9 100%);
	border: 0;
	box-shadow: var(--glow);
}

.booking-sidebar__card h2 {
	font-size: clamp(2rem, 3vw, 2.8rem);
	color: #fff;
}

.booking-sidebar__card p,
.booking-sidebar__card li,
.booking-sidebar__card .eyebrow {
	color: rgba(255, 255, 255, 0.84);
}

.booking-checklist {
	display: grid;
	gap: 0.85rem;
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
}

.booking-checklist li {
	padding-left: 1.2rem;
	position: relative;
	color: rgba(255, 255, 255, 0.82);
}

.booking-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7rem;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 999px;
	background: #8ef4e7;
}

.booking-main {
	min-width: 0;
}

.booking-panel {
	padding: 2rem;
	background: linear-gradient(180deg, #ffffff 0%, #f4fffd 100%);
}

.booking-panel__intro {
	max-width: 44rem;
	margin-bottom: 1.25rem;
}

.booking-panel__intro h2 {
	font-size: clamp(2.1rem, 3.2vw, 3.1rem);
}

.booking-panel__fallback {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, #f2fffc 0%, #ebfffb 100%);
	border: 1px solid rgba(92, 61, 245, 0.12);
}

.amelia-shortcode-shell {
	padding: 0.35rem 0 0;
}

.context-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.booking-preview-card {
	padding: 1.7rem;
	background: linear-gradient(180deg, #ffffff 0%, #f2fffc 100%);
}

.page-hero--booking .page-hero__card {
	background: linear-gradient(145deg, #11272f 0%, #1a9c8e 60%, #67f7e9 100%);
	color: #fff;
	border: 0;
	box-shadow: var(--glow);
}

.page-hero--booking .page-hero__card h3,
.page-hero--booking .page-hero__card p {
	color: #fff;
}

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

.form-field {
	display: grid;
	gap: 0.45rem;
}

.form-field.full {
	grid-column: 1 / -1;
}

.form-field label {
	font-size: 0.9rem;
	font-weight: 800;
	color: var(--ink);
}

.form-field input,
.form-field textarea,
.form-field select {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid rgba(92, 61, 245, 0.14);
	border-radius: 1rem;
	background: #fff;
	color: var(--ink);
}

.form-field textarea {
	min-height: 150px;
	resize: vertical;
}

.form-feedback {
	margin-bottom: 1rem;
	padding: 1rem 1.1rem;
	border-radius: 1rem;
	font-weight: 700;
}

.form-feedback.is-success {
	background: rgba(56, 161, 105, 0.12);
	color: #1f5b3d;
}

.form-feedback.is-error {
	background: rgba(221, 107, 77, 0.12);
	color: var(--accent-dark);
}

.map-frame {
	width: 100%;
	min-height: 360px;
	border: 0;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
}

.single-post {
	width: min(760px, calc(100vw - 2rem));
	margin: 3rem auto 5rem;
	padding: 2rem;
	border-radius: var(--radius-xl);
}

.entry-content > * + * {
	margin-top: 1rem;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 2rem;
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}

.footer-cta {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 1.5rem;
	align-items: center;
	padding: 2rem;
	border-radius: 2rem;
	background: linear-gradient(145deg, #11272f 0%, #1a9c8e 55%, #67f7e9 100%);
	color: #fff;
	box-shadow: var(--glow);
}

.footer-cta p,
.footer-cta h2 {
	color: #fff;
}

.footer-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.75rem;
}

.site-footer {
	padding: 2rem 0 3rem;
	background: #0c1638;
	color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.9fr 1fr 0.8fr;
	gap: 1.5rem;
	padding: 2.25rem 0 1rem;
}

.footer-title {
	font-weight: 800;
	color: #fff;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: #fff;
}

.site-footer__copy {
	margin: 0;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.92rem;
}

.empty-state {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.72);
	border: 1px dashed rgba(32, 48, 51, 0.18);
}

.reveal {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	filter: blur(8px);
	transition:
		opacity 700ms ease,
		transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 700ms ease;
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform, filter;
}

.reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	filter: blur(0);
}

@media (max-width: 1080px) {
	.hero-grid,
	.story-grid,
	.page-hero__inner,
	.split-layout,
	.contact-grid,
	.booking-layout,
	.footer-cta {
		grid-template-columns: 1fr;
	}

	.feature-grid,
	.service-grid,
	.voice-grid,
	.article-grid,
	.metrics-grid,
	.values-grid,
	.process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.team-carousel__toolbar {
		display: block;
	}

	.team-carousel__slide {
		flex-basis: calc((100% - 1.25rem) / 2);
	}

	.team-carousel__stage {
		padding-inline: 3.8rem;
	}

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

	.page-hero__card {
		width: 100%;
		justify-self: stretch;
	}

	.contact-stack {
		position: static;
	}

	.booking-sidebar {
		position: static;
	}
}

@media (max-width: 1380px) {
	.brand-mark small {
		display: none;
	}
}

@media (max-width: 1280px) {
	.site-nav {
		position: absolute;
		top: calc(100% + 0.75rem);
		left: 1rem;
		right: 1rem;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 1.2rem;
		border-radius: 1.5rem;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: var(--shadow);
		gap: 1rem;
	}

	.site-nav.is-open {
		display: flex;
	}

	.menu.origen-menu {
		flex-wrap: nowrap;
		flex-direction: column;
		align-items: stretch;
	}

	.menu-item a {
		display: block;
		padding: 0.45rem 0;
	}

	.menu-item a::after {
		display: none;
	}

	.nav-cta--mobile {
		display: inline-flex;
	}

	.nav-cta,
	.site-header__cta {
		width: 100%;
	}

	.mobile-menu-toggle {
		display: inline-flex;
	}

	.hero-card__overlay {
		grid-template-columns: 1fr;
	}

	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
	}

	.site-header__cta {
		display: none;
	}
}

@media (max-width: 720px) {
	h1 {
		font-size: clamp(2.6rem, 12vw, 4rem);
	}

	.origen-section {
		padding: 4.25rem 0;
	}

	.origen-shell {
		width: min(1320px, calc(100vw - 1.25rem));
	}

	.feature-grid,
	.service-grid,
	.voice-grid,
	.article-grid,
	.metrics-grid,
	.values-grid,
	.process-grid,
	.team-grid,
	.form-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.team-carousel__slide {
		flex-basis: 100%;
	}

	.team-carousel__stage {
		padding-inline: 3.1rem;
	}

	.hero-card__overlay {
		position: static;
		margin-top: 1rem;
	}

	.hero-actions .btn,
	.stacked-actions .btn,
	.footer-cta__actions .btn {
		width: 100%;
	}

	.page-hero {
		padding-top: 1.75rem;
	}

	.page-hero__content h1 {
		max-width: 100%;
		font-size: clamp(2.7rem, 13vw, 3.9rem);
	}

	.page-hero__content p:not(.eyebrow) {
		font-size: 1rem;
	}

	.form-card,
	.booking-panel,
	.booking-sidebar__card,
	.booking-preview-card,
	.page-hero__card,
	.contact-card,
	.info-card,
	.note-card,
	.service-card,
	.article-card {
		padding: 1.2rem;
	}

	.team-card__face--back {
		padding: 1.1rem;
	}

	.team-card__frame {
		min-height: var(--team-card-height, 39rem);
	}

	.team-card__portrait {
		min-height: 15rem;
	}

	.team-card__body {
		padding: 0 1.1rem 1.1rem;
	}

	.team-card__summary,
	.team-card__body > .tag-cloud {
		min-height: auto;
	}

	.form-field.full,
	.form-field {
		grid-column: auto;
	}

	.floating-whatsapp {
		right: 0.75rem;
		bottom: 0.75rem;
	}

	.floating-whatsapp a {
		min-width: auto;
		padding: 0.85rem 1rem;
		font-size: 0.95rem;
	}
}

@media (max-width: 560px) {
	.site-header {
		padding: 0.75rem 0;
	}

	.brand-mark {
		gap: 0.7rem;
	}

	.brand-mark strong {
		font-size: 0.95rem;
	}

	.brand-mark__logo-image--symbol {
		width: 2.65rem;
	}

	.brand-mark__compact-copy small {
		font-size: 0.7rem;
	}

	.brand-mark__badge {
		width: 2.7rem;
		height: 2.7rem;
		border-radius: 1rem;
	}

	.mobile-menu-toggle {
		width: 2.75rem;
		height: 2.75rem;
	}

	.site-header__inner {
		gap: 0.85rem;
	}

	.hero-badges,
	.tag-cloud,
	.service-meta {
		gap: 0.55rem;
	}

	.btn {
		padding: 0.9rem 1.15rem;
	}

	.team-carousel__control {
		width: 3rem;
		height: 3rem;
		font-size: 1.15rem;
	}
}

/*
 * Modern refresh for the WordPress implementation.
 * The visual direction borrows the clarity of shadcn/Tailwind systems
 * while staying native to this theme.
 */

:root {
	--bg: #f8fffe;
	--bg-soft: #f2fffc;
	--surface: #ffffff;
	--surface-strong: #effcf9;
	--surface-alt: #f4fffd;
	--surface-chip: #ebfffb;
	--ink: #0f2c39;
	--muted: #263c45;
	--line: rgba(38, 60, 69, 0.14);
	--accent: #40e0d0;
	--accent-dark: #1a9c8e;
	--accent-secondary: #67f7e9;
	--navy: #0f2c39;
	--success-soft: rgba(64, 224, 208, 0.14);
	--success-ink: #1a9c8e;
	--shadow: 0 24px 64px rgba(15, 44, 57, 0.08);
	--shadow-soft: 0 10px 30px rgba(15, 44, 57, 0.06);
	--glow: 0 16px 36px rgba(64, 224, 208, 0.22);
	--radius-xl: 1.5rem;
	--radius-lg: 1.25rem;
	--radius-md: 1rem;
	--radius-sm: 0.75rem;
	--shell: min(80rem, calc(100vw - 2rem));
}

body.theme-origen {
	background:
		radial-gradient(circle at top left, rgba(64, 224, 208, 0.14), transparent 28rem),
		radial-gradient(circle at top right, rgba(103, 247, 233, 0.16), transparent 24rem),
		linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
}

.theme-origen h1,
.theme-origen h2,
.theme-origen h3,
.theme-origen h4 {
	color: var(--ink);
	letter-spacing: -0.04em;
}

.theme-origen h1 {
	font-size: clamp(3rem, 6vw, 4.8rem);
	line-height: 0.95;
}

.theme-origen h2 {
	font-size: clamp(2.1rem, 4vw, 3.3rem);
	line-height: 1;
}

.theme-origen h3 {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.theme-origen p {
	color: var(--muted);
	line-height: 1.75;
}

.theme-origen .origen-shell {
	width: var(--shell);
}

.theme-origen .origen-section {
	padding: clamp(4.5rem, 8vw, 6.5rem) 0;
}

.theme-origen .surface-block {
	position: relative;
}

.theme-origen .surface-block--muted {
	background: linear-gradient(180deg, #effcf9 0%, #ffffff 100%);
}

.theme-origen .surface-block--gradient {
	background:
		radial-gradient(circle at top center, rgba(103, 247, 233, 0.32), transparent 32rem),
		linear-gradient(180deg, #ffffff 0%, #effcf9 100%);
}

.theme-origen .section-intro {
	max-width: 46rem;
	margin: 0 auto 3rem;
	text-align: center;
}

.theme-origen .split-layout .section-intro,
.theme-origen .split-layout__copy .section-intro,
.theme-origen .contact-stack .section-intro {
	margin: 0 0 1.75rem;
	text-align: left;
}

.theme-origen .eyebrow {
	gap: 0.7rem;
	margin-bottom: 1rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	color: var(--accent-dark);
}

.theme-origen .eyebrow::before {
	width: 1.65rem;
	background: currentColor;
}

.theme-origen .btn {
	min-height: 3rem;
	padding: 0.9rem 1.4rem;
	border-radius: 0.95rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.theme-origen .btn:hover,
.theme-origen .btn:focus-visible {
	transform: translateY(-1px);
}

.theme-origen .btn-primary {
	background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 62%, var(--accent-secondary) 100%);
	color: var(--brand-deep);
	box-shadow: var(--glow);
}

.theme-origen .btn-primary:hover,
.theme-origen .btn-primary:focus-visible {
	background: linear-gradient(135deg, #168d80 0%, #40e0d0 62%, #67f7e9 100%);
}

.theme-origen .btn-secondary,
.theme-origen .btn-ghost {
	background: #ffffff;
	color: var(--ink);
	border-color: rgba(38, 60, 69, 0.18);
	box-shadow: none;
}

.theme-origen .btn-secondary:hover,
.theme-origen .btn-secondary:focus-visible,
.theme-origen .btn-ghost:hover,
.theme-origen .btn-ghost:focus-visible {
	background: var(--surface-chip);
	border-color: rgba(26, 156, 142, 0.4);
}

.theme-origen .btn:focus-visible,
.theme-origen a:focus-visible,
.theme-origen button:focus-visible,
.theme-origen input:focus-visible,
.theme-origen textarea:focus-visible,
.theme-origen select:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.28);
}

.theme-origen .tag,
.theme-origen .badge,
.theme-origen .pill {
	border: 1px solid rgba(38, 60, 69, 0.12);
	background: rgba(255, 255, 255, 0.92);
	color: var(--muted);
	padding: 0.42rem 0.8rem;
	font-size: 0.78rem;
	font-weight: 600;
}

.theme-origen .tag-cloud {
	gap: 0.7rem;
}

.theme-origen .site-topbar {
	display: none;
	background: rgba(64, 224, 208, 0.08);
	border-bottom: 1px solid rgba(38, 60, 69, 0.1);
}

.theme-origen .site-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 2.6rem;
}

.theme-origen .site-topbar__items {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	font-size: 0.84rem;
	color: var(--muted);
}

.theme-origen .site-topbar__items a {
	color: inherit;
	transition: color 180ms ease;
}

.theme-origen .site-topbar__items a:hover,
.theme-origen .site-topbar__whatsapp:hover {
	color: var(--accent-dark);
}

.theme-origen .site-topbar__whatsapp {
	font-size: 0.84rem;
	font-weight: 700;
	color: var(--brand-deep);
}

.theme-origen .site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 0;
	background: rgba(248, 255, 254, 0.92);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(38, 60, 69, 0.1);
	box-shadow: 0 4px 20px rgba(15, 44, 57, 0.05);
}

.theme-origen .site-header__inner {
	display: grid;
	grid-template-columns: minmax(220px, 290px) minmax(0, 1fr) auto;
	align-items: center;
	gap: 2rem;
	min-height: 5rem;
}

.theme-origen .brand-mark {
	gap: 0;
	max-width: 100%;
}

.theme-origen .brand-mark__badge {
	width: 3rem;
	height: 3rem;
	border-radius: 1rem;
	background: var(--brand-deep);
	box-shadow: 0 14px 28px rgba(15, 44, 57, 0.16);
}

.theme-origen .brand-mark strong {
	font-size: 1.08rem;
}

.theme-origen .brand-mark small {
	max-width: 30ch;
	font-size: 0.78rem;
	color: var(--muted);
}

.theme-origen .brand-mark__desktop {
	display: inline-flex;
	align-items: center;
}

.theme-origen .brand-mark__compact {
	display: none;
}

.theme-origen .brand-mark__logo-image--horizontal {
	width: clamp(11rem, 16vw, 14.75rem);
}

.theme-origen .brand-mark__logo-image--symbol {
	width: 2.75rem;
}

.theme-origen .brand-mark__compact-copy {
	gap: 0.08rem;
}

.theme-origen .brand-mark__compact-copy strong {
	font-size: 1rem;
	color: var(--ink);
}

.theme-origen .brand-mark__compact-copy small {
	color: var(--muted);
}

.theme-origen .site-nav {
	min-width: 0;
}

.theme-origen .site-nav__panel {
	display: flex;
	align-items: center;
	justify-content: center;
}

.theme-origen .site-nav__mobile-head,
.theme-origen .site-nav__mobile-meta,
.theme-origen .site-nav__backdrop,
.theme-origen .site-nav__close {
	display: none;
}

.theme-origen .site-nav__mobile-brand {
	max-width: 8.75rem;
}

.theme-origen .site-nav__mobile-logo {
	filter: drop-shadow(0 10px 24px rgba(15, 44, 57, 0.12));
}

.theme-origen .menu.origen-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.75rem;
	flex-wrap: nowrap;
}

.theme-origen .menu-item a {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--muted);
}

.theme-origen .menu-item a::after {
	bottom: -0.55rem;
	height: 2px;
	background: var(--accent-dark);
}

.theme-origen .menu-item a:hover,
.theme-origen .menu-item a:focus-visible,
.theme-origen .current-menu-item > a,
.theme-origen .current_page_item > a {
	color: var(--ink);
}

.theme-origen .site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.theme-origen .site-header__cta {
	min-width: 10.5rem;
}

.theme-origen .mobile-menu-toggle {
	display: none;
	border: 1px solid rgba(38, 60, 69, 0.12);
	background: #ffffff;
}

.theme-origen .mobile-menu-toggle span:not(.screen-reader-text) {
	background: var(--ink);
}

.theme-origen .hero {
	padding: clamp(4.5rem, 8vw, 7rem) 0;
	background: linear-gradient(180deg, rgba(103, 247, 233, 0.16) 0%, #ffffff 78%);
}

.theme-origen .hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 520px);
	align-items: center;
	gap: clamp(2rem, 5vw, 4rem);
}

.theme-origen .hero-copy {
	max-width: 40rem;
}

.theme-origen .hero-lead {
	margin-top: 1.5rem;
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.8;
	max-width: 37rem;
}

.theme-origen .hero-actions,
.theme-origen .stacked-actions,
.theme-origen .footer-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}

.theme-origen .hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.75rem;
}

.theme-origen .hero-card,
.theme-origen .page-hero__card,
.theme-origen .story-card,
.theme-origen .info-card,
.theme-origen .booking-preview-card,
.theme-origen .contact-card,
.theme-origen .booking-panel__fallback {
	border: 1px solid rgba(38, 60, 69, 0.1);
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--shadow-soft);
}

.theme-origen .hero-card {
	padding: 1.25rem;
}

.theme-origen .hero-card__media {
	overflow: hidden;
	aspect-ratio: 5 / 4;
	border-radius: calc(var(--radius-xl) - 0.35rem);
	background: linear-gradient(180deg, rgba(64, 224, 208, 0.14) 0%, rgba(103, 247, 233, 0.24) 100%);
}

.theme-origen .hero-card__media img,
.theme-origen .page-hero__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.theme-origen .page-hero__card img {
	aspect-ratio: 4 / 5;
}

.theme-origen .page-hero__card--brand {
	display: grid;
	place-items: center;
	padding: 1.5rem;
}

.theme-origen .page-hero__brand-image {
	width: min(100%, 17rem);
	height: auto;
	aspect-ratio: auto;
	object-fit: contain;
	filter: drop-shadow(0 14px 28px rgba(15, 44, 57, 0.12));
}

.theme-origen .hero-card__overlay {
	position: static;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
	margin-top: 1rem;
}

.theme-origen .mini-metric {
	padding: 1rem;
	border-radius: 1rem;
	background: #ffffff;
	border: 1px solid rgba(38, 60, 69, 0.12);
}

.theme-origen .mini-metric strong {
	display: block;
	margin-bottom: 0.3rem;
	font-size: 0.98rem;
	color: var(--ink);
}

.theme-origen .mini-metric span {
	display: block;
	font-size: 0.85rem;
	line-height: 1.6;
	color: var(--muted);
}

.theme-origen .feature-grid,
.theme-origen .metrics-grid,
.theme-origen .voice-grid,
.theme-origen .service-grid,
.theme-origen .team-grid,
.theme-origen .values-grid,
.theme-origen .process-grid,
.theme-origen .article-grid,
.theme-origen .contact-grid,
.theme-origen .support-grid {
	gap: 1.5rem;
}

.theme-origen .feature-grid,
.theme-origen .voice-grid,
.theme-origen .service-grid,
.theme-origen .team-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-origen .metrics-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 1.5rem;
}

.theme-origen .feature-card,
.theme-origen .metric-card,
.theme-origen .voice-card,
.theme-origen .service-card,
.theme-origen .article-card,
.theme-origen .faq-item,
.theme-origen .value-card {
	border: 1px solid rgba(38, 60, 69, 0.1);
	border-radius: var(--radius-xl);
	background: #ffffff;
	box-shadow: var(--shadow-soft);
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.theme-origen .feature-card:hover,
.theme-origen .metric-card:hover,
.theme-origen .voice-card:hover,
.theme-origen .service-card:hover,
.theme-origen .team-card--preview:hover,
.theme-origen .article-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: rgba(26, 156, 142, 0.24);
}

.theme-origen .feature-card,
.theme-origen .voice-card {
	padding: 1.75rem;
}

.theme-origen .feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1.2rem;
	border-radius: 1rem;
	background: var(--surface-chip);
	color: var(--accent-dark);
	font-weight: 700;
}

.theme-origen .metric-card {
	padding: 1.75rem;
	text-align: center;
}

.theme-origen .metric-card strong {
	display: block;
	margin-bottom: 0.35rem;
	font-family: "Sora", sans-serif;
	font-size: clamp(2rem, 4vw, 2.6rem);
	color: var(--ink);
}

.theme-origen .voice-card {
	position: relative;
	padding-top: 2.3rem;
}

.theme-origen .voice-card__quote {
	position: absolute;
	top: 1rem;
	left: 1.4rem;
	font-family: "Sora", sans-serif;
	font-size: 2.5rem;
	line-height: 1;
	color: rgba(26, 156, 142, 0.24);
}

.theme-origen .service-grid {
	align-items: stretch;
}

.theme-origen .service-card {
	height: 100%;
	padding: 1.6rem;
	background: #ffffff;
}

.theme-origen .service-card::before {
	height: 0;
}

.theme-origen .service-card__content {
	gap: 1rem;
}

.theme-origen .service-card__top {
	align-items: flex-start;
}

.theme-origen .service-symbol,
.theme-origen .article-card__icon {
	width: 3rem;
	height: 3rem;
	border-radius: 1rem;
	background: var(--surface-chip);
	color: var(--accent-dark);
	box-shadow: none;
}

.theme-origen .service-card h3,
.theme-origen .feature-card h3,
.theme-origen .voice-card h3,
.theme-origen .team-card--preview h3 {
	margin-bottom: 0;
}

.theme-origen .service-copy {
	font-size: 0.98rem;
}

.theme-origen .service-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.theme-origen .service-meta span {
	display: inline-flex;
	align-items: center;
	padding: 0.42rem 0.78rem;
	border-radius: 999px;
	background: var(--surface-chip);
	border: 1px solid rgba(38, 60, 69, 0.12);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--muted);
}

.theme-origen .service-details {
	margin-top: auto;
	display: grid;
	gap: 0.9rem;
}

.theme-origen .service-card__action,
.theme-origen .btn-card-action {
	min-height: 3rem;
	margin-top: 1.1rem;
}

.theme-origen .split-layout,
.theme-origen .page-hero__inner {
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 480px);
	align-items: center;
	gap: clamp(2rem, 4vw, 3.25rem);
}

.theme-origen .split-layout--faq {
	align-items: start;
}

.theme-origen .story-card,
.theme-origen .info-card,
.theme-origen .booking-preview-card,
.theme-origen .contact-card {
	padding: 1.6rem;
}

.theme-origen .team-grid--preview {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
}

.theme-origen .team-card--preview {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(38, 60, 69, 0.1);
	border-radius: var(--radius-xl);
	background: #ffffff;
	box-shadow: var(--shadow-soft);
}

.theme-origen .team-card__preview-media {
	min-height: 15.5rem;
	padding: 0;
	overflow: hidden;
}

.theme-origen .team-card__preview-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.theme-origen .team-card__portrait-fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
}

.theme-origen .team-card__preview-body {
	display: grid;
	flex: 1 1 auto;
	grid-template-rows: auto auto auto auto 1fr auto;
	gap: 0.85rem;
	padding: 1.4rem;
}

.theme-origen .team-card__preview-body .tag-cloud {
	align-self: start;
}

.theme-origen .team-role {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--accent-dark);
}

.theme-origen .team-focus {
	color: var(--ink);
}

.theme-origen .team-approach {
	color: var(--muted);
}

.theme-origen .team-card__preview-actions {
	margin-top: 0;
	padding-top: 0.85rem;
}

.theme-origen .team-carousel {
	gap: 1.5rem;
}

.theme-origen .team-carousel__copy {
	max-width: 40rem;
}

.theme-origen .team-carousel__stage {
	position: relative;
	padding-inline: 3.5rem;
}

.theme-origen .team-carousel__viewport {
	padding: 0.25rem 0;
}

.theme-origen .team-carousel__track {
	gap: 1.5rem;
}

.theme-origen .team-carousel__slide {
	flex: 0 0 calc((100% - 3rem) / 3);
}

.theme-origen .team-carousel__control {
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(38, 60, 69, 0.12);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--shadow-soft);
	color: var(--ink);
}

.theme-origen .team-carousel__control:hover,
.theme-origen .team-carousel__control:focus-visible {
	border-color: rgba(26, 156, 142, 0.35);
	background: var(--surface-chip);
}

.theme-origen .team-card:not(.team-card--preview) {
	background: transparent;
	box-shadow: none;
	border: 0;
}

.theme-origen .team-card__frame {
	height: var(--team-card-height, 42rem);
	min-height: var(--team-card-height, 42rem);
}

.theme-origen .team-card__face {
	border: 1px solid rgba(38, 60, 69, 0.1);
	background: #ffffff;
	box-shadow: var(--shadow-soft);
}

.theme-origen .team-card__portrait {
	min-height: 15rem;
	padding: 0;
}

.theme-origen .team-card__portrait::before {
	display: none;
}

.theme-origen .team-card__portrait-shell {
	width: 100%;
	max-width: none;
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
	border: 0;
}

.theme-origen .team-card__portrait-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.theme-origen .team-card__body {
	padding: 1.35rem;
	gap: 0.85rem;
}

.theme-origen .team-card__summary {
	min-height: auto;
	gap: 0.7rem;
}

.theme-origen .team-card__body > .tag-cloud {
	min-height: auto;
}

.theme-origen .team-card__actions {
	margin-top: auto;
	padding-top: 0.35rem;
}

.theme-origen .team-card__face--back {
	padding: 1.35rem;
}

.theme-origen .faq-list {
	display: grid;
	gap: 0;
	overflow: hidden;
	border: 1px solid rgba(38, 60, 69, 0.12);
	border-radius: var(--radius-xl);
	background: #ffffff;
	box-shadow: var(--shadow-soft);
}

.theme-origen .faq-item {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: transparent;
}

.theme-origen .faq-item + .faq-item {
	border-top: 1px solid rgba(38, 60, 69, 0.12);
}

.theme-origen .faq-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.2rem 1.35rem;
	border: 0;
	background: transparent;
	font-weight: 600;
	text-align: left;
	color: var(--ink);
}

.theme-origen .faq-panel {
	padding: 0 1.35rem 1.25rem;
}

.theme-origen .faq-marker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.8rem;
	height: 1.8rem;
	border-radius: 999px;
	background: var(--surface-chip);
	border: 1px solid rgba(38, 60, 69, 0.12);
	color: var(--muted);
}

.theme-origen .faq-item.is-open .faq-marker {
	background: var(--accent);
	color: var(--brand-deep);
}

.theme-origen .page-hero {
	padding: clamp(3rem, 6vw, 4.5rem) 0;
	background: linear-gradient(180deg, rgba(103, 247, 233, 0.14) 0%, #ffffff 100%);
}

.theme-origen .page-hero__card {
	padding: 1.4rem;
}

.theme-origen .page-hero__meta {
	display: grid;
	gap: 0.9rem;
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
}

.theme-origen .page-hero__meta li {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(38, 60, 69, 0.12);
	border-radius: 1rem;
	background: var(--surface-chip);
}

.theme-origen .contact-grid {
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: start;
}

.theme-origen .contact-stack {
	display: grid;
	gap: 1.2rem;
}

.theme-origen .contact-list {
	display: grid;
	gap: 0.9rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.theme-origen .booking-panel {
	padding: 1.75rem;
	border: 1px solid rgba(38, 60, 69, 0.12);
	border-radius: var(--radius-xl);
	background: #ffffff;
	box-shadow: var(--shadow-soft);
}

.theme-origen .booking-panel__intro {
	margin-bottom: 1.35rem;
}

.theme-origen .booking-panel__fallback {
	padding: 1.4rem;
}

.theme-origen .context-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-bottom: 1rem;
}

.theme-origen .form-field label,
.theme-origen .contact-form label,
.theme-origen label {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--muted);
}

.theme-origen input[type="text"],
.theme-origen input[type="email"],
.theme-origen input[type="tel"],
.theme-origen input[type="url"],
.theme-origen input[type="search"],
.theme-origen input[type="number"],
.theme-origen select,
.theme-origen textarea {
	width: 100%;
	border: 1px solid rgba(38, 60, 69, 0.18);
	border-radius: 0.95rem;
	background: #ffffff;
	color: var(--ink);
}

.theme-origen input[type="text"],
.theme-origen input[type="email"],
.theme-origen input[type="tel"],
.theme-origen input[type="url"],
.theme-origen input[type="search"],
.theme-origen input[type="number"],
.theme-origen select {
	min-height: 3rem;
	padding: 0 1rem;
}

.theme-origen textarea {
	min-height: 8.5rem;
	padding: 0.95rem 1rem;
}

.theme-origen .map-frame {
	width: 100%;
	min-height: 28rem;
	border: 0;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-soft);
}

.theme-origen .footer-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1.5rem;
	align-items: center;
	padding: 2rem;
	border-radius: var(--radius-xl);
	background: linear-gradient(135deg, #11272f 0%, #0f2c39 72%, #1a9c8e 140%);
	color: #ffffff;
	box-shadow: var(--shadow);
}

.theme-origen .footer-cta h2,
.theme-origen .footer-cta p,
.theme-origen .footer-cta .eyebrow {
	color: inherit;
}

.theme-origen .footer-cta .eyebrow::before {
	background: rgba(255, 255, 255, 0.65);
}

.theme-origen .site-footer {
	padding: 0 0 2rem;
	background: #11272f;
	color: rgba(248, 255, 254, 0.76);
}

.theme-origen .site-footer .origen-shell {
	padding-top: 2.5rem;
}

.theme-origen .footer-grid {
	grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
	gap: 2rem;
	margin-top: 2.25rem;
}

.theme-origen .footer-brand {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 1rem;
}

.theme-origen .footer-brand__symbol {
	width: 4.1rem;
	height: auto;
	filter: drop-shadow(0 12px 24px rgba(15, 44, 57, 0.18));
}

.theme-origen .footer-title {
	margin-bottom: 1rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #ffffff;
}

.theme-origen .footer-links {
	display: grid;
	gap: 0.8rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.theme-origen .footer-links a {
	color: rgba(248, 255, 254, 0.7);
	transition: color 180ms ease;
}

.theme-origen .footer-links a:hover,
.theme-origen .footer-links a:focus-visible {
	color: #ffffff;
}

.theme-origen .site-footer p {
	color: rgba(248, 255, 254, 0.7);
}

.theme-origen .site-footer__copy {
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(248, 255, 254, 0.12);
	font-size: 0.9rem;
}

.theme-origen .floating-whatsapp {
	right: 1.25rem;
	bottom: 1.25rem;
}

.theme-origen .floating-whatsapp a {
	position: relative;
	width: 3.75rem;
	min-width: 3.75rem;
	height: 3.75rem;
	padding: 0;
	border-radius: 999px;
	font-size: 0;
	box-shadow: 0 16px 30px rgba(34, 197, 94, 0.28);
}

.theme-origen .floating-whatsapp a::before {
	content: "WA";
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.theme-origen .single-post.entry-content {
	max-width: 54rem;
}

.theme-origen .is-open.site-nav {
	transform: translateX(0);
}

html.has-menu-open,
.theme-origen.has-menu-open {
	overflow: hidden;
}

.theme-origen.has-menu-open .site-header {
	z-index: 1003;
}

@media (min-width: 768px) {
	.theme-origen .site-topbar {
		display: block;
	}
}

@media (max-width: 1080px) {
	.theme-origen .site-header__inner,
	.theme-origen .hero-grid,
	.theme-origen .split-layout,
	.theme-origen .page-hero__inner,
	.theme-origen .contact-grid {
		grid-template-columns: 1fr;
	}

	.theme-origen .site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 1rem;
	}

	.theme-origen .brand-mark__desktop {
		display: none;
	}

	.theme-origen .brand-mark__compact {
		display: inline-flex;
	}

	.theme-origen .site-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(22rem, 100vw);
		height: 100vh;
		padding: 1rem;
		transform: translateX(100%);
		transition: transform 220ms ease;
		visibility: hidden;
		pointer-events: none;
		z-index: 1002;
	}

	.theme-origen .site-nav.is-open {
		visibility: visible;
		pointer-events: auto;
	}

	.theme-origen .site-nav__panel {
		position: relative;
		z-index: 2;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		height: 100%;
		padding: 1.25rem;
		border-radius: 1.5rem 0 0 1.5rem;
		background: #ffffff;
		box-shadow: -24px 0 54px rgba(15, 44, 57, 0.16);
	}

	.theme-origen .site-nav__mobile-head,
	.theme-origen .site-nav__mobile-meta,
	.theme-origen .site-nav__backdrop,
	.theme-origen .site-nav__close,
	.theme-origen .mobile-menu-toggle,
	.theme-origen .nav-cta--mobile {
		display: flex;
	}

	.theme-origen .site-nav__mobile-head {
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		margin-bottom: 1.5rem;
	}

	.theme-origen .site-nav__mobile-head strong {
		display: block;
		font-size: 1rem;
		color: var(--ink);
	}

	.theme-origen .site-nav__mobile-head small {
		display: block;
		margin-top: 0.25rem;
		font-size: 0.8rem;
		line-height: 1.6;
		color: var(--muted);
	}

	.theme-origen .site-nav__close {
		align-items: center;
		justify-content: center;
		width: 2.75rem;
		height: 2.75rem;
		border: 1px solid rgba(38, 60, 69, 0.12);
		border-radius: 999px;
		background: #ffffff;
		font-size: 1.7rem;
		line-height: 1;
		color: var(--ink);
	}

	.theme-origen .menu.origen-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.theme-origen .menu-item a {
		font-size: 1rem;
	}

	.theme-origen .site-nav__mobile-meta {
		display: grid;
		gap: 1rem;
		margin-top: auto;
		padding-top: 1.5rem;
		border-top: 1px solid rgba(38, 60, 69, 0.12);
	}

	.theme-origen .site-nav__mobile-links {
		display: grid;
		gap: 0.75rem;
	}

	.theme-origen .site-nav__mobile-links a {
		color: var(--muted);
		font-size: 0.92rem;
	}

	.theme-origen .site-nav__backdrop {
		position: fixed;
		inset: 0;
		background: rgba(17, 39, 47, 0.42);
		backdrop-filter: blur(4px);
		border: 0;
		opacity: 0;
		pointer-events: none;
		transition: opacity 220ms ease;
		z-index: 1000;
	}

	.theme-origen.has-menu-open .site-nav__backdrop {
		opacity: 1;
		pointer-events: auto;
	}

	.theme-origen .site-header__cta {
		display: none;
	}

	.theme-origen .feature-grid,
	.theme-origen .voice-grid,
	.theme-origen .service-grid,
	.theme-origen .team-grid,
	.theme-origen .metrics-grid,
	.theme-origen .footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.theme-origen .team-carousel__slide {
		flex-basis: calc((100% - 1.5rem) / 2);
	}

	.theme-origen .hero-card__overlay,
	.theme-origen .footer-cta {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.theme-origen .origen-shell {
		width: min(80rem, calc(100vw - 1.25rem));
	}

	.theme-origen .section-intro {
		text-align: left;
		margin: 0 0 2rem;
	}

	.theme-origen .feature-grid,
	.theme-origen .voice-grid,
	.theme-origen .service-grid,
	.theme-origen .team-grid,
	.theme-origen .metrics-grid,
	.theme-origen .footer-grid {
		grid-template-columns: 1fr;
	}

	.theme-origen .footer-brand {
		grid-template-columns: 1fr;
	}

	.theme-origen .footer-brand__symbol {
		width: 3.6rem;
	}

	.theme-origen .team-carousel__stage {
		padding-inline: 2.8rem;
	}

	.theme-origen .team-carousel__slide {
		flex-basis: 100%;
	}

	.theme-origen .hero-actions .btn,
	.theme-origen .stacked-actions .btn,
	.theme-origen .footer-cta__actions .btn,
	.theme-origen .site-nav__mobile-meta .btn {
		width: 100%;
	}

	.theme-origen .hero-badges,
	.theme-origen .hero-actions,
	.theme-origen .stacked-actions,
	.theme-origen .footer-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.theme-origen .page-hero__card,
	.theme-origen .story-card,
	.theme-origen .info-card,
	.theme-origen .booking-panel,
	.theme-origen .contact-card,
	.theme-origen .service-card,
	.theme-origen .feature-card,
	.theme-origen .voice-card,
	.theme-origen .metric-card {
		padding: 1.25rem;
	}

	.theme-origen .floating-whatsapp {
		right: 0.9rem;
		bottom: 0.9rem;
	}
}

/* 2.1.0 layout refresh */
.theme-origen .origen-section {
	padding: clamp(4.5rem, 8vw, 6.5rem) 0;
}

.theme-origen .surface-block {
	padding: clamp(4.5rem, 8vw, 6.5rem) 0;
}

.theme-origen .section-intro {
	max-width: 46rem;
	margin: 0 0 2.6rem;
}

.theme-origen .section-intro h2,
.theme-origen .page-hero__content h1,
.theme-origen .hero-copy h1,
.theme-origen .internal-cover__content h1 {
	font-size: clamp(2.5rem, 5vw, 4.6rem);
	line-height: 0.96;
	letter-spacing: -0.06em;
}

.theme-origen .section-intro p,
.theme-origen .hero-lead,
.theme-origen .internal-cover__content p,
.theme-origen .story-card p,
.theme-origen .info-card p,
.theme-origen .feature-card p,
.theme-origen .service-copy,
.theme-origen .voice-card p,
.theme-origen .testimonial-card p,
.theme-origen .team-card__bio,
.theme-origen .contact-card p,
.theme-origen .booking-option-card p,
.theme-origen .process-card p,
.theme-origen .metric-card p {
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(15, 44, 57, 0.78);
}

.theme-origen .eyebrow {
	color: var(--accent-dark);
	letter-spacing: 0.22em;
}

.theme-origen .btn {
	border-radius: 16px;
	min-height: 3.2rem;
	font-weight: 700;
	box-shadow: none;
}

.theme-origen .btn-primary,
.theme-origen .site-header__cta,
.theme-origen .nav-cta {
	background: var(--accent);
	color: #0f2c39;
	border: 1px solid rgba(67, 199, 207, 0.35);
}

.theme-origen .btn-primary:hover,
.theme-origen .btn-primary:focus-visible,
.theme-origen .site-header__cta:hover,
.theme-origen .nav-cta:hover {
	background: var(--accent-dark);
	color: #ffffff;
}

.theme-origen .btn-primary--highlight {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
	color: #0f2c39;
	box-shadow: 0 16px 34px rgba(67, 199, 207, 0.24);
}

.theme-origen .btn-primary--highlight:hover,
.theme-origen .btn-primary--highlight:focus-visible {
	color: #ffffff;
	background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.theme-origen .btn-secondary,
.theme-origen .btn-secondary--light {
	background: #ffffff;
	color: var(--ink);
	border: 1px solid rgba(15, 44, 57, 0.14);
}

.theme-origen .btn-secondary:hover,
.theme-origen .btn-secondary:focus-visible,
.theme-origen .btn-secondary--light:hover,
.theme-origen .btn-secondary--light:focus-visible {
	background: rgba(67, 199, 207, 0.08);
	border-color: rgba(67, 199, 207, 0.34);
	color: var(--ink);
}

.theme-origen .btn-secondary--whatsapp {
	background: #ffffff;
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: #0f2c39;
}

.theme-origen .btn-secondary--whatsapp:hover,
.theme-origen .btn-secondary--whatsapp:focus-visible {
	background: #16a34a;
	border-color: #16a34a;
	color: #ffffff;
}

.theme-origen .pill,
.theme-origen .badge,
.theme-origen .tag {
	border-color: rgba(67, 199, 207, 0.2);
	background: rgba(255, 255, 255, 0.9);
	color: rgba(15, 44, 57, 0.78);
}

.theme-origen .hero {
	padding: clamp(4.6rem, 8vw, 7rem) 0 4.6rem;
}

.theme-origen .hero-grid {
	align-items: center;
	gap: clamp(2rem, 4vw, 4rem);
}

.theme-origen .hero-copy {
	max-width: 42rem;
}

.theme-origen .hero-actions,
.theme-origen .stacked-actions {
	gap: 0.9rem;
}

.theme-origen .stacked-actions--services {
	justify-content: center;
	margin-top: 2rem;
}

.theme-origen .stacked-actions--center {
	justify-content: center;
}

.theme-origen .hero-badges,
.theme-origen .tag-cloud {
	gap: 0.65rem;
}

.theme-origen .hero-card,
.theme-origen .page-hero__card,
.theme-origen .feature-card,
.theme-origen .voice-card,
.theme-origen .testimonial-card,
.theme-origen .service-card,
.theme-origen .team-card,
.theme-origen .metric-card,
.theme-origen .info-card,
.theme-origen .story-card,
.theme-origen .value-card,
.theme-origen .contact-card,
.theme-origen .timeline-card,
.theme-origen .booking-option-card,
.theme-origen .decision-cta,
.theme-origen .installation-card,
.theme-origen .booking-panel,
.theme-origen .process-card {
	border: 1px solid rgba(15, 44, 57, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 18px 48px rgba(15, 44, 57, 0.08);
}

.theme-origen .hero-card,
.theme-origen .page-hero__card,
.theme-origen .feature-card,
.theme-origen .voice-card,
.theme-origen .testimonial-card,
.theme-origen .service-card,
.theme-origen .metric-card,
.theme-origen .info-card,
.theme-origen .story-card,
.theme-origen .value-card,
.theme-origen .contact-card,
.theme-origen .timeline-card,
.theme-origen .booking-option-card,
.theme-origen .decision-cta,
.theme-origen .booking-panel,
.theme-origen .process-card {
	padding: clamp(1.4rem, 2vw, 2rem);
}

.theme-origen .hero-card__media,
.theme-origen .page-hero__card img,
.theme-origen .installation-card img {
	border-radius: 22px;
}

.theme-origen .hero-card__media--tall {
	aspect-ratio: 4 / 4.6;
}

.theme-origen .hero-card__media img,
.theme-origen .page-hero__card img,
.theme-origen .installation-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.theme-origen .hero-card__overlay {
	gap: 0.8rem;
	margin-top: 1rem;
}

.theme-origen .mini-metric {
	background: rgba(248, 255, 254, 0.9);
	border: 1px solid rgba(15, 44, 57, 0.08);
	border-radius: 18px;
	padding: 1rem;
}

.theme-origen .mini-metric strong {
	font-size: 1.05rem;
	color: var(--ink);
}

.theme-origen .feature-grid,
.theme-origen .voice-grid,
.theme-origen .testimonials-grid,
.theme-origen .service-grid,
.theme-origen .team-grid,
.theme-origen .metrics-grid,
.theme-origen .values-grid,
.theme-origen .timeline-grid,
.theme-origen .process-grid,
.theme-origen .booking-options-grid,
.theme-origen .installations-grid,
.theme-origen .mission-grid {
	display: grid;
	gap: 1.35rem;
}

.theme-origen .feature-grid--two-up,
.theme-origen .mission-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-origen .voice-grid,
.theme-origen .testimonials-grid,
.theme-origen .process-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-origen .metrics-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 1.35rem;
}

.theme-origen .service-grid--featured {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-origen .service-grid--full {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-origen .team-grid--preview {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-origen .team-grid--full {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-origen .values-grid,
.theme-origen .timeline-grid,
.theme-origen .installations-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-origen .process-grid--full {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.theme-origen .booking-options-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-origen .metric-card strong,
.theme-origen .process-card__number,
.theme-origen .voice-card__quote,
.theme-origen .testimonial-card__quote {
	color: var(--accent-dark);
}

.theme-origen .metric-card strong {
	display: block;
	font-size: 1.55rem;
	margin-bottom: 0.45rem;
}

.theme-origen .voice-card,
.theme-origen .testimonial-card,
.theme-origen .process-card,
.theme-origen .service-card,
.theme-origen .team-card,
.theme-origen .feature-card,
.theme-origen .value-card,
.theme-origen .timeline-card,
.theme-origen .booking-option-card {
	height: 100%;
}

.theme-origen .service-card,
.theme-origen .service-card__content,
.theme-origen .team-card__body,
.theme-origen .team-card__face,
.theme-origen .booking-option-card,
.theme-origen .contact-card {
	display: flex;
	flex-direction: column;
}

.theme-origen .service-card__content,
.theme-origen .team-card__body {
	gap: 1rem;
	flex: 1;
}

.theme-origen .service-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.theme-origen .service-symbol {
	width: 3rem;
	height: 3rem;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(67, 199, 207, 0.14);
	color: var(--accent-dark);
	font-weight: 800;
}

.theme-origen .service-card h3,
.theme-origen .team-card h3,
.theme-origen .voice-card h3,
.theme-origen .feature-card h3,
.theme-origen .value-card h3,
.theme-origen .timeline-card h3,
.theme-origen .booking-option-card h3,
.theme-origen .info-card h3 {
	font-size: clamp(1.28rem, 2vw, 1.7rem);
	line-height: 1.08;
	margin: 0;
}

.theme-origen .service-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.theme-origen .service-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 2rem;
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	background: rgba(67, 199, 207, 0.1);
	color: var(--ink);
	font-size: 0.88rem;
	font-weight: 700;
}

.theme-origen .service-professionals {
	margin: 0;
	font-size: 0.95rem;
	color: rgba(15, 44, 57, 0.74);
}

.theme-origen .service-details {
	margin-top: auto;
}

.theme-origen .service-card__actions,
.theme-origen .team-card__actions {
	display: grid;
	gap: 0.75rem;
	margin-top: auto;
}

.theme-origen .team-card__frame {
	height: 100%;
	perspective: 1200px;
}

.theme-origen .team-card__surface {
	position: relative;
	height: 100%;
	min-height: 42rem;
	transform-style: preserve-3d;
	transition: transform 0.6s ease;
}

.theme-origen .team-card--preview .team-card__surface {
	min-height: auto;
}

.theme-origen .team-card.is-flipped .team-card__surface {
	transform: rotateY(180deg);
}

.theme-origen .team-card__face {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	border-radius: 28px;
	background: #ffffff;
	padding: 1.25rem;
}

.theme-origen .team-card--preview .team-card__face {
	position: relative;
	inset: auto;
}

.theme-origen .team-card__face--back {
	transform: rotateY(180deg);
	overflow: auto;
}

.theme-origen .team-card__portrait {
	padding: 0;
	margin-bottom: 1rem;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(67, 199, 207, 0.12), rgba(67, 199, 207, 0.04));
}

.theme-origen .team-card__portrait-shell {
	width: 100%;
	border-radius: 22px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
}

.theme-origen .team-card__portrait-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #ffffff;
	transition: transform 0.3s ease;
}

.theme-origen .team-card:hover .team-card__portrait-image {
	transform: scale(1.08);
}

.theme-origen .team-card__portrait-initials {
	font-size: 2rem;
	font-weight: 800;
	color: var(--accent-dark);
}

.theme-origen .team-role,
.theme-origen .team-focus,
.theme-origen .team-approach,
.theme-origen .team-meta p,
.theme-origen .team-card__bio {
	margin: 0;
}

.theme-origen .team-role {
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent-dark);
}

.theme-origen .team-focus,
.theme-origen .team-approach {
	font-size: 0.96rem;
	color: rgba(15, 44, 57, 0.72);
}

.theme-origen .team-meta {
	display: grid;
	gap: 0.6rem;
	margin-top: 1rem;
}

.theme-origen .internal-cover {
	position: relative;
	min-height: 40vh;
	display: flex;
	align-items: flex-end;
	padding: 0;
	overflow: hidden;
}

.theme-origen .internal-cover__media,
.theme-origen .internal-cover__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.theme-origen .internal-cover__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 44, 57, 0.16) 0%, rgba(15, 44, 57, 0.62) 100%);
}

.theme-origen .internal-cover__content {
	position: relative;
	z-index: 1;
	padding: clamp(5rem, 10vw, 7.5rem) 0 3rem;
	color: #ffffff;
}

.theme-origen .internal-cover__content h1 {
	color: #ffffff;
	font-size: clamp(1.7rem, 3.7vw, 4.25rem);
	line-height: 1;
	white-space: nowrap;
	max-width: none;
	text-shadow: 0 14px 36px rgba(15, 44, 57, 0.32);
}

.theme-origen .internal-cover__content .eyebrow,
.theme-origen .internal-cover__content p {
	color: rgba(255, 255, 255, 0.88);
}

.theme-origen .internal-cover__content p {
	max-width: 46rem;
}

.theme-origen .split-layout,
.theme-origen .page-hero__inner,
.theme-origen .contact-grid {
	gap: 1.6rem;
	align-items: start;
}

.theme-origen .split-layout--balanced {
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.theme-origen .split-layout--faq {
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.theme-origen .timeline-card strong {
	display: inline-flex;
	margin-bottom: 0.7rem;
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	background: rgba(67, 199, 207, 0.1);
	color: var(--accent-dark);
}

.theme-origen .process-card {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.theme-origen .process-card__number {
	display: inline-flex;
	width: 3rem;
	height: 3rem;
	border-radius: 16px;
	align-items: center;
	justify-content: center;
	background: rgba(67, 199, 207, 0.12);
	font-size: 1rem;
	font-weight: 800;
}

.theme-origen .process-card h3 {
	font-size: 1.12rem;
	line-height: 1.25;
	margin: 0;
}

.theme-origen .voice-card__quote,
.theme-origen .testimonial-card__quote {
	font-size: 2.3rem;
	line-height: 1;
}

.theme-origen .testimonial-card strong {
	margin-top: auto;
	color: var(--ink);
}

.theme-origen .decision-cta {
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
}

.theme-origen .contact-card,
.theme-origen .booking-option-card {
	gap: 0.9rem;
}

.theme-origen .contact-list {
	margin: 0;
	padding-left: 1rem;
	display: grid;
	gap: 0.7rem;
}

.theme-origen .contact-list li {
	color: rgba(15, 44, 57, 0.78);
}

.theme-origen .booking-panel__intro {
	margin-bottom: 1.4rem;
}

.theme-origen .faq-list {
	display: grid;
	gap: 0.9rem;
}

.theme-origen .faq-item {
	padding: 0;
	border: 1px solid rgba(15, 44, 57, 0.08);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.98);
}

.theme-origen .faq-trigger {
	padding: 1.15rem 1.3rem;
}

.theme-origen .faq-panel {
	padding: 0 1.3rem 1.2rem;
}

.theme-origen .installation-card {
	overflow: hidden;
	padding: 0;
}

.theme-origen .installation-card img {
	aspect-ratio: 4 / 3;
}

.theme-origen .installation-card figcaption {
	padding: 1rem 1.15rem 1.2rem;
	color: rgba(15, 44, 57, 0.76);
}

.theme-origen .map-frame {
	border-radius: 28px;
	border: 1px solid rgba(15, 44, 57, 0.08);
	min-height: 26rem;
}

.theme-origen .site-topbar,
.theme-origen .site-header {
	background: rgba(248, 255, 254, 0.92);
}

.theme-origen .site-header {
	box-shadow: 0 8px 26px rgba(15, 44, 57, 0.06);
}

.theme-origen .footer-cta {
	background: linear-gradient(135deg, #0f2c39 0%, #163947 100%);
}

.theme-origen .footer-cta .btn-primary {
	background: linear-gradient(135deg, #ffe7c4 0%, #ffc784 100%);
	border-color: rgba(255, 214, 164, 0.64);
	color: #4e2c08;
	box-shadow: 0 18px 34px rgba(255, 176, 84, 0.28);
}

.theme-origen .footer-cta .btn-primary:hover,
.theme-origen .footer-cta .btn-primary:focus-visible {
	background: linear-gradient(135deg, #fff1d8 0%, #ffcf95 100%);
	box-shadow: 0 22px 40px rgba(255, 176, 84, 0.34);
}

@media (max-width: 1120px) {
	.theme-origen .service-grid--full,
	.theme-origen .team-grid--full,
	.theme-origen .values-grid,
	.theme-origen .timeline-grid,
	.theme-origen .process-grid--full,
	.theme-origen .installations-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.theme-origen .voice-grid,
	.theme-origen .testimonials-grid,
	.theme-origen .feature-grid--two-up,
	.theme-origen .mission-grid,
	.theme-origen .booking-options-grid,
	.theme-origen .split-layout--balanced,
	.theme-origen .split-layout--faq,
	.theme-origen .contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 840px) {
	.theme-origen .service-grid--featured,
	.theme-origen .service-grid--full,
	.theme-origen .team-grid--preview,
	.theme-origen .team-grid--full,
	.theme-origen .values-grid,
	.theme-origen .timeline-grid,
	.theme-origen .process-grid--full,
	.theme-origen .process-grid--compact,
	.theme-origen .metrics-grid--compact,
	.theme-origen .voice-grid,
	.theme-origen .testimonials-grid,
	.theme-origen .installations-grid,
	.theme-origen .booking-options-grid,
	.theme-origen .feature-grid--two-up,
	.theme-origen .mission-grid {
		grid-template-columns: 1fr;
	}

	.theme-origen .team-card__surface {
		min-height: 39rem;
	}

	.theme-origen .internal-cover__content h1 {
		font-size: clamp(1.45rem, 6vw, 2.3rem);
	}
}

/* 2.1.1 refinement pass */
.theme-origen .origen-section,
.theme-origen .surface-block {
	padding: clamp(3.2rem, 6vw, 4.8rem) 0;
}

.theme-origen .section-intro--center {
	margin-inline: auto;
	text-align: center;
}

.theme-origen .section-intro--right {
	margin-left: auto;
	text-align: right;
}

.theme-origen .section-intro--left {
	text-align: left;
}

.theme-origen .feature-card,
.theme-origen .voice-card,
.theme-origen .testimonial-card,
.theme-origen .service-card,
.theme-origen .team-card--preview,
.theme-origen .metric-card,
.theme-origen .info-card,
.theme-origen .story-card,
.theme-origen .value-card,
.theme-origen .contact-card,
.theme-origen .timeline-card,
.theme-origen .booking-option-card,
.theme-origen .decision-cta,
.theme-origen .installation-card,
.theme-origen .booking-panel,
.theme-origen .process-card,
.theme-origen .page-hero__card {
	transition:
		transform 0.24s ease,
		box-shadow 0.24s ease,
		border-color 0.24s ease;
}

.theme-origen .feature-card:hover,
.theme-origen .voice-card:hover,
.theme-origen .testimonial-card:hover,
.theme-origen .service-card:hover,
.theme-origen .team-card--preview:hover,
.theme-origen .metric-card:hover,
.theme-origen .info-card:hover,
.theme-origen .story-card:hover,
.theme-origen .value-card:hover,
.theme-origen .contact-card:hover,
.theme-origen .timeline-card:hover,
.theme-origen .booking-option-card:hover,
.theme-origen .decision-cta:hover,
.theme-origen .installation-card:hover,
.theme-origen .booking-panel:hover,
.theme-origen .process-card:hover,
.theme-origen .page-hero__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 46px rgba(15, 44, 57, 0.12);
	border-color: rgba(67, 199, 207, 0.26);
}

.theme-origen .service-grid--full {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-origen .team-grid--preview {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.theme-origen .team-card--preview .team-card__surface,
.theme-origen .team-card--preview .team-card__frame {
	height: auto;
	min-height: 0;
}

.theme-origen .team-card--preview .team-card__face {
	padding: 1rem;
}

.theme-origen .team-card--preview .team-card__portrait-shell {
	aspect-ratio: 4 / 3;
}

.theme-origen .team-card--preview .team-card__body {
	padding: 0.85rem 0 0;
}

.theme-origen .team-card--preview h3 {
	font-size: 1.05rem;
}

.theme-origen .team-card--preview .team-role,
.theme-origen .team-card--preview .team-focus,
.theme-origen .team-card--preview .team-approach {
	font-size: 0.82rem;
}

.theme-origen .team-card--preview .tag-cloud {
	gap: 0.45rem;
}

.theme-origen .team-card--preview .tag {
	font-size: 0.72rem;
	padding: 0.26rem 0.6rem;
}

.theme-origen .team-card--preview .team-card__actions .btn {
	min-height: 2.8rem;
}

.theme-origen .home-booking-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
	gap: 1.5rem;
	align-items: center;
}

.theme-origen .home-booking-layout__copy {
	display: grid;
	gap: 1.15rem;
}

.theme-origen .home-booking-layout__media {
	align-self: stretch;
}

.theme-origen .home-booking-layout__media img {
	width: 100%;
	height: 100%;
	min-height: 23rem;
	object-fit: cover;
}

.theme-origen .process-grid--compact .process-card {
	padding: 1rem;
	min-height: 0;
}

.theme-origen .process-grid--compact .process-card h3 {
	font-size: 1rem;
}

.theme-origen .process-grid--compact .process-card p {
	font-size: 0.92rem;
	line-height: 1.58;
}

.theme-origen .faq-list--home {
	margin-top: 0.4rem;
}

.theme-origen .faq-list--home + .info-card {
	margin-top: 1.15rem;
}

.theme-origen .faq-trigger {
	padding: 1.05rem 1.3rem;
}

.theme-origen .faq-item.is-open .faq-trigger {
	background: rgba(67, 199, 207, 0.06);
}

.theme-origen .faq-panel {
	padding: 0 1.3rem 1rem;
}

.theme-origen .faq-marker {
	display: none;
}

.theme-origen .split-layout--story .page-hero__card--stretch,
.theme-origen .split-layout--story .page-hero__card--stretch img {
	height: 100%;
	min-height: 29rem;
}

.theme-origen .timeline-flow {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	padding-top: 2.75rem;
}

.theme-origen .timeline-flow::before {
	content: "";
	position: absolute;
	left: 4%;
	right: 4%;
	top: 1.2rem;
	height: 2px;
	background: linear-gradient(90deg, rgba(67, 199, 207, 0.7), rgba(17, 39, 47, 0.16));
}

.theme-origen .timeline-flow__item {
	position: relative;
	padding: 2.35rem 1.2rem 1.2rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(15, 44, 57, 0.08);
	box-shadow: 0 16px 34px rgba(15, 44, 57, 0.08);
}

.theme-origen .timeline-flow__dot {
	position: absolute;
	top: -0.2rem;
	left: 1.2rem;
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border: 2px solid rgba(67, 199, 207, 0.52);
	color: var(--accent-dark);
	font-weight: 800;
	box-shadow: 0 10px 20px rgba(15, 44, 57, 0.08);
}

.theme-origen .timeline-flow__item strong {
	display: block;
	margin-bottom: 0.55rem;
	color: var(--accent-dark);
}

.theme-origen .timeline-flow__item h3 {
	margin: 0 0 0.45rem;
	font-size: 1.15rem;
}

.theme-origen .team-carousel--modern {
	display: grid;
	gap: 1.1rem;
}

.theme-origen .team-carousel--modern .team-carousel__stage {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 1rem;
	align-items: center;
	padding-inline: 0;
}

.theme-origen .team-carousel--modern .team-carousel__viewport {
	overflow: hidden;
}

.theme-origen .team-carousel--modern .team-carousel__track {
	display: flex;
	gap: 1.25rem;
}

.theme-origen .team-carousel--modern .team-carousel__slide {
	flex: 0 0 calc((100% - 2.5rem) / 3);
	display: flex;
}

.theme-origen .team-carousel--modern .team-card {
	width: 100%;
}

.theme-origen .team-carousel--modern .team-card__frame,
.theme-origen .team-carousel--modern .team-card__surface {
	height: 41rem;
	min-height: 41rem;
}

.theme-origen .team-carousel--modern .team-card__face {
	overflow: auto;
}

.theme-origen .team-carousel--modern .team-card__portrait-shell {
	aspect-ratio: 4 / 3;
}

.theme-origen .team-carousel--modern .team-card__body {
	padding: 1rem;
}

.theme-origen .team-carousel--modern .team-card__actions .btn {
	min-height: 2.9rem;
}

.theme-origen .team-carousel--modern .team-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 0.55rem;
}

.theme-origen .team-carousel--modern .team-carousel__dot {
	width: 0.82rem;
	height: 0.82rem;
	border-radius: 999px;
	border: 0;
	background: rgba(15, 44, 57, 0.16);
	transition: transform 0.2s ease, background 0.2s ease;
}

.theme-origen .team-carousel--modern .team-carousel__dot.is-active {
	background: var(--accent);
	transform: scale(1.1);
}

.theme-origen .contact-grid {
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: start;
}

.theme-origen .contact-stack {
	display: grid;
	gap: 1rem;
}

.theme-origen .contact-stack .section-intro {
	margin-bottom: 0.4rem;
}

.theme-origen .contact-card h3 {
	margin: 0 0 0.3rem;
	font-size: 1.18rem;
}

.theme-origen .booking-sidebar__card {
	border-radius: 28px;
	border: 1px solid rgba(67, 199, 207, 0.18);
	background: linear-gradient(180deg, rgba(67, 199, 207, 0.08), rgba(255, 255, 255, 0.96));
	box-shadow: 0 18px 42px rgba(15, 44, 57, 0.08);
}

.theme-origen .booking-checklist li::marker {
	color: var(--accent-dark);
}

@media (max-width: 1200px) {
	.theme-origen .team-grid--preview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.theme-origen .home-booking-layout,
	.theme-origen .contact-grid {
		grid-template-columns: 1fr;
	}

	.theme-origen .team-carousel--modern .team-carousel__slide {
		flex-basis: calc((100% - 1.25rem) / 2);
	}
}

@media (max-width: 840px) {
	.theme-origen .section-intro--right,
	.theme-origen .section-intro--center {
		text-align: left;
		margin-left: 0;
		margin-right: 0;
	}

	.theme-origen .service-grid--full,
	.theme-origen .team-grid--preview,
	.theme-origen .timeline-flow {
		grid-template-columns: 1fr;
	}

	.theme-origen .timeline-flow::before {
		display: none;
	}

	.theme-origen .team-carousel--modern .team-carousel__stage {
		grid-template-columns: 1fr;
	}

	.theme-origen .team-carousel--modern .team-carousel__control {
		display: none;
	}

	.theme-origen .team-carousel--modern .team-carousel__viewport {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 0.3rem;
	}

	.theme-origen .team-carousel--modern .team-carousel__slide {
		flex-basis: 100%;
		scroll-snap-align: start;
	}

	.theme-origen .team-carousel--modern .team-card__frame,
	.theme-origen .team-carousel--modern .team-card__surface {
		height: 39rem;
		min-height: 39rem;
	}
}

/* 2.1.2 polish pass */
.theme-origen .origen-section,
.theme-origen .surface-block {
	padding: clamp(2.8rem, 5vw, 4.1rem) 0;
}

.theme-origen .section-intro {
	margin-bottom: 1.35rem;
	max-width: 46rem;
}

.theme-origen .section-intro h2 {
	font-size: clamp(2.35rem, 4.35vw, 4.15rem);
	line-height: 0.96;
}

.theme-origen .hero--home {
	padding: clamp(3rem, 6vw, 4.8rem) 0 3.35rem;
	background:
		linear-gradient(180deg, rgba(67, 199, 207, 0.12) 0%, rgba(67, 199, 207, 0.02) 44%, rgba(255, 255, 255, 0) 100%),
		#f8fffe;
	border-bottom: 1px solid rgba(67, 199, 207, 0.08);
}

.theme-origen .hero-grid {
	gap: 1.45rem;
	align-items: center;
}

.theme-origen .hero-copy {
	gap: 1rem;
}

.theme-origen .hero-copy h1 {
	font-size: clamp(2.8rem, 5.2vw, 4.95rem);
}

.theme-origen .hero-lead {
	max-width: 34rem;
}

.theme-origen .service-card,
.theme-origen .team-card--preview,
.theme-origen .contact-card,
.theme-origen .process-card,
.theme-origen .feature-card,
.theme-origen .voice-card,
.theme-origen .testimonial-card,
.theme-origen .metric-card,
.theme-origen .value-card,
.theme-origen .story-card,
.theme-origen .decision-cta {
	height: 100%;
}

.theme-origen .service-card__content {
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.theme-origen .service-card__actions {
	margin-top: auto;
	padding-top: 0.85rem;
}

.theme-origen .service-card .tag-cloud {
	margin-top: auto;
}

.theme-origen .service-card .tag,
.theme-origen .team-card .tag {
	font-size: 0.74rem;
}

.theme-origen .team-grid--preview {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	align-items: stretch;
}

.theme-origen .team-card--preview .team-card__frame,
.theme-origen .team-card--preview .team-card__surface {
	height: 100%;
}

.theme-origen .team-card--preview .team-card__face {
	padding: 0.8rem;
}

.theme-origen .team-card__portrait-shell {
	padding: 0.45rem;
	border-radius: 1.75rem;
	background: #ffffff;
	box-shadow:
		inset 0 0 0 1px rgba(15, 44, 57, 0.06),
		0 10px 22px rgba(15, 44, 57, 0.06);
}

.theme-origen .team-card__portrait-shell--image {
	background: rgba(255, 255, 255, 0.96);
}

.theme-origen .team-card__portrait-image {
	border-radius: 1.45rem;
	transition: transform 0.3s ease, filter 0.3s ease;
	transform-origin: center top;
}

.theme-origen .team-card:hover .team-card__portrait-image {
	transform: scale(1.12);
	filter: saturate(1.04);
}

.theme-origen .team-card__summary {
	gap: 0.45rem;
}

.theme-origen .team-card h3 {
	font-size: clamp(1.18rem, 1.6vw, 1.55rem);
	line-height: 1.05;
}

.theme-origen .team-role,
.theme-origen .team-focus,
.theme-origen .team-approach {
	line-height: 1.45;
}

.theme-origen .team-card__body {
	gap: 0.7rem;
}

.theme-origen .team-card__actions .btn {
	min-height: 2.75rem;
	font-size: 0.9rem;
}

.theme-origen .team-card--preview .team-card__portrait-shell {
	aspect-ratio: 1 / 1;
}

.theme-origen .team-card--preview .team-role,
.theme-origen .team-card--preview .team-focus {
	font-size: 0.82rem;
}

.theme-origen .team-card--preview .team-approach {
	display: none;
}

.theme-origen .team-card--preview h3 {
	font-size: 1.06rem;
}

.theme-origen .team-card--preview .tag-cloud {
	gap: 0.42rem;
}

.theme-origen .team-card--preview .team-card__actions {
	padding-top: 0.55rem;
}

.theme-origen .home-booking-layout {
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	gap: 1.2rem;
}

.theme-origen .home-booking-layout__copy .section-intro {
	max-width: none;
	margin-bottom: 0.95rem;
}

.theme-origen .home-booking-layout__copy .section-intro h2 {
	font-size: clamp(2.2rem, 4vw, 3.55rem);
	max-width: 11ch;
}

.theme-origen .home-booking-layout__media img {
	min-height: 20rem;
	aspect-ratio: 4 / 4.4;
}

.theme-origen .process-grid--compact {
	gap: 0.85rem;
}

.theme-origen .process-grid--compact .process-card {
	padding: 0.95rem;
}

.theme-origen .process-grid--compact .process-card h3 {
	font-size: 0.96rem;
}

.theme-origen .faq-list--home {
	width: 100%;
	max-width: none;
}

.theme-origen .faq-item {
	transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.theme-origen .faq-item:hover,
.theme-origen .faq-item.is-open {
	background: rgba(67, 199, 207, 0.05);
	border-color: rgba(67, 199, 207, 0.2);
	box-shadow: 0 16px 32px rgba(15, 44, 57, 0.06);
	transform: translateY(-2px);
}

.theme-origen .split-layout--story {
	align-items: center;
}

.theme-origen .split-layout--story .split-layout__copy {
	align-self: center;
}

.theme-origen .split-layout--story .page-hero__card--stretch,
.theme-origen .split-layout--story .page-hero__card--stretch img {
	min-height: 24rem;
}

.theme-origen .timeline-flow {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.65rem;
	padding-top: 3rem;
}

.theme-origen .timeline-flow::before {
	left: 2%;
	right: 2%;
	top: 1.25rem;
	height: 2px;
	background: linear-gradient(90deg, rgba(67, 199, 207, 0.75), rgba(15, 44, 57, 0.18));
}

.theme-origen .timeline-flow__item {
	padding: 3rem 0.4rem 0 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	border-radius: 0;
}

.theme-origen .timeline-flow__dot {
	top: -0.05rem;
	left: 0;
	width: 2.5rem;
	height: 2.5rem;
}

.theme-origen .timeline-flow__item strong {
	font-size: 0.92rem;
	letter-spacing: -0.01em;
}

.theme-origen .timeline-flow__item h3 {
	font-size: 1.12rem;
}

.theme-origen .team-carousel--modern {
	gap: 1.15rem;
}

.theme-origen .team-carousel--modern .team-carousel__stage {
	position: relative;
	display: block;
	padding: 0 4.2rem;
}

.theme-origen .team-carousel--modern .team-carousel__viewport {
	min-width: 0;
	width: 100%;
	overflow: hidden;
}

.theme-origen .team-carousel--modern .team-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 2.5rem) / 3);
	gap: 1.25rem;
	width: 100%;
	align-items: stretch;
}

.theme-origen .team-carousel--modern .team-carousel__slide {
	min-width: 0;
	width: 100%;
}

.theme-origen .team-carousel--modern .team-card__frame,
.theme-origen .team-carousel--modern .team-card__surface {
	height: 36.5rem;
	min-height: 36.5rem;
}

.theme-origen .team-carousel--modern .team-card__face {
	padding: 1rem;
}

.theme-origen .team-carousel--modern .team-card__portrait-shell {
	aspect-ratio: 4 / 3;
}

.theme-origen .team-carousel--modern .team-card__body {
	gap: 0.62rem;
	padding: 0.72rem 0 0;
}

.theme-origen .team-carousel--modern .team-card__bio {
	font-size: 0.94rem;
	line-height: 1.6;
}

.theme-origen .team-carousel--modern .team-role,
.theme-origen .team-carousel--modern .team-focus,
.theme-origen .team-carousel--modern .team-approach {
	font-size: 0.84rem;
}

.theme-origen .team-carousel--modern .team-role,
.theme-origen .team-carousel--modern .team-focus {
	display: -webkit-box;
	min-height: 2.35rem;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.theme-origen .team-carousel--modern .team-card h3 {
	min-height: 2.25rem;
}

.theme-origen .team-carousel--modern .tag-cloud {
	gap: 0.42rem;
}

.theme-origen .team-carousel--modern .tag {
	padding: 0.26rem 0.58rem;
}

.theme-origen .team-carousel--modern .team-card__actions {
	gap: 0.45rem;
}

.theme-origen .team-carousel--modern .btn-card-toggle {
	min-height: 2.2rem;
	padding-inline: 0.95rem;
	font-size: 0.82rem;
}

.theme-origen .team-carousel--modern .team-meta p {
	margin: 0;
	font-size: 0.88rem;
}

.theme-origen .team-carousel--modern .team-card__actions {
	padding-top: 0.55rem;
}

.theme-origen .team-carousel--modern .team-carousel__control {
	width: 3.15rem;
	height: 3.15rem;
	border-color: rgba(67, 199, 207, 0.18);
	box-shadow: 0 14px 28px rgba(15, 44, 57, 0.08);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

.theme-origen .team-carousel--modern .team-carousel__control:hover {
	background: rgba(67, 199, 207, 0.1);
	border-color: rgba(67, 199, 207, 0.3);
}

.theme-origen .team-carousel--modern .team-carousel__control--prev {
	left: 0;
}

.theme-origen .team-carousel--modern .team-carousel__control--next {
	right: 0;
}

.theme-origen .contact-overview {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 1.35rem;
	align-items: start;
}

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

.theme-origen .contact-card--wide {
	grid-column: 1 / -1;
}

.theme-origen .contact-map-card {
	padding: 0.7rem;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(15, 44, 57, 0.08);
	box-shadow: 0 18px 48px rgba(15, 44, 57, 0.08);
}

.theme-origen .map-frame {
	display: block;
	width: 100%;
	min-height: 22rem;
	border: 0;
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(67, 199, 207, 0.12), rgba(255, 255, 255, 0.96));
}

.theme-origen .booking-sidebar__card {
	border-radius: 28px;
	border: 1px solid rgba(67, 199, 207, 0.22);
	background:
		radial-gradient(circle at top right, rgba(103, 247, 233, 0.3), transparent 35%),
		linear-gradient(180deg, rgba(67, 199, 207, 0.12), rgba(255, 255, 255, 0.98));
	box-shadow: 0 18px 42px rgba(15, 44, 57, 0.08);
}

.theme-origen .booking-sidebar__card h2,
.theme-origen .booking-sidebar__card p,
.theme-origen .booking-sidebar__card li {
	color: var(--brand-deep);
}

.theme-origen .booking-sidebar__card .eyebrow {
	color: var(--accent-dark);
}

.theme-origen .page-hero--booking .page-hero__card {
	border: 1px solid rgba(67, 199, 207, 0.18);
	background:
		radial-gradient(circle at top right, rgba(103, 247, 233, 0.24), transparent 34%),
		linear-gradient(180deg, rgba(67, 199, 207, 0.1), rgba(255, 255, 255, 0.98));
	box-shadow: 0 18px 42px rgba(15, 44, 57, 0.08);
}

.theme-origen .page-hero--booking .page-hero__card h3,
.theme-origen .page-hero--booking .page-hero__card p {
	color: var(--brand-deep);
}

@media (max-width: 1200px) {
	.theme-origen .team-grid--preview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.theme-origen .contact-overview,
	.theme-origen .home-booking-layout {
		grid-template-columns: 1fr;
	}

	.theme-origen .team-carousel--modern .team-carousel__track {
		grid-auto-columns: calc((100% - 1.25rem) / 2);
	}

	.theme-origen .team-carousel--modern .team-carousel__stage {
		padding: 0 3.6rem;
	}
}

@media (max-width: 840px) {
	.theme-origen .origen-section,
	.theme-origen .surface-block {
		padding: 2.55rem 0;
	}

	.theme-origen .section-intro h2,
	.theme-origen .home-booking-layout__copy .section-intro h2 {
		max-width: none;
	}

	.theme-origen .contact-cards-grid,
	.theme-origen .timeline-flow,
	.theme-origen .team-grid--preview,
	.theme-origen .service-grid--featured,
	.theme-origen .service-grid--full,
	.theme-origen .process-grid--compact {
		grid-template-columns: 1fr;
	}

	.theme-origen .team-carousel--modern .team-carousel__track {
		grid-auto-columns: 100%;
	}

	.theme-origen .team-carousel--modern .team-card__frame,
	.theme-origen .team-carousel--modern .team-card__surface {
		height: 35rem;
		min-height: 35rem;
	}

	.theme-origen .team-carousel--modern .team-carousel__stage {
		padding: 0;
	}
}

/* 2.1.3 correction pass */
.theme-origen .story-card,
.theme-origen .decision-cta {
	height: auto;
	min-height: 0;
}

.theme-origen .decision-cta {
	max-width: 46rem;
	margin-inline: auto;
	padding: 1.9rem;
	text-align: center;
}

.theme-origen .decision-cta .stacked-actions {
	justify-content: center;
}

.theme-origen .split-layout--about-home {
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	gap: 1.3rem;
	align-items: stretch;
}

.theme-origen .split-layout--about-home .page-hero__card,
.theme-origen .split-layout--about-home .page-hero__card img {
	height: 100%;
	min-height: 26rem;
}

.theme-origen .split-layout--about-home .split-layout__copy {
	display: grid;
	align-content: stretch;
}

.theme-origen .split-layout--about-home .story-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
	padding: 1.8rem;
}

.theme-origen .split-layout--about-home .story-card p {
	max-width: 36rem;
}

.theme-origen .timeline-flow--story {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	padding-top: 4rem;
}

.theme-origen .timeline-flow--story::before {
	top: 1.62rem;
	left: 4%;
	right: 4%;
	height: 3px;
	background: linear-gradient(90deg, rgba(67, 199, 207, 0.4), rgba(67, 199, 207, 0.95), rgba(67, 199, 207, 0.4));
}

.theme-origen .timeline-flow--story .timeline-flow__item {
	display: grid;
	gap: 1rem;
	padding: 0;
}

.theme-origen .timeline-flow--story .timeline-flow__marker {
	position: relative;
	z-index: 2;
}

.theme-origen .timeline-flow--story .timeline-flow__dot {
	left: 0;
	top: 0;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(67, 199, 207, 0.32);
	background: #ffffff;
	box-shadow: 0 16px 30px rgba(67, 199, 207, 0.18);
}

.theme-origen .timeline-flow--story .timeline-flow__card {
	position: relative;
	padding: 1.45rem 1.35rem 1.35rem;
	border-radius: 28px;
	border: 1px solid rgba(15, 44, 57, 0.08);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 40px rgba(15, 44, 57, 0.06);
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.theme-origen .timeline-flow--story .timeline-flow__card::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 1.35rem;
	width: 3.6rem;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(67, 199, 207, 0.95), rgba(103, 247, 233, 0.9));
}

.theme-origen .timeline-flow--story .timeline-flow__item:hover .timeline-flow__card {
	transform: translateY(-6px);
	border-color: rgba(67, 199, 207, 0.28);
	box-shadow: 0 24px 46px rgba(15, 44, 57, 0.11);
}

.theme-origen .timeline-flow--story .timeline-flow__item:hover .timeline-flow__dot {
	box-shadow: 0 20px 34px rgba(67, 199, 207, 0.24);
	transform: translateY(-2px);
}

.theme-origen .mission-grid--balanced,
.theme-origen .values-grid--balanced {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.theme-origen .values-grid--balanced {
	align-items: stretch;
}

.theme-origen .values-grid--balanced .value-card,
.theme-origen .mission-grid--balanced .value-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.theme-origen .service-grid--full {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
}

.theme-origen .service-grid--full .service-card,
.theme-origen .service-grid--featured .service-card {
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.theme-origen .service-grid--full .service-card:hover,
.theme-origen .service-grid--featured .service-card:hover,
.theme-origen .contact-card:hover,
.theme-origen .value-card:hover,
.theme-origen .story-card:hover,
.theme-origen .decision-cta:hover,
.theme-origen .feature-card:hover,
.theme-origen .metric-card:hover,
.theme-origen .voice-card:hover,
.theme-origen .testimonial-card:hover,
.theme-origen .process-card:hover,
.theme-origen .contact-help-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 44px rgba(15, 44, 57, 0.09);
}

.theme-origen .team-grid--preview {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.9rem;
}

.theme-origen .team-card--preview .team-card__frame,
.theme-origen .team-card--preview .team-card__surface {
	min-height: 29rem;
}

.theme-origen .team-card--preview .team-card__face {
	padding: 0.82rem;
}

.theme-origen .team-card--preview .team-card__portrait-shell {
	aspect-ratio: 0.95 / 1;
}

.theme-origen .home-booking-layout {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.35rem;
	align-items: stretch;
}

.theme-origen .home-booking-layout__copy,
.theme-origen .home-booking-layout__media {
	min-width: 0;
}

.theme-origen .home-booking-layout__media {
	display: flex;
}

.theme-origen .home-booking-layout__media.page-hero__card {
	width: 100%;
	min-height: 100%;
}

.theme-origen .home-booking-layout__media img {
	width: 100%;
	min-height: 22rem;
	aspect-ratio: 4 / 3;
}

.theme-origen .home-booking-layout .process-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
}

.theme-origen .split-layout--calm {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: stretch;
}

.theme-origen .split-layout--calm .info-card,
.theme-origen .split-layout--calm .contact-steps-card {
	height: 100%;
}

.theme-origen .team-carousel--modern {
	gap: 1rem;
}

.theme-origen .team-carousel--modern .team-carousel__stage {
	padding: 0;
}

.theme-origen .team-carousel--modern .team-carousel__viewport {
	overflow: hidden;
	padding: 0.1rem 0.2rem 0.35rem;
}

.theme-origen .team-carousel--modern .team-carousel__track {
	grid-auto-columns: calc((100% - 2rem) / 3);
	gap: 1rem;
}

.theme-origen .team-carousel--modern .team-card__frame,
.theme-origen .team-carousel--modern .team-card__surface {
	height: 35.25rem;
	min-height: 35.25rem;
}

.theme-origen .team-carousel--modern .team-card__face {
	display: flex;
	flex-direction: column;
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.theme-origen .team-carousel--modern .team-card__face::-webkit-scrollbar {
	display: none;
}

.theme-origen .team-carousel--modern .team-card__portrait-shell {
	aspect-ratio: 1 / 0.86;
	overflow: hidden;
}

.theme-origen .team-carousel--modern .team-card__portrait-image {
	object-position: center 18%;
}

.theme-origen .team-carousel--modern .team-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.theme-origen .team-carousel--modern .team-card__summary {
	min-height: 7.3rem;
}

.theme-origen .team-carousel--modern .tag-cloud {
	min-height: 4.9rem;
	align-content: flex-start;
}

.theme-origen .team-carousel--modern .team-card__actions {
	margin-top: auto;
}

.theme-origen .team-carousel--modern .team-card__actions .btn {
	min-height: 2.7rem;
}

.theme-origen .team-carousel--modern .team-card__bio {
	margin-bottom: 0.85rem;
}

.theme-origen .team-carousel--modern .team-carousel__control {
	top: 42%;
}

.theme-origen .team-carousel--modern .team-carousel__control--prev {
	left: -1rem;
}

.theme-origen .team-carousel--modern .team-carousel__control--next {
	right: -1rem;
}

.theme-origen .contact-cards-grid--quad {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.theme-origen .contact-cards-grid--quad .contact-card {
	height: 100%;
}

.theme-origen .contact-booking-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 1.25rem;
	align-items: stretch;
}

.theme-origen .contact-booking-layout__copy {
	display: grid;
	align-content: start;
	gap: 1rem;
}

.theme-origen .contact-help-card {
	padding: 1.65rem;
	border-radius: 28px;
	border: 1px solid rgba(67, 199, 207, 0.2);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 40px rgba(15, 44, 57, 0.06);
}

.theme-origen .contact-help-card h3 {
	margin-bottom: 0.7rem;
}

.theme-origen .page-hero--booking .page-hero__card .tag {
	color: var(--brand-deep);
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(15, 44, 57, 0.12);
}

@media (max-width: 1200px) {
	.theme-origen .service-grid--full {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.theme-origen .team-grid--preview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.theme-origen .timeline-flow--story {
		grid-template-columns: 1fr;
		padding-top: 1rem;
	}

	.theme-origen .timeline-flow--story::before {
		display: none;
	}

	.theme-origen .contact-booking-layout,
	.theme-origen .home-booking-layout,
	.theme-origen .split-layout--about-home,
	.theme-origen .split-layout--calm {
		grid-template-columns: 1fr;
	}

	.theme-origen .home-booking-layout .process-grid--compact {
		grid-template-columns: 1fr;
	}

	.theme-origen .team-carousel--modern .team-carousel__track {
		grid-auto-columns: calc((100% - 1rem) / 2);
	}

	.theme-origen .team-carousel--modern .team-carousel__control--prev {
		left: -0.35rem;
	}

	.theme-origen .team-carousel--modern .team-carousel__control--next {
		right: -0.35rem;
	}
}

@media (max-width: 840px) {
	.theme-origen .mission-grid--balanced,
	.theme-origen .values-grid--balanced,
	.theme-origen .service-grid--full,
	.theme-origen .contact-cards-grid--quad {
		grid-template-columns: 1fr;
	}

	.theme-origen .team-card--preview .team-card__frame,
	.theme-origen .team-card--preview .team-card__surface,
	.theme-origen .team-carousel--modern .team-card__frame,
	.theme-origen .team-carousel--modern .team-card__surface {
		min-height: 34rem;
		height: 34rem;
	}

	.theme-origen .team-carousel--modern .team-carousel__track {
		grid-auto-columns: 100%;
	}

	.theme-origen .team-carousel--modern .team-carousel__control {
		top: auto;
		bottom: -4rem;
	}

	.theme-origen .team-carousel--modern .team-carousel__control--prev {
		left: 0;
	}

	.theme-origen .team-carousel--modern .team-carousel__control--next {
		right: 0;
	}

	.theme-origen .team-carousel--modern .team-carousel__dots {
		margin-top: 4.5rem;
	}
}

/* 2.1.4 refinement pass */
.theme-origen .split-layout--about-home {
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.theme-origen .split-layout--about-home .page-hero__card,
.theme-origen .split-layout--about-home .page-hero__card img {
	min-height: 28rem;
}

.theme-origen .split-layout--about-home .split-layout__copy {
	gap: 1rem;
}

.theme-origen .split-layout--about-home .section-intro {
	max-width: 40rem;
}

.theme-origen .split-layout--about-home .story-card {
	min-height: 15.5rem;
}

.theme-origen .timeline-flow--story {
	gap: 1.45rem;
}

.theme-origen .timeline-flow--story .timeline-flow__card {
	min-height: 11.5rem;
	padding: 1.6rem 1.45rem 1.45rem;
}

.theme-origen .timeline-flow--story .timeline-flow__item strong {
	display: inline-block;
	margin-bottom: 0.42rem;
	color: var(--brand-primary);
}

.theme-origen .team-carousel--modern .team-carousel__control--prev {
	left: -1.65rem;
}

.theme-origen .team-carousel--modern .team-carousel__control--next {
	right: -1.65rem;
}

@media (max-width: 1200px) {
	.theme-origen .team-carousel--modern .team-carousel__control--prev {
		left: -0.85rem;
	}

	.theme-origen .team-carousel--modern .team-carousel__control--next {
		right: -0.85rem;
	}
}

/* 2.1.5 alignment and motion pass */
.theme-origen .surface-block--muted,
.theme-origen .surface-block--gradient,
.theme-origen .hero--home {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.theme-origen .surface-block--muted {
	background:
		radial-gradient(circle at 8% 18%, rgba(103, 247, 233, 0.22), transparent 18rem),
		radial-gradient(circle at 88% 26%, rgba(67, 199, 207, 0.12), transparent 20rem),
		linear-gradient(180deg, #effcf9 0%, #ffffff 100%);
}

.theme-origen .surface-block--gradient {
	background:
		radial-gradient(circle at 12% 18%, rgba(103, 247, 233, 0.28), transparent 20rem),
		radial-gradient(circle at 88% 74%, rgba(67, 199, 207, 0.18), transparent 22rem),
		linear-gradient(180deg, rgba(247, 255, 254, 0.98) 0%, rgba(237, 252, 248, 0.96) 100%);
}

.theme-origen .section-intro,
.theme-origen .section-intro--left,
.theme-origen .section-intro--center,
.theme-origen .section-intro--right {
	margin-inline: 0;
	text-align: left;
}

.theme-origen .section-intro p,
.theme-origen .section-intro--left p,
.theme-origen .section-intro--center p,
.theme-origen .section-intro--right p {
	margin-inline: 0;
	max-width: 42rem;
}

.theme-origen .metrics-grid--compact,
.theme-origen .voice-grid,
.theme-origen .testimonials-grid {
	gap: 1rem;
	align-items: stretch;
}

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

.theme-origen .metric-card,
.theme-origen .voice-card,
.theme-origen .testimonial-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.theme-origen .voice-card h3 {
	min-height: 4.8rem;
}

.theme-origen .split-layout--about-home {
	grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
}

.theme-origen .split-layout--about-home .page-hero__card,
.theme-origen .split-layout--about-home .page-hero__card img {
	min-height: 30rem;
}

.theme-origen .split-layout--about-home .story-card {
	min-height: 17.5rem;
}

.theme-origen .team-grid--preview {
	align-items: stretch;
}

.theme-origen .team-card--preview .team-card__summary {
	min-height: 7.5rem;
}

.theme-origen .team-card--preview .tag-cloud {
	min-height: 4.4rem;
	align-content: flex-start;
}

.theme-origen .team-card--preview .team-card__actions {
	margin-top: auto;
}

.theme-origen .split-layout--calm .info-card,
.theme-origen .split-layout--calm .contact-steps-card {
	display: flex;
	flex-direction: column;
	padding: 1.7rem;
	border-radius: 28px;
	border: 1px solid rgba(15, 44, 57, 0.08);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 42px rgba(15, 44, 57, 0.06);
}

.theme-origen .split-layout--calm .contact-steps-card {
	justify-content: center;
}

.theme-origen .split-layout--calm .stacked-actions {
	margin-top: auto;
}

.theme-origen .contact-reservation-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	align-items: stretch;
	margin-bottom: 1.3rem;
}

.theme-origen .contact-reserve-card,
.theme-origen .contact-help-card {
	height: 100%;
}

.theme-origen .contact-reserve-card {
	padding: 1.7rem;
	border-radius: 28px;
	border: 1px solid rgba(67, 199, 207, 0.22);
	background:
		radial-gradient(circle at top right, rgba(103, 247, 233, 0.22), transparent 32%),
		linear-gradient(180deg, rgba(67, 199, 207, 0.08), rgba(255, 255, 255, 0.98));
	box-shadow: 0 18px 40px rgba(15, 44, 57, 0.06);
}

.theme-origen .contact-reserve-card h2 {
	margin-bottom: 0.8rem;
}

.theme-origen .contact-booking--centered {
	max-width: 48rem;
	margin: 0 auto;
}

.theme-origen .contact-booking--centered .section-intro {
	margin-bottom: 1rem;
}

.theme-origen .hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.theme-origen .booking-layout {
	align-items: stretch;
}

.theme-origen .booking-main .booking-panel {
	height: 100%;
}

.theme-origen .team-carousel--modern .team-card__frame,
.theme-origen .team-carousel--modern .team-card__surface {
	height: 43rem;
	min-height: 43rem;
}

.theme-origen .team-carousel--modern .team-card__face--front {
	overflow: hidden;
	padding-bottom: 1.2rem;
}

.theme-origen .team-carousel--modern .team-card__face--back {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 1.2rem;
}

.theme-origen .team-carousel--modern .team-card__face--back::-webkit-scrollbar {
	display: none;
}

.theme-origen .team-carousel--modern .team-card__summary {
	min-height: 8.8rem;
}

.theme-origen .team-carousel--modern .tag-cloud {
	min-height: 5.3rem;
}

.theme-origen .team-carousel--modern .team-card__actions {
	padding-top: 0.7rem;
	padding-bottom: 0.35rem;
}

.theme-origen .team-carousel--modern .team-card__actions .btn {
	min-height: 2.9rem;
}

@media (max-width: 1200px) {
	.theme-origen .voice-grid {
		grid-template-columns: 1fr;
	}

	.theme-origen .split-layout--about-home {
		grid-template-columns: 1fr;
	}

	.theme-origen .contact-reservation-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 840px) {
	.theme-origen .team-carousel--modern .team-card__frame,
	.theme-origen .team-carousel--modern .team-card__surface {
		height: 40rem;
		min-height: 40rem;
	}
}

/* 2.1.6 contact + icon polish */
.theme-origen .voice-grid + .testimonials-grid {
	margin-top: 1.7rem;
}

.theme-origen .testimonial-card p::before {
	content: "\201C";
}

.theme-origen .testimonial-card p::after {
	content: "\201D";
}

.theme-origen .feature-card__icon,
.theme-origen .service-symbol,
.theme-origen .article-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-dark);
	background:
		radial-gradient(circle at 28% 22%, rgba(103, 247, 233, 0.72), rgba(103, 247, 233, 0) 62%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 251, 249, 0.96));
	border: 1px solid rgba(67, 199, 207, 0.18);
	box-shadow:
		0 12px 28px rgba(67, 199, 207, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.theme-origen .feature-card__icon svg,
.theme-origen .service-symbol svg,
.theme-origen .article-card__icon svg {
	width: 1.55rem;
	height: 1.55rem;
	display: block;
}

.theme-origen .feature-card__icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.theme-origen .team-card--preview .team-card__face {
	padding-bottom: 1.15rem;
}

/* 2.2.0 dynamic editorial motion system */
:root {
	--accent: #43c7cf;
	--accent-dark: #209da6;
	--accent-soft: rgba(67, 199, 207, 0.14);
	--accent-glow: rgba(67, 199, 207, 0.24);
	--ink: #0f2c39;
	--muted: #263c45;
	--surface: #ffffff;
	--surface-soft: #f6feff;
	--surface-calm: #eafbfc;
	--surface-warm: #fff8f1;
	--radius-card: 30px;
	--radius-card-lg: 36px;
	--shadow-card: 0 20px 60px rgba(15, 44, 57, 0.08);
	--shadow-card-hover: 0 30px 90px rgba(15, 44, 57, 0.14);
	--glow: 0 22px 56px rgba(67, 199, 207, 0.24);
	--success-soft: rgba(67, 199, 207, 0.14);
}

body.theme-origen {
	background:
		radial-gradient(circle at top left, rgba(67, 199, 207, 0.15), transparent 30rem),
		radial-gradient(circle at top right, rgba(67, 199, 207, 0.12), transparent 26rem),
		linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
}

.reveal {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	filter: blur(8px);
	transition:
		opacity 700ms ease,
		transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 700ms ease;
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform, filter;
}

.reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	filter: blur(0);
}

.reveal--fade {
	transform: none;
}

.reveal--left {
	transform: translate3d(-28px, 0, 0);
}

.reveal--right {
	transform: translate3d(28px, 0, 0);
}

.reveal--scale {
	transform: scale(0.96);
}

.reveal--image {
	transform: translate3d(0, 28px, 0) scale(0.985);
}

.reveal--up {
	transform: translate3d(0, 28px, 0);
}

.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--scale.is-visible,
.reveal--image.is-visible,
.reveal--up.is-visible {
	transform: translate3d(0, 0, 0) scale(1);
}

.site-header {
	transition:
		padding 220ms ease,
		background-color 220ms ease,
		box-shadow 220ms ease,
		border-color 220ms ease,
		backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(22px) saturate(1.15);
	border-bottom-color: rgba(67, 199, 207, 0.16);
	box-shadow: 0 18px 50px rgba(15, 44, 57, 0.1);
}

.site-header.is-scrolled .site-header__inner {
	padding-block: 0.65rem;
}

.theme-origen .surface-block,
.theme-origen .surface-block--muted,
.theme-origen .surface-block--gradient,
.theme-origen .hero--home {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.theme-origen .surface-block::before,
.theme-origen .hero--home::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 12% 20%, rgba(67, 199, 207, 0.16), transparent 24rem),
		radial-gradient(circle at 90% 82%, rgba(67, 199, 207, 0.1), transparent 22rem);
	pointer-events: none;
}

.theme-origen .surface-block--muted {
	background: linear-gradient(180deg, #f6feff 0%, #ffffff 100%);
}

.theme-origen .surface-block--gradient {
	background: linear-gradient(135deg, rgba(234, 251, 252, 0.96), rgba(255, 255, 255, 0.94));
}

.theme-origen .hero--home {
	position: relative;
	isolation: isolate;
	background: transparent;
	border-bottom: 1px solid rgba(67, 199, 207, 0.08);
}

.theme-origen .hero--home::before {
	z-index: -2;
	background:
		radial-gradient(circle at 72% 18%, rgba(67, 199, 207, 0.22), transparent 30rem),
		radial-gradient(circle at 12% 76%, rgba(67, 199, 207, 0.12), transparent 26rem),
		linear-gradient(180deg, #ffffff 0%, #f6feff 100%);
}

.theme-origen .hero-visual {
	position: relative;
}

.theme-origen .hero-visual::before {
	content: "";
	position: absolute;
	inset: 8% -6% -4% 10%;
	z-index: -1;
	border-radius: 999px;
	background: rgba(67, 199, 207, 0.2);
	filter: blur(48px);
	pointer-events: none;
}

.theme-origen .hero-card {
	border: 1px solid rgba(255, 255, 255, 0.2);
	background:
		radial-gradient(circle at 20% 16%, rgba(67, 199, 207, 0.34), transparent 30%),
		linear-gradient(145deg, #102a2e 0%, #183e42 60%, #209da6 100%);
	box-shadow:
		0 32px 90px rgba(15, 44, 57, 0.22),
		0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.theme-origen .hero-card__media img {
	transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
	.theme-origen .hero-card:hover .hero-card__media img {
		transform: scale(1.045);
	}
}

.theme-origen :where(
	.feature-card,
	.voice-card,
	.testimonial-card,
	.service-card,
	.metric-card,
	.info-card,
	.story-card,
	.process-card,
	.contact-card,
	.booking-option-card,
	.installation-card,
	.page-hero__card,
	.team-card__surface
) {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-radius: var(--radius-card);
	border: 1px solid rgba(15, 44, 57, 0.08);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 254, 255, 0.92));
	box-shadow: var(--shadow-card);
	transition:
		transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 260ms ease,
		border-color 260ms ease,
		background 260ms ease;
}

.theme-origen :where(
	.feature-card,
	.voice-card,
	.testimonial-card,
	.service-card,
	.metric-card,
	.info-card,
	.story-card,
	.process-card,
	.contact-card,
	.booking-option-card,
	.installation-card,
	.page-hero__card,
	.team-card__surface
)::before {
	content: "";
	position: absolute;
	inset: -1px;
	z-index: -2;
	border-radius: inherit;
	background:
		radial-gradient(circle at 18% 16%, rgba(67, 199, 207, 0.18), transparent 34%),
		radial-gradient(circle at 86% 92%, rgba(67, 199, 207, 0.1), transparent 38%);
	opacity: 0.9;
	pointer-events: none;
}

.theme-origen :where(
	.feature-card,
	.voice-card,
	.testimonial-card,
	.service-card,
	.metric-card,
	.info-card,
	.story-card,
	.process-card,
	.contact-card,
	.booking-option-card,
	.installation-card,
	.page-hero__card,
	.team-card__surface
)::after {
	content: "";
	position: absolute;
	right: -4rem;
	bottom: -4rem;
	z-index: -1;
	width: 11rem;
	height: 11rem;
	border-radius: 999px;
	background: rgba(67, 199, 207, 0.1);
	pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
	.theme-origen :where(
		.feature-card,
		.voice-card,
		.testimonial-card,
		.service-card,
		.metric-card,
		.info-card,
		.story-card,
		.process-card,
		.contact-card,
		.booking-option-card,
		.installation-card,
		.page-hero__card,
		.team-card__surface
	):hover {
		transform: translateY(-6px);
		border-color: rgba(67, 199, 207, 0.28);
		box-shadow: var(--shadow-card-hover);
	}
}

.card-variant--calm,
.card-variant--calm .team-card__surface {
	background:
		radial-gradient(circle at 18% 12%, rgba(67, 199, 207, 0.2), transparent 34%),
		linear-gradient(135deg, #eafbfc 0%, #ffffff 58%, #d7f5f7 100%);
}

.card-variant--warm,
.card-variant--warm .team-card__surface {
	background:
		radial-gradient(circle at 82% 16%, rgba(67, 199, 207, 0.14), transparent 34%),
		linear-gradient(135deg, #fff8f1 0%, #ffffff 56%, #eafbfc 100%);
}

.card-variant--soft,
.card-variant--soft .team-card__surface {
	background:
		radial-gradient(circle at 12% 88%, rgba(67, 199, 207, 0.14), transparent 34%),
		linear-gradient(135deg, #f6feff 0%, #ffffff 56%, #eafbfc 100%);
}

.card-variant--deep,
.card-variant--deep .team-card__surface {
	background:
		radial-gradient(circle at 18% 14%, rgba(67, 199, 207, 0.35), transparent 36%),
		linear-gradient(135deg, #102a2e 0%, #183e42 100%);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.16);
}

.card-variant--deep :is(p, h3, strong, span),
.card-variant--deep .eyebrow,
.card-variant--deep .team-role,
.card-variant--deep .team-focus,
.card-variant--deep .team-approach,
.card-variant--deep .team-card__bio {
	color: rgba(255, 255, 255, 0.88);
}

.theme-origen .page-hero__card,
.theme-origen .installation-card,
.theme-origen .home-booking-layout__media {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.theme-origen .page-hero__card::before,
.theme-origen .installation-card::before,
.theme-origen .home-booking-layout__media::before {
	content: "";
	position: absolute;
	inset: auto 8% -14% 8%;
	height: 38%;
	z-index: -1;
	background: rgba(67, 199, 207, 0.18);
	filter: blur(38px);
	pointer-events: none;
}

.theme-origen .page-hero__card img,
.theme-origen .installation-card img,
.theme-origen .home-booking-layout__media img {
	transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
	.theme-origen .page-hero__card:hover img,
	.theme-origen .installation-card:hover img,
	.theme-origen .home-booking-layout__media:hover img {
		transform: scale(1.04);
	}
}

.theme-origen .faq-item {
	overflow: clip;
}

.theme-origen .faq-trigger {
	transition:
		background-color 220ms ease,
		color 220ms ease;
}

.theme-origen .faq-panel {
	display: grid;
	grid-template-rows: 0fr;
	padding: 0 1.35rem;
	opacity: 0;
	transition:
		grid-template-rows 260ms ease,
		opacity 220ms ease,
		padding-bottom 220ms ease;
	padding-bottom: 0;
}

.theme-origen .faq-panel > * {
	overflow: hidden;
}

.theme-origen .faq-item.is-open .faq-panel {
	grid-template-rows: 1fr;
	opacity: 1;
	padding-bottom: 1.25rem;
}

.theme-origen .faq-item:hover .faq-panel,
.theme-origen .faq-item:focus-within .faq-panel {
	grid-template-rows: 1fr;
	opacity: 1;
	padding-bottom: 1.25rem;
}

.theme-origen .faq-item:hover .faq-trigger,
.theme-origen .faq-item:focus-within .faq-trigger,
.theme-origen .faq-item.is-open .faq-trigger {
	background: rgba(67, 199, 207, 0.08);
}

.theme-origen .service-symbol svg,
.theme-origen .feature-card__icon svg,
.theme-origen .article-card__icon svg {
	width: 1.45rem;
	height: 1.45rem;
	stroke-width: 1.8;
}

.theme-origen .service-symbol,
.theme-origen .feature-card__icon,
.theme-origen .article-card__icon {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 1.15rem;
	color: var(--accent-dark);
	background:
		radial-gradient(circle at 30% 20%, rgba(67, 199, 207, 0.3), transparent 55%),
		rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(67, 199, 207, 0.2);
	box-shadow:
		0 14px 34px rgba(67, 199, 207, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.theme-origen .section-intro,
.theme-origen .section-intro--left,
.theme-origen .section-intro--center,
.theme-origen .section-intro--right {
	margin-inline: 0;
	text-align: left;
}

.theme-origen .section-intro p,
.theme-origen .section-intro h2 {
	margin-left: 0;
}

.theme-origen .testimonials-grid {
	margin-top: 1.5rem;
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.reveal,
	.reveal.is-visible {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
	}
}

/* 2.2.1 team card consistency + hover faq */
.card-variant--calm,
.card-variant--warm,
.card-variant--soft,
.card-variant--calm .team-card__surface,
.card-variant--warm .team-card__surface,
.card-variant--soft .team-card__surface {
	color: var(--ink);
}

.card-variant--calm :is(h3, strong),
.card-variant--warm :is(h3, strong),
.card-variant--soft :is(h3, strong),
.card-variant--calm .faq-trigger span,
.card-variant--warm .faq-trigger span,
.card-variant--soft .faq-trigger span {
	color: var(--ink);
}

.card-variant--calm :is(p, .team-role, .team-focus, .team-approach, .team-card__bio),
.card-variant--warm :is(p, .team-role, .team-focus, .team-approach, .team-card__bio),
.card-variant--soft :is(p, .team-role, .team-focus, .team-approach, .team-card__bio) {
	color: var(--muted);
}

.theme-origen .team-grid--preview {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	align-items: stretch;
}

.theme-origen .team-card {
	background: transparent;
	border: 0;
	box-shadow: none;
}

.theme-origen .team-card__frame,
.theme-origen .team-card__surface {
	height: var(--team-card-height, 40.75rem);
	min-height: var(--team-card-height, 40.75rem);
}

.theme-origen .team-card__surface {
	border-radius: var(--radius-card);
	transform-style: preserve-3d;
}

.theme-origen .team-card__face {
	border: 1px solid rgba(15, 44, 57, 0.08);
	box-shadow: var(--shadow-card);
}

.theme-origen .team-card__face--front {
	padding-bottom: 1.25rem;
}

.theme-origen .team-card__face--back {
	display: block;
	padding: 1rem;
	background: linear-gradient(180deg, #eefcfd 0%, #f9ffff 100%);
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.theme-origen .team-card__face--back::-webkit-scrollbar {
	display: none;
}

.theme-origen .team-card__back-panel {
	display: grid;
	align-content: start;
	gap: 0.9rem;
	min-height: 100%;
	padding: 1.25rem 1.25rem 1.45rem;
	border-radius: 1.55rem;
	background: #ffffff;
	border: 1px solid rgba(67, 199, 207, 0.16);
	box-shadow:
		0 18px 42px rgba(15, 44, 57, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.theme-origen .team-card__portrait {
	min-height: 14.75rem;
	padding: 0;
}

.theme-origen .team-card__portrait::before {
	display: none;
}

.theme-origen .team-card__portrait-shell {
	width: 100%;
	max-width: none;
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
	border: 0;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: none;
}

.theme-origen .team-card__portrait-shell::before,
.theme-origen .team-card__portrait-shell::after {
	display: none;
}

.theme-origen .team-card__portrait-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.theme-origen .team-card__body {
	gap: 0.9rem;
	padding: 1.35rem 1.35rem 1.65rem;
}

.theme-origen .team-card__summary {
	display: grid;
	gap: 0.65rem;
	min-height: 8.7rem;
}

.theme-origen .team-card__body > .tag-cloud,
.theme-origen .team-card__face--back .tag-cloud {
	min-height: 5rem;
	align-content: flex-start;
}

.theme-origen .team-card__back-header {
	display: grid;
	gap: 0.3rem;
	padding-bottom: 0.2rem;
	border-bottom: 1px solid rgba(67, 199, 207, 0.14);
}

.theme-origen .team-card__back-header h3,
.theme-origen .team-card__back-header .team-role,
.theme-origen .team-card__back-header .team-approach,
.theme-origen .team-card__bio,
.theme-origen .team-card__back-panel .team-meta p {
	color: var(--ink);
}

.theme-origen .team-card__bio,
.theme-origen .team-card__back-panel .team-meta p {
	color: var(--muted);
}

.theme-origen .team-card__back-header h3 {
	margin-bottom: 0;
	font-size: clamp(1.45rem, 1.8vw, 1.75rem);
}

.theme-origen .team-card__bio {
	margin-top: 0.15rem;
}

.theme-origen .team-meta {
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(67, 199, 207, 0.18);
}

.theme-origen .team-card__actions {
	margin-top: auto;
	padding-top: 0.8rem;
	padding-bottom: 0.55rem;
}

.theme-origen .team-card__actions .btn:last-child {
	margin-bottom: 0.35rem;
}

.theme-origen .card-variant--deep:not(.team-card),
.theme-origen .card-variant--deep .team-card__surface {
	background:
		radial-gradient(circle at 18% 14%, rgba(67, 199, 207, 0.35), transparent 36%),
		linear-gradient(135deg, #102a2e 0%, #183e42 100%) !important;
	border-color: rgba(255, 255, 255, 0.16) !important;
}

.theme-origen .card-variant--deep:not(.team-card)::after,
.theme-origen .card-variant--deep .team-card__surface::after {
	background: rgba(67, 199, 207, 0.16);
}

.theme-origen .faq-trigger {
	cursor: default;
}

@media (hover: hover) and (pointer: fine) {
	.theme-origen .faq-trigger {
		cursor: pointer;
	}
}

@media (max-width: 1200px) {
	.theme-origen .team-grid--preview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.theme-origen .team-grid--preview {
		grid-template-columns: 1fr;
	}

	.theme-origen .team-card__frame,
	.theme-origen .team-card__surface {
		height: auto;
		min-height: 38rem;
	}
}

.theme-origen .team-card--preview .team-card__body {
	padding-bottom: 0.75rem;
}

.theme-origen .team-card--preview .team-card__actions {
	padding-top: 0.75rem;
	padding-bottom: 0.4rem;
}

.theme-origen .team-card--preview .team-card__actions .btn:last-child,
.theme-origen .team-carousel--modern .team-card__actions .btn:last-child {
	margin-bottom: 0.15rem;
}

.theme-origen .contact-booking--centered {
	width: min(100%, 72rem);
	max-width: none;
}

.theme-origen .stacked-actions--agenda-online {
	margin: 0 0 1.05rem;
}

.theme-origen .stacked-actions--agenda-online .btn {
	min-width: 14.5rem;
}

.theme-origen .contact-booking--centered .booking-panel {
	width: 100%;
}

/* Final override for the official Hostinger build: stable team card flip. */
.theme-origen .team-card__surface {
	position: relative;
	height: 100%;
	min-height: var(--team-card-height, 42rem);
	transform: none !important;
	transform-style: flat;
}

.theme-origen .team-card.is-flipped .team-card__surface {
	transform: none !important;
}

.theme-origen .team-card__face {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition:
		opacity 320ms ease,
		transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
		visibility 320ms ease;
}

.theme-origen .team-card__face--front {
	z-index: 2;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(0, 0, 0) !important;
}

.theme-origen .team-card__face--back {
	z-index: 1;
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	padding: 1.25rem;
	transform: translate3d(0, 1rem, 0) !important;
	background:
		radial-gradient(circle at 16% 12%, rgba(67, 199, 207, 0.18), transparent 24%),
		radial-gradient(circle at 86% 88%, rgba(67, 199, 207, 0.12), transparent 22%),
		linear-gradient(180deg, #f7feff 0%, #eefcfd 100%);
	overflow: hidden;
}

.theme-origen .team-card.is-flipped .team-card__face--front {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(0, -0.85rem, 0) !important;
}

.theme-origen .team-card.is-flipped .team-card__face--back {
	z-index: 3;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(0, 0, 0) !important;
}

.theme-origen .team-card__back-panel {
	display: flex;
	flex-direction: column;
	gap: 1.05rem;
	min-height: 100%;
	padding: 0.05rem 0 0.35rem;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.theme-origen .team-card__back-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.75rem;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid rgba(67, 199, 207, 0.16);
}

.theme-origen .team-card__back-header h3 {
	margin-bottom: 0;
	font-size: clamp(1.55rem, 2vw, 1.85rem);
	line-height: 1.02;
}

.theme-origen .team-card__bio {
	margin: 0;
	color: var(--muted);
	line-height: 1.72;
}

.theme-origen .team-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	align-items: stretch;
	grid-auto-rows: 1fr;
	padding: 0;
	background: transparent;
	border: 0;
}

.theme-origen .team-meta__item {
	display: flex;
	align-items: center;
	min-height: 5.5rem;
	padding: 1rem 1.05rem;
	border-radius: 1.1rem;
	background:
		radial-gradient(circle at 18% 14%, rgba(67, 199, 207, 0.18), transparent 48%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(240, 252, 253, 0.48) 100%);
	border: 1px solid rgba(67, 199, 207, 0.14);
	box-shadow:
		0 12px 28px rgba(15, 44, 57, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(14px) saturate(1.08);
	-webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.theme-origen .team-meta__item p {
	margin: 0;
	width: 100%;
	color: var(--muted);
	line-height: 1.52;
}

.theme-origen .team-meta__item strong {
	display: block;
	margin-bottom: 0.18rem;
	color: var(--ink);
}

.theme-origen .tag-cloud--back {
	gap: 0.55rem;
	min-height: 0;
	margin-top: 0.15rem;
	padding-top: 0.15rem;
}

.theme-origen .team-card__actions {
	margin-top: auto;
	padding-top: 1.05rem;
	padding-bottom: 0.95rem;
}

.theme-origen .team-card__actions--back {
	padding-top: 1.2rem;
	padding-bottom: 0.55rem;
}

.theme-origen .team-card__actions .btn:last-child {
	margin-bottom: 0.8rem;
}

.theme-origen .team-card__face--back .btn:last-child {
	margin-bottom: 0;
}

@media (max-width: 720px) {
	.theme-origen .team-card__face--back {
		padding: 1rem;
	}

	.theme-origen .team-card__back-panel {
		padding: 0;
	}

	.theme-origen .team-meta {
		grid-template-columns: 1fr;
	}
}

/* Home professionals cards: compact preview variant. */
.theme-origen .team-grid--preview {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	align-items: stretch;
}

.theme-origen .team-card--preview .team-card__frame,
.theme-origen .team-card--preview .team-card__surface {
	height: auto;
	min-height: 0;
}

.theme-origen .team-card--preview .team-card__surface {
	position: relative;
	transform-style: flat;
}

.theme-origen .team-card--preview .team-card__face {
	position: relative;
	inset: auto;
	padding: 0;
	min-height: 100%;
}

.theme-origen .team-card--preview .team-card__portrait {
	min-height: 12.75rem;
}

.theme-origen .team-card--preview .team-card__portrait-shell {
	aspect-ratio: auto;
}

.theme-origen .team-card--preview .team-card__body {
	gap: 0.8rem;
	padding: 1rem 1rem 1.15rem;
}

.theme-origen .team-card--preview .team-card__summary {
	gap: 0.45rem;
	min-height: 7rem;
}

.theme-origen .team-card--preview h3 {
	font-size: clamp(1.15rem, 1.45vw, 1.45rem);
	line-height: 1.08;
}

.theme-origen .team-card--preview .team-role,
.theme-origen .team-card--preview .team-focus,
.theme-origen .team-card--preview .team-approach {
	font-size: 0.9rem;
	line-height: 1.42;
}

.theme-origen .team-card--preview .team-role {
	letter-spacing: 0.08em;
	font-size: 0.78rem;
}

.theme-origen .team-card--preview .team-card__body > .tag-cloud {
	min-height: 4rem;
	gap: 0.5rem;
}

.theme-origen .team-card--preview .tag {
	font-size: 0.74rem;
	padding: 0.3rem 0.68rem;
}

.theme-origen .team-card--preview .team-card__actions {
	padding-top: 0.85rem;
	padding-bottom: 0.45rem;
}

.theme-origen .team-card--preview .team-card__actions .btn {
	min-height: 3rem;
	font-size: 0.92rem;
}

.theme-origen .team-card--preview .team-card__face--back {
	padding: 1rem;
}

.theme-origen .team-card--preview .team-card__back-panel {
	gap: 0.9rem;
	padding-bottom: 0.2rem;
}

.theme-origen .team-card--preview .team-meta__item {
	min-height: 4.85rem;
}

.theme-origen .team-card--preview .tag-cloud--back {
	gap: 0.5rem;
}

@media (max-width: 1200px) {
	.theme-origen .team-grid--preview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.theme-origen .team-grid--preview {
		grid-template-columns: 1fr;
	}

	.theme-origen .team-card--preview .team-card__frame,
	.theme-origen .team-card--preview .team-card__surface {
		height: auto;
		min-height: 0;
	}
}

/* Home services: visual-only layout update based on the provided reference. */
.theme-origen #services-preview.home-services-section {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(3.4rem, 5.8vw, 5.8rem) 0;
	background:
		linear-gradient(
			90deg,
			rgba(248, 255, 254, 0.99) 0%,
			rgba(248, 255, 254, 0.97) 31%,
			rgba(248, 255, 254, 0.84) 50%,
			rgba(248, 255, 254, 0.38) 69%,
			rgba(248, 255, 254, 0.1) 100%
		),
		radial-gradient(circle at 18% 18%, rgba(67, 199, 207, 0.2), transparent 25rem),
		url("home-services-bg.png") center / cover no-repeat;
}

.theme-origen #services-preview.home-services-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(234, 251, 252, 0.22) 100%),
		radial-gradient(circle at 35% 84%, rgba(67, 199, 207, 0.16), transparent 22rem);
	pointer-events: none;
}

.theme-origen #services-preview.home-services-section::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -12rem;
	z-index: 0;
	width: min(48rem, 64vw);
	height: min(48rem, 64vw);
	border-radius: 999px;
	background: rgba(67, 199, 207, 0.1);
	filter: blur(28px);
	pointer-events: none;
}

.theme-origen #services-preview.home-services-section .origen-shell {
	position: relative;
	z-index: 1;
}

.theme-origen #services-preview.home-services-section .section-intro,
.theme-origen #services-preview.home-services-section .service-grid--featured,
.theme-origen #services-preview.home-services-section .stacked-actions--services {
	width: min(100%, 61rem);
}

.theme-origen #services-preview.home-services-section .section-intro {
	margin-bottom: 1.25rem;
}

.theme-origen #services-preview.home-services-section .section-intro h2 {
	max-width: 52rem;
	font-size: clamp(2.45rem, 4.1vw, 4.8rem);
	line-height: 0.94;
	letter-spacing: -0.075em;
}

.theme-origen #services-preview.home-services-section .section-intro p {
	max-width: 42rem;
	margin-top: 0.75rem;
}

.theme-origen #services-preview.home-services-section .service-grid--featured {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(0.9rem, 1.2vw, 1.15rem);
	align-items: stretch;
}

.theme-origen #services-preview.home-services-section .service-card {
	min-height: 0;
	padding: clamp(1rem, 1.2vw, 1.25rem);
	border-radius: 1.35rem;
	border-color: rgba(15, 44, 57, 0.1);
	background:
		radial-gradient(circle at 96% 92%, rgba(67, 199, 207, 0.18), transparent 28%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
	box-shadow:
		0 18px 52px rgba(15, 44, 57, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(16px) saturate(1.08);
	-webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.theme-origen #services-preview.home-services-section .service-card__content {
	gap: 0.66rem;
	min-height: 0;
}

.theme-origen #services-preview.home-services-section .service-card__top {
	align-items: flex-start;
	gap: 0.75rem;
}

.theme-origen #services-preview.home-services-section .service-symbol {
	width: 2.85rem;
	height: 2.85rem;
	border-radius: 999px;
	background:
		radial-gradient(circle at 30% 20%, rgba(67, 199, 207, 0.2), transparent 60%),
		rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(67, 199, 207, 0.22);
	box-shadow: 0 10px 24px rgba(67, 199, 207, 0.1);
}

.theme-origen #services-preview.home-services-section .service-symbol svg {
	width: 1.35rem;
	height: 1.35rem;
}

.theme-origen #services-preview.home-services-section .pill {
	min-height: 1.8rem;
	padding: 0.36rem 0.72rem;
	border-color: rgba(67, 199, 207, 0.18);
	background: rgba(234, 251, 252, 0.9);
	font-size: 0.72rem;
	color: var(--accent-dark);
}

.theme-origen #services-preview.home-services-section .service-card h3 {
	font-size: clamp(1.18rem, 1.45vw, 1.52rem);
	line-height: 1.08;
	letter-spacing: -0.045em;
}

.theme-origen #services-preview.home-services-section .service-copy {
	margin: 0;
	font-size: clamp(0.86rem, 0.9vw, 0.98rem);
	line-height: 1.55;
	color: rgba(15, 44, 57, 0.78);
}

.theme-origen #services-preview.home-services-section .service-meta {
	gap: 0.42rem;
}

.theme-origen #services-preview.home-services-section .service-meta span {
	min-height: 1.72rem;
	padding: 0.28rem 0.62rem;
	background: rgba(67, 199, 207, 0.12);
	font-size: 0.72rem;
}

.theme-origen #services-preview.home-services-section .service-details {
	margin-top: 0.05rem;
}

.theme-origen #services-preview.home-services-section .tag-cloud {
	gap: 0.43rem;
}

.theme-origen #services-preview.home-services-section .tag {
	padding: 0.28rem 0.6rem;
	background: rgba(255, 255, 255, 0.68);
	border-color: rgba(67, 199, 207, 0.18);
	font-size: 0.7rem;
}

.theme-origen #services-preview.home-services-section .service-card__actions {
	margin-top: 0.82rem;
}

.theme-origen #services-preview.home-services-section .service-card__actions .btn {
	width: 100%;
	min-height: 2.85rem;
	border-radius: 0.82rem;
	font-size: 0.86rem;
}

.theme-origen #services-preview.home-services-section .stacked-actions--services {
	justify-content: flex-start;
	margin-top: 1.45rem;
}

.theme-origen #services-preview.home-services-section .stacked-actions--services .btn {
	min-width: 13.5rem;
}

.theme-origen #services-preview.home-services-section .btn-secondary--light {
	background: rgba(255, 255, 255, 0.78);
	border-color: rgba(67, 199, 207, 0.54);
	color: var(--accent-dark);
	box-shadow: 0 12px 26px rgba(15, 44, 57, 0.06);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.theme-origen #services-preview.home-services-section .btn-primary--highlight {
	background: linear-gradient(135deg, #43c7cf 0%, #209da6 100%);
	border-color: rgba(67, 199, 207, 0.55);
	color: #ffffff;
	box-shadow: 0 16px 36px rgba(67, 199, 207, 0.26);
}

@media (hover: hover) and (pointer: fine) {
	.theme-origen #services-preview.home-services-section .service-card:hover {
		transform: translateY(-5px);
		border-color: rgba(67, 199, 207, 0.28);
		box-shadow:
			0 26px 72px rgba(15, 44, 57, 0.14),
			inset 0 1px 0 rgba(255, 255, 255, 0.84);
	}
}

@media (max-width: 1120px) {
	.theme-origen #services-preview.home-services-section {
		background:
			linear-gradient(90deg, rgba(248, 255, 254, 0.99) 0%, rgba(248, 255, 254, 0.94) 64%, rgba(248, 255, 254, 0.42) 100%),
			url("home-services-bg.png") center right / cover no-repeat;
	}

	.theme-origen #services-preview.home-services-section .section-intro,
	.theme-origen #services-preview.home-services-section .service-grid--featured,
	.theme-origen #services-preview.home-services-section .stacked-actions--services {
		width: min(100%, 56rem);
	}
}

@media (max-width: 840px) {
	.theme-origen #services-preview.home-services-section {
		padding: clamp(3rem, 10vw, 4.25rem) 0;
		background:
			linear-gradient(180deg, rgba(248, 255, 254, 0.97) 0%, rgba(248, 255, 254, 0.93) 100%),
			url("home-services-bg.png") 68% center / cover no-repeat;
	}

	.theme-origen #services-preview.home-services-section .section-intro h2 {
		font-size: clamp(2.15rem, 11vw, 3.25rem);
		letter-spacing: -0.06em;
	}

	.theme-origen #services-preview.home-services-section .service-grid--featured {
		grid-template-columns: 1fr;
	}

	.theme-origen #services-preview.home-services-section .stacked-actions--services {
		align-items: stretch;
	}

	.theme-origen #services-preview.home-services-section .stacked-actions--services .btn {
		width: 100%;
		min-width: 0;
	}
}

/* Home why section: visual-only background and card composition. */
.theme-origen .home-why-section {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(4.3rem, 6.4vw, 6.8rem) 0;
	background:
		linear-gradient(
			90deg,
			rgba(248, 255, 254, 0.99) 0%,
			rgba(248, 255, 254, 0.96) 30%,
			rgba(248, 255, 254, 0.78) 50%,
			rgba(248, 255, 254, 0.24) 72%,
			rgba(248, 255, 254, 0.06) 100%
		),
		radial-gradient(circle at 12% 18%, rgba(67, 199, 207, 0.18), transparent 24rem),
		url("home-why-bg.png") center / cover no-repeat;
}

.theme-origen .home-why-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(234, 251, 252, 0.2)),
		radial-gradient(circle at 34% 86%, rgba(67, 199, 207, 0.13), transparent 22rem);
	pointer-events: none;
}

.theme-origen .home-why-section::after {
	content: "";
	position: absolute;
	left: -8rem;
	bottom: -14rem;
	z-index: 0;
	width: min(48rem, 62vw);
	height: min(48rem, 62vw);
	border-radius: 999px;
	background: rgba(67, 199, 207, 0.1);
	filter: blur(36px);
	pointer-events: none;
}

.theme-origen .home-why-section .origen-shell {
	position: relative;
	z-index: 1;
}

.theme-origen .home-why-section .section-intro,
.theme-origen .home-why-section .feature-grid--two-up {
	width: min(100%, 62rem);
}

.theme-origen .home-why-section .section-intro {
	margin-bottom: clamp(1.65rem, 2.4vw, 2.2rem);
}

.theme-origen .home-why-section .section-intro .eyebrow {
	color: var(--accent-dark);
	letter-spacing: 0.22em;
}

.theme-origen .home-why-section .section-intro h2 {
	max-width: 55rem;
	font-size: clamp(2.65rem, 4.3vw, 5rem);
	line-height: 0.95;
	letter-spacing: -0.075em;
}

.theme-origen .home-why-section .section-intro p {
	max-width: 44rem;
	margin-top: 0.9rem;
	font-size: clamp(1rem, 1.1vw, 1.16rem);
	color: rgba(15, 44, 57, 0.78);
}

.theme-origen .home-why-section .feature-grid--two-up {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 1.35vw, 1.35rem);
	align-items: stretch;
}

.theme-origen .home-why-section .feature-card {
	min-height: clamp(13.5rem, 15vw, 17rem);
	padding: clamp(1.35rem, 1.6vw, 1.75rem);
	border-radius: 1.55rem;
	border-color: rgba(15, 44, 57, 0.08);
	background:
		radial-gradient(circle at 96% 92%, rgba(67, 199, 207, 0.16), transparent 28%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.76));
	box-shadow:
		0 20px 58px rgba(15, 44, 57, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(16px) saturate(1.08);
	-webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.theme-origen .home-why-section .feature-card::before,
.theme-origen .home-why-section .feature-card::after {
	pointer-events: none;
}

.theme-origen .home-why-section .feature-card__icon {
	width: 3rem;
	height: 3rem;
	margin-bottom: clamp(1rem, 1.3vw, 1.35rem);
	border-radius: 999px;
	background:
		radial-gradient(circle at 30% 20%, rgba(67, 199, 207, 0.22), transparent 58%),
		rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(67, 199, 207, 0.24);
	color: var(--accent-dark);
	box-shadow: 0 12px 28px rgba(67, 199, 207, 0.12);
}

.theme-origen .home-why-section .feature-card__icon svg {
	width: 1.4rem;
	height: 1.4rem;
	stroke-width: 1.85;
}

.theme-origen .home-why-section .feature-card h3 {
	margin-bottom: 0.72rem;
	font-size: clamp(1.35rem, 1.75vw, 1.9rem);
	line-height: 1.06;
	letter-spacing: -0.055em;
}

.theme-origen .home-why-section .feature-card p {
	margin: 0;
	font-size: clamp(0.98rem, 1vw, 1.08rem);
	line-height: 1.68;
	color: rgba(15, 44, 57, 0.76);
}

@media (hover: hover) and (pointer: fine) {
	.theme-origen .home-why-section .feature-card:hover {
		transform: translateY(-5px);
		border-color: rgba(67, 199, 207, 0.28);
		box-shadow:
			0 28px 76px rgba(15, 44, 57, 0.14),
			inset 0 1px 0 rgba(255, 255, 255, 0.84);
	}
}

@media (max-width: 1120px) {
	.theme-origen .home-why-section {
		background:
			linear-gradient(90deg, rgba(248, 255, 254, 0.99) 0%, rgba(248, 255, 254, 0.94) 62%, rgba(248, 255, 254, 0.32) 100%),
			url("home-why-bg.png") center right / cover no-repeat;
	}

	.theme-origen .home-why-section .section-intro,
	.theme-origen .home-why-section .feature-grid--two-up {
		width: min(100%, 58rem);
	}
}

@media (max-width: 840px) {
	.theme-origen .home-why-section {
		padding: clamp(3.2rem, 10vw, 4.5rem) 0;
		background:
			linear-gradient(180deg, rgba(248, 255, 254, 0.97) 0%, rgba(248, 255, 254, 0.92) 100%),
			url("home-why-bg.png") 64% center / cover no-repeat;
	}

	.theme-origen .home-why-section .section-intro h2 {
		font-size: clamp(2.2rem, 11vw, 3.35rem);
		letter-spacing: -0.06em;
	}

	.theme-origen .home-why-section .feature-grid--two-up {
		grid-template-columns: 1fr;
	}

	.theme-origen .home-why-section .feature-card {
		min-height: 0;
	}
}

/* Home trust section: visual-only background and compact right-aligned card system. */
.theme-origen .home-trust-section {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(4.2rem, 6.2vw, 6.6rem) 0;
	background:
		linear-gradient(
			90deg,
			rgba(248, 255, 254, 0.08) 0%,
			rgba(248, 255, 254, 0.24) 28%,
			rgba(248, 255, 254, 0.74) 52%,
			rgba(248, 255, 254, 0.97) 78%,
			rgba(248, 255, 254, 0.99) 100%
		),
		radial-gradient(circle at 76% 20%, rgba(67, 199, 207, 0.16), transparent 23rem),
		url("home-trust-bg.png") center / cover no-repeat;
}

.theme-origen .home-trust-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 248, 241, 0.12)),
		radial-gradient(circle at 70% 86%, rgba(67, 199, 207, 0.12), transparent 21rem);
	pointer-events: none;
}

.theme-origen .home-trust-section::after {
	content: "";
	position: absolute;
	right: -10rem;
	top: -12rem;
	z-index: 0;
	width: min(42rem, 58vw);
	height: min(42rem, 58vw);
	border-radius: 999px;
	background: rgba(67, 199, 207, 0.1);
	filter: blur(38px);
	pointer-events: none;
}

.theme-origen .home-trust-section .origen-shell {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.theme-origen .home-trust-section .section-intro,
.theme-origen .home-trust-section .metrics-grid--compact,
.theme-origen .home-trust-section .voice-grid,
.theme-origen .home-trust-section .testimonials-grid {
	width: min(100%, 52rem);
}

.theme-origen .home-trust-section .section-intro {
	margin-bottom: clamp(1.45rem, 2vw, 1.9rem);
	text-align: right;
}

.theme-origen .home-trust-section .section-intro .eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem;
	color: var(--accent-dark);
	letter-spacing: 0.22em;
}

.theme-origen .home-trust-section .section-intro .eyebrow::before {
	content: "";
	width: 1.85rem;
	height: 1.85rem;
	border-radius: 0.7rem;
	background:
		linear-gradient(180deg, rgba(67, 199, 207, 0.14), rgba(255, 255, 255, 0.72)),
		url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7Z' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m9 12 2 2 4-4' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 1.25rem 1.25rem no-repeat;
	border: 1px solid rgba(67, 199, 207, 0.18);
	box-shadow: 0 12px 28px rgba(67, 199, 207, 0.12);
}

.theme-origen .home-trust-section .section-intro h2 {
	margin-left: auto;
	max-width: 50rem;
	font-size: clamp(2.55rem, 4vw, 4.7rem);
	line-height: 0.98;
	letter-spacing: -0.072em;
}

.theme-origen .home-trust-section .section-intro p {
	margin-left: auto;
	max-width: 43rem;
	font-size: clamp(1rem, 1.05vw, 1.14rem);
	color: rgba(15, 44, 57, 0.76);
}

.theme-origen .home-trust-section .metrics-grid--compact,
.theme-origen .home-trust-section .voice-grid,
.theme-origen .home-trust-section .testimonials-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.85rem, 1.1vw, 1.1rem);
}

.theme-origen .home-trust-section .metrics-grid--compact {
	margin-bottom: clamp(0.9rem, 1.2vw, 1.15rem);
}

.theme-origen .home-trust-section .voice-grid {
	margin-bottom: clamp(0.9rem, 1.2vw, 1.15rem);
}

.theme-origen .home-trust-section .metric-card,
.theme-origen .home-trust-section .voice-card,
.theme-origen .home-trust-section .testimonial-card {
	border-radius: 1.35rem;
	border-color: rgba(15, 44, 57, 0.08);
	background:
		radial-gradient(circle at 92% 88%, rgba(67, 199, 207, 0.12), transparent 30%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
	box-shadow:
		0 18px 52px rgba(15, 44, 57, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(16px) saturate(1.08);
	-webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.theme-origen .home-trust-section .metric-card {
	min-height: clamp(11rem, 12vw, 13.5rem);
	padding: clamp(1.15rem, 1.35vw, 1.5rem);
	justify-content: center;
}

.theme-origen .home-trust-section .metric-card strong {
	font-size: clamp(1.35rem, 1.8vw, 2rem);
	line-height: 1.05;
	color: var(--accent-dark);
}

.theme-origen .home-trust-section .metric-card p {
	margin: 0.45rem 0 0;
	font-size: clamp(0.92rem, 0.98vw, 1.04rem);
	line-height: 1.55;
	color: rgba(15, 44, 57, 0.72);
}

.theme-origen .home-trust-section .voice-card,
.theme-origen .home-trust-section .testimonial-card {
	min-height: clamp(14rem, 15vw, 17rem);
	padding: clamp(1.15rem, 1.35vw, 1.5rem);
}

.theme-origen .home-trust-section .voice-card h3 {
	position: relative;
	min-height: 0;
	margin-bottom: 1.05rem;
	padding-bottom: 0.9rem;
	font-size: clamp(1rem, 1.12vw, 1.22rem);
	line-height: 1.22;
	letter-spacing: -0.035em;
}

.theme-origen .home-trust-section .voice-card h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 2.1rem;
	height: 2px;
	border-radius: 999px;
	background: var(--accent);
}

.theme-origen .home-trust-section .voice-card p,
.theme-origen .home-trust-section .testimonial-card p {
	margin: 0;
	font-size: clamp(0.82rem, 0.88vw, 0.94rem);
	line-height: 1.65;
	color: rgba(15, 44, 57, 0.72);
}

.theme-origen .home-trust-section .testimonial-card {
	min-height: 11.5rem;
}

.theme-origen .home-trust-section .testimonial-card__quote {
	display: block;
	margin-bottom: 0.6rem;
	font-size: 2rem;
	line-height: 0.8;
	color: var(--accent-dark);
}

.theme-origen .home-trust-section .testimonial-card strong {
	margin-top: auto;
	padding-top: 0.9rem;
	font-size: 0.82rem;
	line-height: 1.35;
	color: var(--ink);
}

@media (hover: hover) and (pointer: fine) {
	.theme-origen .home-trust-section .metric-card:hover,
	.theme-origen .home-trust-section .voice-card:hover,
	.theme-origen .home-trust-section .testimonial-card:hover {
		transform: translateY(-5px);
		border-color: rgba(67, 199, 207, 0.28);
		box-shadow:
			0 26px 72px rgba(15, 44, 57, 0.14),
			inset 0 1px 0 rgba(255, 255, 255, 0.84);
	}
}

@media (max-width: 1120px) {
	.theme-origen .home-trust-section {
		background:
			linear-gradient(90deg, rgba(248, 255, 254, 0.28) 0%, rgba(248, 255, 254, 0.62) 36%, rgba(248, 255, 254, 0.98) 100%),
			url("home-trust-bg.png") center left / cover no-repeat;
	}

	.theme-origen .home-trust-section .section-intro,
	.theme-origen .home-trust-section .metrics-grid--compact,
	.theme-origen .home-trust-section .voice-grid,
	.theme-origen .home-trust-section .testimonials-grid {
		width: min(100%, 48rem);
	}
}

@media (max-width: 840px) {
	.theme-origen .home-trust-section {
		padding: clamp(3.2rem, 10vw, 4.5rem) 0;
		background:
			linear-gradient(180deg, rgba(248, 255, 254, 0.94) 0%, rgba(248, 255, 254, 0.9) 100%),
			url("home-trust-bg.png") 22% center / cover no-repeat;
	}

	.theme-origen .home-trust-section .origen-shell {
		align-items: stretch;
	}

	.theme-origen .home-trust-section .section-intro {
		text-align: left;
	}

	.theme-origen .home-trust-section .section-intro h2,
	.theme-origen .home-trust-section .section-intro p {
		margin-left: 0;
	}

	.theme-origen .home-trust-section .section-intro h2 {
		font-size: clamp(2.1rem, 10vw, 3.2rem);
		letter-spacing: -0.06em;
	}

	.theme-origen .home-trust-section .metrics-grid--compact,
	.theme-origen .home-trust-section .voice-grid,
	.theme-origen .home-trust-section .testimonials-grid {
		width: 100%;
		grid-template-columns: 1fr;
	}

	.theme-origen .home-trust-section .metric-card,
	.theme-origen .home-trust-section .voice-card,
	.theme-origen .home-trust-section .testimonial-card {
		min-height: 0;
	}
}

/* Home about section: visual-only background treatment from provided reference. */
.theme-origen .home-about-section {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(4.4rem, 6.5vw, 7rem) 0;
	background:
		linear-gradient(
			90deg,
			rgba(248, 255, 254, 0.06) 0%,
			rgba(248, 255, 254, 0.18) 26%,
			rgba(248, 255, 254, 0.72) 48%,
			rgba(248, 255, 254, 0.98) 72%,
			rgba(248, 255, 254, 1) 100%
		),
		radial-gradient(circle at 78% 30%, rgba(67, 199, 207, 0.14), transparent 24rem),
		url("home-about-bg.png") center / cover no-repeat;
}

.theme-origen .home-about-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 248, 241, 0.12)),
		radial-gradient(circle at 66% 88%, rgba(67, 199, 207, 0.12), transparent 20rem);
	pointer-events: none;
}

.theme-origen .home-about-section::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -11rem;
	z-index: 0;
	width: min(38rem, 48vw);
	height: min(22rem, 28vw);
	background: rgba(255, 255, 255, 0.32);
	filter: blur(24px);
	pointer-events: none;
}

.theme-origen .home-about-section .split-layout--about-home {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 0.86fr);
	gap: clamp(2rem, 4vw, 4.5rem);
	align-items: center;
	min-height: clamp(34rem, 48vw, 48rem);
}

.theme-origen .home-about-section .page-hero__card {
	display: none;
}

.theme-origen .home-about-section .split-layout__copy {
	grid-column: 2;
	width: 100%;
	max-width: 50rem;
	padding: clamp(0.5rem, 1.5vw, 1rem) 0;
}

.theme-origen .home-about-section .section-intro {
	margin-bottom: clamp(1.65rem, 2.3vw, 2.2rem);
}

.theme-origen .home-about-section .section-intro .eyebrow {
	color: var(--accent-dark);
	letter-spacing: 0.24em;
}

.theme-origen .home-about-section .section-intro h2 {
	max-width: 48rem;
	font-size: clamp(2.65rem, 4.25vw, 5rem);
	line-height: 0.98;
	letter-spacing: -0.075em;
}

.theme-origen .home-about-section .section-intro p {
	max-width: 45rem;
	margin-top: clamp(1rem, 1.4vw, 1.35rem);
	font-size: clamp(1rem, 1.12vw, 1.2rem);
	line-height: 1.68;
	color: rgba(15, 44, 57, 0.82);
}

.theme-origen .home-about-section .story-card {
	min-height: clamp(10.5rem, 14vw, 14rem);
	padding: clamp(1.45rem, 1.9vw, 2.05rem);
	border-radius: 1.55rem;
	border-color: rgba(15, 44, 57, 0.08);
	background:
		radial-gradient(circle at 94% 90%, rgba(67, 199, 207, 0.16), transparent 30%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
	box-shadow:
		0 22px 62px rgba(15, 44, 57, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(16px) saturate(1.08);
	-webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.theme-origen .home-about-section .story-card p {
	max-width: 42rem;
	margin: 0;
	font-size: clamp(1rem, 1.05vw, 1.12rem);
	line-height: 1.68;
	color: rgba(15, 44, 57, 0.82);
}

.theme-origen .home-about-section .story-card .stacked-actions {
	margin-top: clamp(1.35rem, 2vw, 2rem);
}

.theme-origen .home-about-section .story-card .btn-primary {
	min-width: 14rem;
	background: linear-gradient(135deg, #43c7cf 0%, #209da6 100%);
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(67, 199, 207, 0.24);
}

@media (hover: hover) and (pointer: fine) {
	.theme-origen .home-about-section .story-card:hover {
		transform: translateY(-5px);
		border-color: rgba(67, 199, 207, 0.28);
		box-shadow:
			0 28px 76px rgba(15, 44, 57, 0.14),
			inset 0 1px 0 rgba(255, 255, 255, 0.84);
	}
}

@media (max-width: 1120px) {
	.theme-origen .home-about-section {
		background:
			linear-gradient(90deg, rgba(248, 255, 254, 0.16) 0%, rgba(248, 255, 254, 0.56) 36%, rgba(248, 255, 254, 0.98) 100%),
			url("home-about-bg.png") center left / cover no-repeat;
	}

	.theme-origen .home-about-section .split-layout--about-home {
		grid-template-columns: minmax(0, 0.72fr) minmax(24rem, 1fr);
		min-height: 35rem;
	}
}

@media (max-width: 840px) {
	.theme-origen .home-about-section {
		padding: clamp(3.2rem, 10vw, 4.6rem) 0;
		background:
			linear-gradient(180deg, rgba(248, 255, 254, 0.93) 0%, rgba(248, 255, 254, 0.88) 100%),
			url("home-about-bg.png") 20% center / cover no-repeat;
	}

	.theme-origen .home-about-section .split-layout--about-home {
		display: block;
		min-height: 0;
	}

	.theme-origen .home-about-section .split-layout__copy {
		max-width: none;
		padding: 0;
	}

	.theme-origen .home-about-section .section-intro h2 {
		font-size: clamp(2.15rem, 10vw, 3.25rem);
		letter-spacing: -0.06em;
	}

	.theme-origen .home-about-section .story-card {
		min-height: 0;
	}

	.theme-origen .home-about-section .story-card .btn-primary {
		width: 100%;
	}
}

/* Home team section: visual-only background and compact preview cards. */
.theme-origen .home-team-section {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(4rem, 6.2vw, 6.4rem) 0;
	background:
		linear-gradient(
			90deg,
			rgba(248, 255, 254, 0.99) 0%,
			rgba(248, 255, 254, 0.96) 32%,
			rgba(248, 255, 254, 0.76) 52%,
			rgba(248, 255, 254, 0.28) 74%,
			rgba(248, 255, 254, 0.08) 100%
		),
		radial-gradient(circle at 18% 18%, rgba(67, 199, 207, 0.18), transparent 24rem),
		url("home-team-bg.png") center / cover no-repeat;
}

.theme-origen .home-team-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(234, 251, 252, 0.18)),
		radial-gradient(circle at 30% 86%, rgba(67, 199, 207, 0.12), transparent 22rem);
	pointer-events: none;
}

.theme-origen .home-team-section::after {
	content: "";
	position: absolute;
	left: -7rem;
	bottom: -12rem;
	z-index: 0;
	width: min(45rem, 58vw);
	height: min(45rem, 58vw);
	border-radius: 999px;
	background: rgba(67, 199, 207, 0.1);
	filter: blur(36px);
	pointer-events: none;
}

.theme-origen .home-team-section .origen-shell {
	position: relative;
	z-index: 1;
}

.theme-origen .home-team-section .section-intro,
.theme-origen .home-team-section .team-grid--preview,
.theme-origen .home-team-section .team-carousel--home,
.theme-origen .home-team-section .stacked-actions {
	width: min(100%, 75rem);
}

.theme-origen .home-team-section .section-intro {
	margin-bottom: clamp(1.6rem, 2.4vw, 2.25rem);
}

.theme-origen .home-team-section .section-intro .eyebrow {
	color: var(--accent-dark);
	letter-spacing: 0.24em;
}

.theme-origen .home-team-section .section-intro h2 {
	max-width: 58rem;
	font-size: clamp(2.5rem, 4.2vw, 4.85rem);
	line-height: 0.96;
	letter-spacing: -0.075em;
}

.theme-origen .home-team-section .section-intro p {
	max-width: 44rem;
	margin-top: 0.9rem;
	font-size: clamp(1rem, 1.08vw, 1.15rem);
	line-height: 1.66;
	color: rgba(15, 44, 57, 0.76);
}

.theme-origen .home-team-section .team-grid--preview {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(0.9rem, 1.2vw, 1.2rem);
	align-items: stretch;
}

.theme-origen .home-team-section .team-card--preview {
	height: 100%;
	border-radius: 1.45rem;
	border-color: rgba(15, 44, 57, 0.1);
	background:
		radial-gradient(circle at 96% 92%, rgba(67, 199, 207, 0.12), transparent 30%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8));
	box-shadow:
		0 18px 52px rgba(15, 44, 57, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(16px) saturate(1.08);
	-webkit-backdrop-filter: blur(16px) saturate(1.08);
	overflow: hidden;
}

.theme-origen .home-team-section .team-card--preview .team-card__frame,
.theme-origen .home-team-section .team-card--preview .team-card__surface {
	height: 100% !important;
	min-height: 0 !important;
}

.theme-origen .home-team-section .team-card--preview .team-card__surface {
	display: flex;
}

.theme-origen .home-team-section .team-card--preview .team-card__face {
	position: relative;
	inset: auto;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	padding: clamp(0.7rem, 0.85vw, 0.9rem);
	background: rgba(255, 255, 255, 0.82);
	overflow: hidden;
}

.theme-origen .home-team-section .team-card--preview .team-card__portrait {
	min-height: 0;
	margin: 0;
	padding: 0;
	border-radius: 1.05rem;
	background: transparent;
	overflow: hidden;
}

.theme-origen .home-team-section .team-card--preview .team-card__portrait-shell {
	aspect-ratio: 1 / 0.8;
	border-radius: 1.05rem;
	background: rgba(255, 255, 255, 0.7);
}

.theme-origen .home-team-section .team-card--preview .team-card__portrait-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.theme-origen .home-team-section .team-card--preview .team-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.75rem;
	padding: clamp(0.85rem, 0.95vw, 1rem) 0.05rem 0.05rem;
}

.theme-origen .home-team-section .team-card--preview .team-card__summary {
	display: flex;
	flex-direction: column;
	gap: 0.42rem;
	min-height: 8.2rem;
}

.theme-origen .home-team-section .team-card--preview .team-role {
	margin: 0;
	font-size: clamp(0.68rem, 0.72vw, 0.78rem);
	line-height: 1.35;
	letter-spacing: 0.12em;
	color: rgba(15, 44, 57, 0.78);
}

.theme-origen .home-team-section .team-card--preview h3 {
	font-size: clamp(1.08rem, 1.25vw, 1.38rem);
	line-height: 1.08;
	letter-spacing: -0.055em;
}

.theme-origen .home-team-section .team-card--preview .team-focus {
	margin: 0;
	font-size: clamp(0.78rem, 0.82vw, 0.9rem);
	line-height: 1.45;
	color: rgba(15, 44, 57, 0.78);
}

.theme-origen .home-team-section .team-card--preview .team-card__body > .tag-cloud {
	min-height: 2.85rem;
	gap: 0.38rem;
	align-content: flex-start;
}

.theme-origen .home-team-section .team-card--preview .tag {
	padding: 0.28rem 0.56rem;
	font-size: clamp(0.66rem, 0.68vw, 0.72rem);
	background: rgba(255, 255, 255, 0.74);
	border-color: rgba(67, 199, 207, 0.2);
}

.theme-origen .home-team-section .team-card--preview .team-card__actions {
	display: grid;
	gap: 0.56rem;
	margin-top: auto;
	padding: 0.55rem 0 0.1rem;
}

.theme-origen .home-team-section .team-card--preview .team-card__actions .btn {
	min-height: 2.65rem;
	border-radius: 0.82rem;
	font-size: clamp(0.76rem, 0.82vw, 0.88rem);
}

.theme-origen .home-team-section .stacked-actions {
	justify-content: flex-start;
	margin-top: clamp(1.35rem, 2vw, 2rem);
}

.theme-origen .home-team-section .stacked-actions .btn {
	min-width: 13rem;
	background: linear-gradient(135deg, #43c7cf 0%, #209da6 100%);
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(67, 199, 207, 0.24);
}

@media (hover: hover) and (pointer: fine) {
	.theme-origen .home-team-section .team-card--preview:hover {
		transform: translateY(-5px);
		border-color: rgba(67, 199, 207, 0.28);
		box-shadow:
			0 26px 72px rgba(15, 44, 57, 0.14),
			inset 0 1px 0 rgba(255, 255, 255, 0.84);
	}
}

@media (max-width: 1200px) {
	.theme-origen .home-team-section {
		background:
			linear-gradient(90deg, rgba(248, 255, 254, 0.99) 0%, rgba(248, 255, 254, 0.92) 58%, rgba(248, 255, 254, 0.34) 100%),
			url("home-team-bg.png") center right / cover no-repeat;
	}

	.theme-origen .home-team-section .team-grid--preview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.theme-origen .home-team-section {
		padding: clamp(3.2rem, 10vw, 4.6rem) 0;
		background:
			linear-gradient(180deg, rgba(248, 255, 254, 0.95) 0%, rgba(248, 255, 254, 0.9) 100%),
			url("home-team-bg.png") 68% center / cover no-repeat;
	}

	.theme-origen .home-team-section .section-intro h2 {
		font-size: clamp(2.15rem, 10vw, 3.25rem);
		letter-spacing: -0.06em;
	}

	.theme-origen .home-team-section .team-grid--preview {
		grid-template-columns: 1fr;
	}

	.theme-origen .home-team-section .team-card--preview .team-card__summary,
	.theme-origen .home-team-section .team-card--preview .team-card__body > .tag-cloud {
		min-height: 0;
	}

	.theme-origen .home-team-section .stacked-actions .btn {
		width: 100%;
	}
}

/* Home booking section: visual-only treatment for "Como agendo". */
.theme-origen .home-booking-section {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(4.4rem, 6.4vw, 6.8rem) 0;
	background:
		linear-gradient(
			90deg,
			rgba(248, 255, 254, 0.08) 0%,
			rgba(248, 255, 254, 0.22) 28%,
			rgba(248, 255, 254, 0.74) 50%,
			rgba(248, 255, 254, 0.98) 74%,
			rgba(248, 255, 254, 1) 100%
		),
		radial-gradient(circle at 72% 22%, rgba(67, 199, 207, 0.16), transparent 24rem),
		url("home-booking-bg.png") center / cover no-repeat;
}

.theme-origen .home-booking-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(234, 251, 252, 0.18)),
		radial-gradient(circle at 74% 88%, rgba(67, 199, 207, 0.12), transparent 22rem);
	pointer-events: none;
}

.theme-origen .home-booking-section::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10rem;
	z-index: 0;
	width: min(40rem, 54vw);
	height: min(22rem, 30vw);
	background: rgba(255, 255, 255, 0.28);
	filter: blur(26px);
	pointer-events: none;
}

.theme-origen .home-booking-section .home-booking-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.94fr) minmax(31rem, 0.92fr);
	gap: clamp(2rem, 4vw, 4.6rem);
	align-items: center;
	min-height: clamp(34rem, 48vw, 48rem);
}

.theme-origen .home-booking-section .home-booking-layout__copy {
	grid-column: 2;
	min-width: 0;
}

.theme-origen .home-booking-section .home-booking-layout__media {
	display: none;
}

.theme-origen .home-booking-section .section-intro {
	margin-bottom: clamp(1.6rem, 2.2vw, 2.2rem);
}

.theme-origen .home-booking-section .section-intro .eyebrow {
	color: var(--accent-dark);
	letter-spacing: 0.24em;
}

.theme-origen .home-booking-section .section-intro h2 {
	max-width: 47rem;
	font-size: clamp(2.65rem, 4.2vw, 4.9rem);
	line-height: 0.96;
	letter-spacing: -0.075em;
}

.theme-origen .home-booking-section .section-intro p {
	max-width: 45rem;
	margin-top: 1rem;
	font-size: clamp(1rem, 1.08vw, 1.17rem);
	line-height: 1.66;
	color: rgba(15, 44, 57, 0.8);
}

.theme-origen .home-booking-section .process-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.9rem, 1.15vw, 1.15rem);
	align-items: stretch;
}

.theme-origen .home-booking-section .process-card {
	min-height: clamp(15rem, 17vw, 19rem);
	padding: clamp(1.15rem, 1.45vw, 1.55rem);
	border-radius: 1.4rem;
	border-color: rgba(15, 44, 57, 0.08);
	background:
		radial-gradient(circle at 94% 92%, rgba(67, 199, 207, 0.14), transparent 30%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
	box-shadow:
		0 18px 52px rgba(15, 44, 57, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(16px) saturate(1.08);
	-webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.theme-origen .home-booking-section .process-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: clamp(1rem, 1.3vw, 1.3rem);
	border-radius: 0.9rem;
	background:
		radial-gradient(circle at 30% 20%, rgba(67, 199, 207, 0.22), transparent 60%),
		rgba(234, 251, 252, 0.9);
	border: 1px solid rgba(67, 199, 207, 0.22);
	color: var(--accent-dark);
	font-size: 1.1rem;
	font-weight: 800;
	box-shadow: 0 12px 28px rgba(67, 199, 207, 0.12);
}

.theme-origen .home-booking-section .process-card h3 {
	margin: 0 0 0.95rem;
	font-size: clamp(1rem, 1.12vw, 1.28rem);
	line-height: 1.12;
	letter-spacing: -0.04em;
}

.theme-origen .home-booking-section .process-card p {
	margin: 0;
	font-size: clamp(0.9rem, 0.95vw, 1rem);
	line-height: 1.62;
	color: rgba(15, 44, 57, 0.76);
}

.theme-origen .home-booking-section .stacked-actions {
	justify-content: flex-start;
	margin-top: clamp(1.35rem, 2vw, 2rem);
}

.theme-origen .home-booking-section .stacked-actions .btn {
	min-width: 13.7rem;
}

.theme-origen .home-booking-section .stacked-actions .btn-primary {
	background: linear-gradient(135deg, #43c7cf 0%, #209da6 100%);
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(67, 199, 207, 0.24);
}

.theme-origen .home-booking-section .stacked-actions .btn-secondary {
	background: rgba(255, 255, 255, 0.78);
	border-color: rgba(15, 44, 57, 0.16);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

@media (hover: hover) and (pointer: fine) {
	.theme-origen .home-booking-section .process-card:hover {
		transform: translateY(-5px);
		border-color: rgba(67, 199, 207, 0.28);
		box-shadow:
			0 26px 72px rgba(15, 44, 57, 0.14),
			inset 0 1px 0 rgba(255, 255, 255, 0.84);
	}
}

@media (max-width: 1200px) {
	.theme-origen .home-booking-section {
		background:
			linear-gradient(90deg, rgba(248, 255, 254, 0.18) 0%, rgba(248, 255, 254, 0.58) 36%, rgba(248, 255, 254, 0.98) 100%),
			url("home-booking-bg.png") center left / cover no-repeat;
	}

	.theme-origen .home-booking-section .home-booking-layout {
		grid-template-columns: minmax(0, 0.72fr) minmax(26rem, 1fr);
	}
}

@media (max-width: 900px) {
	.theme-origen .home-booking-section .process-grid--compact {
		grid-template-columns: 1fr;
	}

	.theme-origen .home-booking-section .process-card {
		min-height: 0;
	}
}

@media (max-width: 720px) {
	.theme-origen .home-booking-section {
		padding: clamp(3.2rem, 10vw, 4.6rem) 0;
		background:
			linear-gradient(180deg, rgba(248, 255, 254, 0.95) 0%, rgba(248, 255, 254, 0.9) 100%),
			url("home-booking-bg.png") 22% center / cover no-repeat;
	}

	.theme-origen .home-booking-section .home-booking-layout {
		display: block;
		min-height: 0;
	}

	.theme-origen .home-booking-section .section-intro h2 {
		font-size: clamp(2.15rem, 10vw, 3.25rem);
		letter-spacing: -0.06em;
	}

	.theme-origen .home-booking-section .stacked-actions {
		align-items: stretch;
	}

	.theme-origen .home-booking-section .stacked-actions .btn {
		width: 100%;
		min-width: 0;
	}
}

/* Home FAQ section: visual-only centered accordion and first-session panel. */
.theme-origen .home-faq-section {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(4.1rem, 6vw, 6.2rem) 0;
	background:
		radial-gradient(circle at 50% 8%, rgba(67, 199, 207, 0.12), transparent 28rem),
		radial-gradient(circle at 18% 82%, rgba(67, 199, 207, 0.08), transparent 22rem),
		linear-gradient(180deg, #f8fffe 0%, #f3fbfc 100%);
}

.theme-origen .home-faq-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(246, 254, 255, 0.28)),
		radial-gradient(circle at 80% 18%, rgba(67, 199, 207, 0.1), transparent 20rem);
	pointer-events: none;
}

.theme-origen .home-faq-section .origen-shell {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.theme-origen .home-faq-section .section-intro {
	width: min(100%, 58rem);
	margin-inline: auto;
	margin-bottom: clamp(1.8rem, 2.6vw, 2.6rem);
	text-align: center;
}

.theme-origen .home-faq-section .section-intro .eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	color: rgba(15, 44, 57, 0.72);
	letter-spacing: 0.24em;
}

.theme-origen .home-faq-section .section-intro .eyebrow::before {
	content: "";
	display: inline-block;
	width: 2.6rem;
	height: 1px;
	border-radius: 999px;
	background: rgba(15, 44, 57, 0.42);
}

.theme-origen .home-faq-section .section-intro h2 {
	max-width: 54rem;
	margin-inline: auto;
	font-size: clamp(2.55rem, 4.2vw, 4.85rem);
	line-height: 0.96;
	letter-spacing: -0.075em;
}

.theme-origen .home-faq-section .section-intro p {
	max-width: 48rem;
	margin-inline: auto;
	margin-top: 0.95rem;
	font-size: clamp(1rem, 1.08vw, 1.15rem);
	color: rgba(15, 44, 57, 0.7);
}

.theme-origen .home-faq-section .faq-list--home {
	width: min(100%, 78rem);
	display: grid;
	gap: 0.55rem;
	margin: 0 auto clamp(1.4rem, 2vw, 2rem);
}

.theme-origen .home-faq-section .faq-item {
	border-radius: 1.25rem;
	border-color: rgba(15, 44, 57, 0.1);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
	box-shadow:
		0 14px 34px rgba(15, 44, 57, 0.07),
		inset 0 1px 0 rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(14px) saturate(1.06);
	-webkit-backdrop-filter: blur(14px) saturate(1.06);
	overflow: hidden;
}

.theme-origen .home-faq-section .faq-trigger {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 4.9rem;
	padding: 1.2rem 3.7rem 1.2rem 1.85rem;
	color: var(--ink);
	font-size: clamp(1rem, 1.18vw, 1.25rem);
	font-weight: 700;
	line-height: 1.25;
	text-align: left;
}

.theme-origen .home-faq-section .faq-trigger::after {
	content: "+";
	position: absolute;
	right: 1.65rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent-dark);
	font-size: 1.65rem;
	font-weight: 500;
	line-height: 1;
	transition: transform 220ms ease, color 220ms ease;
}

.theme-origen .home-faq-section .faq-item:hover .faq-trigger::after,
.theme-origen .home-faq-section .faq-item:focus-within .faq-trigger::after,
.theme-origen .home-faq-section .faq-item.is-open .faq-trigger::after {
	transform: translateY(-50%) rotate(45deg);
	color: var(--accent);
}

.theme-origen .home-faq-section .faq-panel {
	padding: 0 1.85rem 1.25rem;
}

.theme-origen .home-faq-section .faq-panel__inner p {
	max-width: 58rem;
	margin: 0;
	color: rgba(15, 44, 57, 0.72);
}

.theme-origen .home-faq-section .faq-list--home + .info-card {
	width: min(100%, 79.5rem);
	margin: 0 auto;
	padding: clamp(2rem, 3.2vw, 3.2rem);
	border-radius: 1.55rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background:
		radial-gradient(circle at 96% 90%, rgba(67, 199, 207, 0.28), transparent 22%),
		radial-gradient(circle at 14% 16%, rgba(67, 199, 207, 0.18), transparent 30%),
		linear-gradient(135deg, #102a2e 0%, #16434a 62%, #0f2c39 100%);
	box-shadow:
		0 28px 76px rgba(15, 44, 57, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	color: #ffffff;
	overflow: hidden;
}

.theme-origen .home-faq-section .faq-list--home + .info-card .eyebrow {
	margin-bottom: 1.05rem;
	color: #67f7e9;
	letter-spacing: 0.24em;
}

.theme-origen .home-faq-section .faq-list--home + .info-card h3 {
	max-width: 57rem;
	margin-bottom: 0.7rem;
	color: #ffffff;
	font-size: clamp(1.55rem, 2.4vw, 2.25rem);
	line-height: 1.08;
	letter-spacing: -0.055em;
}

.theme-origen .home-faq-section .faq-list--home + .info-card p:not(.eyebrow) {
	max-width: 66rem;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1rem, 1.08vw, 1.14rem);
	line-height: 1.7;
}

.theme-origen .home-faq-section .faq-list--home + .info-card .tag-cloud {
	margin-top: clamp(1.25rem, 2vw, 2rem);
	gap: 0.85rem;
}

.theme-origen .home-faq-section .faq-list--home + .info-card .tag {
	min-height: 2.9rem;
	padding: 0.58rem 1.2rem;
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.9);
	color: var(--ink);
	font-weight: 700;
	box-shadow: 0 10px 26px rgba(15, 44, 57, 0.12);
}

@media (hover: hover) and (pointer: fine) {
	.theme-origen .home-faq-section .faq-item:hover {
		transform: translateY(-3px);
		border-color: rgba(67, 199, 207, 0.22);
		box-shadow: 0 18px 46px rgba(15, 44, 57, 0.1);
	}

	.theme-origen .home-faq-section .faq-list--home + .info-card:hover {
		transform: translateY(-4px);
		box-shadow:
			0 34px 88px rgba(15, 44, 57, 0.22),
			inset 0 1px 0 rgba(255, 255, 255, 0.12);
	}
}

@media (max-width: 840px) {
	.theme-origen .home-faq-section {
		padding: clamp(3.2rem, 10vw, 4.7rem) 0;
	}

	.theme-origen .home-faq-section .section-intro h2 {
		font-size: clamp(2.1rem, 10vw, 3.2rem);
		letter-spacing: -0.06em;
	}

	.theme-origen .home-faq-section .faq-trigger {
		min-height: 4.25rem;
		padding: 1rem 3rem 1rem 1.2rem;
	}

	.theme-origen .home-faq-section .faq-trigger::after {
		right: 1.15rem;
	}

	.theme-origen .home-faq-section .faq-panel {
		padding: 0 1.2rem 1.1rem;
	}

	.theme-origen .home-faq-section .faq-list--home + .info-card {
		padding: 1.5rem;
	}

	.theme-origen .home-faq-section .faq-list--home + .info-card .tag {
		width: 100%;
		justify-content: center;
	}
}

/* Home full-bleed sections: align content width with background scale. */
.theme-origen :where(
	.home-why-section,
	.home-trust-section,
	.home-services-section,
	.home-about-section,
	.home-team-section,
	.home-booking-section,
	.home-faq-section
) > .origen-shell {
	width: min(1640px, calc(100vw - clamp(2rem, 8vw, 8rem)));
	max-width: none;
}

@media (max-width: 840px) {
	.theme-origen :where(
		.home-why-section,
		.home-trust-section,
		.home-services-section,
		.home-about-section,
		.home-team-section,
		.home-booking-section,
		.home-faq-section
	) > .origen-shell {
		width: min(100% - 1.25rem, calc(100vw - 1.25rem));
	}
}

/* Home component width refinement: let content match the full-bleed backgrounds. */
.theme-origen #services-preview.home-services-section .section-intro,
.theme-origen #services-preview.home-services-section .service-grid--featured,
.theme-origen #services-preview.home-services-section .stacked-actions--services,
.theme-origen .home-why-section .section-intro,
.theme-origen .home-why-section .feature-grid--two-up,
.theme-origen .home-trust-section .section-intro,
.theme-origen .home-trust-section .metrics-grid--compact,
.theme-origen .home-trust-section .voice-grid,
.theme-origen .home-trust-section .testimonials-grid,
.theme-origen .home-team-section .section-intro,
.theme-origen .home-team-section .team-grid--preview,
.theme-origen .home-team-section .stacked-actions,
.theme-origen .home-faq-section .faq-list--home,
.theme-origen .home-faq-section .faq-list--home + .info-card {
	width: min(100%, 92rem);
}

@media (min-width: 1280px) {
	.theme-origen #services-preview.home-services-section .service-grid--featured,
	.theme-origen .home-team-section .team-grid--preview {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 1279px) {
	.theme-origen #services-preview.home-services-section .service-grid--featured,
	.theme-origen .home-team-section .team-grid--preview,
	.theme-origen .home-trust-section .metrics-grid--compact,
	.theme-origen .home-trust-section .voice-grid,
	.theme-origen .home-trust-section .testimonials-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.theme-origen #services-preview.home-services-section .service-grid--featured,
	.theme-origen .home-team-section .team-grid--preview,
	.theme-origen .home-trust-section .metrics-grid--compact,
	.theme-origen .home-trust-section .voice-grid,
	.theme-origen .home-trust-section .testimonials-grid {
		grid-template-columns: 1fr;
	}
}

/* Internal pages full-width refinement: keep Inicio untouched. */
body.theme-origen:not(.home):not(.is-origen-home) main .origen-shell {
	width: min(1640px, calc(100vw - clamp(2rem, 8vw, 8rem)));
	max-width: none;
}

body.theme-origen:not(.home):not(.is-origen-home) main :where(
	.page-hero__inner,
	.split-layout,
	.service-grid--full,
	.team-carousel,
	.process-grid--full,
	.booking-options-grid,
	.contact-cards-grid,
	.contact-reservation-grid,
	.contact-booking,
	.contact-map-card,
	.faq-list,
	.installations-grid,
	.timeline-flow--story,
	.mission-grid--balanced,
	.values-grid--balanced,
	.booking-layout,
	.decision-cta
) {
	width: 100%;
	max-width: none;
}

@media (min-width: 1280px) {
	body.theme-origen:not(.home):not(.is-origen-home) main .service-grid--full,
	body.theme-origen:not(.home):not(.is-origen-home) main .values-grid--balanced {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	body.theme-origen:not(.home):not(.is-origen-home) main .contact-cards-grid--quad,
	body.theme-origen:not(.home):not(.is-origen-home) main .installations-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 1279px) {
	body.theme-origen:not(.home):not(.is-origen-home) main .service-grid--full,
	body.theme-origen:not(.home):not(.is-origen-home) main .values-grid--balanced,
	body.theme-origen:not(.home):not(.is-origen-home) main .contact-cards-grid--quad,
	body.theme-origen:not(.home):not(.is-origen-home) main .installations-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	body.theme-origen:not(.home):not(.is-origen-home) main .origen-shell {
		width: min(100% - 1.25rem, calc(100vw - 1.25rem));
	}

	body.theme-origen:not(.home):not(.is-origen-home) main .service-grid--full,
	body.theme-origen:not(.home):not(.is-origen-home) main .values-grid--balanced,
	body.theme-origen:not(.home):not(.is-origen-home) main .contact-cards-grid--quad,
	body.theme-origen:not(.home):not(.is-origen-home) main .installations-grid {
		grid-template-columns: 1fr;
	}
}

/* Home section title icons from Iconify/Lucide. */
.theme-origen .home-why-section {
	--home-section-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 14h2a2 2 0 0 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m14.45 13.39 5.05-4.694C20.196 8 21 6.85 21 5.75a2.75 2.75 0 0 0-4.797-1.837.276.276 0 0 1-.406 0A2.75 2.75 0 0 0 11 5.75c0 1.2.802 2.248 1.5 2.946L16 11.95M2 15l6 6' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a1 1 0 0 0-2.75-2.91' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.theme-origen #services-preview.home-services-section {
	--home-section-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23209da6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594zM20 2v4m2-2h-4'/%3E%3Ccircle cx='4' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.theme-origen .home-about-section {
	--home-section-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8c0 5.5-4.78 10-10 10' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.theme-origen .home-team-section {
	--home-section-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 21a8 8 0 0 0-16 0' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='10' cy='8' r='5' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.theme-origen .home-booking-section {
	--home-section-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 2v4m8-4v4' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Crect width='18' height='18' x='3' y='4' rx='2' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 10h18M9 16l2 2 4-4' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.theme-origen .home-faq-section {
	--home-section-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3m.08 4h.01' stroke='%23209da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.theme-origen .home-why-section .section-intro .eyebrow,
.theme-origen #services-preview.home-services-section .section-intro .eyebrow,
.theme-origen .home-about-section .section-intro .eyebrow,
.theme-origen .home-team-section .section-intro .eyebrow,
.theme-origen .home-booking-section .section-intro .eyebrow,
.theme-origen .home-faq-section .section-intro .eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

.theme-origen .home-why-section .section-intro .eyebrow::before,
.theme-origen #services-preview.home-services-section .section-intro .eyebrow::before,
.theme-origen .home-about-section .section-intro .eyebrow::before,
.theme-origen .home-team-section .section-intro .eyebrow::before,
.theme-origen .home-booking-section .section-intro .eyebrow::before,
.theme-origen .home-faq-section .section-intro .eyebrow::before {
	content: "";
	flex: 0 0 1.85rem;
	width: 1.85rem;
	height: 1.85rem;
	border-radius: 0.7rem;
	background:
		linear-gradient(180deg, rgba(67, 199, 207, 0.14), rgba(255, 255, 255, 0.72)),
		var(--home-section-icon) center / 1.2rem 1.2rem no-repeat;
	border: 1px solid rgba(67, 199, 207, 0.18);
	box-shadow: 0 12px 28px rgba(67, 199, 207, 0.12);
}

/* Unified button system: consistent shape, rhythm and interaction across the site. */
.theme-origen :where(.btn, .btn-card-action, .btn-card-toggle, .site-header__cta, .nav-cta) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 3.25rem !important;
	padding: 0.78rem 1.45rem !important;
	border: 1px solid transparent;
	border-radius: 999px !important;
	font-size: clamp(0.9rem, 0.95vw, 0.98rem) !important;
	font-weight: 800 !important;
	line-height: 1.12 !important;
	letter-spacing: -0.012em;
	text-align: center;
	text-decoration: none;
	box-shadow:
		0 14px 30px rgba(15, 44, 57, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.44);
	transition:
		transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 200ms ease,
		background 200ms ease,
		border-color 200ms ease,
		color 200ms ease;
}

.theme-origen :where(.btn, .btn-card-action, .btn-card-toggle, .site-header__cta, .nav-cta):hover,
.theme-origen :where(.btn, .btn-card-action, .btn-card-toggle, .site-header__cta, .nav-cta):focus-visible {
	transform: translateY(-2px);
	box-shadow:
		0 18px 38px rgba(15, 44, 57, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.theme-origen :where(.btn-primary, .btn-primary--highlight, .site-header__cta, .nav-cta),
.theme-origen #services-preview.home-services-section :where(.btn-primary, .btn-primary--highlight),
.theme-origen .home-about-section .story-card .btn-primary,
.theme-origen .home-booking-section .stacked-actions .btn-primary {
	background: linear-gradient(135deg, #43c7cf 0%, #209da6 100%) !important;
	border-color: rgba(67, 199, 207, 0.56) !important;
	color: #0f2c39 !important;
	box-shadow:
		0 16px 34px rgba(67, 199, 207, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.48) !important;
}

.theme-origen :where(.btn-primary, .btn-primary--highlight, .site-header__cta, .nav-cta):hover,
.theme-origen :where(.btn-primary, .btn-primary--highlight, .site-header__cta, .nav-cta):focus-visible,
.theme-origen #services-preview.home-services-section :where(.btn-primary, .btn-primary--highlight):hover,
.theme-origen #services-preview.home-services-section :where(.btn-primary, .btn-primary--highlight):focus-visible,
.theme-origen .home-about-section .story-card .btn-primary:hover,
.theme-origen .home-about-section .story-card .btn-primary:focus-visible,
.theme-origen .home-booking-section .stacked-actions .btn-primary:hover,
.theme-origen .home-booking-section .stacked-actions .btn-primary:focus-visible {
	background: linear-gradient(135deg, #209da6 0%, #0f2c39 100%) !important;
	border-color: rgba(32, 157, 166, 0.62) !important;
	color: #ffffff !important;
}

.theme-origen :where(.btn-secondary, .btn-secondary--light, .btn-ghost, .btn-card-toggle),
.theme-origen #services-preview.home-services-section :where(.btn-secondary, .btn-secondary--light),
.theme-origen .home-booking-section .stacked-actions .btn-secondary {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 254, 255, 0.9)) !important;
	border-color: rgba(67, 199, 207, 0.42) !important;
	color: #0f2c39 !important;
	box-shadow:
		0 12px 28px rgba(15, 44, 57, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
}

.theme-origen :where(.btn-secondary, .btn-secondary--light, .btn-ghost, .btn-card-toggle):hover,
.theme-origen :where(.btn-secondary, .btn-secondary--light, .btn-ghost, .btn-card-toggle):focus-visible,
.theme-origen #services-preview.home-services-section :where(.btn-secondary, .btn-secondary--light):hover,
.theme-origen #services-preview.home-services-section :where(.btn-secondary, .btn-secondary--light):focus-visible,
.theme-origen .home-booking-section .stacked-actions .btn-secondary:hover,
.theme-origen .home-booking-section .stacked-actions .btn-secondary:focus-visible {
	background:
		linear-gradient(180deg, rgba(234, 251, 252, 0.98), rgba(255, 255, 255, 0.96)) !important;
	border-color: rgba(32, 157, 166, 0.6) !important;
	color: #0f2c39 !important;
}

.theme-origen .btn-secondary--whatsapp {
	background: linear-gradient(135deg, #25d366 0%, #16a34a 100%) !important;
	border-color: rgba(37, 211, 102, 0.48) !important;
	color: #ffffff !important;
	box-shadow:
		0 16px 32px rgba(34, 197, 94, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

.theme-origen .btn-secondary--whatsapp:hover,
.theme-origen .btn-secondary--whatsapp:focus-visible {
	background: linear-gradient(135deg, #16a34a 0%, #0f7a3a 100%) !important;
	border-color: rgba(22, 163, 74, 0.62) !important;
	color: #ffffff !important;
}

.theme-origen .footer-cta .btn-footer-highlight,
.theme-origen .footer-cta .btn-primary.btn-footer-highlight {
	background: linear-gradient(135deg, #ffe7c4 0%, #ffc784 100%) !important;
	border-color: rgba(255, 214, 164, 0.7) !important;
	color: #4e2c08 !important;
	box-shadow:
		0 16px 34px rgba(255, 176, 84, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.52) !important;
}

.theme-origen .footer-cta .btn-footer-highlight:hover,
.theme-origen .footer-cta .btn-footer-highlight:focus-visible {
	background: linear-gradient(135deg, #fff1d8 0%, #ffcf95 100%) !important;
	color: #4e2c08 !important;
	box-shadow:
		0 20px 40px rgba(255, 176, 84, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.58) !important;
}

.theme-origen :where(.btn-card-action, .btn-card-toggle),
.theme-origen .team-card__actions .btn,
.theme-origen .service-card__actions .btn,
.theme-origen #services-preview.home-services-section .service-card__actions .btn,
.theme-origen .home-team-section .team-card--preview .team-card__actions .btn {
	width: 100%;
}

@media (max-width: 720px) {
	.theme-origen :where(.hero-actions, .stacked-actions, .footer-cta__actions) .btn {
		width: 100%;
	}
}

/* Equipo page: give professional portraits more visual presence. */
body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__frame,
body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__surface {
	height: clamp(47rem, 56vw, 50rem);
	min-height: clamp(47rem, 56vw, 50rem);
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__face--front {
	display: flex;
	flex-direction: column;
	padding: clamp(0.85rem, 1vw, 1rem);
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__portrait {
	flex: 0 0 clamp(19.5rem, 26vw, 22rem);
	min-height: clamp(19.5rem, 26vw, 22rem);
	margin-bottom: 0.95rem;
	border-radius: 1.35rem;
	background:
		radial-gradient(circle at 16% 16%, rgba(67, 199, 207, 0.26), transparent 34%),
		linear-gradient(145deg, rgba(234, 251, 252, 0.96), rgba(255, 255, 255, 0.86));
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__portrait-shell {
	height: 100%;
	aspect-ratio: auto;
	border-radius: inherit;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__portrait-image {
	height: 100%;
	object-fit: cover;
	object-position: center 12%;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__body {
	min-height: 0;
	padding: 0.85rem 0.75rem 0.35rem;
	gap: 0.68rem;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__summary {
	min-height: clamp(6.2rem, 7vw, 7.2rem);
	gap: 0.45rem;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__body > .tag-cloud {
	min-height: clamp(3.25rem, 4.3vw, 4.2rem);
	gap: 0.48rem;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__actions {
	padding-top: 0.72rem;
	padding-bottom: 0.55rem;
}

@media (max-width: 840px) {
	body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__frame,
	body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__surface {
		height: auto;
		min-height: 46rem;
	}

	body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__portrait {
		flex-basis: clamp(18rem, 62vw, 21rem);
		min-height: clamp(18rem, 62vw, 21rem);
	}
}

/* Equipo page: align profile text rows and inner detail cards. */
body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__summary {
	display: grid;
	grid-template-rows: minmax(2.4rem, auto) minmax(2.45rem, auto) minmax(3.05rem, auto);
	align-content: start;
	min-height: clamp(7.45rem, 8vw, 8.2rem);
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-role,
body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-focus,
body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__summary h3 {
	display: flex;
	align-items: flex-start;
	margin: 0;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-role {
	min-height: 2.4rem;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__summary h3 {
	min-height: 2.45rem;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-focus {
	min-height: 3.05rem;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__body > .tag-cloud {
	align-content: flex-start;
	min-height: clamp(3.7rem, 4.7vw, 4.55rem);
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__actions {
	display: grid;
	grid-template-rows: repeat(2, minmax(3.25rem, auto));
	gap: 0.72rem;
	margin-top: auto;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__back-panel {
	display: grid;
	grid-template-rows: auto minmax(9rem, 9rem) minmax(8.6rem, 8.6rem) minmax(5.1rem, 5.1rem) auto;
	align-content: stretch;
	gap: 0.9rem;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__bio {
	min-height: 9rem;
	max-height: 9rem;
	margin: 0;
	padding-right: 0.25rem;
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__bio::-webkit-scrollbar {
	display: none;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	min-height: 8.6rem;
	padding: 0;
	border: 0;
	background: transparent;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-meta__item {
	display: flex;
	align-items: stretch;
	min-height: 8.6rem;
	padding: 0.9rem 0.95rem;
	border: 1px solid rgba(67, 199, 207, 0.2);
	border-radius: 1.05rem;
	background:
		radial-gradient(circle at 90% 92%, rgba(67, 199, 207, 0.16), transparent 36%),
		rgba(255, 255, 255, 0.74);
	backdrop-filter: blur(10px) saturate(1.04);
	-webkit-backdrop-filter: blur(10px) saturate(1.04);
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-meta__item p {
	margin: 0;
	width: 100%;
	font-size: 0.88rem;
	line-height: 1.48;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .tag-cloud--back {
	align-content: flex-start;
	min-height: 5.1rem;
	max-height: 5.1rem;
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .tag-cloud--back::-webkit-scrollbar {
	display: none;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__actions--back {
	align-self: end;
	display: grid;
	grid-template-rows: repeat(2, minmax(3.25rem, auto));
	gap: 0.72rem;
	margin-top: 0;
}

@media (max-width: 720px) {
	body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__summary,
	body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__bio,
	body.theme-origen.page-template-template-equipo-php .team-carousel--modern .tag-cloud--back {
		max-height: none;
	}

	body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__back-panel {
		grid-template-rows: auto auto auto auto auto;
	}

	body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-meta {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-meta__item {
		min-height: 0;
	}
}

/* Equipo page: subtle typography lift for professional profiles. */
body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__frame,
body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__surface {
	height: clamp(48rem, 57vw, 51rem);
	min-height: clamp(48rem, 57vw, 51rem);
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__summary {
	grid-template-rows: minmax(2.55rem, auto) minmax(2.7rem, auto) minmax(3.25rem, auto);
	min-height: clamp(8.05rem, 8.5vw, 8.85rem);
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-role {
	min-height: 2.55rem;
	font-size: clamp(0.9rem, 0.96vw, 1rem);
	line-height: 1.35;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__summary h3 {
	min-height: 2.7rem;
	font-size: clamp(1.62rem, 2vw, 1.92rem);
	line-height: 1.05;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-focus {
	min-height: 3.25rem;
	font-size: clamp(0.92rem, 0.98vw, 1.02rem);
	line-height: 1.45;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__body > .tag-cloud {
	min-height: clamp(4.15rem, 5vw, 4.85rem);
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .tag {
	padding: 0.43rem 0.78rem;
	font-size: clamp(0.76rem, 0.8vw, 0.84rem);
	line-height: 1.32;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__bio {
	font-size: clamp(0.98rem, 1vw, 1.04rem);
	line-height: 1.58;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-meta__item {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-meta__item::-webkit-scrollbar {
	display: none;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-meta__item p {
	font-size: clamp(0.91rem, 0.95vw, 0.98rem);
	line-height: 1.5;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .tag-cloud--back {
	min-height: 5.4rem;
	max-height: 5.4rem;
}

/* Home team carousel: same flip cards as Equipo, adapted to the home section. */
.theme-origen .home-team-section .team-carousel--home {
	margin-top: clamp(1.2rem, 2vw, 1.8rem);
}

.theme-origen .home-team-section .team-carousel--home .team-carousel__stage {
	padding-inline: clamp(2.95rem, 4.8vw, 4.4rem);
}

.theme-origen .home-team-section .team-carousel--home .team-carousel__viewport {
	margin-inline: calc(clamp(0.4rem, 1vw, 0.75rem) * -1);
	padding: 0.65rem clamp(0.4rem, 1vw, 0.75rem) 0.95rem;
}

.theme-origen .home-team-section .team-carousel--home .team-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - clamp(1.15rem, 1.8vw, 1.55rem)) / 2);
	gap: clamp(1.15rem, 1.8vw, 1.55rem);
}

.theme-origen .home-team-section .team-carousel--home .team-carousel__slide {
	flex-basis: calc((100% - clamp(1.15rem, 1.8vw, 1.55rem)) / 2);
}

.theme-origen .home-team-section .team-carousel--home .team-carousel__control {
	border-color: rgba(67, 199, 207, 0.22);
	background:
		radial-gradient(circle at 26% 20%, rgba(67, 199, 207, 0.22), transparent 52%),
		rgba(255, 255, 255, 0.94);
	color: var(--ink);
	box-shadow: 0 18px 44px rgba(15, 44, 57, 0.14);
}

.theme-origen .home-team-section .team-carousel--home .team-card__frame,
.theme-origen .home-team-section .team-carousel--home .team-card__surface {
	height: clamp(51rem, 58vw, 55rem);
	min-height: clamp(51rem, 58vw, 55rem);
}

.theme-origen .home-team-section .team-carousel--home .team-card__face--front {
	display: flex;
	flex-direction: column;
	padding: clamp(0.78rem, 0.9vw, 0.95rem);
}

.theme-origen .home-team-section .team-carousel--home .team-card__portrait {
	flex: 0 0 clamp(17rem, 19vw, 19.2rem);
	min-height: clamp(17rem, 19vw, 19.2rem);
	margin-bottom: 0.85rem;
	border-radius: 1.32rem;
	background:
		radial-gradient(circle at 16% 16%, rgba(67, 199, 207, 0.24), transparent 34%),
		linear-gradient(145deg, rgba(234, 251, 252, 0.96), rgba(255, 255, 255, 0.84));
}

.theme-origen .home-team-section .team-carousel--home .team-card__portrait-shell {
	height: 100%;
	aspect-ratio: auto;
	border-radius: inherit;
}

.theme-origen .home-team-section .team-carousel--home .team-card__portrait-image {
	height: 100%;
	object-fit: cover;
	object-position: center 12%;
}

.theme-origen .home-team-section .team-carousel--home .team-card__body {
	min-height: 0;
	padding: 0.9rem 0.9rem 0.38rem;
	gap: 0.72rem;
}

.theme-origen .home-team-section .team-carousel--home .team-card__summary {
	display: grid;
	grid-template-rows: minmax(2.35rem, auto) minmax(2.55rem, auto) minmax(3rem, auto);
	align-content: start;
	min-height: clamp(7.55rem, 8vw, 8.2rem);
	gap: 0.42rem;
}

.theme-origen .home-team-section .team-carousel--home .team-role,
.theme-origen .home-team-section .team-carousel--home .team-focus,
.theme-origen .home-team-section .team-carousel--home .team-card__summary h3 {
	display: flex;
	align-items: flex-start;
	margin: 0;
}

.theme-origen .home-team-section .team-carousel--home .team-role {
	min-height: 2.35rem;
	font-size: clamp(0.82rem, 0.86vw, 0.92rem);
	line-height: 1.35;
}

.theme-origen .home-team-section .team-carousel--home .team-card__summary h3 {
	min-height: 2.55rem;
	font-size: clamp(1.38rem, 1.65vw, 1.66rem);
	line-height: 1.06;
}

.theme-origen .home-team-section .team-carousel--home .team-focus {
	min-height: 3rem;
	font-size: clamp(0.86rem, 0.91vw, 0.96rem);
	line-height: 1.43;
}

.theme-origen .home-team-section .team-carousel--home .team-card__body > .tag-cloud {
	align-content: flex-start;
	min-height: clamp(3.75rem, 4.4vw, 4.45rem);
	gap: 0.44rem;
}

.theme-origen .home-team-section .team-carousel--home .tag {
	padding: 0.38rem 0.7rem;
	font-size: clamp(0.72rem, 0.76vw, 0.8rem);
	line-height: 1.3;
}

.theme-origen .home-team-section .team-carousel--home .team-card__actions {
	display: grid;
	grid-template-rows: repeat(2, minmax(3rem, auto));
	gap: 0.66rem;
	margin-top: auto;
	padding-top: 0.66rem;
	padding-bottom: 0.5rem;
}

.theme-origen .home-team-section .team-carousel--home .team-card__back-panel {
	display: grid;
	grid-template-rows: auto minmax(10.2rem, 10.2rem) minmax(8.45rem, 8.45rem) minmax(5.35rem, 5.35rem) auto;
	align-content: stretch;
	gap: clamp(1.06rem, 1.35vw, 1.3rem);
}

.theme-origen .home-team-section .team-carousel--home .team-card__bio {
	min-height: 10.2rem;
	max-height: 10.2rem;
	margin: 0;
	padding-right: 0.35rem;
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	font-size: clamp(0.92rem, 0.96vw, 1rem);
	line-height: 1.62;
}

.theme-origen .home-team-section .team-carousel--home .team-card__bio::-webkit-scrollbar {
	display: none;
}

.theme-origen .home-team-section .team-carousel--home .team-meta {
	display: grid;
	grid-template-columns: minmax(7.25rem, 0.72fr) minmax(0, 1.28fr);
	gap: clamp(0.8rem, 1.05vw, 1rem);
	min-height: 8.45rem;
	padding: 0;
	border: 0;
	background: transparent;
}

.theme-origen .home-team-section .team-carousel--home .team-meta__item {
	display: flex;
	align-items: stretch;
	min-height: 8.45rem;
	padding: clamp(0.98rem, 1.08vw, 1.1rem);
	border: 1px solid rgba(67, 199, 207, 0.2);
	border-radius: 1rem;
	background:
		radial-gradient(circle at 90% 92%, rgba(67, 199, 207, 0.16), transparent 36%),
		rgba(255, 255, 255, 0.74);
	backdrop-filter: blur(10px) saturate(1.04);
	-webkit-backdrop-filter: blur(10px) saturate(1.04);
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.theme-origen .home-team-section .team-carousel--home .team-meta__item::-webkit-scrollbar {
	display: none;
}

.theme-origen .home-team-section .team-carousel--home .team-meta__item p {
	margin: 0;
	width: 100%;
	font-size: clamp(0.82rem, 0.88vw, 0.93rem);
	line-height: 1.5;
}

.theme-origen .home-team-section .team-carousel--home .tag-cloud--back {
	align-content: flex-start;
	min-height: 5.35rem;
	max-height: 5.35rem;
	margin-top: 0.9rem;
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	gap: 0.6rem 0.66rem;
}

.theme-origen .home-team-section .team-carousel--home .tag-cloud--back::-webkit-scrollbar {
	display: none;
}

.theme-origen .home-team-section .team-carousel--home .team-card__actions--back {
	align-self: end;
	display: grid;
	grid-template-rows: repeat(2, minmax(3rem, auto));
	gap: 0.66rem;
	margin-top: 0.15rem;
}

@media (max-width: 1080px) {
	.theme-origen .home-team-section .team-carousel--home .team-carousel__track {
		grid-auto-columns: calc((100% - clamp(1rem, 1.4vw, 1.35rem)) / 2);
	}

	.theme-origen .home-team-section .team-carousel--home .team-carousel__slide {
		flex-basis: calc((100% - clamp(1rem, 1.4vw, 1.35rem)) / 2);
	}
}

@media (max-width: 860px) {
	.theme-origen .home-team-section .team-carousel--home .team-carousel__track {
		grid-auto-columns: 100%;
	}

	.theme-origen .home-team-section .team-carousel--home .team-carousel__slide {
		flex-basis: 100%;
	}
}

@media (max-width: 720px) {
	.theme-origen .home-team-section .team-carousel--home .team-carousel__stage {
		padding-inline: 2.5rem;
	}

	.theme-origen .home-team-section .team-carousel--home .team-carousel__slide {
		flex-basis: 100%;
	}

	.theme-origen .home-team-section .team-carousel--home .team-carousel__track {
		grid-auto-columns: 100%;
	}

	.theme-origen .home-team-section .team-carousel--home .team-card__frame,
	.theme-origen .home-team-section .team-carousel--home .team-card__surface {
		height: auto;
		min-height: 46rem;
	}

	.theme-origen .home-team-section .team-carousel--home .team-card__portrait {
		flex-basis: clamp(17rem, 62vw, 20rem);
		min-height: clamp(17rem, 62vw, 20rem);
	}

	.theme-origen .home-team-section .team-carousel--home .team-card__back-panel {
		grid-template-rows: auto auto auto auto auto;
	}

	.theme-origen .home-team-section .team-carousel--home .team-card__bio,
	.theme-origen .home-team-section .team-carousel--home .tag-cloud--back {
		max-height: none;
	}

	.theme-origen .home-team-section .team-carousel--home .team-meta {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.theme-origen .home-team-section .team-carousel--home .team-meta__item {
		min-height: 0;
	}
}

/* Home team preview: subtle typography lift without changing card behavior. */
.theme-origen .home-team-section .team-card--preview .team-card__summary {
	min-height: 8.65rem;
}

.theme-origen .home-team-section .team-card--preview .team-role {
	font-size: clamp(0.73rem, 0.76vw, 0.82rem);
	line-height: 1.36;
}

.theme-origen .home-team-section .team-card--preview h3 {
	font-size: clamp(1.16rem, 1.32vw, 1.46rem);
	line-height: 1.06;
}

.theme-origen .home-team-section .team-card--preview .team-focus {
	font-size: clamp(0.84rem, 0.86vw, 0.95rem);
	line-height: 1.44;
}

.theme-origen .home-team-section .team-card--preview .team-card__body > .tag-cloud {
	min-height: 3.1rem;
}

.theme-origen .home-team-section .team-card--preview .tag {
	padding: 0.31rem 0.6rem;
	font-size: clamp(0.69rem, 0.71vw, 0.76rem);
	line-height: 1.3;
}

/* Equipo page: give the back description more breathing room. */
body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__back-panel {
	grid-template-rows: auto minmax(10.15rem, 10.15rem) minmax(8.6rem, 8.6rem) minmax(5.1rem, 5.1rem) auto;
	gap: 0.82rem;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .team-card__bio {
	min-height: 10.15rem;
	max-height: 10.15rem;
}

body.theme-origen.page-template-template-equipo-php .team-carousel--modern .tag-cloud--back {
	margin-top: 0.48rem;
}

/* Home/header width alignment with the approved full-bleed sections. */
.theme-origen .site-topbar > .origen-shell,
.theme-origen .site-header > .origen-shell,
.theme-origen .hero--home > .origen-shell {
	width: min(1640px, calc(100vw - clamp(2rem, 8vw, 8rem)));
	max-width: none;
}

.theme-origen .hero--home .hero-grid {
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
}

.theme-origen .hero--home .hero-copy {
	max-width: 45rem;
}

@media (max-width: 1080px) {
	.theme-origen .hero--home .hero-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 840px) {
	.theme-origen .site-topbar > .origen-shell,
	.theme-origen .site-header > .origen-shell,
	.theme-origen .hero--home > .origen-shell {
		width: min(100% - 1.25rem, calc(100vw - 1.25rem));
	}
}

/* Home hero: visual refresh only, aligned with the approved reference. */
.theme-origen .hero--home {
	padding: clamp(3rem, 5vw, 4.7rem) 0 clamp(2.9rem, 5vw, 4.25rem);
	background:
		radial-gradient(circle at 6% 18%, rgba(67, 199, 207, 0.18), transparent 22rem),
		radial-gradient(circle at 55% 100%, rgba(67, 199, 207, 0.11), transparent 30rem),
		linear-gradient(180deg, #f8fffe 0%, #ffffff 58%, #f6feff 100%);
}

.theme-origen .hero--home::before {
	background:
		linear-gradient(90deg, rgba(67, 199, 207, 0.09), transparent 28%),
		radial-gradient(circle at 82% 18%, rgba(67, 199, 207, 0.12), transparent 26rem);
}

.theme-origen .hero--home .hero-grid {
	grid-template-columns: minmax(0, 1.02fr) minmax(28rem, 0.98fr);
	gap: clamp(3rem, 6vw, 7rem);
	align-items: center;
}

.theme-origen .hero--home .hero-copy {
	max-width: 52rem;
}

.theme-origen .hero--home .eyebrow {
	margin-bottom: 1.25rem;
	padding: 0.62rem 1.15rem 0.62rem 0.72rem;
	border: 1px solid rgba(67, 199, 207, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow:
		0 14px 34px rgba(15, 44, 57, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(14px) saturate(1.05);
	-webkit-backdrop-filter: blur(14px) saturate(1.05);
}

.theme-origen .hero--home .eyebrow::before {
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 999px;
	background:
		radial-gradient(circle at 50% 38%, rgba(67, 199, 207, 0.28), transparent 0.2rem),
		linear-gradient(135deg, rgba(234, 251, 252, 0.98), rgba(255, 255, 255, 0.86));
	border: 1px solid rgba(67, 199, 207, 0.22);
	box-shadow: 0 8px 18px rgba(67, 199, 207, 0.14);
}

.theme-origen .hero--home .hero-copy h1 {
	max-width: 42.5rem;
	font-size: clamp(3.1rem, 4.8vw, 4.55rem);
	line-height: 0.92;
	letter-spacing: -0.082em;
}

.theme-origen .hero--home .hero-lead {
	max-width: 46rem;
	margin-top: 1.45rem;
	font-size: clamp(1rem, 1.12vw, 1.16rem);
	line-height: 1.75;
}

.theme-origen .hero--home .hero-actions {
	margin-top: 1.55rem;
}

.theme-origen .hero--home .hero-actions .btn {
	min-height: 3.2rem;
	padding-inline: 1.65rem;
	box-shadow: 0 16px 34px rgba(67, 199, 207, 0.15);
}

.theme-origen .hero--home .hero-badges {
	max-width: 50rem;
	gap: 0.72rem;
	margin-top: 1.65rem;
}

.theme-origen .hero--home .hero-badges .badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 2.15rem;
	padding: 0.42rem 0.82rem 0.42rem 0.54rem;
	border-color: rgba(67, 199, 207, 0.25);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 10px 24px rgba(15, 44, 57, 0.06);
	backdrop-filter: blur(12px) saturate(1.04);
	-webkit-backdrop-filter: blur(12px) saturate(1.04);
}

.theme-origen .hero--home .hero-badges .badge::before {
	content: "";
	flex: 0 0 auto;
	width: 1.05rem;
	height: 1.05rem;
	border-radius: 999px;
	border: 1px solid rgba(32, 157, 166, 0.34);
	background:
		radial-gradient(circle at 50% 50%, rgba(67, 199, 207, 0.34) 0 0.18rem, transparent 0.2rem),
		rgba(234, 251, 252, 0.92);
}

.theme-origen .hero--home .hero-visual {
	display: flex;
	justify-content: flex-end;
}

.theme-origen .hero--home .hero-visual::before {
	inset: 12% 0 -8% 18%;
	background: rgba(67, 199, 207, 0.16);
	filter: blur(54px);
}

.theme-origen .hero--home .hero-card {
	width: min(100%, 45rem);
	padding: 0.72rem;
	border-radius: 1.65rem;
	border: 1px solid rgba(15, 44, 57, 0.08);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 254, 255, 0.92));
	box-shadow:
		0 28px 80px rgba(15, 44, 57, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.theme-origen .hero--home .hero-card__media,
.theme-origen .hero--home .hero-card__media--tall {
	aspect-ratio: 1.24 / 1;
	border-radius: 1.32rem;
	border: 1px solid rgba(15, 44, 57, 0.07);
	background: #ffffff;
}

.theme-origen .hero--home .hero-card__media img {
	object-position: center 54%;
}

.theme-origen .hero--home .hero-card__overlay {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.86rem;
	margin-top: 0.9rem;
}

.theme-origen .hero--home .mini-metric {
	position: relative;
	min-height: 6.3rem;
	padding: 1rem 1rem 0.95rem 3rem;
	border-radius: 1.05rem;
	border-color: rgba(67, 199, 207, 0.18);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(234, 251, 252, 0.78));
	box-shadow:
		0 16px 36px rgba(15, 44, 57, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.theme-origen .hero--home .mini-metric::before {
	content: "";
	position: absolute;
	left: 0.95rem;
	top: 1.05rem;
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 999px;
	border: 1px solid rgba(32, 157, 166, 0.32);
	background:
		radial-gradient(circle at 50% 50%, rgba(67, 199, 207, 0.36) 0 0.24rem, transparent 0.26rem),
		#f6feff;
	box-shadow: 0 10px 22px rgba(67, 199, 207, 0.13);
}

.theme-origen .hero--home .mini-metric strong {
	margin-bottom: 0.24rem;
	font-size: clamp(0.94rem, 0.98vw, 1.04rem);
	line-height: 1.25;
}

.theme-origen .hero--home .mini-metric span {
	font-size: clamp(0.74rem, 0.78vw, 0.82rem);
	line-height: 1.55;
}

@media (max-width: 1080px) {
	.theme-origen .hero--home .hero-grid {
		grid-template-columns: 1fr;
		gap: 2.4rem;
	}

	.theme-origen .hero--home .hero-visual {
		justify-content: flex-start;
	}
}

@media (max-width: 720px) {
	.theme-origen .hero--home .hero-copy h1 {
		font-size: clamp(2.75rem, 13vw, 4rem);
		letter-spacing: -0.075em;
	}

	.theme-origen .hero--home .hero-card__overlay {
		grid-template-columns: 1fr;
	}

	.theme-origen .hero--home .mini-metric {
		min-height: 0;
	}
}

/* About timeline: editorial horizontal story, inspired by ORIGEN's visual rhythm. */
.theme-origen .about-timeline-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 9% 48%, rgba(67, 199, 207, 0.2), transparent 28rem),
		radial-gradient(ellipse at 87% 36%, rgba(67, 199, 207, 0.15), transparent 32rem),
		linear-gradient(180deg, #f6feff 0%, #ffffff 58%, #eefbfc 100%);
}

.theme-origen .about-timeline-section::before,
.theme-origen .about-timeline-section::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.theme-origen .about-timeline-section::before {
	inset: 18% -12% auto -12%;
	height: 44%;
	background:
		linear-gradient(12deg, transparent 0 30%, rgba(67, 199, 207, 0.09) 30% 44%, transparent 44%),
		linear-gradient(-9deg, transparent 0 55%, rgba(15, 44, 57, 0.045) 55% 66%, transparent 66%);
	filter: blur(2px);
}

.theme-origen .about-timeline-section::after {
	right: -10rem;
	top: -9rem;
	width: 26rem;
	height: 26rem;
	border-radius: 999px;
	background: rgba(67, 199, 207, 0.11);
	filter: blur(34px);
}

.theme-origen .about-timeline-section .origen-shell {
	position: relative;
	z-index: 1;
	max-width: min(112rem, calc(100vw - 3rem));
}

.theme-origen .about-timeline-section .section-intro {
	margin-inline: 0;
	max-width: 56rem;
	text-align: left;
}

.theme-origen .about-timeline-section .section-intro .eyebrow {
	justify-content: flex-start;
}

.theme-origen .about-timeline-section .section-intro h2 {
	font-size: clamp(3.45rem, 6vw, 6.4rem);
	line-height: 0.9;
	letter-spacing: -0.085em;
}

.theme-origen .about-timeline-section .section-intro p {
	max-width: 40rem;
	font-size: clamp(1.02rem, 1.2vw, 1.22rem);
}

.theme-origen .timeline-flow--story {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.2fr) minmax(0, 0.94fr);
	align-items: stretch;
	gap: clamp(1.4rem, 2.6vw, 3.2rem);
	margin-top: clamp(1.9rem, 3.2vw, 3.8rem);
	padding-top: 0;
}

.theme-origen .timeline-flow--story::before {
	top: clamp(2.18rem, 2.72vw, 2.75rem);
	left: 8.5%;
	right: 3.5%;
	height: 4px;
	border-radius: 999px;
	background:
		linear-gradient(90deg, rgba(67, 199, 207, 0.36) 0%, rgba(67, 199, 207, 0.95) 42%, rgba(67, 199, 207, 0.78) 77%, transparent 77%),
		repeating-linear-gradient(90deg, rgba(67, 199, 207, 0.32) 0 0.55rem, transparent 0.55rem 1.25rem);
	box-shadow: 0 0 28px rgba(67, 199, 207, 0.12);
}

.theme-origen .timeline-flow--story .timeline-flow__item {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(5.55rem, 6.8vw, 6.9rem) 0 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.theme-origen .timeline-flow--story .timeline-flow__marker {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 4;
	transform: translateX(-50%);
}

.theme-origen .timeline-flow--story .timeline-flow__dot {
	position: relative;
	left: auto;
	top: auto;
	width: clamp(4.4rem, 5.4vw, 5.4rem);
	height: clamp(4.4rem, 5.4vw, 5.4rem);
	border: 2px solid rgba(67, 199, 207, 0.3);
	background:
		radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.98), rgba(246, 254, 255, 0.9)),
		#ffffff;
	color: var(--accent-dark);
	font-size: clamp(1.55rem, 2vw, 2.15rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	box-shadow:
		0 16px 34px rgba(15, 44, 57, 0.1),
		0 0 0 0.65rem rgba(67, 199, 207, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.theme-origen .timeline-flow--story .timeline-flow__item:nth-child(2) .timeline-flow__dot {
	width: clamp(5.4rem, 6.8vw, 6.9rem);
	height: clamp(5.4rem, 6.8vw, 6.9rem);
	margin-top: clamp(-0.78rem, -0.72vw, -0.45rem);
	border-color: rgba(255, 255, 255, 0.7);
	background:
		radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.38), transparent 32%),
		linear-gradient(145deg, #67f7e9 0%, #43c7cf 56%, #209da6 100%);
	color: #ffffff;
	box-shadow:
		0 24px 56px rgba(67, 199, 207, 0.38),
		0 0 0 0.8rem rgba(67, 199, 207, 0.16),
		0 0 0 1.55rem rgba(67, 199, 207, 0.07);
}

.theme-origen .timeline-flow--story .timeline-flow__card {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: clamp(1.15rem, 1.8vw, 1.65rem);
	align-items: start;
	min-height: clamp(13.4rem, 15vw, 16rem);
	height: 100%;
	padding: clamp(1.7rem, 2.22vw, 2.35rem);
	border-radius: clamp(1.55rem, 2vw, 2.25rem);
	border: 1px solid rgba(15, 44, 57, 0.08);
	background:
		radial-gradient(circle at 86% 18%, rgba(67, 199, 207, 0.08), transparent 32%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82));
	box-shadow:
		0 24px 70px rgba(15, 44, 57, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px) saturate(1.04);
	-webkit-backdrop-filter: blur(14px) saturate(1.04);
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.theme-origen .timeline-flow--story .timeline-flow__card::before {
	display: none;
}

.theme-origen .timeline-flow--story .timeline-flow__item:nth-child(2) .timeline-flow__card {
	border-color: rgba(67, 199, 207, 0.44);
	background:
		radial-gradient(circle at 72% 18%, rgba(67, 199, 207, 0.18), transparent 34%),
		linear-gradient(145deg, rgba(246, 254, 255, 0.94), rgba(255, 255, 255, 0.82));
	box-shadow:
		0 30px 90px rgba(67, 199, 207, 0.16),
		0 0 0 1px rgba(67, 199, 207, 0.12) inset;
}

.theme-origen .timeline-flow--story .timeline-flow__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(4.1rem, 5vw, 5.25rem);
	height: clamp(4.1rem, 5vw, 5.25rem);
	border-radius: 1.2rem;
	color: var(--accent-dark);
	background:
		radial-gradient(circle at 30% 20%, rgba(67, 199, 207, 0.3), transparent 54%),
		linear-gradient(145deg, rgba(234, 251, 252, 0.96), rgba(255, 255, 255, 0.86));
	border: 1px solid rgba(67, 199, 207, 0.18);
	box-shadow:
		0 16px 34px rgba(67, 199, 207, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.theme-origen .timeline-flow--story .timeline-flow__item:nth-child(2) .timeline-flow__card-icon {
	color: #ffffff;
	background:
		radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 50%),
		linear-gradient(145deg, #67f7e9, #43c7cf 62%, #209da6);
}

.theme-origen .timeline-flow--story .timeline-flow__card-icon svg {
	width: 2.15rem;
	height: 2.15rem;
	stroke-width: 1.8;
}

.theme-origen .timeline-flow--story .timeline-flow__content {
	min-width: 0;
}

.theme-origen .timeline-flow--story .timeline-flow__content strong {
	display: inline-flex;
	margin: 0 0 0.72rem;
	color: var(--accent-dark);
	font-size: clamp(0.78rem, 0.85vw, 0.95rem);
	font-weight: 900;
	letter-spacing: 0.34em;
	text-transform: uppercase;
}

.theme-origen .timeline-flow--story .timeline-flow__content h3 {
	margin: 0 0 0.75rem;
	color: var(--ink);
	font-size: clamp(1.35rem, 1.8vw, 2.05rem);
	line-height: 1.08;
	letter-spacing: -0.045em;
}

.theme-origen .timeline-flow--story .timeline-flow__content p {
	margin: 0;
	color: rgba(38, 60, 69, 0.72);
	font-size: clamp(0.98rem, 1.08vw, 1.16rem);
	line-height: 1.72;
}

.theme-origen .timeline-flow--story .timeline-flow__accent-icon {
	position: absolute;
	left: 50%;
	bottom: -2.55rem;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.7rem;
	height: 4.7rem;
	border-radius: 999px;
	color: var(--accent-dark);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(67, 199, 207, 0.24);
	box-shadow:
		0 20px 46px rgba(15, 44, 57, 0.12),
		0 0 0 0.7rem rgba(67, 199, 207, 0.06);
	transform: translateX(-50%);
}

.theme-origen .timeline-flow--story .timeline-flow__accent-icon::after {
	content: "";
	position: absolute;
	inset: -0.95rem;
	border-radius: inherit;
	border: 1px dashed rgba(67, 199, 207, 0.36);
}

.theme-origen .timeline-flow--story .timeline-flow__accent-icon svg {
	width: 2rem;
	height: 2rem;
}

@media (hover: hover) and (pointer: fine) {
	.theme-origen .timeline-flow--story .timeline-flow__item:hover .timeline-flow__card {
		transform: translateY(-8px);
		border-color: rgba(67, 199, 207, 0.42);
		box-shadow:
			0 34px 90px rgba(15, 44, 57, 0.13),
			0 0 0 1px rgba(67, 199, 207, 0.1) inset;
	}

	.theme-origen .timeline-flow--story .timeline-flow__item:hover .timeline-flow__dot {
		transform: translateY(-4px) scale(1.03);
		box-shadow:
			0 24px 48px rgba(67, 199, 207, 0.22),
			0 0 0 0.75rem rgba(67, 199, 207, 0.1);
	}

	.theme-origen .timeline-flow--story .timeline-flow__item:nth-child(2):hover .timeline-flow__dot {
		box-shadow:
			0 30px 64px rgba(67, 199, 207, 0.46),
			0 0 0 0.85rem rgba(67, 199, 207, 0.18),
			0 0 0 1.65rem rgba(67, 199, 207, 0.08);
	}
}

@media (max-width: 980px) {
	.theme-origen .about-timeline-section .origen-shell {
		max-width: min(48rem, calc(100vw - 2rem));
	}

	.theme-origen .timeline-flow--story {
		grid-template-columns: 1fr;
		gap: 1.15rem;
		margin-top: 1.4rem;
		padding-top: 0;
	}

	.theme-origen .timeline-flow--story::before {
		top: 2.4rem;
		bottom: 2.4rem;
		left: 2.3rem;
		right: auto;
		width: 3px;
		height: auto;
		background: linear-gradient(180deg, rgba(67, 199, 207, 0.9), rgba(67, 199, 207, 0.18));
	}

	.theme-origen .timeline-flow--story .timeline-flow__item {
		display: grid;
		grid-template-columns: 4.8rem minmax(0, 1fr);
		align-items: stretch;
		gap: 1rem;
		padding-top: 0;
	}

	.theme-origen .timeline-flow--story .timeline-flow__marker {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		display: flex;
		justify-content: center;
		padding-top: 0.5rem;
	}

	.theme-origen .timeline-flow--story .timeline-flow__dot,
	.theme-origen .timeline-flow--story .timeline-flow__item:nth-child(2) .timeline-flow__dot {
		width: 4.45rem;
		height: 4.45rem;
		margin-top: 0;
		font-size: 1.55rem;
	}

	.theme-origen .timeline-flow--story .timeline-flow__card {
		min-height: 0;
	}

	.theme-origen .timeline-flow--story .timeline-flow__accent-icon {
		display: none;
	}
}

@media (max-width: 620px) {
	.theme-origen .about-timeline-section .section-intro h2 {
		font-size: clamp(3rem, 16vw, 4.25rem);
	}

	.theme-origen .timeline-flow--story .timeline-flow__item {
		grid-template-columns: 1fr;
	}

	.theme-origen .timeline-flow--story::before {
		display: none;
	}

	.theme-origen .timeline-flow--story .timeline-flow__marker {
		justify-content: flex-start;
		padding-left: 0.2rem;
	}

	.theme-origen .timeline-flow--story .timeline-flow__card {
		grid-template-columns: 1fr;
		padding: 1.35rem;
	}
}

.theme-origen .team-role,
.theme-origen .team-focus {
	flex-direction: column;
	gap: 0.12rem;
}

.theme-origen .team-role span,
.theme-origen .team-focus span {
	display: block;
}

/* Mobile team carousel controls: keep arrows visible for touch navigation. */
@media (max-width: 840px) {
	.theme-origen .team-carousel--modern .team-carousel__stage,
	.theme-origen .home-team-section .team-carousel--home .team-carousel__stage {
		position: relative;
		padding-inline: clamp(2.65rem, 9vw, 3.4rem);
	}

	.theme-origen .team-carousel--modern .team-carousel__control,
	.theme-origen .home-team-section .team-carousel--home .team-carousel__control {
		display: inline-flex !important;
		top: 50%;
		bottom: auto;
		width: clamp(2.5rem, 10vw, 3rem);
		height: clamp(2.5rem, 10vw, 3rem);
		transform: translateY(-50%);
		z-index: 5;
		pointer-events: auto;
		background:
			radial-gradient(circle at 28% 18%, rgba(67, 199, 207, 0.2), transparent 55%),
			rgba(255, 255, 255, 0.96);
		border-color: rgba(67, 199, 207, 0.28);
		box-shadow: 0 16px 34px rgba(15, 44, 57, 0.14);
	}

	.theme-origen .team-carousel--modern .team-carousel__control--prev,
	.theme-origen .home-team-section .team-carousel--home .team-carousel__control--prev {
		left: 0.25rem;
	}

	.theme-origen .team-carousel--modern .team-carousel__control--next,
	.theme-origen .home-team-section .team-carousel--home .team-carousel__control--next {
		right: 0.25rem;
	}

	.theme-origen .team-carousel--modern .team-carousel__viewport,
	.theme-origen .home-team-section .team-carousel--home .team-carousel__viewport {
		overflow: hidden;
		padding-inline: 0;
	}

	.theme-origen .team-carousel--modern .team-carousel__dots {
		margin-top: 1rem;
	}
}

/* Mobile flipped team cards: show the complete profile without hidden inner scrolls. */
@media (max-width: 840px) {
	.theme-origen .team-carousel--modern .team-card.is-flipped .team-card__frame,
	.theme-origen .team-carousel--modern .team-card.is-flipped .team-card__surface,
	.theme-origen .home-team-section .team-carousel--home .team-card.is-flipped .team-card__frame,
	.theme-origen .home-team-section .team-carousel--home .team-card.is-flipped .team-card__surface {
		height: auto !important;
		min-height: 0 !important;
	}

	.theme-origen .team-carousel--modern .team-card.is-flipped .team-card__surface,
	.theme-origen .home-team-section .team-carousel--home .team-card.is-flipped .team-card__surface {
		position: relative;
	}

	.theme-origen .team-carousel--modern .team-card.is-flipped .team-card__face--front,
	.theme-origen .home-team-section .team-carousel--home .team-card.is-flipped .team-card__face--front {
		position: absolute;
		inset: 0;
	}

	.theme-origen .team-carousel--modern .team-card.is-flipped .team-card__face--back,
	.theme-origen .home-team-section .team-carousel--home .team-card.is-flipped .team-card__face--back {
		position: relative;
		inset: auto;
		min-height: auto;
		overflow: visible;
	}

	.theme-origen .team-carousel--modern .team-card.is-flipped .team-card__back-panel,
	.theme-origen .home-team-section .team-carousel--home .team-card.is-flipped .team-card__back-panel {
		display: flex !important;
		flex-direction: column;
		grid-template-rows: none !important;
		gap: clamp(0.9rem, 3vw, 1.15rem);
		min-height: 0;
	}

	.theme-origen .team-carousel--modern .team-card.is-flipped .team-card__bio,
	.theme-origen .team-carousel--modern .team-card.is-flipped .tag-cloud--back,
	.theme-origen .home-team-section .team-carousel--home .team-card.is-flipped .team-card__bio,
	.theme-origen .home-team-section .team-carousel--home .team-card.is-flipped .tag-cloud--back {
		min-height: 0 !important;
		max-height: none !important;
		overflow: visible !important;
	}

	.theme-origen .team-carousel--modern .team-card.is-flipped .team-meta,
	.theme-origen .home-team-section .team-carousel--home .team-card.is-flipped .team-meta {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		min-height: 0 !important;
	}

	.theme-origen .team-carousel--modern .team-card.is-flipped .team-meta__item,
	.theme-origen .home-team-section .team-carousel--home .team-card.is-flipped .team-meta__item {
		min-height: 0 !important;
		align-items: flex-start;
	}

	.theme-origen .team-carousel--modern .team-card.is-flipped .tag-cloud--back,
	.theme-origen .home-team-section .team-carousel--home .team-card.is-flipped .tag-cloud--back {
		margin-top: 0.25rem;
		padding-top: 0;
	}

	.theme-origen .team-carousel--modern .team-card.is-flipped .team-card__actions--back,
	.theme-origen .home-team-section .team-carousel--home .team-card.is-flipped .team-card__actions--back {
		margin-top: 0.35rem;
		padding-bottom: 0.25rem;
	}
}

/* Mobile menu: keep the drawer anchored to the viewport from any scroll position. */
@media (max-width: 1080px) {
	.theme-origen .site-nav {
		position: fixed !important;
		inset: 0 0 0 auto !important;
		width: min(22rem, 100vw);
		height: 100vh;
		height: 100dvh;
		max-height: 100dvh;
		z-index: 1102;
	}

	.theme-origen .site-nav.is-open {
		transform: translate3d(0, 0, 0) !important;
		visibility: visible;
		pointer-events: auto;
	}

	.theme-origen .site-nav__panel {
		height: 100%;
		max-height: 100%;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}

	.theme-origen .site-nav__backdrop {
		position: fixed !important;
		inset: 0 !important;
		z-index: 1100;
	}

	.theme-origen.has-menu-open .site-header {
		z-index: 1101;
	}
}
