/* =========================================================================
   AstroDeSign · Adorian — página /adorian   v1.1
   Alineado con astrodesign-home / astrodesign-servicios:
   líneas blancas 3px, lila #bc99ff, texto #f4f1ea, radio 24px,
   marco rectangular global + divisores entre bloques, hover con glow
   (sin elevación), reveal con fade, formulario con campos lila.
   Todo scoped a .adn
   ========================================================================= */

.adn {
	--adh-margin: 64px;
	--adh-line-w: 3px;
	--adh-line: rgba(255, 255, 255, 0.92);
	--adh-text: #f4f1ea;
	--adh-text-muted: rgba(244, 241, 234, 0.72);
	--adh-text-dim: rgba(244, 241, 234, 0.50);
	--adh-accent: #bc99ff;
	--adh-accent-2: #a370f7;
	--adh-accent-soft: rgba(188, 153, 255, 0.16);
	--adh-bg-soft: rgba(255, 255, 255, 0.02);
	--adh-ink: #0e0e14;
	--adh-radius: 24px;
	--adh-radius-sm: 14px;
	--adh-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

	/* Marco con margen lateral DENTRO del contenido (igual que /home y
	   /servicios). Sin romper a 100vw → no se sale de sangre. */
	margin: 28px var(--adh-margin);
	max-width: 100%;
	color: var(--adh-text);
	background: transparent;
	border: var(--adh-line-w) solid var(--adh-line);
	border-radius: var(--adh-radius);
	overflow: hidden;
	font-family: inherit;
	line-height: 1.7;
}

.adn, .adn * { box-sizing: border-box; }

/* ---------- Secciones y divisores ---------- */
.adn-section { position: relative; padding: clamp(40px, 6vw, 84px) clamp(22px, 4vw, 60px); }
.adn-section + .adn-section { border-top: var(--adh-line-w) solid var(--adh-line); }

.adn-inner { max-width: 1100px; margin: 0 auto; }

/* ---------- Tipografía ---------- */
.adn-eyebrow {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--adh-accent);
	font-weight: 600;
	margin: 0 0 16px;
}
.adn-h1, .adn-h2, .adn-h3 { margin: 0; letter-spacing: -0.02em; font-weight: 800; color: var(--adh-text); }
.adn-h1 { font-size: clamp(38px, 6vw, 68px); line-height: 1.02; }
.adn-h2 { font-size: clamp(28px, 4.2vw, 46px); line-height: 1.08; }
.adn-h3 { font-size: clamp(20px, 2.4vw, 27px); line-height: 1.15; }
.adn em { color: var(--adh-accent); font-style: italic; font-weight: 700; }

.adn-lead { font-size: clamp(1.02rem, 1.5vw, 1.25rem); line-height: 1.6; color: var(--adh-text-muted); margin: 18px 0 0; max-width: 52ch; }
.adn-prose p { margin: 0 0 1em; color: var(--adh-text-muted); }
.adn-prose p:last-child { margin-bottom: 0; }
.adn-center { text-align: center; margin-left: auto; margin-right: auto; }

.adn a { color: var(--adh-accent); text-decoration: none; }
.adn a:hover { color: var(--adh-accent-2); }

.adn-section-head { max-width: 60ch; margin-bottom: clamp(28px, 4vw, 48px); }

/* ---------- Botones (pill, sin elevación — como /servicios) ---------- */
.adn-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 50px;
	padding: 0 26px;
	border-radius: 999px;
	border: 2px solid var(--adh-line);
	background: transparent;
	color: var(--adh-text);
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.25s var(--adh-ease), border-color 0.25s var(--adh-ease), color 0.25s var(--adh-ease);
}
.adn-btn:hover { border-color: var(--adh-accent); color: var(--adh-accent); }
.adn-btn .adn-arrow { transition: transform 0.25s var(--adh-ease); }
.adn-btn:hover .adn-arrow { transform: translateX(4px); }
.adn-btn-primary { background: var(--adh-accent); border-color: var(--adh-accent); color: #fff; }
.adn-btn-primary:hover { background: var(--adh-accent-2); border-color: var(--adh-accent-2); color: #fff; }
.adn-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---------- Glifos de marca ---------- */
.adn-glyph { color: var(--adh-accent); display: inline-block; vertical-align: middle; }

/* ---------- HERO ---------- */
.adn-hero { overflow: hidden; }
.adn-hero-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(60% 80% at 85% 10%, var(--adh-accent-soft), transparent 60%);
	pointer-events: none;
}
.adn-hero-moon { position: absolute; right: -30px; bottom: -40px; color: rgba(188, 153, 255, 0.13); pointer-events: none; }
/* Logo animado en la esquina derecha del primer bloque (top/right por estilo inline). */
.adn-hero-logo { position: absolute; z-index: 3; line-height: 0; pointer-events: none; }
.adn-hero-logo .adn-logo { display: block; }
/* Hero a una columna; el orden de los elementos se controla con flex `order`
   para que la foto vaya bajo el título en escritorio y entre intro y etiquetas
   en móvil. */
.adn-hero-inner { position: relative; }
.adn-hero-text { max-width: 46ch; display: flex; flex-direction: column; align-items: stretch; }
.adn-hero-text > .adn-eyebrow { order: 1; align-self: flex-start; }
.adn-hero-text > .adn-h1 { order: 2; position: relative; z-index: 1; }
.adn-hero-text > .adn-hero-photo { order: 3; }
.adn-hero-text > .adn-lead { order: 4; }
.adn-hero-text > .adn-hero-facts { order: 5; }
.adn-hero-text > .adn-cta-row { order: 6; }
.adn-hero-facts { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.adn-hero-facts li {
	display: inline-flex; align-items: center; gap: 8px;
	border: 2px solid var(--adh-line); border-radius: 999px;
	padding: 7px 15px; font-size: 13px; color: var(--adh-text);
}
.adn-hero-facts li .adn-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--adh-accent); flex: 0 0 auto; }
/* Foto de autoría (estilo /home): recuadro cuadrado con marco blanco. En
   escritorio el offset (admite negativo) la sube para meter parte bajo el título. */
.adn-hero-photo {
	position: relative; z-index: 0; margin: 0; align-self: flex-start;
	width: var(--adn-hero-photo-size, 220px);
	margin-top: var(--adn-hero-photo-offset, 0px);
}
.adn-hero-photo img {
	display: block; width: 100%; aspect-ratio: 1 / 1; height: auto;
	object-fit: cover; object-position: center;
	border: var(--adh-line-w) solid var(--adh-line);
	border-radius: var(--adh-radius);
	filter: grayscale(0.4) contrast(1.02);
	background: var(--adh-bg-soft);
}
.adn-hero-photo::after {
	content: ""; position: absolute; inset: 0; border-radius: var(--adh-radius);
	box-shadow: 0 0 60px rgba(188, 153, 255, 0.18); pointer-events: none;
}

/* ---------- Encabezado de 2 columnas reutilizable ---------- */
.adn-split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 5vw, 72px); align-items: start; }

/* ---------- TIMELINE (trayectoria) ---------- */
.adn-timeline { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 26px); margin-top: clamp(26px, 4vw, 44px); }
.adn-step {
	position: relative;
	border: var(--adh-line-w) solid var(--adh-line);
	border-radius: var(--adh-radius);
	padding: clamp(20px, 2.4vw, 30px);
	background: transparent;
	transition: border-color 0.25s var(--adh-ease), box-shadow 0.35s var(--adh-ease);
}
.adn-step:hover { border-color: var(--adh-accent); box-shadow: 0 0 32px rgba(188, 153, 255, 0.18); }
.adn-step-ico { width: 40px; height: 40px; color: var(--adh-accent); margin-bottom: 14px; }
.adn-step-tag { display: inline-block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--adh-accent); border: 1px solid var(--adh-accent); border-radius: 999px; padding: 3px 11px; margin-bottom: 12px; }
.adn-step h3 { margin: 0 0 8px; }
.adn-step p { margin: 0; color: var(--adh-text-muted); font-size: 0.98rem; }

/* ---------- Chips / pills ---------- */
.adn-chips { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.adn-chips li {
	display: inline-flex; align-items: center; gap: 9px;
	border: 2px solid var(--adh-line); border-radius: 999px;
	padding: 9px 17px; font-size: 0.9rem; color: var(--adh-text);
	transition: border-color 0.2s var(--adh-ease), color 0.2s var(--adh-ease);
}
.adn-chips li:hover { border-color: var(--adh-accent); color: var(--adh-accent); }
.adn-chips li .adn-glyph { width: 18px; height: 18px; }

/* ---------- PASOS «Cómo trabajo» ---------- */
.adn-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); margin-top: clamp(26px, 4vw, 44px); }
.adn-wstep {
	border: var(--adh-line-w) solid var(--adh-line);
	border-radius: var(--adh-radius);
	padding: clamp(22px, 2.6vw, 34px);
	transition: border-color 0.25s var(--adh-ease), box-shadow 0.35s var(--adh-ease);
}
.adn-wstep:hover { border-color: var(--adh-accent); box-shadow: 0 0 32px rgba(188, 153, 255, 0.18); }
.adn-wstep-num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%;
	border: 2px solid var(--adh-accent); color: var(--adh-accent);
	font-weight: 800; font-size: 1.1rem; margin-bottom: 16px;
}
.adn-wstep h3 { margin: 0 0 8px; }
.adn-wstep p { margin: 0; color: var(--adh-text-muted); font-size: 0.98rem; }

/* ---------- Vídeo (16:9) ---------- */
.adn-video { position: relative; aspect-ratio: 16 / 9; width: 100%; border-radius: var(--adh-radius-sm); overflow: hidden; background: #111; border: 2px solid rgba(255, 255, 255, 0.14); }
.adn-video iframe, .adn-video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; object-fit: cover; }
.adn-video-empty {
	display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px;
	color: var(--adh-text-dim); font-size: 0.9rem;
	background: radial-gradient(circle at 30% 30%, var(--adh-accent-soft), transparent 60%), #111;
}

/* ---------- Vídeo WIDE ---------- */
.adn-videowide-head { text-align: center; margin-bottom: clamp(26px, 4vw, 48px); }
.adn-videowide-head .adn-eyebrow, .adn-videowide-head .adn-h2 { margin-left: auto; margin-right: auto; }
.adn-videowide-stage { width: 100%; max-width: 1400px; margin: 0 auto; }
/* v1.13.0 — Vídeo wide a sangre: 16:9 (antes 21/9 dejaba franjas negras
   laterales porque el vídeo es 16:9). object-fit:cover rellena el marco. */
.adn-videowide-stage .adn-video { aspect-ratio: 16 / 9; border-radius: var(--adh-radius); }
@media (max-width: 700px) { .adn-videowide-stage .adn-video { aspect-ratio: 16 / 9; } }
/* Botón «Ver completo» bajo el vídeo. */
.adn-videowide-cta, .adn-cong-cta { text-align: center; margin-top: clamp(16px, 2.4vw, 26px); }
.adn-cong-cta { margin: 12px 0 2px; }

/* ---------- Congresos ---------- */
.adn-cong-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.6vw, 28px); }
.adn-cong-card {
	display: flex; flex-direction: column; overflow: hidden;
	border: var(--adh-line-w) solid var(--adh-line);
	border-radius: var(--adh-radius);
	background: transparent;
	transition: border-color 0.25s var(--adh-ease), box-shadow 0.35s var(--adh-ease);
}
.adn-cong-card:hover { border-color: var(--adh-accent); box-shadow: 0 0 32px rgba(188, 153, 255, 0.18); }
.adn-cong-media { padding: 14px 14px 0; }
.adn-cong-body { padding: 18px 22px 24px; }
.adn-chip { display: inline-block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--adh-accent); border: 1px solid var(--adh-accent); border-radius: 999px; padding: 4px 12px; margin-bottom: 12px; }
.adn-cong-title { margin: 0 0 10px; font-size: 1.25rem; font-weight: 800; letter-spacing: -0.01em; line-height: 1.18; color: var(--adh-text); }
.adn-cong-desc { margin: 0 0 14px; font-size: 0.96rem; color: var(--adh-text-muted); }
.adn-cong-meta { margin: 0; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--adh-text-dim); display: flex; align-items: center; gap: 8px; }
.adn-cong-meta .adn-glyph { width: 15px; height: 15px; }

/* ---------- Libro ---------- */
.adn-book-inner {
	display: grid;
	gap: clamp(20px, 3vw, 40px) clamp(24px, 4vw, 48px);
	align-items: center;
	border: var(--adh-line-w) solid var(--adh-line);
	border-radius: var(--adh-radius);
	padding: clamp(26px, 4vw, 46px);
	background: linear-gradient(180deg, var(--adh-accent-soft), transparent 55%);
}
/* Desktop: imagen a un lado (abarca texto+botón), izquierda o derecha. */
.adn-book-inner.pos-left  { grid-template-columns: auto 1fr; grid-template-areas: "media text" "media cta"; }
.adn-book-inner.pos-right { grid-template-columns: 1fr auto; grid-template-areas: "text media" "cta media"; }
.adn-book-inner.no-cover  { grid-template-columns: 1fr; grid-template-areas: "text" "cta"; }
.adn-book-text  { grid-area: text; }
.adn-book-media { grid-area: media; align-self: center; }
.adn-book-cta   { grid-area: cta; align-self: start; }
.adn-book-media img { width: 210px; max-width: 36vw; height: auto; border-radius: 10px; display: block; }

/* Móvil: una columna y la imagen SIEMPRE justo antes del botón. */
@media (max-width: 760px) {
	.adn-book-inner,
	.adn-book-inner.pos-left,
	.adn-book-inner.pos-right { grid-template-columns: 1fr; grid-template-areas: "text" "media" "cta"; }
	.adn-book-media img { width: 100%; max-width: 320px; margin: 0 auto; }
}

/* ---------- Local / mundial ---------- */
.adn-local-inner { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(26px, 5vw, 64px); align-items: center; }
.adn-local-tags { display: flex; flex-direction: column; gap: 14px; }
.adn-local-tag {
	display: inline-flex; align-items: center; gap: 14px;
	border: var(--adh-line-w) solid var(--adh-line); border-radius: var(--adh-radius);
	padding: 18px 22px; font-size: 1.02rem; color: var(--adh-text);
	transition: border-color 0.25s var(--adh-ease), box-shadow 0.35s var(--adh-ease);
}
.adn-local-tag:hover { border-color: var(--adh-accent); box-shadow: 0 0 32px rgba(188, 153, 255, 0.16); }
.adn-local-tag .adn-glyph { width: 30px; height: 30px; flex: 0 0 auto; }

/* ---------- Contacto ---------- */
.adn-contact-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.adn-social { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.adn-social a { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--adh-line); border-radius: 999px; padding: 9px 17px; font-size: 0.86rem; color: var(--adh-text); transition: border-color 0.2s var(--adh-ease), color 0.2s var(--adh-ease); }
.adn-social a:hover { border-color: var(--adh-accent); color: var(--adh-accent); }

/* Formulario — campos LILA con texto negro (estilo newsletter de /home). */
.adn-form { display: grid; gap: 16px; }
.adn-field { display: grid; gap: 7px; }
.adn-field label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--adh-text-muted); font-weight: 600; }
.adn-form input[type="text"],
.adn-form input[type="email"],
.adn-form input[type="number"],
.adn-form select,
.adn-form textarea {
	width: 100%;
	padding: 13px 16px;
	font-family: inherit;
	font-size: 15px;
	color: var(--adh-ink) !important;
	-webkit-text-fill-color: var(--adh-ink) !important;
	background: var(--adh-accent) !important;
	background-color: var(--adh-accent) !important;
	border: 2px solid var(--adh-accent);
	border-radius: 12px;
	appearance: none;
	-webkit-appearance: none;
	caret-color: var(--adh-ink);
}
.adn-form textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.adn-form input::placeholder, .adn-form textarea::placeholder { color: rgba(14, 14, 20, 0.55); opacity: 1; -webkit-text-fill-color: rgba(14, 14, 20, 0.55); }
.adn-form input:focus, .adn-form select:focus, .adn-form textarea:focus { outline: none; border-color: #fff; background: var(--adh-accent) !important; }
.adn-form select option { background: #1c1426; color: #fff; }
/* Mata el autofill amarillo. */
.adn-form input:-webkit-autofill, .adn-form input:-webkit-autofill:hover, .adn-form input:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 1000px var(--adh-accent) inset !important;
	-webkit-text-fill-color: var(--adh-ink) !important;
	caret-color: var(--adh-ink) !important;
	transition: background-color 99999s ease 0s;
}

.adn-field-math { max-width: 300px; }
.adn-field-math label strong { color: var(--adh-accent); }

.adn-consent { display: flex; align-items: flex-start; gap: 12px; text-transform: none; letter-spacing: 0; font-size: 0.92rem; color: var(--adh-text-muted); cursor: pointer; font-weight: 400; }
.adn-consent input[type="checkbox"] {
	appearance: none; -webkit-appearance: none;
	width: 20px; height: 20px; min-width: 20px; margin-top: 1px;
	border: 2px solid var(--adh-line); border-radius: 5px; background: transparent;
	cursor: pointer; position: relative; flex: 0 0 auto;
	transition: background-color 0.2s var(--adh-ease), border-color 0.2s var(--adh-ease);
}
.adn-consent input[type="checkbox"]:checked { background: var(--adh-accent); border-color: var(--adh-accent); }
.adn-consent input[type="checkbox"]:checked::after { content: ""; position: absolute; left: 5px; top: 1px; width: 6px; height: 11px; border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
/* El campo es grid → por defecto estira el botón al 100%. Lo dejamos al ancho del texto. */
.adn-field-submit { margin-top: 4px; justify-items: start; }
/* Botón enviar: lineal (sin morado), ancho ajustado, hover = blanco 20%, sin agrandar. */
.adn-btn-send {
	width: auto;
	background: transparent;
	border: 2px solid var(--adh-line);
	color: var(--adh-text);
}
.adn-btn-send:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: var(--adh-line);
	color: var(--adh-text);
	transform: none !important;
}
.adn-btn-send:hover .adn-arrow { transform: none; }

/* Honeypot. */
.adn-hp { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Notas de resultado. */
.adn-form-note { padding: 14px 18px; border-radius: 12px; border: 2px solid transparent; font-size: 0.96rem; line-height: 1.5; margin-bottom: 6px; }
.adn-form-ok { color: var(--adh-ink); background: rgba(188, 153, 255, 0.9); border-color: rgba(188, 153, 255, 0.95); }
.adn-form-err { color: #fff; background: rgba(220, 80, 80, 0.16); border-color: rgba(220, 80, 80, 0.55); }

/* ---------- Reseñas (Lo que dicen de mí) ---------- */
.adn-lineal-box { border: var(--adh-line-w) solid var(--adh-line); border-radius: var(--adh-radius); }
.adn-reviews-head { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: clamp(24px, 4vw, 56px); align-items: center; max-width: none; }
.adn-rating-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: clamp(22px, 3vw, 32px); text-align: center; }
.adn-rating-num { font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.adn-rating-meta { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--adh-text-muted); }
.adn-rating-card .adn-btn { margin-top: 6px; height: 42px; font-size: 0.85rem; }

.adn-stars { display: inline-flex; gap: 2px; }
.adn-star { fill: rgba(255, 255, 255, 0.22); }
.adn-star.is-on { fill: #f5a623; }

.adn-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.6vw, 28px); }
.adn-review {
	display: flex; flex-direction: column; gap: 14px;
	border: var(--adh-line-w) solid var(--adh-line); border-radius: var(--adh-radius);
	padding: clamp(20px, 2.4vw, 30px); background: transparent;
	transition: border-color 0.25s var(--adh-ease), box-shadow 0.35s var(--adh-ease);
}
.adn-review:hover { border-color: var(--adh-accent); box-shadow: 0 0 32px rgba(188, 153, 255, 0.18); }
.adn-review-top { display: flex; align-items: center; justify-content: space-between; }
.adn-review-text { margin: 0; color: var(--adh-text); font-size: 0.98rem; line-height: 1.6; }
.adn-review-by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.adn-review-ava { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--adh-accent); color: var(--adh-ink); font-weight: 800; flex: 0 0 auto; }
.adn-review-name { display: flex; flex-direction: column; font-weight: 600; font-size: 0.95rem; }
.adn-review-date { font-weight: 400; font-size: 0.78rem; color: var(--adh-text-dim); }

@media (max-width: 900px) {
	.adn-reviews-head { grid-template-columns: 1fr; }
	.adn-reviews-grid { grid-template-columns: 1fr; }
}

/* ---------- Crédito ---------- */
.adn-credit { text-align: right; font-size: 10px; letter-spacing: 0.1em; color: var(--adh-text-dim); padding: 0 clamp(22px, 4vw, 60px) 22px; }

/* ---------- Motion: reveal al hacer scroll + animaciones de icono ----------
   El ocultado solo se aplica cuando el JS marca .adn-fx → si el JS no carga,
   el contenido se ve igualmente (nunca queda invisible). */
.adn.adn-fx [data-fade] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--adh-ease), transform 0.7s var(--adh-ease); will-change: opacity, transform; }
.adn.adn-fx [data-fade].is-in { opacity: 1; transform: translateY(0); }

@keyframes adnFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes adnSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.adn .is-anim-float { animation: adnFloat 4.4s var(--adh-ease) infinite; }
.adn .is-anim-spin { animation: adnSpin 22s linear infinite; transform-origin: 50% 50%; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) { .adn { --adh-margin: 32px; } }
@media (max-width: 900px) {
	.adn-split, .adn-local-inner, .adn-contact-inner { grid-template-columns: 1fr; }
	.adn-timeline, .adn-steps, .adn-cong-grid { grid-template-columns: 1fr; }
	.adn-book-inner { grid-template-columns: 1fr; }
}
@media (max-width: 900px) { .adn-hero-logo { transform: scale(0.7); transform-origin: top right; } }
@media (max-width: 640px) {
	/* A sangre: quitamos el recuadro/marco global, pero mantenemos las líneas
	   blancas que separan las secciones (.adn-section + .adn-section). */
	.adn { margin: 0; border: 0; border-radius: 0; }
	/* En móvil el logo va en el flujo, antes del título y alineado a la izquierda. */
	.adn-hero-logo { position: static; transform: none; margin: 0 0 22px; }
	/* La foto de autoría va entre la intro y las etiquetas, sin el offset negativo. */
	.adn-hero-text > .adn-lead { order: 3; }
	.adn-hero-text > .adn-hero-photo { order: 4; margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
	.adn.adn-fx [data-fade] { opacity: 1; transform: none; transition: none; }
	.adn .is-anim-float, .adn .is-anim-spin { animation: none; }
	.adn-btn:hover .adn-arrow { transform: none; }
}
