/* ==========================================================================
   Guias WOTLK — Icecrown Theme
   ========================================================================== */

:root {
	--gw-bg-dark: #060d1c;
	--gw-bg-mid: #0a1428;
	--gw-bg-deep: #0f1c39;
	--gw-teal: #2a4d60;
	--gw-slate: #406a80;
	--gw-ice: #dce8ec;
	--gw-accent: #6eb8c9;
	--gw-accent-soft: #b8954a;
	--gw-accent-hover: #8ec9d8;
	--gw-text: #d2e4eb;
	--gw-text-muted: rgba(210, 228, 235, 0.72);
	--gw-headline: rgba(110, 184, 201, 0.15);
	--gw-glow: rgba(110, 184, 201, 0.35);
	--gw-header-height: 72px;
	--gw-guides-bg: #0f1c39;
	--gw-gold: #c4a35a;
	--gw-font-body: "Rajdhani", "Inter", system-ui, -apple-system, sans-serif;
	--gw-font-display: "Cinzel", "Marcellus SC", Georgia, "Times New Roman", serif;
	--gw-font-epic: "Cinzel", "Marcellus SC", Georgia, "Times New Roman", serif;
	--gw-font-ui: "Rajdhani", "Inter", system-ui, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: var(--gw-font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--gw-text);
	background: var(--gw-bg-dark);
	-webkit-font-smoothing: antialiased;
}

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

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

/* Accessibility
   ========================================================================== */

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Header
   ========================================================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--gw-header-height);
	background: linear-gradient(180deg, rgba(6, 14, 32, 0.92) 0%, rgba(6, 14, 32, 0.4) 100%);
	backdrop-filter: blur(12px) saturate(1.05);
	border-bottom: 1px solid rgba(154, 123, 60, 0.22);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	max-width: 1440px;
	height: 100%;
	margin: 0 auto;
	padding: 0 clamp(1rem, 3vw, 3rem);
}

.site-logo,
.custom-logo-link {
	font-family: var(--gw-font-display);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gw-ice);
	text-shadow: 0 0 20px rgba(0, 242, 255, 0.25);
	white-space: nowrap;
}

.custom-logo-link img {
	max-height: 48px;
	width: auto;
}

.primary-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.5vw, 2.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu a {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gw-text-muted);
	transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
	color: var(--gw-gold);
	text-shadow: none;
}

.header-search {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	max-width: 14rem;
	flex: 0 1 14rem;
}

.header-search__input {
	width: 100%;
	min-width: 0;
	padding: 0.45rem 0.65rem;
	font-family: var(--gw-font-ui);
	font-size: 0.82rem;
	color: #f4fafc;
	background: rgba(8, 16, 32, 0.55);
	border: 1px solid rgba(110, 184, 201, 0.28);
	border-radius: 2px;
}

.header-search__input::placeholder {
	color: rgba(210, 228, 235, 0.45);
}

.header-search__input:focus {
	outline: none;
	border-color: rgba(110, 184, 201, 0.55);
}

.header-search__submit {
	display: grid;
	place-items: center;
	padding: 0.4rem;
	color: rgba(210, 228, 235, 0.85);
	background: transparent;
	border: 1px solid rgba(110, 184, 201, 0.28);
	border-radius: 2px;
	cursor: pointer;
}

.header-search__submit:hover {
	color: #f4fafc;
	border-color: rgba(110, 184, 201, 0.5);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.58rem 1.1rem;
	font-family: var(--gw-font-ui);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(228, 240, 245, 0.94);
	background: rgba(8, 16, 34, 0.62);
	backdrop-filter: blur(10px) saturate(1.15);
	border: 1px solid rgba(110, 184, 201, 0.32);
	border-radius: 5px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
	transition:
		color 0.28s ease,
		background 0.28s ease,
		border-color 0.28s ease,
		box-shadow 0.32s ease,
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
	white-space: nowrap;
}

.header-cta:hover {
	color: #f4fafc;
	background: rgba(14, 26, 48, 0.78);
	border-color: rgba(142, 201, 216, 0.55);
	box-shadow:
		0 6px 24px rgba(0, 0, 0, 0.32),
		0 0 20px rgba(110, 184, 201, 0.14);
	transform: translateY(-1px);
}

.header-cta__icon {
	flex-shrink: 0;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 0 auto;
	background: var(--gw-ice);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero
   ========================================================================== */

.hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	background: transparent;
}

.hero__background,
.hero__snow,
.hero__fog,
.hero__light-rays,
.hero__particles,
.hero__glow,
.hero__vignette {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(-1 * var(--gw-header-height));
	bottom: 0;
}

.hero__background {
	pointer-events: none;
	background-color: var(--gw-bg-dark);
	background-image:
		linear-gradient(
			180deg,
			rgba(6, 14, 32, 0.92) 0%,
			rgba(6, 14, 32, 0.45) 10%,
			rgba(0, 26, 38, 0.28) 22%,
			rgba(0, 26, 38, 0.32) 45%,
			rgba(15, 28, 57, 0.55) 72%,
			var(--gw-guides-bg) 100%
		),
		linear-gradient(rgba(0, 26, 38, 0.35), rgba(0, 26, 38, 0.35)),
		url("../images/fondo.jpg");
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: center top, center top, center top;
	background-size: 100% 100%, 100% 100%, cover;
}

.hero__snow {
	pointer-events: none;
	opacity: 0.55;
	background-image:
		radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.7) 50%, transparent 100%),
		radial-gradient(1px 1px at 30% 65%, rgba(200, 240, 255, 0.6) 50%, transparent 100%),
		radial-gradient(1.5px 1.5px at 55% 15%, rgba(255, 255, 255, 0.5) 50%, transparent 100%),
		radial-gradient(1px 1px at 70% 45%, rgba(0, 242, 255, 0.45) 50%, transparent 100%),
		radial-gradient(1px 1px at 85% 75%, rgba(255, 255, 255, 0.55) 50%, transparent 100%),
		radial-gradient(1.5px 1.5px at 92% 30%, rgba(200, 240, 255, 0.5) 50%, transparent 100%),
		radial-gradient(1px 1px at 45% 88%, rgba(255, 255, 255, 0.45) 50%, transparent 100%),
		radial-gradient(1px 1px at 18% 42%, rgba(0, 242, 255, 0.35) 50%, transparent 100%);
	background-size: 100% 100%;
	animation: hero-snow 18s linear infinite;
}

@keyframes hero-snow {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(8%);
	}
}

.hero__glow {
	left: 8%;
	width: 35%;
	height: 80%;
	pointer-events: none;
	background: radial-gradient(ellipse at center, rgba(0, 242, 255, 0.22) 0%, transparent 70%);
	filter: blur(40px);
}

.hero__vignette {
	pointer-events: none;
	background:
		radial-gradient(ellipse at 50% 45%, transparent 40%, rgba(0, 10, 20, 0.22) 100%),
		linear-gradient(
			180deg,
			rgba(6, 14, 32, 0.55) 0%,
			rgba(6, 14, 32, 0.15) 12%,
			transparent 28%,
			transparent 58%,
			rgba(15, 28, 57, 0.35) 82%,
			var(--gw-guides-bg) 100%
		);
}

.hero__content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 52%);
	align-items: end;
	gap: 1rem;
	max-width: 1440px;
	min-height: 100vh;
	margin: 0 auto;
	padding: calc(var(--gw-header-height) + 2rem) clamp(1rem, 4vw, 3rem) 0;
}

.hero__copy {
	align-self: center;
	padding-bottom: 0;
}

.hero__copy.hero-monolith {
	padding: 0;
	background: none;
	border: none;
	box-shadow: none;
}

.hero__tagline {
	margin: 0 0 1.25rem;
	font-size: clamp(0.65rem, 1.2vw, 0.78rem);
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gw-accent-soft);
	text-shadow: 0 0 16px rgba(0, 242, 255, 0.3);
}

.hero__title {
	margin: 0;
}

.hero__title-line {
	display: block;
}

.hero__character-wrap {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	height: calc(100vh - var(--gw-header-height));
	margin-right: -3vw;
}

.hero__character {
	position: relative;
	z-index: 1;
	width: auto;
	max-width: min(100%, 620px);
	max-height: calc(100vh - var(--gw-header-height) - 1rem);
	object-fit: contain;
	object-position: bottom right;
	background: transparent;
	filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55));
}

/* Featured guides (scroll section)
   ========================================================================== */

.guides-featured {
	position: relative;
	padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 4vw, 3rem);
	background-color: var(--gw-guides-bg);
}

.guides-featured::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(ellipse at 50% 0%, rgba(0, 242, 255, 0.05) 0%, transparent 45%);
}

.guides-featured__inner {
	position: relative;
	z-index: 1;
	max-width: 1440px;
	margin: 0 auto;
}

.guides-featured__header {
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.guides-featured__eyebrow {
	margin: 0 0 0.85rem;
	font-size: clamp(0.8rem, 1.4vw, 0.95rem);
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gw-accent-soft);
	text-shadow: 0 0 20px rgba(0, 242, 255, 0.25);
}

.guides-featured__title {
	margin: 0;
	font-family: var(--gw-font-display);
	font-size: clamp(3rem, 8vw, 5.5rem);
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--gw-ice);
	text-shadow: 0 0 40px rgba(0, 242, 255, 0.12);
}

.guides-featured__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

.guide-card {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
	.guide-card {
		opacity: 0;
		transform: translateY(36px);
		transition:
			opacity 0.65s ease,
			transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.guide-card.is-visible {
		opacity: 1;
		transform: translateY(0);
	}

	.guide-card:nth-child(2).is-visible {
		transition-delay: 0.12s;
	}
}

.guide-card__media {
	display: block;
	overflow: hidden;
	border-radius: 4px 4px 0 0;
	aspect-ratio: 16 / 10;
}

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

.guide-card__media:hover img {
	transform: scale(1.04);
}

.guide-card__body {
	padding: 1.5rem 0 0;
}

.guide-card__index {
	margin: 0 0 0.75rem;
	font-size: clamp(0.8rem, 1.2vw, 0.92rem);
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gw-accent);
}

.guide-card__title {
	margin: 0 0 1rem;
	font-size: clamp(1.2rem, 2.4vw, 1.65rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.25;
}

.guide-card__title a {
	color: var(--gw-ice);
	text-decoration: none;
	transition: color 0.2s ease;
}

.guide-card__title a:hover {
	color: var(--gw-accent-hover);
}

.guide-card__excerpt {
	margin: 0 0 1.35rem;
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.7;
	color: var(--gw-text-muted);
	max-width: 58ch;
}

.guide-card__cta {
	display: inline-block;
	font-size: clamp(0.85rem, 1.2vw, 0.95rem);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gw-accent-soft);
	transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.guide-card__cta:hover {
	color: var(--gw-accent-hover);
	letter-spacing: 0.18em;
}

/* Landing content / posts
   ========================================================================== */

.site-main--landing {
	padding-top: 0;
	background-color: var(--gw-guides-bg);
}

.site-main:not(.site-main--landing),
.site-main--addons,
.site-main--profesiones,
.site-main--interfaces {
	padding-top: var(--gw-header-height);
	background:
		radial-gradient(ellipse 90% 45% at 50% 0%, rgba(110, 184, 201, 0.07) 0%, transparent 55%),
		linear-gradient(180deg, #0a1428 0%, var(--gw-guides-bg) 35%, var(--gw-bg-dark) 100%);
}

.landing-content,
.content-area {
	width: 100%;
	max-width: min(72rem, calc(100% - 2rem));
	margin: 0 auto;
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2.5rem) 4rem;
}

.content-area:has(.guide-shell .guide-toc) {
	max-width: min(92rem, calc(100% - 1.25rem));
}

.post-entry.page-panel {
	width: 100%;
}

.landing-content__inner,
.post-entry__content {
	font-family: var(--gw-font-ui);
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.02em;
	color: rgba(210, 228, 235, 0.88);
}

.post-entry__eyebrow {
	margin: 0 0 0.75rem;
}

.post-entry__title {
	margin: 0;
	font-family: var(--gw-font-epic);
	font-size: clamp(1.85rem, 4.5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #dce8ec;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.post-entry__divider {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 1.25rem 0 1.75rem;
}

.post-entry__divider-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(196, 163, 90, 0.55) 20%, rgba(110, 184, 201, 0.35) 80%, transparent);
}

.post-entry__divider-gem {
	font-size: 0.55rem;
	color: var(--gw-accent-hover);
	text-shadow: 0 0 8px rgba(110, 184, 201, 0.5);
}

.post-entry__content a {
	color: var(--gw-accent-hover);
	text-decoration: underline;
	text-decoration-color: rgba(110, 184, 201, 0.35);
	text-underline-offset: 3px;
}

.post-entry__content a:hover {
	color: var(--gw-gold);
	text-decoration-color: rgba(196, 163, 90, 0.5);
}

.post-entry__content h2,
.post-entry__content h3,
.post-entry__content h4 {
	font-family: var(--gw-font-epic);
	font-weight: 700;
	color: #dce8ec;
	letter-spacing: 0.03em;
}

.post-entry__content h2,
.post-entry__content h3 {
	scroll-margin-top: calc(var(--gw-header-height) + 1.25rem);
}

.post-entry__content h2 {
	margin: 2rem 0 0.85rem;
	font-size: 1.5rem;
}

.post-entry__content h3 {
	margin: 1.5rem 0 0.65rem;
	font-size: 1.2rem;
	color: var(--gw-accent-hover);
}

/* Wowhead tooltips — icon + link colors in guides */
.entry-content a[data-wowhead],
.entry-content a[href*="wowhead.com"] {
	text-decoration: none;
}

.entry-content a[data-wowhead] img,
.entry-content a[href*="wowhead.com"] img {
	display: inline-block;
	vertical-align: middle;
	margin: -2px 0.35rem 0 0;
	width: 18px;
	height: 18px;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45);
}

.entry-content ul li,
.entry-content ol li {
	margin-bottom: 0.35rem;
}

/* Breadcrumbs
   ========================================================================== */

.breadcrumbs {
	margin: 0 0 1.25rem;
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: var(--gw-font-ui);
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.breadcrumbs__item:not(:last-child)::after {
	content: "›";
	margin-left: 0.5rem;
	color: rgba(196, 168, 98, 0.65);
}

.breadcrumbs__item a {
	color: var(--gw-accent-hover);
}

.breadcrumbs__item a:hover {
	color: var(--gw-gold);
}

.breadcrumbs__item span {
	color: rgba(210, 228, 235, 0.72);
}

/* Guide layout + table of contents (sticky left sidebar while reading)
   ========================================================================== */

.guide-shell,
.guide-shell__layout {
	overflow: visible;
}

.guide-shell__layout {
	display: block;
}

.guide-shell__layout:has(.guide-toc) {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

.guide-shell__column {
	flex: 1 1 auto;
	min-width: 0;
}

.guide-shell__layout:has(.guide-toc) .guide-toc {
	flex: 0 0 min(14.5rem, 22vw);
	order: -1;
}

.guide-shell__column .breadcrumbs {
	margin-bottom: 1rem;
}

.guide-toc,
.guide-toc.wow-panel {
	position: sticky;
	top: calc(var(--gw-header-height) + 1.25rem);
	align-self: flex-start;
	z-index: 5;
	margin: 0;
	padding: 1rem 1.1rem 0.95rem;
	max-height: calc(100vh - var(--gw-header-height) - 2.5rem);
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.guide-toc::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.guide-toc__title {
	margin: 0 0 0.9rem;
	padding-bottom: 0.65rem;
	font-family: var(--gw-font-label);
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(196, 168, 98, 0.92);
	border-bottom: 1px solid rgba(110, 184, 201, 0.18);
}

.guide-toc__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.guide-toc__item {
	margin: 0;
	border-left: 2px solid transparent;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.guide-toc__item--sub {
	padding-left: 0.65rem;
}

.guide-toc__item a {
	display: block;
	padding: 0.42rem 0.55rem;
	font-family: var(--gw-font-ui);
	font-size: 0.82rem;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.02em;
	text-transform: none;
	color: rgba(210, 228, 235, 0.72);
	text-decoration: none;
	border-radius: 2px;
}

.guide-toc__item a:hover {
	color: #f4fafc;
	background: rgba(14, 26, 48, 0.45);
}

.guide-toc__item.is-active {
	border-left-color: var(--gw-accent);
	background: rgba(14, 26, 48, 0.35);
}

.guide-toc__item.is-active a {
	color: var(--gw-accent-hover);
}

@media (max-width: 1024px) {
	.content-area:has(.guide-shell .guide-toc) {
		max-width: min(72rem, calc(100% - 2rem));
	}

	.guide-shell__layout:has(.guide-toc) {
		flex-direction: column;
		gap: 1.25rem;
	}

	.guide-shell__layout:has(.guide-toc) .guide-toc {
		position: static;
		flex: 1 1 auto;
		order: -1;
		width: 100%;
		max-height: none;
		overflow: visible;
	}
}

/* Related guides
   ========================================================================== */

.related-guides {
	position: relative;
	margin-top: 2.5rem;
	padding: 1.25rem 1.35rem 1.15rem;
}

.related-guides__title {
	margin: 0 0 1rem;
	font-family: var(--gw-font-epic);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #dce8ec;
}

.related-guides__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.related-guides__item {
	margin: 0.65rem 0;
}

.related-guides__type {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 0.65rem;
}

.related-guides__item a {
	font-family: var(--gw-font-ui);
	font-size: 1rem;
	font-weight: 600;
	color: var(--gw-accent-hover);
}

.related-guides__item a:hover {
	color: var(--gw-gold);
}

/* Search
   ========================================================================== */

.search-header {
	position: relative;
	margin-bottom: 2rem;
	padding: 1.35rem 1.5rem 1.25rem;
}

.search-header__eyebrow {
	margin: 0 0 0.5rem;
}

.search-header__title {
	margin: 0 0 1rem;
	font-family: var(--gw-font-epic);
	font-size: clamp(1.35rem, 3vw, 2rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #dce8ec;
}

.search-header .header-search {
	max-width: 100%;
	flex: 1 1 auto;
}

.search-results {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.search-result {
	position: relative;
	padding: 1.15rem 1.35rem;
}

.search-result__type {
	margin: 0 0 0.35rem;
	font-size: 0.65rem;
}

.search-result__title {
	margin: 0 0 0.5rem;
	font-family: var(--gw-font-epic);
	font-size: 1.2rem;
	font-weight: 700;
	color: #dce8ec;
}

.search-result__title a {
	color: inherit;
	text-decoration: none;
}

.search-result__title a:hover {
	color: var(--gw-accent-hover);
}

.search-result__excerpt {
	margin: 0;
	font-family: var(--gw-font-ui);
	font-size: 0.95rem;
	color: rgba(210, 228, 235, 0.75);
}

.search-empty {
	position: relative;
	padding: 2rem 1.35rem;
	text-align: center;
}

.site-footer {
	padding: 2rem;
	text-align: center;
	font-family: var(--gw-font-ui);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(210, 228, 235, 0.45);
	background: linear-gradient(180deg, var(--gw-guides-bg) 0%, var(--gw-bg-dark) 100%);
	border-top: 1px solid rgba(154, 123, 60, 0.28);
}

.site-footer__inner {
	max-width: 1440px;
	margin: 0 auto;
}

.footer-navigation {
	margin: 0 0 1rem;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.35rem 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu li {
	display: flex;
	align-items: center;
}

.footer-menu li:not(:first-child)::before {
	content: "·";
	margin: 0 0.65rem;
	opacity: 0.45;
}

.footer-menu a {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(210, 228, 235, 0.55);
	transition: color 0.2s ease;
}

.footer-menu a:hover,
.footer-menu .current-menu-item > a {
	color: var(--gw-gold);
}

/* Scroll to top
   ========================================================================== */

.scroll-to-top {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 90;
	display: grid;
	place-items: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	color: #f4fafc;
	background: rgba(8, 16, 32, 0.82);
	border: 1px solid rgba(110, 184, 201, 0.45);
	border-radius: 4px;
	box-shadow:
		0 4px 20px rgba(0, 0, 0, 0.45),
		0 0 16px rgba(110, 184, 201, 0.12);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(0.5rem);
	transition:
		opacity 0.2s ease,
		visibility 0.2s ease,
		transform 0.2s ease,
		border-color 0.15s ease,
		background 0.15s ease;
}

.scroll-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-to-top:hover {
	border-color: var(--gw-btn-border-hover, rgba(142, 201, 216, 0.75));
	background: rgba(14, 26, 48, 0.92);
	box-shadow:
		0 6px 24px rgba(0, 0, 0, 0.5),
		0 0 20px rgba(110, 184, 201, 0.2);
}

.scroll-to-top:focus-visible {
	outline: 2px solid var(--gw-accent, #6eb8c9);
	outline-offset: 3px;
}

.scroll-to-top__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	line-height: 0;
}

.scroll-to-top__svg {
	display: block;
	width: 1rem;
	height: 1rem;
}

@media (max-width: 640px) {
	.scroll-to-top {
		right: 0.85rem;
		bottom: 0.85rem;
		width: 2.5rem;
		height: 2.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.scroll-to-top {
		transition: opacity 0.01s ease, visibility 0.01s ease;
	}
}

/* Mobile
   ========================================================================== */

@media (max-width: 960px) {
	.nav-toggle {
		display: flex;
		order: 3;
	}

	.primary-navigation {
		position: fixed;
		top: var(--gw-header-height);
		left: 0;
		right: 0;
		display: none;
		justify-content: center;
		padding: 1.5rem;
		background: rgba(6, 14, 32, 0.97);
		border-bottom: 1px solid rgba(154, 123, 60, 0.25);
	}

	.primary-navigation.is-open {
		display: flex;
	}

	.nav-menu {
		flex-direction: column;
		gap: 1.25rem;
	}

	.site-header__inner.is-nav-open .nav-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.site-header__inner.is-nav-open .nav-toggle span:nth-child(2) {
		opacity: 0;
	}

	.site-header__inner.is-nav-open .nav-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.hero__background {
		background-position: center 30%;
	}

	.hero__content {
		grid-template-columns: 1fr;
		align-items: end;
		padding-bottom: 2rem;
	}

	.hero__copy {
		position: absolute;
		top: 50%;
		bottom: auto;
		left: clamp(1rem, 4vw, 3rem);
		right: clamp(1rem, 4vw, 3rem);
		z-index: 3;
		padding-bottom: 0;
		transform: translateY(-50%);
	}

	.hero__copy.hero-monolith {
		width: auto;
		max-width: none;
	}

	.hero__title {
		font-size: clamp(3.5rem, 18vw, 6rem);
	}

	.hero__character-wrap {
		justify-content: center;
		height: auto;
		margin-right: 0;
	}

	.hero__character {
		max-width: min(92vw, 420px);
		max-height: 72vh;
		margin: 0 auto;
	}
}

@media (max-width: 960px) {
	.header-search {
		max-width: 11rem;
		flex: 0 1 11rem;
	}
}

@media (max-width: 640px) {
	.header-search {
		display: none;
	}

	.header-cta {
		display: none;
	}

	.site-header__inner.is-nav-open .header-cta {
		display: inline-flex;
		position: absolute;
		right: 4rem;
		top: 50%;
		transform: translateY(-50%);
	}
}

@media (max-width: 900px) {
	.guides-featured__grid {
		grid-template-columns: 1fr;
	}

	@media (prefers-reduced-motion: no-preference) {
		.guide-card:nth-child(2).is-visible {
			transition-delay: 0s;
		}
	}
}

/* Customizer: mostrar tarjetas sin depender del scroll */
.customize-preview .guide-card {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.hero__snow {
		animation: none;
	}

	.guide-card {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
