/* ============================================================================
   ADRIANA LÓPEZ FOTOGRAFÍA — Experiencia cinematográfica
   Sistema visual: lujo silencioso, editorial, fotografía protagonista.
   ========================================================================== */

:root {
	--ivory:   #F8F5F1;
	--beige:   #F4EEE8;
	--sand:    #EFE7DF;
	--taupe:   #DCCBB9;
	--brown:   #6F665F;
	--ink:     #2D2A26;
	--accent:  #B59679;
	--cream:   #F8F5F1;

	--ff-display: "Cormorant Garamond", Georgia, serif;
	--ff-title:   "Playfair Display", Georgia, serif;
	--ff-text:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset suave -------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.alf-cine {
	background: var(--ivory);
	color: var(--ink);
	font-family: var(--ff-text);
	font-weight: 300;
	line-height: 1.7;
	overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Scroll NATIVO normal — sin smooth scroll de ningún tipo */
html { scroll-behavior: auto !important; }

/* Tipografía editorial ---------------------------------------------------- */
.alf-eyebrow {
	font-family: var(--ff-text);
	font-weight: 400;
	font-size: clamp(10px, 0.9vw, 12px);
	letter-spacing: 0.42em;
	text-transform: uppercase;
	color: var(--accent);
}
.alf-display {
	font-family: var(--ff-title);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.01em;
}
.alf-serif {
	font-family: var(--ff-display);
	font-weight: 500;
	font-style: italic;
}

/* ============================================================================
   NAVEGACIÓN flotante transparente
   ========================================================================== */
.alf-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 26px clamp(20px, 5vw, 70px);
	color: var(--cream);
	transition: background .6s var(--ease), backdrop-filter .6s var(--ease), padding .6s var(--ease), color .6s var(--ease);
	text-shadow: 0 1px 24px rgba(0,0,0,.45);
}
/* Distribución: LOGO (izq) · MENÚ (centro) · RESERVAR (dcha) */
.alf-nav__logo { justify-self: start; }
.alf-nav__menu { justify-self: center; }
.alf-nav .alf-nav__cta { justify-self: end; }
/* Velo superior para legibilidad de la nav sobre cualquier foto */
.alf-nav__scrim {
	position: absolute; left: 0; right: 0; top: 0; height: 220px; z-index: 0;
	background: linear-gradient(180deg, rgba(45,42,38,.75) 0%, rgba(45,42,38,.35) 50%, rgba(45,42,38,0) 100%);
	opacity: 1; transition: opacity .6s var(--ease); pointer-events: none;
}
.alf-nav.is-scrolled .alf-nav__scrim { opacity: 0; }
.alf-nav__logo, .alf-nav__menu, .alf-nav__cta, .alf-nav__toggle { position: relative; z-index: 1; }
/* Color del menú: blanco sobre foto, tinta al hacer scroll (pisa estilos de tema/Elementor) */
.alf-nav .alf-nav__logo,
.alf-nav .alf-nav__cta,
.alf-nav .alf-nav__toggle,
.alf-nav .alf-nav__menu a { color: var(--cream); }
.alf-nav.is-scrolled .alf-nav__logo,
.alf-nav.is-scrolled .alf-nav__cta,
.alf-nav.is-scrolled .alf-nav__toggle,
.alf-nav.is-scrolled .alf-nav__menu a { color: var(--ink); }
.alf-nav .alf-nav__dropdown a { color: var(--ink); }
.alf-nav .alf-nav__dropdown a:hover,
.alf-nav .alf-nav__menu a:hover { color: var(--accent); }
.alf-nav:not(.is-scrolled) .alf-nav__logo,
.alf-nav:not(.is-scrolled) .alf-nav__menu { text-shadow: 0 1px 20px rgba(0,0,0,.6), 0 0 3px rgba(0,0,0,.4); }
.alf-nav.is-scrolled {
	background: rgba(248, 245, 241, 0.72);
	backdrop-filter: blur(18px) saturate(120%);
	-webkit-backdrop-filter: blur(18px) saturate(120%);
	padding: 18px clamp(20px, 5vw, 70px);
	color: var(--ink);
	text-shadow: none;
	border-bottom: 1px solid rgba(45, 42, 38, 0.06);
}
.alf-nav__logo {
	font-family: var(--ff-title);
	font-size: clamp(15px, 1.4vw, 19px);
	letter-spacing: 0.28em;
	font-weight: 400;
	display: inline-flex;
	align-items: center;
}
/* Logo en imagen: blanco sobre la foto, negro al hacer scroll */
.alf-nav__logo img {
	height: clamp(60px, 6vw, 82px);
	width: auto;
	display: block;
	filter: brightness(0) invert(1);              /* blanco sobre foto */
	transition: filter .5s var(--ease), height .5s var(--ease);
}
.alf-nav.is-scrolled .alf-nav__logo img {
	filter: none;                                 /* negro sobre fondo claro */
	height: clamp(50px, 5vw, 66px);
}
.alf-nav__menu {
	display: flex;
	gap: clamp(20px, 2.6vw, 44px);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 400;
}
.alf-nav__menu a { position: relative; padding: 4px 0; opacity: .92; transition: opacity .4s; }
.alf-nav__menu a::after {
	content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
	background: currentColor; transition: width .5s var(--ease);
}
.alf-nav__menu a:hover { opacity: 1; }
.alf-nav__menu > .alf-nav__item:hover::after,
.alf-nav__menu a:not(.alf-nav__cta):hover::after { width: 100%; }

/* Items y dropdown */
.alf-nav__item { position: relative; }
.alf-nav__item--has-children > a { display: inline-flex; align-items: center; gap: 6px; }
.alf-nav__caret { font-size: 9px; opacity: .6; transform: translateY(-1px); }
.alf-nav__dropdown {
	position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
	margin-top: 14px; padding: 18px 22px; min-width: 200px;
}
/* Puente invisible que cubre el hueco para que el hover no se pierda */
.alf-nav__dropdown::before {
	content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 22px; background: transparent;
}
.alf-nav__dropdown {
	background: rgba(248,245,241,.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(45,42,38,.07); box-shadow: 0 24px 60px rgba(45,42,38,.12);
	display: flex; flex-direction: column; gap: 14px;
	opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.alf-nav__item--has-children:hover .alf-nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.alf-nav__dropdown a { color: var(--ink) !important; text-shadow: none; opacity: .8; font-size: 11px; }
.alf-nav__dropdown a::after { display: none; }
.alf-nav__dropdown a:hover { opacity: 1; color: var(--accent) !important; }

/* CTA Reservar (fuera del menú, columna derecha) */
.alf-nav a.alf-nav__cta {
	padding: 12px 34px; border: 1px solid currentColor; border-radius: 0;
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400;
	transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.alf-nav a.alf-nav__cta::after { display: none !important; }
/* En hover: relleno corporativo y texto crema (no se pierde el "Reservar") */
.alf-nav a.alf-nav__cta:hover {
	background: var(--accent); border-color: var(--accent); color: var(--cream);
}

/* Hamburguesa */
.alf-nav__toggle {
	display: none; position: relative; width: 30px; height: 18px;
	background: none; border: 0; cursor: pointer; z-index: 120;
}
.alf-nav__toggle span {
	position: absolute; left: 0; width: 100%; height: 1.5px; background: currentColor;
	transition: transform .4s var(--ease), opacity .3s;
}
.alf-nav__toggle span:nth-child(1) { top: 3px; }
.alf-nav__toggle span:nth-child(2) { bottom: 3px; }
body.menu-open .alf-nav__toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .alf-nav__toggle span:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }

/* Overlay menú móvil */
.alf-mobilemenu {
	position: fixed; inset: 0; z-index: 110;
	background: rgba(45,42,38,.97); backdrop-filter: blur(8px);
	display: flex; align-items: center; justify-content: center;
	opacity: 0; visibility: hidden; transition: opacity .5s var(--ease);
}
body.menu-open .alf-mobilemenu { opacity: 1; visibility: visible; }
.alf-mobilemenu__close {
	position: absolute; top: 14px; right: 18px; z-index: 2;
	background: transparent !important; border: 0 !important; box-shadow: none !important;
	color: var(--ivory) !important; cursor: pointer; padding: 6px 10px;
	font-size: 44px; line-height: 1; opacity: .85; transition: opacity .3s;
}
.alf-mobilemenu__close:hover { opacity: 1; background: transparent !important; }
.alf-mobilemenu nav { text-align: center; }
.alf-mobilemenu nav > a {
	display: block; color: var(--ivory); font-family: var(--ff-title); font-weight: 400;
	font-size: clamp(28px, 8vw, 44px); line-height: 1.8; letter-spacing: .02em;
	opacity: .92; transition: color .3s;
}
.alf-mobilemenu nav > a:hover { color: var(--accent); }
.alf-mobilemenu__sub { margin: 4px 0 16px; }
.alf-mobilemenu__sub a {
	display: block; color: var(--taupe); font-family: var(--ff-text);
	font-size: 13px; letter-spacing: .2em; text-transform: uppercase; line-height: 2.2;
}

/* ============================================================================
   SECCIONES base
   ========================================================================== */
.alf-section { position: relative; }
/* Primera sección tras el hero: poco espacio arriba */
.alf-tight-top { padding-top: clamp(20px, 3vh, 40px) !important; }
.alf-tight-top .alf-lead { padding-top: 0 !important; padding-bottom: clamp(20px, 3vh, 44px) !important; }
/* Páginas de contenido (precios/guías): primera sección tras el hero, menos espacio */
.alf-page > section:first-child { padding-top: clamp(28px, 4vh, 56px) !important; }

/* Marco fullscreen de imagen con overflow para parallax/scale */
.alf-fullmedia {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.alf-fullmedia--tall { height: 120vh; }
.alf-fullmedia--mid { height: 66vh; }
@media (max-width: 700px) { .alf-fullmedia--mid { height: 52vh; } }
.alf-fullmedia--xtall { height: 150vh; }
.alf-fullmedia__img {
	position: absolute;
	inset: -8% 0;
	width: 100%;
	height: 116%;
	object-fit: cover;
	will-change: transform;
}
/* Wrapper para zoom de scroll del hero (la imagen hace Ken Burns dentro) */
.alf-fullmedia__zoom { position: absolute; inset: 0; overflow: hidden; will-change: transform; }
.alf-kenburns { animation: kenburns 24s ease-in-out infinite alternate; }
@keyframes kenburns {
	0%   { transform: scale(1) translate(0, 0); }
	100% { transform: scale(1.08) translate(-1.5%, -1.5%); }
}
@media (prefers-reduced-motion: reduce) { .alf-kenburns { animation: none; } }
.alf-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(45,42,38,.30) 0%, rgba(45,42,38,.10) 35%, rgba(45,42,38,.45) 100%);
	z-index: 1;
}
.alf-overlay--soft { background: rgba(45,42,38,.22); }
.alf-overlay--bottom { background: linear-gradient(180deg, rgba(45,42,38,0) 40%, rgba(45,42,38,.55) 100%); }

/* ============================================================================
   1. HERO
   ========================================================================== */
.alf-hero { height: 100vh; }
.alf-hero__content {
	position: absolute; inset: 0; z-index: 2;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center; padding: 0 24px; color: var(--cream);
}
.alf-hero__title {
	font-family: var(--ff-title);
	font-weight: 400;
	font-size: clamp(28px, 4.4vw, 68px);
	line-height: 1.16;
	max-width: 16ch;
	letter-spacing: -0.005em;
	text-shadow: 0 2px 40px rgba(0,0,0,.25);
}
.alf-hero__sub {
	margin-top: 28px;
	font-family: var(--ff-display);
	font-style: italic;
	font-size: clamp(15px, 1.5vw, 21px);
	font-weight: 400;
	opacity: .92;
	letter-spacing: .01em;
}
.alf-scrollcue {
	position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%);
	z-index: 3; color: var(--cream);
	display: flex; flex-direction: column; align-items: center; gap: 10px;
	font-size: 10px; letter-spacing: .3em; text-transform: uppercase; opacity: .85;
}
.alf-scrollcue__line { width: 1px; height: 54px; background: currentColor; transform-origin: top; animation: cueLine 2.4s var(--ease) infinite; }
@keyframes cueLine { 0%{transform:scaleY(0);opacity:.2} 45%{transform:scaleY(1);opacity:1} 100%{transform:scaleY(0);transform-origin:bottom;opacity:.2} }

/* ============================================================================
   STATEMENTS sobre fotografía
   ========================================================================== */
.alf-statement__content {
	position: absolute; inset: 0; z-index: 2;
	display: flex; align-items: center; justify-content: center;
	text-align: center; padding: 0 24px; color: var(--cream);
}
.alf-statement__text {
	font-family: var(--ff-title);
	font-weight: 400;
	font-size: clamp(30px, 5vw, 86px);
	line-height: 1.1;
	max-width: 18ch;
	text-shadow: 0 2px 50px rgba(0,0,0,.3);
}
.alf-statement__text .em { font-family: var(--ff-display); font-style: italic; color: var(--taupe); }

/* ============================================================================
   TIPOS DE SESIONES (grid de categorías)
   ========================================================================== */
.alf-tipos { background: var(--ivory); padding: clamp(48px,7vh,90px) clamp(20px,5vw,90px); }
.alf-tipos__head { text-align: center; margin-bottom: clamp(40px,6vh,70px); }
.alf-tipos__head h2 { font-family: var(--ff-title); font-weight: 400; font-size: clamp(28px,3.6vw,52px); color: var(--ink); margin-top: 16px; line-height: 1.15; }
.alf-tipos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px,1.6vw,24px); max-width: 1200px; margin: 0 auto; }
.alf-tipo { position: relative; display: block; overflow: hidden; aspect-ratio: 4/5; }
.alf-tipo__media { position: absolute; inset: 0; }
.alf-tipo__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.alf-tipo:hover .alf-tipo__media img { transform: scale(1.06); }
.alf-tipo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(45,42,38,0) 42%, rgba(45,42,38,.62) 100%); transition: background .5s var(--ease); }
.alf-tipo:hover::after { background: linear-gradient(180deg, rgba(45,42,38,.1) 20%, rgba(45,42,38,.7) 100%); }
.alf-tipo__name { position: absolute; left: 0; right: 0; bottom: 24px; z-index: 1; text-align: center; color: var(--cream); font-family: var(--ff-title); font-weight: 400; font-size: clamp(18px,1.8vw,26px); letter-spacing: .03em; text-shadow: 0 1px 20px rgba(0,0,0,.4); }
@media (max-width: 860px) { .alf-tipos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .alf-tipos__grid { grid-template-columns: 1fr; } }

/* ============================================================================
   GALERÍA editorial / composiciones solapadas
   ========================================================================== */
.alf-editorial {
	padding: clamp(48px, 7vh, 100px) clamp(20px, 6vw, 120px);
	background: var(--ivory);
}
.alf-editorial__grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(16px, 2vw, 40px);
	align-items: center;
}
.alf-fig { overflow: hidden; position: relative; }
.alf-fig img { width: 100%; height: 100%; object-fit: cover; will-change: transform; transition: transform 1.4s var(--ease); }
.alf-fig figcaption {
	margin-top: 16px;
	font-family: var(--ff-text); font-size: 11px; letter-spacing: .24em;
	text-transform: uppercase; color: var(--brown);
}
.alf-fig--a { grid-column: 1 / 7; aspect-ratio: 4/5; }
.alf-fig--b { grid-column: 8 / 13; aspect-ratio: 4/5; transform: translateY(8%); }
.alf-fig--wide { grid-column: 1 / 13; aspect-ratio: 16/8; }
.alf-fig--port { grid-column: 4 / 10; aspect-ratio: 3/4; }

.alf-lead {
	grid-column: 2 / 12;
	text-align: center;
	padding: clamp(20px,4vh,48px) 0;
}
.alf-lead h2 {
	font-family: var(--ff-title); font-weight: 400;
	font-size: clamp(26px, 3.6vw, 52px); line-height: 1.18; color: var(--ink);
}
.alf-lead p { margin-top: 22px; color: var(--brown); font-size: clamp(15px,1.2vw,18px); max-width: 56ch; margin-inline: auto; }

/* ============================================================================
   GALERÍA horizontal (scroll lateral cinematográfico)
   ========================================================================== */
.alf-horizon { overflow: hidden; background: var(--sand); }
.alf-horizon__track { display: flex; align-items: center; gap: clamp(16px,2vw,40px); padding: clamp(40px,8vh,90px) clamp(20px,5vw,80px); width: max-content; will-change: transform; }
.alf-horizon__item { flex: 0 0 auto; width: clamp(280px, 38vw, 620px); }
/* MÓVIL: carrusel nativo, 1 foto por pantalla con swipe (sin pin GSAP) */
@media (max-width: 900px) {
	.alf-horizon {
		overflow-x: auto; overflow-y: hidden;
		scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.alf-horizon::-webkit-scrollbar { display: none; }
	.alf-horizon__track { transform: none !important; width: max-content; gap: 0; padding: clamp(28px,5vh,46px) 0; align-items: stretch; }
	.alf-horizon__item, .alf-horizon__item--wide { width: 100vw; padding: 0 16px; scroll-snap-align: center; }
	.alf-horizon__item figure, .alf-horizon__item--wide figure { aspect-ratio: 4/5; }
	.alf-horizon__cap { padding-left: 16px; }
}
.alf-horizon__item figure { overflow: hidden; aspect-ratio: 3/4; }
.alf-horizon__item img { width: 100%; height: 100%; object-fit: cover; }
.alf-horizon__item--wide { width: clamp(420px, 54vw, 900px); }
.alf-horizon__item--wide figure { aspect-ratio: 16/10; }
.alf-horizon__cap { margin-top: 14px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--brown); }

/* ============================================================================
   INTERLUDIOS DE VÍDEO (B-roll ambiental Higgsfield)
   ========================================================================== */
.alf-interlude {
	position: relative;
	height: 72vh;
	overflow: hidden;
}
.alf-interlude--short { height: 56vh; }
.alf-interlude__video {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	will-change: transform;
}
.alf-interlude__veil {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(248,245,241,.20) 0%, rgba(248,245,241,0) 30%, rgba(248,245,241,0) 70%, rgba(248,245,241,.30) 100%);
	z-index: 1;
}
.alf-interlude__content {
	position: absolute; inset: 0; z-index: 2;
	display: flex; align-items: center; justify-content: center;
	text-align: center; padding: 0 8vw;
}
.alf-interlude__text {
	font-family: var(--ff-display); font-style: italic; font-weight: 500;
	font-size: clamp(22px, 3vw, 44px); line-height: 1.4; color: var(--ink);
	max-width: 24ch; text-shadow: 0 1px 30px rgba(248,245,241,.6);
}

/* ============================================================================
   SOBRE ADRIANA (artista)
   ========================================================================== */
.alf-about {
	display: grid; grid-template-columns: 1fr 1fr; align-items: center;
	gap: clamp(30px, 6vw, 110px);
	padding: clamp(48px, 7vh, 100px) clamp(20px, 6vw, 120px);
	background: var(--beige);
}
.alf-about__media { overflow: hidden; aspect-ratio: 4/5; }
.alf-about__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.alf-about__body { max-width: 30rem; }
.alf-about__title { font-family: var(--ff-title); font-weight: 400; font-size: clamp(30px,3.8vw,58px); line-height: 1.12; margin: 22px 0 28px; color: var(--ink); }
.alf-about__body p { color: var(--brown); font-size: clamp(15px,1.15vw,18px); margin-bottom: 14px; }
.alf-about__body .sig { font-family: var(--ff-display); font-style: italic; font-size: clamp(20px,1.8vw,26px); color: var(--ink); margin-top: 18px; }

/* ============================================================================
   QUÉ INCLUYE (páginas de sesión)
   ========================================================================== */
.alf-incluye { background: var(--beige); padding: clamp(48px,7vh,100px) clamp(20px,6vw,120px); }
.alf-incluye__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.alf-incluye__inner h2 { font-family: var(--ff-title); font-weight: 400; font-size: clamp(28px,3.4vw,48px); color: var(--ink); margin: 18px 0 48px; }
.alf-incluye ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 28px 50px; text-align: left; }
.alf-incluye li { display: flex; align-items: baseline; gap: 18px; padding-bottom: 24px; border-bottom: 1px solid rgba(45,42,38,.10); color: var(--ink); font-size: clamp(15px,1.3vw,18px); }
.alf-incluye__num { font-family: var(--ff-title); color: var(--accent); font-size: 15px; letter-spacing: .1em; flex: 0 0 auto; }
@media (max-width: 760px) { .alf-incluye ul { grid-template-columns: 1fr; gap: 0; } }

/* ============================================================================
   TESTIMONIO sobre foto
   ========================================================================== */
.alf-quote__content {
	position: absolute; inset: 0; z-index: 2;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center; padding: 0 8vw; color: var(--cream);
}
.alf-quote__text {
	font-family: var(--ff-display); font-style: italic; font-weight: 500;
	font-size: clamp(24px, 3.4vw, 50px); line-height: 1.35; max-width: 22ch;
	text-shadow: 0 2px 50px rgba(0,0,0,.3);
}
.alf-quote__author { margin-top: 28px; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; opacity: .85; }

/* ============================================================================
   BIOGRAFÍA (Sobre mí)
   ========================================================================== */
.alf-bio { background: var(--ivory); padding: clamp(80px,13vh,170px) clamp(20px,6vw,120px); }
.alf-bio__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.alf-bio__lead {
	font-family: var(--ff-title); font-weight: 400; font-size: clamp(26px,3.4vw,46px);
	line-height: 1.3; color: var(--ink); margin-bottom: 40px;
}
.alf-bio__text { text-align: left; }
.alf-bio__text p { color: var(--brown); font-size: clamp(16px,1.25vw,18px); line-height: 1.95; margin-bottom: 22px; }
.alf-bio__sign {
	font-family: var(--ff-display); font-style: italic; font-weight: 500;
	font-size: clamp(24px,2.6vw,38px); color: var(--accent); margin-top: 36px;
}

/* ============================================================================
   TESTIMONIOS (editorial, reales)
   ========================================================================== */
.alf-testimonials { background: var(--bg3, #EFE7DF); padding: clamp(48px,7vh,100px) clamp(20px,6vw,120px); }
.alf-testimonials__head { text-align: center; max-width: 720px; margin: 0 auto clamp(50px,7vh,80px); }
.alf-testimonials__head h2 { font-family: var(--ff-title); font-weight: 400; font-size: clamp(28px,3.6vw,52px); color: var(--ink); margin-top: 16px; line-height: 1.15; }
.alf-testimonials__grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,80px); }
.alf-testi { display: flex; flex-direction: column; gap: 26px; }
.alf-testi blockquote {
	font-family: var(--ff-display); font-style: italic; font-weight: 500;
	font-size: clamp(19px,1.7vw,25px); line-height: 1.5; color: var(--ink);
	position: relative; padding-top: 30px;
}
.alf-testi blockquote::before {
	content: "“"; position: absolute; top: -18px; left: -4px;
	font-family: var(--ff-title); font-size: 70px; color: var(--accent); opacity: .5; line-height: 1;
}
.alf-testi figcaption { display: flex; flex-direction: column; gap: 3px; }
.alf-testi__name { font-family: var(--ff-text); font-weight: 500; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.alf-testi__role { font-family: var(--ff-display); font-style: italic; font-size: 17px; color: var(--brown); }
/* Móvil + tablet: carrusel deslizable (1 testimonio por vista) */
@media (max-width: 1024px) {
	.alf-testimonials__grid {
		display: flex; grid-template-columns: none; gap: 0;
		max-width: none; overflow-x: auto; scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch; scrollbar-width: none;
		padding-bottom: 8px;
	}
	.alf-testimonials__grid::-webkit-scrollbar { display: none; }
	.alf-testi { flex: 0 0 86%; scroll-snap-align: center; padding: 0 clamp(14px,4vw,28px); }
}
@media (max-width: 560px) { .alf-testi { flex-basis: 90%; } }

/* ============================================================================
   CTA FINAL
   ========================================================================== */
.alf-cta__content {
	position: absolute; inset: 0; z-index: 2;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center; padding: 0 24px; color: var(--cream);
}
.alf-cta__text { font-family: var(--ff-title); font-weight: 400; font-size: clamp(30px,4.6vw,76px); line-height: 1.14; max-width: 16ch; text-shadow: 0 2px 50px rgba(0,0,0,.3); }
.alf-btn {
	display: inline-block; margin-top: 42px;
	padding: 18px 46px; border: 1px solid currentColor;
	font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 400;
	color: var(--cream); transition: background .6s var(--ease), color .6s var(--ease);
}
.alf-btn:hover { background: var(--cream); color: var(--ink); }
.alf-btn--dark { color: var(--ink); }
.alf-btn--dark:hover { background: var(--ink); color: var(--cream); }
/* Botón corporativo (relleno acento) */
.alf-btn--corp { background: var(--accent); border-color: var(--accent); color: var(--cream); }
.alf-btn--corp:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

/* ============================================================================
   CABECERA de página interior
   ========================================================================== */
.alf-pagehead { padding: clamp(140px,20vh,220px) clamp(20px,6vw,120px) clamp(50px,8vh,90px); background: var(--ivory); text-align: center; }
.alf-pagehead__inner { max-width: 720px; margin: 0 auto; }
.alf-pagehead h1 { font-family: var(--ff-title); font-weight: 400; font-size: clamp(34px,5vw,72px); line-height: 1.1; color: var(--ink); margin: 22px 0 24px; }
.alf-pagehead p { color: var(--brown); font-size: clamp(16px,1.4vw,20px); max-width: 52ch; margin: 0 auto; }

/* ============================================================================
   CATEGORÍAS (índice de sesiones) — filas alternas imagen/texto
   ========================================================================== */
.alf-cats { display: flex; flex-direction: column; }
.alf-cat {
	display: grid; grid-template-columns: 1.4fr 1fr; align-items: center;
	gap: clamp(24px,5vw,90px);
	padding: clamp(40px,7vh,90px) clamp(20px,6vw,120px);
	background: var(--ivory);
}
.alf-cat:nth-child(even) { background: var(--beige); }
.alf-cat--right { grid-template-columns: 1fr 1.4fr; }
.alf-cat--right .alf-cat__media { order: 2; }
.alf-cat--right .alf-cat__label { order: 1; }
.alf-cat__media { overflow: hidden; aspect-ratio: 3/2; }
.alf-cat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); will-change: transform; }
.alf-cat:hover .alf-cat__media img { transform: scale(1.05); }
.alf-cat__label h2 { font-family: var(--ff-title); font-weight: 400; font-size: clamp(30px,4vw,60px); color: var(--ink); margin: 14px 0 12px; line-height: 1.1; }
.alf-cat__label p { font-family: var(--ff-display); font-style: italic; color: var(--brown); font-size: clamp(18px,1.6vw,24px); margin-bottom: 26px; }
.alf-cat__link { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid currentColor; padding-bottom: 5px; transition: gap .4s; }
@media (max-width: 760px) {
	.alf-cat, .alf-cat--right { grid-template-columns: 1fr; gap: 20px; }
	.alf-cat--right .alf-cat__media, .alf-cat--right .alf-cat__label { order: initial; }
	.alf-cat__media { aspect-ratio: 4/3; }
}

/* ============================================================================
   PÁGINAS DE CONTENIDO (precios / guías recreadas de Divi)
   ========================================================================== */
.alf-page { background: var(--ivory); }

/* Tarjetas de precio */
.alf-prices { padding: clamp(70px,11vh,140px) clamp(20px,6vw,120px); }
.alf-prices__grid {
	max-width: 1180px; margin: 0 auto;
	display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: clamp(20px,2.4vw,40px); align-items: stretch;
}
.alf-price {
	background: #fff; border: 1px solid rgba(45,42,38,.08);
	padding: clamp(30px,3vw,46px) clamp(26px,2.6vw,38px);
	display: flex; flex-direction: column;
	transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.alf-price:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(45,42,38,.10); }
.alf-price__title { font-family: var(--ff-title); font-weight: 400; font-size: clamp(20px,1.8vw,24px); color: var(--ink); letter-spacing: .01em; }
.alf-price__amount { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 26px; padding-bottom: 24px; border-bottom: 1px solid rgba(45,42,38,.10); }
.alf-price__num { font-family: var(--ff-title); font-weight: 400; font-size: clamp(44px,4.4vw,62px); color: var(--ink); line-height: 1; }
.alf-price__cur { font-family: var(--ff-display); font-style: italic; font-size: clamp(20px,1.8vw,26px); color: var(--accent); }
.alf-price__feats { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.alf-price__feats li { position: relative; padding-left: 22px; color: var(--brown); font-size: 14.5px; line-height: 1.6; }
.alf-price__feats li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border: 1px solid var(--accent); border-radius: 50%; }

/* Cabecera de tarifas */
.alf-prices__head { text-align: center; max-width: 680px; margin: 0 auto clamp(36px,5vh,60px); }
.alf-prices__head h2 { font-family: var(--ff-title); font-weight: 400; font-size: clamp(28px,3.4vw,48px); color: var(--ink); margin-top: 14px; }

/* Pasos numerados (cómo reservar) */
.alf-steps { background: var(--beige); padding: clamp(48px,7vh,90px) clamp(20px,6vw,120px); }
.alf-steps__head { text-align: center; max-width: 680px; margin: 0 auto clamp(44px,6vh,70px); }
.alf-steps__head h2 { font-family: var(--ff-title); font-weight: 400; font-size: clamp(28px,3.4vw,48px); color: var(--ink); margin-top: 14px; }
.alf-steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,2.5vw,44px); max-width: 1160px; margin: 0 auto; }
.alf-step { text-align: left; }
.alf-step__num { font-family: var(--ff-title); font-weight: 400; font-size: clamp(40px,4vw,58px); color: var(--detail); line-height: 1; display: block; margin-bottom: 16px; }
.alf-step__title { font-family: var(--ff-text); font-weight: 500; font-size: clamp(13px,1vw,15px); letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; padding-bottom: 14px; border-bottom: 1px solid rgba(45,42,38,.14); }
.alf-step p { color: var(--brown); font-size: 14.5px; line-height: 1.8; }
@media (max-width: 900px) { .alf-steps__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 520px) { .alf-steps__grid { grid-template-columns: 1fr; } }

/* Flujo editorial (párrafos emparejados con fotos, filas alternas) */
.alf-cflow { background: var(--ivory); padding: clamp(20px,3vh,40px) 0 clamp(20px,3vh,40px); }
.alf-cedit { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(28px,5vw,90px); max-width: 1180px; margin: 0 auto; padding: clamp(36px,6vh,80px) clamp(20px,5vw,90px); }
.alf-cedit--r .alf-cedit__media { order: 2; }
.alf-cedit__media { aspect-ratio: 4/5; overflow: hidden; }
.alf-cedit__body { max-width: 32rem; }
.alf-cedit__body .alf-eyebrow { display: block; margin-bottom: 14px; }
.alf-cedit__body h3 { font-family: var(--ff-title); font-weight: 400; font-size: clamp(24px,2.8vw,40px); color: var(--ink); line-height: 1.2; margin-bottom: 18px; }
.alf-cedit__body p { color: var(--brown); font-size: clamp(15px,1.2vw,18px); line-height: 1.9; }
.alf-cedit--solo { display: block; max-width: 680px; text-align: center; padding-block: clamp(24px,4vh,50px); }
.alf-cedit--solo h3 { font-family: var(--ff-title); font-weight: 400; font-size: clamp(24px,3vw,40px); color: var(--ink); margin-bottom: 12px; }
.alf-cedit--solo p { color: var(--brown); font-size: clamp(16px,1.3vw,19px); line-height: 1.9; max-width: 56ch; margin: 0 auto; }
.alf-cedit--solo .alf-eyebrow { display: block; margin-bottom: 14px; }
@media (max-width: 820px) {
	.alf-cedit { grid-template-columns: 1fr; gap: 22px; }
	.alf-cedit--r .alf-cedit__media { order: initial; }
	.alf-cedit__media { aspect-ratio: 4/3; }
}

/* Texto editorial (legacy, intro/FAQ/pasos) */
.alf-richtext { padding: clamp(50px,8vh,100px) clamp(20px,6vw,120px); background: var(--beige); }
.alf-richtext__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.alf-richtext__inner h3 { font-family: var(--ff-title); font-weight: 400; font-size: clamp(24px,2.8vw,40px); color: var(--ink); margin: 36px 0 14px; }
.alf-richtext__inner h3:first-child { margin-top: 0; }
.alf-richtext__inner p { color: var(--brown); font-size: clamp(15px,1.2vw,18px); line-height: 1.9; margin-bottom: 14px; }

/* CTA de página */
.alf-pagecta { padding: clamp(70px,11vh,140px) 20px; background: var(--ivory); text-align: center; }

/* ============================================================================
   LIGHTBOX (zoom + navegación)
   ========================================================================== */
.alf-lightbox {
	position: fixed; inset: 0; z-index: 2000;
	background: rgba(45, 42, 38, .95);
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
	display: flex; align-items: center; justify-content: center;
	opacity: 0; visibility: hidden; transition: opacity .4s var(--ease);
}
body.lb-open { overflow: hidden; }
body.lb-open .alf-lightbox { opacity: 1; visibility: visible; }
.alf-lb__img {
	max-width: 88vw; max-height: 86vh; width: auto; height: auto;
	object-fit: contain; box-shadow: 0 40px 100px rgba(0,0,0,.5);
	animation: lbIn .5s var(--ease);
}
@keyframes lbIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.alf-lb__btn {
	position: absolute; background: none; border: 0; color: var(--ivory);
	cursor: pointer; line-height: 1; opacity: .8; transition: opacity .3s, transform .3s;
	font-family: var(--ff-text); -webkit-font-smoothing: antialiased;
}
.alf-lb__btn:hover { opacity: 1; }
.alf-lb__close { top: 22px; right: 30px; font-size: 42px; }
.alf-lb__prev, .alf-lb__next { top: 50%; transform: translateY(-50%); font-size: 60px; padding: 10px 20px; }
.alf-lb__prev { left: clamp(6px, 2vw, 30px); }
.alf-lb__next { right: clamp(6px, 2vw, 30px); }
.alf-lb__prev:hover { transform: translateY(-50%) translateX(-4px); }
.alf-lb__next:hover { transform: translateY(-50%) translateX(4px); }
.alf-lb__count {
	position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
	color: var(--taupe); font-size: 12px; letter-spacing: .2em;
}
@media (max-width: 700px) {
	.alf-lb__prev, .alf-lb__next { font-size: 44px; bottom: 18px; top: auto; transform: none; }
	.alf-lb__prev { left: 24px; } .alf-lb__next { right: 24px; }
	.alf-lb__img { max-width: 94vw; max-height: 76vh; }
}

/* ============================================================================
   GALERÍA PORTFOLIO (masonry)
   ========================================================================== */
.alf-gallery {
	column-count: 3;
	column-gap: clamp(10px, 1.4vw, 22px);
	padding: clamp(20px,4vh,50px) clamp(20px,5vw,90px) clamp(70px,10vh,120px);
	background: var(--ivory);
}
.alf-gallery__item { break-inside: avoid; margin: 0 0 clamp(10px,1.4vw,22px); overflow: hidden; }
.alf-gallery__item img { width: 100%; height: auto; display: block; transition: transform 1.4s var(--ease); }
.alf-gallery__item:hover img { transform: scale(1.05); }
@media (max-width: 1000px) { .alf-gallery { column-count: 2; } }
@media (max-width: 600px)  { .alf-gallery { column-count: 1; } }

/* ============================================================================
   CONTACTO
   ========================================================================== */
.alf-contact { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.alf-contact__media { position: relative; overflow: hidden; }
.alf-contact__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.alf-contact__panel { background: var(--ivory); display: flex; align-items: center; padding: clamp(100px,14vh,160px) clamp(28px,5vw,90px) clamp(60px,8vh,90px); }
.alf-contact__inner { width: 100%; max-width: 480px; }
.alf-contact__inner h1 { font-family: var(--ff-title); font-weight: 400; font-size: clamp(32px,4vw,56px); color: var(--ink); margin: 18px 0 20px; line-height: 1.1; }
.alf-contact__lead { color: var(--brown); font-size: clamp(15px,1.2vw,17px); margin-bottom: 40px; }
.alf-form { display: flex; flex-direction: column; gap: 18px; }
.alf-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
/* CF7 envuelve los campos en <span>; lo forzamos a bloque ancho completo */
.alf-form .wpcf7-form-control-wrap { display: block; width: 100%; }
.alf-form p { margin: 0 0 18px; }
/* Inputs/textarea: solo línea gris inferior (anula el recuadro por defecto de CF7) */
.alf-form input:not([type="submit"]):not([type="checkbox"]), .alf-form textarea {
	width: 100% !important; display: block; box-sizing: border-box;
	background: transparent !important;
	border: 0 !important; border-bottom: 1px solid rgba(45,42,38,.22) !important; border-radius: 0 !important;
	box-shadow: none !important;
	padding: 14px 2px; font-family: var(--ff-text); font-size: 15px; color: var(--ink);
	transition: border-color .4s var(--ease); resize: vertical;
}
.alf-form input::placeholder, .alf-form textarea::placeholder { color: var(--brown); opacity: .7; }
.alf-form input:not([type="submit"]):not([type="checkbox"]):focus, .alf-form textarea:focus { outline: none; border-bottom-color: var(--accent) !important; }
/* Checkbox RGPD */
.alf-form .wpcf7-acceptance { display: block; margin: 4px 0; }
.alf-form .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.alf-form .wpcf7-acceptance label { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; }
.alf-form .wpcf7-acceptance input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; margin: 3px 0 0; accent-color: var(--accent); }
.alf-form .wpcf7-acceptance .wpcf7-list-item-label { font-size: 13px; line-height: 1.6; color: var(--brown); }
.alf-form .wpcf7-acceptance a { color: var(--accent); text-decoration: underline; }
/* Botón Enviar mensaje: fondo corporativo */
.alf-form input[type="submit"], .alf-form .alf-btn {
	-webkit-appearance: none; appearance: none; cursor: pointer;
	display: inline-block; width: auto; margin-top: 18px;
	background: var(--accent); border: 1px solid var(--accent); color: var(--cream);
	padding: 16px 44px; border-radius: 0;
	font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 500;
	transition: background .5s var(--ease), border-color .5s var(--ease);
}
.alf-form input[type="submit"]:hover, .alf-form .alf-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.alf-contact__direct { margin-top: 46px; padding-top: 30px; border-top: 1px solid rgba(45,42,38,.10); display: flex; flex-direction: column; gap: 12px; }
.alf-contact__direct a { color: var(--ink); font-size: 15px; transition: color .3s; }
.alf-contact__direct a:hover { color: var(--accent); }
.alf-contact__direct span { color: var(--brown); font-size: 13px; }
@media (max-width: 860px) {
	.alf-contact { grid-template-columns: 1fr; }
	.alf-contact__media { height: 50vh; }
	.alf-contact__media img { position: relative; }
	.alf-form__row { grid-template-columns: 1fr; }
}

/* ============================================================================
   FOOTER oscuro
   ========================================================================== */
.alf-footer { background: var(--ink); color: var(--ivory); padding: clamp(70px,10vh,120px) clamp(20px,6vw,120px) 40px; }
.alf-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px,4vw,70px); }
.alf-footer__brand h3 { font-family: var(--ff-title); font-weight: 400; font-size: clamp(22px,2vw,30px); letter-spacing: .14em; }
.alf-footer__logo { height: clamp(88px, 9vw, 112px); width: auto; display: block; filter: brightness(0) invert(1); margin-bottom: 8px; }
.alf-footer__brand p { font-family: var(--ff-display); font-style: italic; color: var(--taupe); font-size: clamp(16px,1.3vw,20px); margin-top: 16px; max-width: 32ch; }
.alf-footer__col h4 { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.alf-footer__col a, .alf-footer__col span { display: block; color: var(--ivory); opacity: .82; margin-bottom: 12px; font-size: 15px; transition: color .35s var(--ease), opacity .35s var(--ease); width: fit-content; }
.alf-footer__col a:hover { color: var(--accent); opacity: 1; }
.alf-footer__brand a:hover { color: var(--accent); }
.alf-footer__bottom { margin-top: clamp(50px,7vh,90px); padding-top: 28px; border-top: 1px solid rgba(220,203,185,.16); display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .12em; color: var(--brown); }
.alf-footer__credit { color: var(--brown); transition: color .3s var(--ease); }
.alf-footer__credit:hover { color: var(--accent); }

/* ============================================================================
   Reveal helpers (GSAP toggles estas clases / o fallback)
   ========================================================================== */
.alf-reveal { opacity: 0; transform: translateY(40px); }
.alf-mask { clip-path: inset(0 0 100% 0); }

/* ============================================================================
   RESPONSIVE — el móvil se mantiene inmersivo y grande
   ========================================================================== */
@media (max-width: 900px) {
	.alf-nav { display: flex; justify-content: space-between; padding: 20px 22px; }
	.alf-nav__menu { display: none; }
	.alf-nav a.alf-nav__cta { display: none; }
	.alf-nav__toggle { display: block; }
	.alf-about { grid-template-columns: 1fr; }
	.alf-about__media { aspect-ratio: 3/4; }
	.alf-fig--a, .alf-fig--b, .alf-fig--wide, .alf-fig--port { grid-column: 1 / 13; transform: none; aspect-ratio: 4/5; }
	.alf-fig--wide { aspect-ratio: 4/5; }
	.alf-footer__top { grid-template-columns: 1fr; gap: 40px; }
	.alf-footer__bottom { flex-direction: column; gap: 10px; }
	.alf-statement__text { font-size: clamp(28px, 8vw, 48px); }
	.alf-hero__title { font-size: clamp(26px, 8.5vw, 46px); }
}

/* Respeta usuarios con reduce-motion */
@media (prefers-reduced-motion: reduce) {
	.alf-reveal { opacity: 1; transform: none; }
	.alf-mask { clip-path: none; }
	.alf-scrollcue__line { animation: none; }
}
