/* ═══════════════════════════════════════════════════
   DESIGN TOKENS — brand palette Fonaventur
   Para cambiar colores edita solo esta sección :root
   ═══════════════════════════════════════════════════ */
:root {
	--sage: #8b9467;
	--sage-dark: #626e48;
	--sage-light: #b3bc8f;
	--sage-pale: #d6dcc0;
	--cream: #f5f0dc;
	--cream-dark: #e6dfc4;
	--navy: #1a2744;
	--navy-light: #2d3f6b;
	--gold: #8b6914;
	--gold-light: #c49a2a;
	--terracotta: #a05a3a;
	--white: #ffffff;

	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'Lora', Georgia, serif;
	--font-ui: 'Raleway', sans-serif;

	--radius-card: 18px;
	--shadow: 0 8px 32px rgba(26, 39, 68, 0.13);
	--shadow-hover: 0 16px 48px rgba(26, 39, 68, 0.22);
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════ */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	background: var(--cream);
	color: var(--navy);
	overflow-x: hidden;
}

img {
	display: block;
	max-width: 100%;
}
a {
	text-decoration: none;
	color: inherit;
}

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5vw;
	height: 72px;
	background: rgba(98, 110, 72, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.35s;
}

.navbar.scrolled {
	background: var(--sage-dark);
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav-logo-badge {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--cream);
	border: 2.5px solid var(--sage);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.nav-logo-badge svg {
	width: 28px;
	height: 28px;
}

.nav-logo-text {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--cream);
	letter-spacing: 0.04em;
}

.nav-links {
	display: flex;
	gap: 32px;
	list-style: none;
}

.nav-links a {
	font-family: var(--font-ui);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cream);
	opacity: 0.85;
	transition:
		opacity 0.2s,
		color 0.2s;
}
.nav-links a:hover {
	opacity: 1;
	color: var(--gold-light);
}

.lang-dropdown {
	position: relative;
}

.lang-select {
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	border-radius: 6px;
	color: var(--cream);
	font-family: var(--font-ui);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 5px 8px;
	cursor: pointer;
	transition: border-color 0.2s;
	display: flex;
	align-items: center;
	gap: 6px;
}

.lang-select:focus {
	outline: none;
	border-color: var(--gold-light);
}

.lang-flag {
	width: 16px;
	height: 12px;
	border-radius: 1px;
}

.lang-options {
	position: absolute;
	top: 100%;
	right: 0;
	background: var(--navy);
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	min-width: 80px;
	display: none;
	z-index: 100;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lang-options.open {
	display: block;
}

.lang-option {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	color: var(--cream);
	font-family: var(--font-ui);
	font-size: 0.78rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

.lang-option:hover {
	background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .lang-select {
	border-color: rgba(26, 39, 68, 0.3);
	color: var(--navy);
}

.navbar.scrolled .lang-options {
	background: var(--cream);
	border-color: var(--cream-dark);
}

.navbar.scrolled .lang-option {
	color: var(--navy);
}

.navbar.scrolled .lang-option:hover {
	background: var(--sage-pale);
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
}
.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--cream);
	border-radius: 2px;
	transition: 0.3s;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
	position: relative;
	height: 100svh;
	min-height: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.1);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		165deg,
		rgba(98, 110, 72, 0.8) 0%,
		rgba(98, 110, 72, 0.52) 50%,
		rgba(26, 39, 68, 0.45) 100%
	);
}

.hero-fallback {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		var(--sage-dark) 0%,
		var(--sage) 55%,
		var(--navy) 100%
	);
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 120px;
	background: var(--navy);
	clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	/* padding: 0 5vw; */
	/* max-width: 780px; */
	animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(8px);
	border-radius: 100px;
	padding: 6px 16px;
	font-family: var(--font-ui);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cream);
	margin-bottom: 22px;
}

/* .hero-badge::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold-light);
	animation: pulse 2s infinite;
} */

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.4);
	}
}

.hero-title {
	font-family: var(--font-display);

	font-weight: 900;
	color: var(--white);
	line-height: 1.07;
	letter-spacing: -0.01em;
	margin-bottom: 20px;

	font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-title em {
	font-style: italic;
	color: var(--gold-light);
	font-size: clamp(1.8rem, 4.5vw, 3.2rem);
	display: block;
}

.hero-sub {
	font-family: var(--font-body);
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: rgba(245, 240, 220, 0.85);
	line-height: 1.65;
	max-width: 520px;
	margin: 0 auto 36px;
}

/* --- ESTILOS COMPARTIDOS (Base e Identidad Visual) --- */
.hero-cta,
.hero-instagram {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--gold);
	color: var(--white);
	border-radius: 100px;
	transition:
		background 0.25s,
		transform 0.2s,
		box-shadow 0.25s;
	box-shadow: 0 4px 24px rgba(139, 105, 20, 0.4);
	text-decoration: none; /* Evita subrayados no deseados */
}

/* Efecto Hover unificado */
.hero-cta:hover,
.hero-instagram:hover {
	background: var(--gold-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(139, 105, 20, 0.5);
	color: var(--white);
}

/* --- VARIACIÓN: BOTÓN TEXTO (Grande) --- */
.hero-cta {
	gap: 10px;
	font-family: var(--font-ui);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	/* El padding se maneja proporcionalmente o mediante el estilo en línea que ya tenías */
	padding: 16px 36px;
}

/* --- VARIACIÓN: BOTÓN INSTAGRAM (Pequeño y Circular) --- */
.hero-instagram {
	/* Usamos un tamaño cuadrado idéntico en alto y ancho para que sea un círculo perfecto */
	width: 45px;
	height: 45px;
	padding: 0; /* Limpiamos paddings para centrar perfectamente el SVG */
	flex-shrink: 0; /* Evita que se deforme en pantallas pequeñas */
}

.hero-scroll {
	position: absolute;
	bottom: 48px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.6);
	font-family: var(--font-ui);
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(6px);
	}
}

.hero-scroll svg {
	width: 20px;
	height: 20px;
	opacity: 0.7;
}

/* ═══════════════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════════════ */
section {
	padding: 100px 5vw;
}

.section-label {
	font-family: var(--font-ui);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 12px;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--navy);
	margin-bottom: 18px;
}

.section-sub {
	font-size: 1.05rem;
	color: var(--sage-dark);
	max-width: 560px;
	line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   ABOUT — navy como sección de contraste
   ═══════════════════════════════════════════════════ */
.about {
	background: var(--navy);
	padding: 80px 5vw;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.about-text .section-label {
	color: var(--sage-light);
}
.about-text .section-title {
	color: var(--cream);
}
.about-text .section-sub {
	color: rgba(245, 240, 220, 0.7);
}

.about-icons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.about-icon-badge {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: var(--cream);
	border: 3px solid var(--sage);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	transition:
		transform 0.25s,
		box-shadow 0.25s;
}

.about-icon-badge:hover {
	transform: scale(1.08) rotate(-4deg);
	box-shadow: 0 8px 28px rgba(139, 148, 103, 0.4);
}

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.services {
	background: var(--cream);
}

.services-header {
	max-width: 1200px;
	margin: 0 auto 64px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

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

/* ─── CARD ─── */
.card {
	background: var(--white);
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	transition:
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.3s;
	cursor: pointer;
	border: 1.5px solid var(--cream-dark);
	animation: cardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

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

.card-img {
	position: relative;
	height: 210px;
	overflow: hidden;
}

.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

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

.card-cat {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(98, 110, 72, 0.88);
	backdrop-filter: blur(6px);
	color: var(--cream);
	font-family: var(--font-ui);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 100px;
}

.card-body {
	padding: 22px 24px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.card-title {
	font-family: var(--font-display);
	font-size: 1.22rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 10px;
	line-height: 1.25;
}

.card-desc {
	font-size: 0.92rem;
	color: #4a5568;
	line-height: 1.65;
	flex: 1;
	margin-bottom: 20px;
}

.card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	border-top: 1px solid var(--cream-dark);
}

.card-price {
	display: flex;
	flex-direction: column;
}

.card-price-label {
	font-family: var(--font-ui);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sage);
	margin-bottom: 2px;
}

.card-price-amount {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--navy);
}

.card-price-currency {
	font-size: 0.8rem;
	font-weight: 400;
	margin-left: 3px;
	color: var(--sage-dark);
}

.card-wa {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #25d366;
	color: var(--white);
	font-family: var(--font-ui);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 10px 18px;
	border-radius: 100px;
	transition:
		background 0.2s,
		transform 0.2s;
}

.card-wa:hover {
	background: #1da851;
	transform: scale(1.04);
}
.card-wa svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.services-loading {
	text-align: center;
	padding: 60px 0;
	color: var(--sage);
	font-family: var(--font-ui);
}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact {
	/* background: var(--navy); */
	padding: 80px 5vw;
	text-align: center;
	background:
		linear-gradient(
			160deg,
			rgba(98, 110, 72, 0.5) 0%,
			rgba(26, 39, 68, 0.9) 100%
		),
		url('../assets/img/fondo-humedal.jpg');
}

.contact .section-label {
	color: var(--sage-light);
}
.contact .section-title {
	color: var(--white);
	margin-bottom: 14px;
}

.contact-sub {
	color: rgba(245, 240, 220, 0.75);
	font-size: 1.05rem;
	margin-bottom: 36px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.65;
}

.contact-wa-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	color: var(--sage-dark);
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 1rem;
	padding: 16px 40px;
	border-radius: 100px;
	transition: all 0.25s;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.contact-wa-btn:hover {
	background: #25d366;
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.contact-wa-btn svg {
	width: 22px;
	height: 22px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
footer {
	background: var(--sage-dark);
	padding: 48px 5vw 32px;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 32px;
	margin-bottom: 24px;
}

.footer-logo {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--cream);
}

.footer-links {
	display: flex;
	gap: 28px;
	list-style: none;
}

.footer-links a {
	font-family: var(--font-ui);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(245, 240, 220, 0.55);
	transition: color 0.2s;
}
.footer-links a:hover {
	color: var(--cream);
}

.footer-social {
	display: flex;
	gap: 14px;
}

.footer-social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.2s;
}

.footer-social a:hover {
	border-color: var(--gold-light);
	color: var(--gold-light);
}

.footer-copy {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	font-family: var(--font-ui);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
	.about {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.about-icons {
		justify-content: center;
	}
	.services-header {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 680px) {
	.nav-links {
		display: none;
	}
	.nav-links.open {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		background: var(--sage-dark);
		padding: 24px 5vw;
		gap: 20px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		z-index: 99;
	}
	.hamburger {
		display: flex;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
	.footer-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.footer-links {
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* ── Duración en la card ────────────────────── */
.card-duration {
	position: absolute;
	bottom: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: rgba(26, 39, 68, 0.78);
	backdrop-filter: blur(6px);
	color: var(--cream);
	font-family: var(--font-ui);
	font-size: 0.68rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 100px;
}

/* ═══════════════════════════════════════════════════
   LEO — Quién soy
   ═══════════════════════════════════════════════════ */
.leo {
	background: var(--cream);
	padding: 100px 5vw;
}

.leo-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 80px;
	align-items: center;
}

/* ── Foto ── */
.leo-photo-wrap {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 480px;
}

.leo-photo-ring {
	position: absolute;
	inset: 0;
	border-radius: 54% 46% 60% 40% / 48% 52% 48% 52%;
	border: 2px solid var(--sage-pale);
	animation: morphRing 9s ease-in-out infinite alternate;
}

.leo-photo-ring--2 {
	inset: -14px;
	border-color: var(--sage-light);
	opacity: 0.45;
	animation-delay: -4.5s;
	animation-duration: 12s;
}

@keyframes morphRing {
	0% {
		border-radius: 54% 46% 60% 40% / 48% 52% 48% 52%;
	}
	50% {
		border-radius: 40% 60% 44% 56% / 56% 44% 56% 44%;
	}
	100% {
		border-radius: 60% 40% 50% 50% / 44% 56% 44% 56%;
	}
}

.leo-photo {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	border-radius: 54% 46% 60% 40% / 48% 52% 48% 52%;
	animation: morphPhoto 9s ease-in-out infinite alternate;
	box-shadow: 0 24px 64px rgba(98, 110, 72, 0.25);
	filter: drop-shadow(0 8px 24px rgba(26, 39, 68, 0.15));
}

@keyframes morphPhoto {
	0% {
		border-radius: 54% 46% 60% 40% / 48% 52% 48% 52%;
	}
	50% {
		border-radius: 40% 60% 44% 56% / 56% 44% 56% 44%;
	}
	100% {
		border-radius: 60% 40% 50% 50% / 44% 56% 44% 56%;
	}
}

/* Decorative dot cluster */
.leo-photo-wrap::before {
	content: '';
	position: absolute;
	top: 20px;
	right: -10px;
	width: 80px;
	height: 80px;
	background-image: radial-gradient(
		circle,
		var(--sage-pale) 1.5px,
		transparent 1.5px
	);
	background-size: 10px 10px;
	opacity: 0.8;
	z-index: 1;
}

.leo-photo-wrap::after {
	content: '';
	position: absolute;
	bottom: 30px;
	left: -10px;
	width: 60px;
	height: 60px;
	background-image: radial-gradient(
		circle,
		var(--sage-pale) 1.5px,
		transparent 1.5px
	);
	background-size: 10px 10px;
	opacity: 0.6;
	z-index: 1;
}

/* ── Texto ── */
.leo-desc {
	font-size: 1rem;
	line-height: 1.75;
	color: #4a5568;
	margin-bottom: 32px;
}

/* ── Skills ── */
.leo-skills {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}

.leo-skill {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.leo-skill-icon {
	font-size: 1.3rem;
	width: 42px;
	height: 42px;
	background: var(--sage-pale);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.leo-skill div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.leo-skill strong {
	font-family: var(--font-ui);
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--navy);
}

.leo-skill span {
	font-size: 0.82rem;
	color: var(--sage-dark);
}

/* ── Idiomas ── */
.leo-langs {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.leo-lang {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--white);
	border: 1.5px solid var(--cream-dark);
	border-radius: 100px;
	padding: 7px 16px;
	font-family: var(--font-ui);
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--navy);
	box-shadow: 0 2px 8px rgba(26, 39, 68, 0.06);
}

.leo-lang-flag {
	font-size: 1.1rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.leo-lang-flag img {
	width: 20px;
	height: 15px;
	border-radius: 1px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.leo-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.leo-photo-wrap {
		height: 340px;
		max-width: 340px;
		margin: 0 auto;
	}
}
