/* ==========================================================================
   Viajando Historias
   Cartel de viaje impreso: tintas planas, reglas, papel. Sin degradados.

   01 Tintas y medidas      07 Pasos (linea de tiempo)
   02 Base y papel          08 Testimonios (billetes)
   03 Tipografia            09 Preguntas frecuentes
   04 Piezas comunes        10 Blog: listado y entrada
   05 Cabecera              11 Formulario y pie
   06 Cartel (hero)         12 Movimiento y responsive
   ========================================================================== */

/* 01 Tintas y medidas -----------------------------------------------------*/
:root {
	--paper: oklch(0.972 0.012 250);
	--paper-deep: oklch(0.935 0.032 250);
	--paper-edge: oklch(0.888 0.048 248);
	--ink: oklch(0.300 0.105 265);
	--ink-soft: oklch(0.470 0.080 265);
	--blue: oklch(0.560 0.155 253);
	--blue-deep: oklch(0.480 0.155 258);
	--sun: oklch(0.860 0.160 92);
	--sun-deep: oklch(0.790 0.155 85);

	--rule: 2px solid var(--ink);
	--hair: 1px solid oklch(0.300 0.105 265 / 0.22);
	--offset: 5px 5px 0 var(--ink);
	--offset-sm: 3px 3px 0 var(--ink);

	--display: Fraunces, "Iowan Old Style", Georgia, serif;
	--text: Archivo, "Helvetica Neue", Arial, sans-serif;

	--measure: 68ch;
	--wide: 1140px;
	--gutter: clamp(1.25rem, 5vw, 3rem);

	--s1: 0.5rem;
	--s2: 1rem;
	--s3: 1.5rem;
	--s4: 3rem;
	--s5: 4.5rem;
	--s6: 7rem;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--fast: 160ms;
	--slow: 260ms;
}

/* 02 Base y papel ---------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: 5.5rem;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--text);
	font-size: 1.0625rem;
	font-weight: 420;
	line-height: 1.65;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* Grano de papel: capa fija, no interactiva. */
body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 999;
	pointer-events: none;
	opacity: 0.05;
	mix-blend-mode: multiply;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

:focus-visible {
	outline: 3px solid var(--blue-deep);
	outline-offset: 3px;
	border-radius: 1px;
}
.vh-footer :focus-visible,
.vh-section--form :focus-visible,
.vh-inline-cta :focus-visible { outline-color: var(--sun); }

::selection { background: var(--sun); color: var(--ink); }

/* 03 Tipografia -----------------------------------------------------------*/
h1, h2, h3, h4 {
	font-family: var(--display);
	font-weight: 600;
	font-variation-settings: "SOFT" 55, "WONK" 1;
	line-height: 1.06;
	letter-spacing: -0.015em;
	margin: 0 0 0.4em;
	text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 1.5rem + 4vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 1.35rem + 2.4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem); font-variation-settings: "SOFT" 30, "WONK" 0; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-deep); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

strong { font-weight: 650; }

.vh-eyebrow--sun { color: var(--sun); }

.vh-eyebrow,
.vh-label {
	font-family: var(--text);
	font-size: 0.8125rem;
	font-weight: 620;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1.3;
}

/* 04 Piezas comunes -------------------------------------------------------*/
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip-path: inset(50%);
	white-space: nowrap; border: 0;
}
.vh-skip-link:focus {
	position: fixed; top: 12px; left: 12px;
	z-index: 1000; width: auto; height: auto;
	clip-path: none; padding: 0.75rem 1.25rem;
	background: var(--sun); color: var(--ink);
	border: var(--rule); font-weight: 650;
}

/* Boton troquelado: bloque de tinta desplazado, sin desenfoque. */
.vh-btn {
	display: inline-flex; align-items: center; gap: 0.6rem;
	padding: 0.9rem 1.6rem;
	font-family: var(--text);
	font-size: 0.9375rem; font-weight: 700;
	letter-spacing: 0.06em; text-transform: uppercase;
	color: var(--ink); background: var(--sun);
	border: var(--rule); border-radius: 3px;
	box-shadow: var(--offset);
	text-decoration: none; cursor: pointer;
	transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.vh-btn:hover { color: var(--ink); background: var(--sun-deep); transform: translate(2px, 2px); box-shadow: var(--offset-sm); }
.vh-btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--ink); }
.vh-btn--lg { padding: 1.1rem 2.1rem; font-size: 1.0625rem; }
.vh-btn--sm { padding: 0.55rem 1rem; font-size: 0.8125rem; box-shadow: var(--offset-sm); }
.vh-btn--ghost {
	color: var(--ink); background: transparent; box-shadow: none;
}
.vh-btn--ghost:hover { background: var(--ink); color: var(--paper); transform: none; }
.vh-btn--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); box-shadow: 4px 4px 0 var(--sun); }
.vh-btn--ink:hover { color: var(--paper); box-shadow: 2px 2px 0 var(--sun); }
.vh-btn .vh-icon { flex: none; }

.vh-icon { width: 1.15em; height: 1.15em; stroke: currentColor; stroke-width: 1.75; fill: none; stroke-linecap: square; }

/* Sello circular: adorno de cartel, decorativo. */
.vh-stamp {
	display: grid; place-content: center;
	width: 8.5rem; height: 8.5rem;
	border: 2px solid currentColor; border-radius: 50%;
	box-shadow: inset 0 0 0 3px var(--ink), inset 0 0 0 5px currentColor;
	color: var(--sun); text-align: center;
	font-family: var(--text); font-size: 0.6875rem; font-weight: 700;
	letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.5;
	transform: rotate(-9deg);
}
.vh-stamp strong { display: block; font-family: var(--display); font-size: 1.9rem; letter-spacing: -0.02em; font-weight: 700; }

/* Etiquetas tipo sello rectangular. */
.vh-chip {
	display: inline-block;
	padding: 0.2rem 0.55rem;
	font-size: 0.75rem; font-weight: 650;
	letter-spacing: 0.1em; text-transform: uppercase;
	color: var(--ink); background: var(--sun);
	border: 1.5px solid var(--ink); border-radius: 2px;
	text-decoration: none;
}
a.vh-chip:hover { background: var(--ink); color: var(--sun); }

.vh-shell { max-width: var(--wide); margin-inline: auto; padding-inline: var(--gutter); }

.vh-section { padding-block: clamp(3rem, 7vw, var(--s6)); }
.vh-section--tight { padding-block: clamp(2.5rem, 5vw, var(--s5)); }
.vh-section__title { max-width: 22ch; margin-bottom: var(--s4); }
.vh-section__head {
	display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
	gap: var(--s2); margin-bottom: var(--s4);
	padding-bottom: var(--s2); border-bottom: var(--rule);
}
.vh-section__head h2 { margin: 0; }

/* 05 Cabecera -------------------------------------------------------------*/
.vh-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--paper);
	border-bottom: var(--rule);
}
.vh-header__inner {
	position: relative;
	display: flex; align-items: center; gap: var(--s3);
	max-width: var(--wide); margin-inline: auto;
	padding: 0.85rem var(--gutter);
}
.vh-brand { margin-right: auto; }
.vh-brand__text { display: block; text-decoration: none; color: var(--ink); }
.vh-brand__name {
	display: block;
	font-family: var(--display); font-weight: 700;
	font-variation-settings: "SOFT" 20, "WONK" 0;
	font-size: 1.3rem; line-height: 1; letter-spacing: -0.01em;
	text-transform: uppercase;
}
.vh-brand__tag {
	display: block; margin-top: 0.25rem;
	font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.16em;
	text-transform: uppercase; color: var(--ink-soft);
}
.custom-logo { max-height: 52px; width: auto; }

.vh-nav { display: flex; align-items: center; gap: var(--s3); }
.vh-nav__list { display: flex; align-items: center; gap: 1.4rem; margin: 0; padding: 0; list-style: none; }
.vh-nav__list a {
	position: relative;
	display: block; padding: 0.4rem 0;
	color: var(--ink); text-decoration: none;
	font-size: 0.8125rem; font-weight: 650;
	letter-spacing: 0.1em; text-transform: uppercase;
}
.vh-nav__list a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0;
	height: 3px; background: var(--sun);
	transform: scaleX(0); transform-origin: left;
	transition: transform var(--fast) var(--ease);
}
.vh-nav__list a:hover::after,
.vh-nav__list .current-menu-item > a::after { transform: scaleX(1); }
.vh-nav__list .sub-menu {
	position: absolute; z-index: 10; display: none;
	min-width: 13rem; margin: 0; padding: 0.35rem; list-style: none;
	background: var(--paper); border: var(--rule); box-shadow: var(--offset);
}
.vh-nav__list li:hover > .sub-menu,
.vh-nav__list li:focus-within > .sub-menu { display: block; }
.vh-nav__list .sub-menu a { padding: 0.5rem 0.7rem; }

.vh-burger {
	display: none; padding: 0.5rem;
	background: transparent; border: 0; cursor: pointer; color: var(--ink);
}
.vh-burger__box { position: relative; display: block; width: 26px; height: 16px; }
.vh-burger__box span,
.vh-burger__box::before,
.vh-burger__box::after {
	content: ""; position: absolute; left: 0; width: 100%; height: 2.5px;
	background: currentColor;
	transition: transform var(--fast) var(--ease), opacity var(--fast) var(--ease);
}
.vh-burger__box::before { top: 0; }
.vh-burger__box span { top: 6.75px; }
.vh-burger__box::after { bottom: 0; }
.vh-burger[aria-expanded="true"] .vh-burger__box::before { transform: translateY(6.75px) rotate(45deg); }
.vh-burger[aria-expanded="true"] .vh-burger__box span { opacity: 0; }
.vh-burger[aria-expanded="true"] .vh-burger__box::after { transform: translateY(-6.75px) rotate(-45deg); }

/* 06 Cartel (hero) --------------------------------------------------------*/
.vh-hero {
	position: relative; overflow: hidden;
	background: var(--ink);
	color: var(--paper);
	border-bottom: 4px solid var(--sun);
}
.vh-hero :focus-visible { outline-color: var(--sun); }
.vh-hero__inner {
	position: relative; z-index: 2;
	display: grid; gap: var(--s3);
	max-width: var(--wide); margin-inline: auto;
	padding: clamp(3rem, 8vw, 6.5rem) var(--gutter) clamp(2.5rem, 5vw, 4rem);
}
.vh-hero__eyebrow {
	display: flex; align-items: center; gap: 0.9rem;
	margin: 0; color: var(--sun);
	font-size: 0.75rem; font-weight: 650;
	letter-spacing: 0.18em; text-transform: uppercase;
}
.vh-hero__eyebrow::after {
	content: ""; flex: 1 1 3rem; max-width: 7rem; height: 2px; background: var(--sun);
}
.vh-hero__title {
	max-width: 17ch; margin: 0;
	font-size: clamp(2.75rem, 1.4rem + 6.4vw, 5.75rem);
	font-variation-settings: "SOFT" 70, "WONK" 1;
	font-weight: 620; letter-spacing: -0.028em; line-height: 0.98;
	color: var(--paper);
}
.vh-hero__title em {
	font-style: normal;
	background-image: linear-gradient(var(--sun), var(--sun));
	background-repeat: no-repeat;
	background-position: 0 88%;
	background-size: 100% 0.13em;
	padding-bottom: 0.06em;
}
.vh-hero__subtitle {
	max-width: 46ch; margin: 0;
	font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.3125rem);
	color: oklch(0.972 0.012 250 / 0.82); line-height: 1.55;
}
.vh-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2); margin: var(--s2) 0 0; }
.vh-hero__note { font-size: 0.875rem; color: oklch(0.972 0.012 250 / 0.7); max-width: 24ch; }

.vh-hero__points {
	display: flex; flex-wrap: wrap; gap: 0;
	margin: var(--s3) 0 0; padding: 0; list-style: none;
	border-top: 2px solid oklch(0.972 0.012 250 / 0.35);
}
.vh-hero__points li {
	display: flex; align-items: center; gap: 0.55rem;
	padding: 0.9rem 1.4rem 0.9rem 0;
	margin-right: 1.4rem;
	font-size: 0.9375rem; font-weight: 500;
	border-right: 1px solid oklch(0.972 0.012 250 / 0.2);
}
.vh-hero__points li:last-child { border-right: 0; margin-right: 0; }
.vh-hero__points .vh-icon { color: var(--sun); }

.vh-hero__credit {
	position: absolute; right: var(--gutter); bottom: 3.2rem; z-index: 2;
	margin: 0; font-size: 0.6875rem; letter-spacing: 0.04em;
	color: oklch(0.972 0.012 250 / 0.62);
}
.vh-hero__credit a { color: inherit; text-decoration: none; border-bottom: 1px solid currentColor; }
.vh-hero__credit a:hover { color: var(--sun); }

.vh-hero__stamp { position: absolute; right: clamp(1rem, 4vw, 4rem); top: clamp(2rem, 6vw, 4.5rem); z-index: 1; }
.vh-hero__rule {
	position: relative; z-index: 2;
	display: flex; justify-content: space-between; gap: 1rem;
	padding: 0.5rem var(--gutter);
	background: var(--sun); color: var(--ink);
	font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
	overflow: hidden; white-space: nowrap;
}
.vh-hero__rule span { opacity: 0.9; }

/* Placa de imagen del cartel: la foto se imprime sobre el papel, no lo tapa. */
.vh-hero__plate { position: absolute; inset: 0; z-index: 0; background: var(--ink); }
.vh-hero__plate img {
	width: 100%; height: 100%; object-fit: cover;
	filter: grayscale(1) contrast(1.15);
	mix-blend-mode: screen;
	opacity: 0.26;
}

/* 07 Beneficios y pasos ---------------------------------------------------*/
/* Bloque de bloques: se neutraliza el aspecto de tarjeta del editor. */
.vh-landing__content { padding-block: 0; }
.vh-landing__content > * {
	max-width: var(--measure);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.vh-landing__content > .alignwide { max-width: var(--wide); }
.vh-landing__content > .alignfull { max-width: none; padding-inline: 0; }
.vh-landing__content .vh-section { max-width: none; padding-inline: 0; }
.vh-landing__content .vh-section > * {
	max-width: var(--wide); margin-inline: auto; padding-inline: var(--gutter);
}
.vh-landing__content .vh-section > .wp-block-heading { margin-bottom: var(--s4); }

.vh-section--trust { background: var(--paper); }
.vh-section--steps { background: var(--paper-deep); border-block: var(--rule); }
.vh-section--quotes { background: var(--paper); }
.vh-section--faq { background: var(--paper-deep); border-top: var(--rule); }

/* Beneficios: lista numerada con reglas, sin cajas. */
.vh-cards { counter-reset: vh-benefit; gap: 0 !important; }
.vh-cards .wp-block-column {
	position: relative;
	counter-increment: vh-benefit;
	padding: var(--s3) var(--s3) var(--s3) 0;
	border-top: var(--rule);
	margin-right: var(--s3);
	background-image: linear-gradient(var(--sun), var(--sun));
	background-repeat: no-repeat;
	background-size: 3.5rem 6px;
	background-position: 0 0;
}
.vh-cards .wp-block-column:last-child { margin-right: 0; }
.vh-cards .wp-block-column::before {
	content: counter(vh-benefit, decimal-leading-zero);
	display: block; margin-bottom: 0.6rem;
	font-family: var(--display); font-size: 2.4rem; font-weight: 700;
	font-variation-settings: "SOFT" 10, "WONK" 0;
	line-height: 1; color: var(--blue);
}
.vh-cards .wp-block-column h3 { margin-bottom: 0.35em; }
.vh-cards .wp-block-column p { color: var(--ink-soft); margin: 0; }

/* Pasos: linea de tiempo horizontal con discos. */
.vh-steps { counter-reset: vh-step; gap: 0 !important; position: relative; }
.vh-steps .wp-block-column {
	counter-increment: vh-step;
	position: relative;
	padding: 3.6rem var(--s3) 0 0;
}
.vh-steps .wp-block-column::before {
	content: counter(vh-step);
	position: absolute; top: 0; left: 0;
	display: grid; place-content: center;
	width: 2.75rem; height: 2.75rem;
	background: var(--paper); color: var(--ink);
	border: var(--rule); border-radius: 50%;
	font-family: var(--display); font-size: 1.15rem; font-weight: 700;
}
.vh-steps .wp-block-column::after {
	content: ""; position: absolute; top: 1.3rem; left: 2.75rem; right: 0;
	height: 2px; background: var(--ink); opacity: 0.25;
}
.vh-steps .wp-block-column:last-child::after { display: none; }
.vh-steps .wp-block-column h3 { margin-bottom: 0.3em; }
.vh-steps .wp-block-column p { color: var(--ink-soft); margin: 0; }

/* 08 Que incluye: lista de comprobacion -----------------------------------*/
.vh-section--includes { background: var(--paper); }
.vh-lead { max-width: 44ch; color: var(--ink-soft); font-size: 1.125rem; margin-bottom: var(--s3); }

.vh-checklist {
	display: grid; gap: 0 var(--s4);
	grid-template-columns: repeat(auto-fit, minmax(min(24rem, 100%), 1fr));
	margin: 0; padding: 0; list-style: none;
	border-top: var(--rule);
}
/* El texto va en flujo normal: con grid, un <strong> se convertiria en otra celda. */
.vh-checklist li {
	position: relative;
	padding: 1rem 0 1rem 2.1rem;
	border-bottom: var(--hair);
}
.vh-checklist li::before {
	content: ""; position: absolute; left: 0.2rem; top: 1.4rem;
	width: 1.05rem; height: 0.55rem;
	border-left: 3px solid var(--sun-deep);
	border-bottom: 3px solid var(--sun-deep);
	transform: rotate(-45deg);
}

/* 08b Testimonios: billetes troquelados (sin usar hasta tener clientes) ----*/
.vh-quotes { gap: var(--s3) !important; }
.vh-quotes .wp-block-column {
	position: relative;
	padding: var(--s3) var(--s3) var(--s3) 2.1rem;
	background: var(--paper-edge);
	border: var(--rule); border-left-style: dashed;
	box-shadow: var(--offset-sm);
}
.vh-quotes .wp-block-column::before,
.vh-quotes .wp-block-column::after {
	content: ""; position: absolute; left: -0.6rem;
	width: 1.15rem; height: 1.15rem;
	background: var(--paper);
	border: var(--rule); border-radius: 50%;
}
.vh-quotes .wp-block-column::before { top: -0.72rem; }
.vh-quotes .wp-block-column::after { bottom: -0.72rem; }
.vh-quotes .wp-block-quote { margin: 0; padding: 0; border: 0; font-style: normal; }
.vh-quotes .wp-block-quote p {
	font-family: var(--display); font-size: 1.1875rem; line-height: 1.4;
	font-variation-settings: "SOFT" 40, "WONK" 0;
}
.vh-quotes cite {
	display: block; margin-top: 0.9rem; padding-top: 0.7rem;
	border-top: var(--hair);
	font-style: normal; font-size: 0.75rem; font-weight: 650;
	letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft);
}

/* 09 Preguntas frecuentes -------------------------------------------------*/
.wp-block-details {
	max-width: var(--measure); margin-inline: auto;
	padding: 0; border: 0; border-top: var(--rule); background: transparent;
}
.vh-section--faq .wp-block-details:last-of-type { border-bottom: var(--rule); }
.vh-landing__content .vh-section--faq .wp-block-details { max-width: 78ch; margin-inline: 0; }
.wp-block-details summary {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: 1.1rem 0;
	font-family: var(--display); font-size: 1.1875rem; font-weight: 600;
	cursor: pointer; list-style: none;
}
.wp-block-details summary::-webkit-details-marker { display: none; }
.wp-block-details summary::after {
	content: ""; flex: none;
	width: 1.1rem; height: 1.1rem;
	background:
		linear-gradient(var(--ink), var(--ink)) center/100% 2.5px no-repeat,
		linear-gradient(var(--ink), var(--ink)) center/2.5px 100% no-repeat;
	transition: transform var(--slow) var(--ease);
}
.wp-block-details[open] summary::after { transform: rotate(45deg); }
.wp-block-details > *:not(summary) { padding-bottom: 1.1rem; color: var(--ink-soft); max-width: 62ch; }

/* 10 Blog: listado y entrada ---------------------------------------------*/
.vh-page-header { background: var(--paper-deep); border-bottom: var(--rule); }
.vh-page-header__inner {
	max-width: var(--wide); margin-inline: auto;
	padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) clamp(1.75rem, 3vw, 2.5rem);
}
.vh-page-header__title { max-width: 16ch; margin-bottom: 0.25em; }
.vh-page-header__sub { max-width: 52ch; margin: 0; color: var(--ink-soft); font-size: 1.125rem; }

.vh-layout {
	display: grid; gap: clamp(2rem, 5vw, 4.5rem);
	grid-template-columns: minmax(0, 1fr) 15rem;
	max-width: var(--wide); margin-inline: auto;
	padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
}
body.vh-no-sidebar .vh-layout { grid-template-columns: minmax(0, 1fr); }

/* Entradas como filas de guia impresa, no como tarjetas. */
.vh-list { border-top: var(--rule); }
.vh-entry {
	display: grid; gap: 0.35rem 1.75rem;
	grid-template-columns: 1fr auto;
	align-items: start;
	padding: var(--s3) 0;
	border-bottom: var(--hair);
}
.vh-entry:last-child { border-bottom: var(--rule); }
.vh-entry__meta {
	grid-column: 1 / -1;
	display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
	margin: 0 0 0.35rem;
	font-size: 0.75rem; font-weight: 620;
	letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft);
}
.vh-entry__meta a { color: inherit; text-decoration: none; }
.vh-entry__meta a:hover { color: var(--blue-deep); }
.vh-entry__body { min-width: 0; }
.vh-entry__title {
	font-size: clamp(1.35rem, 1.15rem + 0.9vw, 1.95rem);
	margin: 0 0 0.35rem;
}
.vh-entry__title a {
	color: var(--ink); text-decoration: none;
	background-image: linear-gradient(var(--sun), var(--sun));
	background-repeat: no-repeat; background-position: 0 100%;
	background-size: 0 3px;
	transition: background-size var(--slow) var(--ease);
}
.vh-entry:hover .vh-entry__title a,
.vh-entry__title a:focus-visible { background-size: 100% 3px; }
.vh-entry__excerpt { max-width: 64ch; margin: 0; color: var(--ink-soft); }
.vh-entry__thumb {
	grid-row: span 2;
	width: clamp(6rem, 14vw, 10rem);
	border: var(--rule);
	background: var(--ink);
	overflow: hidden;
}
.vh-entry__thumb img {
	aspect-ratio: 4 / 3; width: 100%; object-fit: cover;
	filter: grayscale(1) contrast(1.08);
	mix-blend-mode: luminosity; opacity: 0.92;
	transition: transform var(--slow) var(--ease);
}
.vh-entry:hover .vh-entry__thumb img { transform: scale(1.03); }

.navigation.pagination { margin-top: var(--s4); }
.navigation.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.navigation.pagination .page-numbers {
	display: grid; place-content: center;
	min-width: 2.75rem; height: 2.75rem; padding-inline: 0.6rem;
	border: var(--rule); color: var(--ink); text-decoration: none;
	font-weight: 650;
}
.navigation.pagination .page-numbers:hover { background: var(--paper-edge); }
.navigation.pagination .current { background: var(--ink); color: var(--paper); }

.vh-layout__aside { display: flex; flex-direction: column; gap: var(--s4); align-self: start; position: sticky; top: 6rem; }
.vh-widget { font-size: 0.9375rem; }
.vh-widget__title {
	margin-bottom: 0.8rem; padding-bottom: 0.5rem;
	border-bottom: var(--rule);
	font-family: var(--text); font-size: 0.75rem; font-weight: 700;
	letter-spacing: 0.14em; text-transform: uppercase;
}
.vh-widget ul { margin: 0; padding: 0; list-style: none; }
.vh-widget li { padding: 0.4rem 0; border-bottom: var(--hair); }
.vh-widget a { color: var(--ink); text-decoration: none; }
.vh-widget a:hover { color: var(--blue-deep); }
.vh-widget .wp-block-group { margin: 0; }

/* Los widgets de bloque traen sus propios titulos: se normalizan aqui. */
.vh-layout__aside :is(h2, h3, h4),
.vh-footer .vh-widget :is(h2, h3, h4) {
	margin: 0 0 0.8rem;
	padding-bottom: 0.5rem;
	border-bottom: var(--rule);
	font-family: var(--text); font-size: 0.75rem; font-weight: 700;
	letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.3;
	letter-spacing: 0.14em;
}
.vh-footer .vh-widget :is(h2, h3, h4) { color: var(--paper); border-bottom-color: oklch(0.972 0.012 250 / 0.25); }
.vh-layout__aside .wp-block-latest-posts__post-date {
	display: block; font-size: 0.6875rem; letter-spacing: 0.1em;
	text-transform: uppercase; color: var(--ink-soft);
}
.vh-layout__aside .wp-block-categories li,
.vh-layout__aside .wp-block-latest-posts li { padding: 0.45rem 0; border-bottom: var(--hair); }
.vh-layout__aside .wp-block-search__inside-wrapper { display: flex; gap: 0.5rem; }
.vh-layout__aside .wp-block-search__input {
	min-width: 0; padding: 0.6rem 0.7rem; font: inherit; font-size: 0.9375rem;
	background: var(--paper); border: var(--rule); border-radius: 3px;
}
.vh-layout__aside .wp-block-search__button {
	margin: 0; padding: 0.6rem 0.9rem;
	font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--paper); background: var(--blue-deep);
	border: var(--rule); border-radius: 3px; cursor: pointer;
}
.vh-footer .wp-block-categories { margin: 0; padding: 0; list-style: none; font-size: 0.9375rem; }
.vh-footer .wp-block-categories li { padding: 0.3rem 0; border-bottom: 1px solid oklch(0.972 0.012 250 / 0.12); }

/* Entrada individual */
.vh-single__header { background: var(--paper-deep); border-bottom: var(--rule); }
.vh-single__header-inner {
	max-width: 72ch; margin-inline: auto;
	padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter) clamp(1.5rem, 3vw, 2.25rem);
}
.vh-single__kicker {
	display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
	margin: 0 0 var(--s2);
	font-size: 0.75rem; font-weight: 620; letter-spacing: 0.12em;
	text-transform: uppercase; color: var(--ink-soft);
}
.vh-single__title { margin-bottom: 0.25em; }
.vh-single__standfirst { max-width: 58ch; margin: 0; font-size: 1.1875rem; color: var(--ink-soft); }
.vh-single__media { max-width: var(--wide); margin: 0 auto var(--s4); padding-inline: var(--gutter); }
.vh-single__media img { border: var(--rule); }

.vh-single__content { max-width: var(--measure); margin-inline: auto; padding: var(--s4) var(--gutter) var(--s4); font-size: 1.125rem; }
.vh-single__content > * { margin-bottom: 1.15em; }
.vh-single__content h2 { margin-top: 1.8em; padding-top: 0.6em; border-top: var(--hair); }
.vh-single__content h3 { margin-top: 1.6em; }
.vh-single__content > p:first-of-type::first-letter {
	float: left;
	margin: 0.06em 0.08em 0 0;
	font-family: var(--display); font-size: 3.9em; font-weight: 700;
	font-variation-settings: "SOFT" 0, "WONK" 0;
	line-height: 0.78; color: var(--blue-deep);
}
.vh-single__content blockquote {
	margin: 1.8em 0; padding: 0 0 0 1.4rem;
	border: 0; border-left: 3px solid var(--sun-deep);
	font-family: var(--display); font-size: 1.35rem; line-height: 1.35;
}
.vh-single__content ul, .vh-single__content ol { padding-left: 1.2em; }
.vh-single__content li { margin-bottom: 0.4em; }
.vh-single__content img { border: var(--rule); }
.vh-single__content figcaption { font-size: 0.8125rem; color: var(--ink-soft); padding-top: 0.5rem; }

.vh-single__footer { max-width: var(--wide); margin-inline: auto; padding: 0 var(--gutter) var(--s5); }
.vh-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0 0 var(--s4); }

.vh-inline-cta {
	display: grid; gap: var(--s2);
	max-width: 72ch; margin: 0 auto var(--s5);
	padding: clamp(1.75rem, 4vw, 2.75rem);
	background: var(--ink); color: var(--paper);
	border: var(--rule); box-shadow: var(--offset);
}
.vh-inline-cta h2 { color: var(--paper); margin: 0; max-width: 18ch; }
.vh-inline-cta p { color: oklch(0.972 0.012 250 / 0.78); margin: 0; max-width: 48ch; }
.vh-inline-cta .vh-btn { justify-self: start; }

.vh-related__title {
	margin-bottom: var(--s3); padding-bottom: 0.5rem; border-bottom: var(--rule);
	font-family: var(--text); font-size: 0.8125rem; font-weight: 700;
	letter-spacing: 0.14em; text-transform: uppercase;
}

.vh-comments { max-width: var(--measure); margin-inline: auto; padding: 0 var(--gutter) var(--s5); }
.vh-comments__title { font-size: 1.5rem; }
.vh-comments__list { margin: 0 0 var(--s4); padding: 0; list-style: none; }
.vh-comments__list .comment-body { padding: var(--s2) 0; border-bottom: var(--hair); }
.vh-comments input:not([type="submit"]), .vh-comments textarea {
	width: 100%; padding: 0.75rem 0.9rem; font: inherit;
	background: var(--paper); border: var(--rule); border-radius: 3px;
}
.vh-comments .submit { all: unset; }

.vh-empty { max-width: 60ch; margin-inline: auto; padding: clamp(3rem, 9vw, 7rem) var(--gutter); }
.vh-empty__code {
	margin: 0 0 var(--s2);
	font-family: var(--display); font-size: clamp(4.5rem, 16vw, 9rem); font-weight: 700;
	line-height: 0.85; color: var(--blue); letter-spacing: -0.03em;
}
.vh-search { display: flex; gap: 0.5rem; margin: var(--s3) 0; }
.vh-search__input {
	flex: 1 1 auto; min-width: 0; padding: 0.75rem 0.9rem; font: inherit;
	background: var(--paper); border: var(--rule); border-radius: 3px;
}
.vh-search__input:focus { outline-offset: 0; }

/* 11 Formulario y pie -----------------------------------------------------*/
.vh-section--form { background: var(--ink); color: var(--paper); border-top: 4px solid var(--sun); }
.vh-form-block {
	display: grid; gap: clamp(2rem, 4vw, 3.5rem);
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: start;
	max-width: var(--wide); margin-inline: auto; padding-inline: var(--gutter);
}
.vh-form-block__intro h2 { color: var(--paper); max-width: 14ch; }
.vh-form-block__intro p { color: oklch(0.972 0.012 250 / 0.75); max-width: 40ch; }
.vh-form-block__points { margin: var(--s3) 0 0; padding: 0; list-style: none; border-top: 1px solid oklch(0.972 0.012 250 / 0.3); }
.vh-form-block__points li {
	display: flex; gap: 0.6rem; padding: 0.7rem 0;
	border-bottom: 1px solid oklch(0.972 0.012 250 / 0.15);
	font-size: 0.9375rem; color: oklch(0.972 0.012 250 / 0.85);
}
.vh-form-block__points .vh-icon { color: var(--sun); flex: none; margin-top: 0.2em; }
.vh-form-block__form {
	background: var(--paper); color: var(--ink);
	border: var(--rule); box-shadow: 6px 6px 0 var(--sun);
	padding: clamp(1.5rem, 3vw, 2.25rem);
}
.vh-notice { padding: 1rem; background: var(--sun); border: var(--rule); color: var(--ink); }

.vh-footer { background: var(--ink); color: oklch(0.972 0.012 250 / 0.8); border-top: 4px solid var(--sun); }
.vh-footer__inner {
	display: grid; gap: var(--s4);
	grid-template-columns: 1.4fr 1fr 1fr;
	max-width: var(--wide); margin-inline: auto;
	padding: clamp(3rem, 6vw, 5rem) var(--gutter) var(--s4);
}
.vh-footer a { color: var(--paper); text-decoration: none; }
.vh-footer a:hover { color: var(--sun); }
.vh-footer__brand {
	margin: 0 0 0.5rem;
	font-family: var(--display); font-size: 1.6rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: -0.01em; color: var(--paper);
}
.vh-footer__text { max-width: 34ch; font-size: 0.9375rem; }
.vh-footer__label {
	margin: 0 0 0.7rem; padding-bottom: 0.4rem;
	border-bottom: 1px solid oklch(0.972 0.012 250 / 0.25);
	font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.16em;
	text-transform: uppercase; color: oklch(0.972 0.012 250 / 0.6);
}
.vh-footer__contact, .vh-social, .vh-footer__menu { margin: 0 0 var(--s3); padding: 0; list-style: none; font-size: 0.9375rem; }
.vh-footer__contact li, .vh-footer__menu li { padding: 0.3rem 0; }
.vh-social { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.vh-footer .vh-widget__title { color: var(--paper); border-bottom-color: oklch(0.972 0.012 250 / 0.25); }
.vh-footer .vh-widget li { border-bottom-color: oklch(0.972 0.012 250 / 0.12); }
.vh-footer .vh-widget a { color: var(--paper); }
.vh-footer__legal {
	max-width: var(--wide); margin-inline: auto;
	padding: var(--s2) var(--gutter) var(--s4);
	border-top: 1px solid oklch(0.972 0.012 250 / 0.2);
	font-size: 0.8125rem;
}

.vh-whatsapp {
	position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.7rem 1.1rem;
	background: var(--sun); color: var(--ink) !important;
	border: var(--rule); box-shadow: var(--offset-sm);
	font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
	text-decoration: none;
	transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.vh-whatsapp:hover { color: var(--ink) !important; transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

/* 12 Movimiento y responsive ---------------------------------------------*/
[data-reveal] {
	opacity: 0;
	transform: translateY(16px);
}
[data-reveal].is-in {
	opacity: 1;
	transform: none;
	transition: opacity 480ms var(--ease), transform 480ms var(--ease);
	transition-delay: calc(var(--i, 0) * 45ms);
}

@media (max-width: 1024px) {
	.vh-footer__inner { grid-template-columns: 1fr 1fr; }
	.vh-layout { grid-template-columns: minmax(0, 1fr); }
	.vh-layout__aside { position: static; }
}

@media (max-width: 860px) {
	.vh-form-block { grid-template-columns: minmax(0, 1fr); }
	.vh-hero__stamp { display: none; }
	.vh-cards .wp-block-column,
	.vh-steps .wp-block-column { margin-right: 0; padding-right: 0; }
	.vh-steps .wp-block-column::after { display: none; }
}

@media (max-width: 782px) {
	.vh-burger { display: block; }
	.vh-nav {
		position: absolute; left: 0; right: 0; top: 100%;
		display: none; flex-direction: column; align-items: stretch; gap: 0;
		padding: var(--s2) var(--gutter) var(--s3);
		background: var(--paper); border-bottom: var(--rule);
		box-shadow: 0 8px 0 -4px oklch(0.300 0.105 265 / 0.15);
	}
	.vh-nav.is-open { display: flex; }
	.vh-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.vh-nav__list > li { border-bottom: var(--hair); }
	.vh-nav__list a { padding: 0.85rem 0; font-size: 0.9375rem; }
	.vh-nav__list a::after { display: none; }
	.vh-nav__list .sub-menu { position: static; display: block; border: 0; box-shadow: none; padding-left: var(--s2); }
	.vh-nav__cta { margin-top: var(--s2); align-self: flex-start; }
	.vh-header__inner { position: relative; }
	.vh-entry { grid-template-columns: minmax(0, 1fr); }
	.vh-entry__thumb { display: none; }
	.vh-hero__points li { border-right: 0; padding-block: 0.5rem; margin-right: 1rem; }
}

@media (max-width: 700px) {
	/* La regla de destinos no se recorta: se envuelve centrada. */
	.vh-hero__rule {
		flex-wrap: wrap; justify-content: center; gap: 0.25rem 1.1rem;
		white-space: normal; font-size: 0.625rem;
	}
}

@media (max-width: 560px) {
	.vh-footer__inner { grid-template-columns: 1fr; }
	.vh-btn { width: 100%; justify-content: center; }
	.vh-hero__actions .vh-btn { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	[data-reveal] { opacity: 1; transform: none; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

@media print {
	.vh-header, .vh-footer, .vh-whatsapp, .vh-section--form { display: none; }
	body::after { display: none; }
}
