:root {
	--bg: #02080d;
	--surface: #08131c;
	--paper: #efe3ca;
	--paper-text: #2c160f;
	--text: #fff8eb;
	--muted: #d9bd88;
	--gold: #c28a3c;
	--gold-soft: #f1c878;
	--red: #8d1412;
	--red-dark: #4f0707;
	--border: rgba(218, 166, 82, 0.56);
	--font-sans: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
	--font-serif: Georgia, "Times New Roman", serif;
	--content-width: 1440px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: 17px;
	line-height: 1.55;
	margin: 0;
}

@keyframes sc-fade-up {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes sc-soft-zoom {
	from {
		transform: scale(1.04);
	}
	to {
		transform: scale(1);
	}
}

@keyframes sc-button-shine {
	from {
		transform: translateX(-140%) skewX(-22deg);
	}
	to {
		transform: translateX(220%) skewX(-22deg);
	}
}

a {
	color: inherit;
}

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

.container {
	margin: 0 auto;
	max-width: var(--content-width);
	padding: 0 5vw;
}

.skip-link {
	background: var(--gold-soft);
	color: #1b0808;
	left: 16px;
	padding: 8px 12px;
	position: absolute;
	top: -48px;
	z-index: 20;
}

.skip-link:focus {
	top: 16px;
}

.site-header {
	background: linear-gradient(180deg, rgba(1, 7, 12, 0.97), rgba(1, 7, 12, 0.90));
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
}

body:not(.home) .site-header {
	background: #02080d;
	border-bottom: 1px solid rgba(194, 138, 60, 0.34);
	position: relative;
}

body:not(.home) .content-layout {
	padding-top: 56px;
}

.header-inner {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: 220px 1fr auto;
	min-height: 170px;
}

.brand-link {
	display: block;
	width: min(210px, 32vw);
}

.brand-link img {
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
	max-height: 150px;
	width: auto;
	transition: filter 220ms ease, transform 220ms ease;
}

.brand-link:hover img {
	filter: drop-shadow(0 10px 22px rgba(194, 138, 60, 0.34));
	transform: translateY(-2px);
}

.primary-navigation ul {
	align-items: center;
	display: flex;
	gap: clamp(14px, 2vw, 30px);
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-navigation a {
	color: var(--text);
	display: inline-block;
	font-size: 0.94rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	padding: 12px 0;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease;
}

.primary-navigation li:first-child a,
.primary-navigation a:hover {
	color: var(--gold-soft);
}

.primary-navigation li:first-child a::after,
.primary-navigation a:hover::after {
	background: var(--gold);
	bottom: 4px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
}

.header-actions {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

.member-button {
	align-items: center;
	background: linear-gradient(180deg, #b98542, #875321);
	border: 1px solid #d9a45f;
	border-radius: 8px;
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.18);
	color: #fff;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	min-height: 44px;
	overflow: hidden;
	padding: 0 18px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	transition: box-shadow 180ms ease, transform 180ms ease;
	white-space: nowrap;
}

.member-button i,
.button i {
	font-size: 0.95em;
	margin-left: 10px;
}

.member-button i {
	margin-left: 0;
	margin-right: 9px;
}

.social-link {
	align-items: center;
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--gold-soft);
	display: inline-flex;
	font-weight: 900;
	height: 38px;
	justify-content: center;
	text-decoration: none;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
	width: 38px;
}

.social-link:hover {
	background: var(--gold-soft);
	color: #1b0808;
	transform: translateY(-2px);
}

.menu-toggle {
	background: rgba(0, 0, 0, 0.62);
	border: 1px solid var(--border);
	border-radius: 6px;
	color: var(--gold-soft);
	cursor: pointer;
	display: none;
	font: inherit;
	font-weight: 900;
	letter-spacing: 0.05em;
	padding: 9px 13px;
	text-transform: uppercase;
	transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.menu-toggle.is-active,
.menu-toggle:hover {
	background: rgba(194, 138, 60, 0.18);
	box-shadow: 0 0 22px rgba(241, 200, 120, 0.16);
}

.home-hero {
	background: #02080d;
	min-height: 820px;
	overflow: hidden;
	position: relative;
}

.hero-slider {
	min-height: 820px;
	position: relative;
}

.hero-slide {
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	inset: 0;
	min-height: 820px;
	opacity: 0;
	position: absolute;
	transform: scale(1.02);
	transition: opacity 760ms ease, transform 1200ms ease;
	z-index: 0;
}

.hero-slide.is-active {
	opacity: 1;
	transform: scale(1);
	z-index: 1;
}

.hero-shade {
	background:
		linear-gradient(90deg, rgba(0, 4, 8, 0.98) 0%, rgba(0, 4, 8, 0.82) 30%, rgba(0, 4, 8, 0.23) 68%, rgba(0, 4, 8, 0.54) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.14), #02080d 100%);
	inset: 0;
	position: absolute;
}

.hero-content {
	padding-bottom: 190px;
	padding-top: 220px;
	position: relative;
	z-index: 1;
}

.hero-slide.is-active .hero-content {
	animation: sc-fade-up 720ms ease 120ms both;
}

.eyebrow {
	color: var(--gold-soft);
	font-family: var(--font-serif);
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.32em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.hero-content h1 {
	color: #fffaf0;
	font-family: var(--font-serif);
	font-size: clamp(2.7rem, 4.6vw, 4.95rem);
	line-height: 0.98;
	margin: 0 0 24px;
	max-width: 740px;
	overflow-wrap: anywhere;
	text-shadow: 0 5px 20px rgba(0, 0, 0, 0.72);
	text-transform: uppercase;
}

.hero-content p {
	color: #f4d9aa;
	font-family: var(--font-serif);
	font-size: clamp(1.1rem, 2vw, 1.55rem);
	font-weight: 700;
	margin: 0 0 36px;
	max-width: 610px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.button {
	align-items: center;
	border-radius: 7px;
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 900;
	justify-content: center;
	letter-spacing: 0.05em;
	min-height: 54px;
	min-width: 210px;
	overflow: hidden;
	padding: 0 22px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button::before,
.member-button::before {
	background: rgba(255, 255, 255, 0.28);
	content: "";
	height: 120%;
	left: 0;
	position: absolute;
	top: -10%;
	transform: translateX(-140%) skewX(-22deg);
	width: 36px;
}

.button:hover,
.member-button:hover {
	box-shadow: 0 0 24px rgba(241, 200, 120, 0.22);
	transform: translateY(-2px);
}

.button:hover::before,
.member-button:hover::before {
	animation: sc-button-shine 760ms ease;
}

.button-primary {
	background: linear-gradient(180deg, #a31918, #760c0d);
	border: 1px solid #e2a365;
	color: #fff;
}

.button-outline {
	background: rgba(2, 8, 13, 0.54);
	border: 1px solid var(--border);
	color: var(--gold-soft);
}

.slider-dots {
	bottom: 82px;
	display: flex;
	gap: 9px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	z-index: 2;
}

.slider-dots button {
	background: rgba(255, 255, 255, 0.45);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	height: 8px;
	padding: 0;
	transition: background 180ms ease, width 180ms ease;
	width: 8px;
}

.slider-dots button.is-active {
	background: var(--gold-soft);
	width: 28px;
}

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

.home-panels {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
	margin-top: 28px;
	padding-bottom: 84px;
	position: relative;
	z-index: 3;
}

.feature-card {
	animation: sc-fade-up 720ms ease both;
	border: 1px solid var(--border);
	border-radius: 8px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
	display: flex;
	flex-direction: column;
	min-height: 400px;
	overflow: hidden;
	padding: 34px;
	position: relative;
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.feature-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.feature-card::before {
	background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.14) 50%, transparent 100%);
	content: "";
	inset: 0 auto 0 -70%;
	opacity: 0;
	position: absolute;
	transform: skewX(-18deg);
	transition: left 700ms ease, opacity 260ms ease;
	width: 42%;
	z-index: 0;
}

.feature-card > * {
	position: relative;
	z-index: 1;
}

.feature-card:nth-child(2) {
	animation-delay: 90ms;
}

.feature-card:nth-child(3) {
	animation-delay: 180ms;
}

.feature-card:nth-child(4) {
	animation-delay: 270ms;
}

.feature-card:hover {
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48);
	transform: translateY(-5px);
}

.feature-card:hover::before {
	left: 115%;
	opacity: 1;
}

.feature-card h2 {
	font-family: var(--font-serif);
	font-size: clamp(1.3rem, 1.7vw, 1.75rem);
	line-height: 1.1;
	margin: 0 0 28px;
	text-align: center;
	text-transform: uppercase;
}

.feature-card h2::after {
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	content: "";
	display: block;
	height: 1px;
	margin: 13px auto 0;
	width: 70%;
}

.feature-card p {
	margin: 0 0 26px;
}

.feature-link {
	align-items: center;
	border: 1px solid currentColor;
	border-radius: 6px;
	display: flex;
	font-weight: 900;
	justify-content: center;
	letter-spacing: 0.04em;
	margin-top: 20px;
	min-height: 46px;
	padding: 0 22px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.feature-link:hover {
	background: rgba(241, 200, 120, 0.18);
	transform: translateY(-2px);
}

.parchment-card,
.archive-card {
	background: linear-gradient(rgba(245, 232, 205, 0.92), rgba(226, 207, 169, 0.9));
	color: var(--paper-text);
}

.parchment-card {
	background:
		linear-gradient(rgba(245, 232, 205, 0.92), rgba(226, 207, 169, 0.9)),
		url("../images/archive-circo.png") center bottom / cover;
}

.parchment-card h2,
.archive-card h2 {
	color: #821515;
}

.quote-card {
	background:
		linear-gradient(rgba(5, 20, 32, 0.8), rgba(2, 8, 13, 0.96)),
		url("../images/archive-circo.png") center / cover;
	color: #fff2d5;
	text-align: center;
}

.quote-card p {
	font-family: var(--font-serif);
	font-size: 1.05rem;
}

.testimonial-thumb {
	border: 1px solid rgba(241, 200, 120, 0.42);
	border-radius: 999px;
	height: 96px;
	margin: 0 auto 18px;
	overflow: hidden;
	width: 96px;
}

.testimonial-thumb img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.quote-card p i {
	color: rgba(241, 200, 120, 0.72);
	font-size: 1.8rem;
	margin-right: 6px;
	vertical-align: -0.18em;
}

.quote-card strong {
	color: var(--gold-soft);
	display: block;
	margin-bottom: 18px;
}

.archive-card img {
	aspect-ratio: 16 / 8;
	border-radius: 5px;
	margin: 18px 0 22px;
	object-fit: cover;
	width: 100%;
}

.album-mini-grid {
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr 1fr;
	margin: 18px 0 22px;
}

.album-mini {
	align-items: flex-end;
	aspect-ratio: 1 / 1;
	background-position: center;
	background-size: cover;
	border-radius: 6px;
	display: flex;
	overflow: hidden;
	position: relative;
	text-decoration: none;
}

.album-mini::after {
	background: linear-gradient(transparent 35%, rgba(2, 8, 13, 0.86));
	content: "";
	inset: 0;
	position: absolute;
	transition: background 200ms ease;
}

.album-mini span {
	color: #fff8eb;
	font-family: var(--font-serif);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 8px;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
}

.album-mini:hover {
	transform: translateY(-2px);
	transition: transform 200ms ease;
}

.album-mini:hover::after {
	background: linear-gradient(rgba(141, 20, 18, 0.25), rgba(2, 8, 13, 0.88));
}

.news-card {
	background: linear-gradient(155deg, #6f0505, #230304);
	color: #fff3df;
}

.news-card ul {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}

.news-card li {
	border-bottom: 1px solid rgba(221, 164, 83, 0.32);
	display: grid;
	gap: 4px;
	padding: 15px 0;
}

.news-entry-link {
	border: 0 !important;
	display: grid !important;
	letter-spacing: 0 !important;
	margin: 0 !important;
	min-height: 0 !important;
	padding: 0 !important;
	text-transform: none !important;
}

.news-entry-link:hover {
	background: transparent !important;
	color: var(--gold-soft);
}

.news-card span {
	font-family: var(--font-serif);
	font-size: 1.02rem;
}

.news-card time {
	color: var(--gold-soft);
	font-size: 0.9rem;
}

.site-footer {
	background:
		radial-gradient(1200px 360px at 12% 0%, rgba(141, 20, 18, 0.18), transparent 60%),
		linear-gradient(180deg, #041723, #02101a);
	border-top: 2px solid var(--gold);
	color: #f5dec0;
	position: relative;
}

.site-footer::before {
	background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
	content: "";
	height: 1px;
	left: 0;
	opacity: 0.5;
	position: absolute;
	right: 0;
	top: 2px;
}

.footer-inner {
	display: grid;
	gap: 54px;
	grid-template-columns: 1.45fr 0.9fr 1fr;
	padding-bottom: 44px;
	padding-top: 56px;
}

.footer-brand {
	align-items: center;
	display: grid;
	gap: 22px;
	grid-template-columns: 150px 1fr;
}

.footer-brand img {
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
	max-width: 150px;
}

.footer-brand p {
	color: rgba(245, 222, 192, 0.82);
	font-family: var(--font-serif);
	line-height: 1.7;
	margin: 0;
}

.footer-links,
.footer-contact {
	display: grid;
	gap: 10px;
}

.footer-links h2,
.footer-contact h2 {
	color: var(--gold-soft);
	font-size: 1rem;
	letter-spacing: 0.1em;
	margin: 0 0 12px;
	padding-bottom: 12px;
	position: relative;
	text-transform: uppercase;
}

.footer-links h2::after,
.footer-contact h2::after {
	background: var(--gold);
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 42px;
}

.footer-links a,
.footer-contact p,
.footer-contact a {
	color: rgba(245, 222, 192, 0.85);
	margin: 0;
	text-decoration: none;
	transition: color 180ms ease, transform 180ms ease;
}

.footer-menu {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu a {
	align-items: center;
	color: rgba(245, 222, 192, 0.85);
	display: inline-flex;
	gap: 9px;
	text-decoration: none;
	transition: color 180ms ease, transform 180ms ease;
}

.footer-menu a::before {
	color: var(--gold);
	content: "\203A";
	font-size: 1.1em;
	line-height: 1;
}

.footer-links a:hover,
.footer-menu a:hover,
.footer-contact a:hover {
	color: var(--gold-soft);
	transform: translateX(3px);
}

.footer-contact i {
	color: var(--gold-soft);
	margin-right: 8px;
	width: 18px;
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 18px;
}

.footer-social .social-link {
	background: rgba(194, 138, 60, 0.08);
	border: 1px solid rgba(218, 166, 82, 0.4);
	color: var(--gold-soft);
	flex: 0 0 auto;
	height: 42px;
	width: 42px;
}

.footer-social .social-link:hover {
	background: var(--gold-soft);
	border-color: var(--gold-soft);
	color: #1b0808;
	transform: translateY(-3px);
}

.footer-social .social-link i {
	color: inherit;
	margin: 0;
	width: auto;
}

.footer-bottom {
	border-top: 1px solid rgba(194, 138, 60, 0.22);
	color: rgba(245, 222, 192, 0.7);
	font-family: var(--font-serif);
	font-size: 0.92rem;
	padding: 18px 24px;
	text-align: center;
}

.footer-bottom p {
	margin: 0;
}

.footer-credits {
	color: rgba(245, 222, 192, 0.55);
	font-size: 0.84rem;
	margin-top: 8px !important;
}

.footer-credits strong {
	color: var(--gold-soft);
	font-weight: 700;
}

.footer-credits a {
	text-decoration: none;
	transition: opacity 180ms ease;
}

.footer-credits a:hover {
	opacity: 0.75;
}

.footer-credits-sep {
	margin: 0 8px;
	opacity: 0.5;
}

.content-layout {
	padding-bottom: 72px;
	padding-top: 180px;
}

.posts-list {
	display: grid;
	gap: 22px;
}

.post-card,
.page-content {
	background: #fff8ed;
	border: 1px solid var(--border);
	border-radius: 8px;
	color: #1f1411;
	overflow: hidden;
}

.post-card {
	display: grid;
	grid-template-columns: minmax(220px, 34%) 1fr;
}

.post-thumbnail img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.post-card-body,
.page-content {
	padding: 28px;
}

.entry-header h1,
.entry-header h2,
.archive-header h1 {
	line-height: 1.12;
	margin: 0 0 10px;
}

.entry-header h2 a {
	color: #7b1111;
	text-decoration: none;
}

.entry-meta,
.archive-description,
.entry-summary {
	color: #735d49;
}

.featured-image {
	margin: 24px 0;
}

.navigation.pagination {
	margin-top: 32px;
}

.editorial-hero,
.news-archive-hero {
	background:
		linear-gradient(90deg, rgba(0, 4, 8, 0.96), rgba(0, 4, 8, 0.58)),
		var(--editorial-hero-image, url("../images/hero-circo.png")) center / cover;
	border-bottom: 1px solid rgba(194, 138, 60, 0.34);
	padding: 88px 0 76px;
}

.editorial-hero-inner,
.news-archive-hero-inner {
	animation: sc-fade-up 700ms ease both;
}

.editorial-hero h1,
.news-archive-hero h1 {
	color: #fffaf0;
	font-family: var(--font-serif);
	font-size: clamp(2.8rem, 6vw, 5.6rem);
	line-height: 1;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.editorial-hero p,
.editorial-hero .archive-description,
.news-archive-hero p,
.news-archive-hero .archive-description {
	color: #f4d9aa;
	font-family: var(--font-serif);
	font-size: 1.25rem;
	max-width: 760px;
}

.news-archive-layout {
	padding-bottom: 84px;
	padding-top: 64px;
}

.news-grid {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-grid .post-card {
	display: grid;
	grid-template-columns: 1fr;
	min-height: 100%;
}

.news-grid .post-thumbnail img {
	aspect-ratio: 16 / 9;
	height: auto;
}

.news-list-card {
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.news-list-card:hover {
	box-shadow: 0 26px 62px rgba(0, 0, 0, 0.4);
	transform: translateY(-5px);
}

.post-card-kicker {
	color: #8d1412;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.read-more-link {
	align-items: center;
	color: #821515;
	display: inline-flex;
	font-weight: 900;
	gap: 8px;
	margin-top: 18px;
	text-decoration: none;
	text-transform: uppercase;
}

.single-news {
	animation: sc-fade-up 700ms ease both;
	background: linear-gradient(rgba(255, 248, 237, 0.98), rgba(238, 224, 195, 0.96));
	border: 1px solid var(--border);
	border-radius: 8px;
	box-shadow: 0 22px 64px rgba(0, 0, 0, 0.36);
	color: #24140f;
	margin: 0 auto;
	max-width: 1040px;
	overflow: hidden;
}

.single-news-header {
	background:
		linear-gradient(rgba(111, 5, 5, 0.82), rgba(35, 3, 4, 0.86)),
		url("../images/archive-circo.png") center / cover;
	color: #fff8eb;
	padding: clamp(30px, 5vw, 58px);
}

.single-news-kicker {
	color: var(--gold-soft);
	font-size: 0.86rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.single-news-header h1 {
	font-family: var(--font-serif);
	font-size: clamp(2.1rem, 5vw, 4.4rem);
	line-height: 1.04;
	margin: 0 0 18px;
	max-width: 920px;
	text-transform: uppercase;
}

.single-news-meta {
	color: #f4d9aa;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.single-news-meta a {
	color: #f4d9aa;
}

.single-news-meta i {
	color: var(--gold-soft);
	margin-right: 6px;
}

.single-news-image img {
	aspect-ratio: 16 / 8;
	object-fit: cover;
	width: 100%;
}

.single-news-content {
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.45vw, 1.24rem);
	line-height: 1.82;
	padding: clamp(30px, 5vw, 62px);
}

.single-news-content p,
.single-news-content ul,
.single-news-content ol {
	margin-top: 0;
}

.single-news-content h2,
.single-news-content h3 {
	color: #821515;
	line-height: 1.16;
	margin: 1.4em 0 0.6em;
}

.single-news-content blockquote {
	border-left: 4px solid #821515;
	color: #4b291e;
	font-style: italic;
	margin: 30px 0;
	padding-left: 22px;
}

.single-news-content img {
	border-radius: 7px;
	box-shadow: 0 14px 36px rgba(44, 22, 15, 0.18);
}

.single-news-footer {
	border-top: 1px solid rgba(130, 21, 21, 0.18);
	padding: 0 clamp(30px, 5vw, 62px) clamp(30px, 5vw, 52px);
}

.single-news-nav {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 28px;
}

.single-news-nav a {
	align-items: center;
	background: #821515;
	border: 1px solid #b98542;
	border-radius: 7px;
	color: #fff8eb;
	display: flex;
	font-weight: 900;
	gap: 9px;
	justify-content: center;
	min-height: 48px;
	padding: 10px 14px;
	text-align: center;
	text-decoration: none;
}

.inner-hero {
	min-height: 520px;
	overflow: hidden;
	position: relative;
}

.inner-hero-bg {
	animation: sc-soft-zoom 1200ms ease both;
	background-position: center;
	background-size: cover;
	inset: 0;
	position: absolute;
}

.inner-hero-shade {
	background:
		linear-gradient(90deg, rgba(0, 4, 8, 0.96), rgba(0, 4, 8, 0.44)),
		linear-gradient(180deg, rgba(0, 0, 0, 0.18), #02080d);
	inset: 0;
	position: absolute;
}

.inner-hero-content {
	animation: sc-fade-up 700ms ease 120ms both;
	padding-bottom: 72px;
	padding-top: 220px;
	position: relative;
	z-index: 1;
}

.inner-hero-content h1 {
	color: #fffaf0;
	font-family: var(--font-serif);
	font-size: clamp(2.5rem, 5vw, 5rem);
	line-height: 1;
	margin: 0;
	max-width: 960px;
	text-transform: uppercase;
}

.historia-content-wrap {
	padding-bottom: 72px;
	padding-top: 52px;
}

.historia-content {
	animation: sc-fade-up 700ms ease both;
	background: linear-gradient(rgba(245, 232, 205, 0.96), rgba(226, 207, 169, 0.94));
	border: 1px solid var(--border);
	border-radius: 8px;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
	color: var(--paper-text);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.5vw, 1.28rem);
	line-height: 1.78;
	margin: 0 auto;
	max-width: 980px;
	padding: clamp(28px, 5vw, 62px);
	position: relative;
	z-index: 2;
}

.historia-content > *:first-child {
	margin-top: 0;
}

.historia-content p {
	margin: 0 0 1.2em;
}

.historia-content h2,
.historia-content h3 {
	color: #821515;
	font-family: var(--font-serif);
	line-height: 1.15;
	margin: 1.4em 0 0.55em;
}

.historia-content ul,
.historia-content ol {
	margin: 0 0 1.3em 1.2em;
	padding: 0;
}

.historia-content li {
	margin-bottom: 0.45em;
}

.historia-content img {
	border-radius: 7px;
	box-shadow: 0 14px 36px rgba(44, 22, 15, 0.18);
	margin: 28px 0;
}

.historia-content .wp-block-quote {
	border-left: 4px solid #821515;
	color: #4b291e;
	font-style: italic;
	margin: 30px 0;
	padding-left: 22px;
}

.testimonio-featured-image {
	border-radius: 8px;
	margin-bottom: 32px;
	overflow: hidden;
}

.testimonio-featured-image img {
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	box-shadow: 0 14px 40px rgba(44, 22, 15, 0.22);
	margin: 0;
	object-fit: cover;
	width: 100%;
}

.gallery-layout {
	padding-bottom: 84px;
	padding-top: 56px;
}

.albums-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.album-card {
	border-radius: 10px;
	display: block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.album-card:hover {
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
	transform: translateY(-5px);
}

.album-cover {
	aspect-ratio: 4 / 3;
	display: block;
	object-fit: cover;
	transition: transform 320ms ease;
	width: 100%;
}

.album-card:hover .album-cover {
	transform: scale(1.04);
}

.album-info {
	background: linear-gradient(transparent, rgba(2, 8, 13, 0.9));
	bottom: 0;
	color: #fff8eb;
	left: 0;
	padding: 48px 18px 18px;
	position: absolute;
	right: 0;
}

.album-info h2 {
	font-family: var(--font-serif);
	font-size: 1.2rem;
	line-height: 1.2;
	margin: 0 0 4px;
	text-transform: uppercase;
}

.album-info span {
	color: var(--gold-soft);
	font-size: 0.85rem;
}

.album-section {
	padding-bottom: 84px;
	padding-top: 48px;
}

.album-photos-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.album-photo {
	border-radius: 7px;
	cursor: zoom-in;
	overflow: hidden;
}

.album-photo img {
	aspect-ratio: 4 / 3;
	display: block;
	object-fit: cover;
	transition: transform 300ms ease;
	width: 100%;
}

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

.gallery-empty {
	color: var(--muted);
	font-family: var(--font-serif);
	padding: 56px 0;
	text-align: center;
}

/* Lightbox */
@keyframes sc-lb-overlay-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes sc-lb-img-in {
	from { opacity: 0; transform: scale(0.86); }
	to   { opacity: 1; transform: scale(1); }
}

@keyframes sc-lb-img-out {
	from { opacity: 1; transform: scale(1); }
	to   { opacity: 0; transform: scale(0.92); }
}

@keyframes sc-lb-slide-from-right {
	from { opacity: 0; transform: translateX(52px) scale(0.96); }
	to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes sc-lb-slide-from-left {
	from { opacity: 0; transform: translateX(-52px) scale(0.96); }
	to   { opacity: 1; transform: translateX(0) scale(1); }
}

.sc-lightbox {
	align-items: center;
	display: none;
	inset: 0;
	justify-content: center;
	position: fixed;
	z-index: 2000;
}

.sc-lightbox.is-open {
	display: flex;
}

.sc-lb-overlay {
	animation: sc-lb-overlay-in 320ms ease both;
	background: rgba(0, 0, 0, 0.94);
	inset: 0;
	position: absolute;
}

.sc-lb-stage {
	max-height: 90vh;
	max-width: 90vw;
	position: relative;
	z-index: 1;
}

.sc-lb-img {
	animation: sc-lb-img-in 380ms cubic-bezier(0.34, 1.42, 0.64, 1) both;
	border-radius: 5px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.7);
	display: block;
	max-height: 86vh;
	max-width: 88vw;
	object-fit: contain;
}

.sc-lb-img.is-leaving {
	animation: sc-lb-img-out 180ms ease both;
}

.sc-lb-img.from-right {
	animation: sc-lb-slide-from-right 340ms cubic-bezier(0.25, 1, 0.5, 1) both;
}

.sc-lb-img.from-left {
	animation: sc-lb-slide-from-left 340ms cubic-bezier(0.25, 1, 0.5, 1) both;
}

.sc-lb-btn {
	align-items: center;
	animation: sc-lb-img-in 420ms cubic-bezier(0.34, 1.42, 0.64, 1) both;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 1.05rem;
	height: 48px;
	justify-content: center;
	position: fixed;
	transition: background 160ms ease, transform 160ms ease;
	width: 48px;
	z-index: 2;
}

.sc-lb-btn:hover {
	background: rgba(255, 255, 255, 0.24);
	transform: scale(1.1);
}

.sc-lb-prev:hover { transform: scale(1.1) translateY(-50%) !important; }
.sc-lb-next:hover { transform: scale(1.1) translateY(-50%) !important; }

.sc-lb-btn:disabled {
	opacity: 0.22;
	pointer-events: none;
}

.sc-lb-close {
	right: 18px;
	top: 18px;
}

.sc-lb-prev {
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	transition: background 160ms ease;
}

.sc-lb-next {
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	transition: background 160ms ease;
}

.sc-lb-counter {
	animation: sc-lb-img-in 440ms ease both;
	bottom: 20px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9rem;
	left: 50%;
	letter-spacing: 0.06em;
	position: fixed;
	transform: translateX(-50%);
	z-index: 2;
}

@media (max-width: 860px) {
	.albums-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.album-photos-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.sc-lb-prev { left: 8px; }
	.sc-lb-next { right: 8px; }
}

.gallery-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.gallery-item {
	border-radius: 7px;
	overflow: hidden;
	position: relative;
}

.gallery-link {
	display: block;
	position: relative;
}

.gallery-link img {
	aspect-ratio: 4 / 3;
	display: block;
	object-fit: cover;
	transition: transform 320ms ease;
	width: 100%;
}

.gallery-item:hover .gallery-link img {
	transform: scale(1.04);
}

.gallery-caption {
	background: linear-gradient(transparent, rgba(2, 8, 13, 0.84));
	bottom: 0;
	color: var(--paper);
	font-family: var(--font-serif);
	font-size: 0.9rem;
	left: 0;
	opacity: 0;
	padding: 28px 14px 12px;
	position: absolute;
	right: 0;
	transition: opacity 220ms ease;
}

.gallery-item:hover .gallery-caption {
	opacity: 1;
}

.gallery-empty {
	color: var(--muted);
	font-family: var(--font-serif);
	padding: 48px 0;
	text-align: center;
}

.estatutos-layout {
	padding-bottom: 84px;
	padding-top: 56px;
}

.estatutos-card {
	align-items: center;
	background: linear-gradient(rgba(245, 232, 205, 0.96), rgba(226, 207, 169, 0.94));
	border: 1px solid var(--border);
	border-radius: 10px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
	color: var(--paper-text);
	display: flex;
	gap: 26px;
	padding: 30px;
}

.estatutos-icon {
	align-items: center;
	background: linear-gradient(180deg, #a31918, #760c0d);
	border-radius: 12px;
	color: #fff;
	display: flex;
	flex: 0 0 auto;
	font-size: 2.6rem;
	height: 92px;
	justify-content: center;
	width: 92px;
}

.estatutos-info h2 {
	font-family: var(--font-serif);
	margin: 0 0 8px;
	text-transform: uppercase;
}

.estatutos-info p {
	color: #5a3b2c;
	margin: 0 0 18px;
}

.estatutos-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.estatutos-actions .button {
	min-width: 0;
}

.estatutos-actions .button i {
	margin-right: 8px;
}

.estatutos-text {
	background: #fff8ed;
	border: 1px solid var(--border);
	border-radius: 10px;
	color: #1f1411;
	font-family: var(--font-serif);
	line-height: 1.8;
	margin-top: 24px;
	padding: 28px;
}

.estatutos-viewer {
	border: 1px solid var(--border);
	border-radius: 10px;
	margin-top: 24px;
	overflow: hidden;
}

.estatutos-viewer iframe {
	border: 0;
	display: block;
	height: 80vh;
	width: 100%;
}

@media (max-width: 860px) {
	.estatutos-card {
		flex-direction: column;
		text-align: center;
	}

	.estatutos-actions {
		justify-content: center;
	}

	/* En movil el visor embebido es poco fiable: ocultamos y dejamos los botones. */
	.estatutos-viewer {
		display: none;
	}
}

.contacto-layout {
	padding-bottom: 84px;
	padding-top: 56px;
}

.contacto-grid {
	display: grid;
	gap: 34px;
	grid-template-columns: 0.8fr 1.2fr;
}

.contacto-info {
	align-self: start;
	background: linear-gradient(155deg, #6f0505, #230304);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: #fff3df;
	padding: 32px;
}

.contacto-info h2 {
	color: var(--gold-soft);
	font-family: var(--font-serif);
	font-size: 1.4rem;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.contacto-info p {
	margin: 0 0 12px;
}

.contacto-info a {
	color: #fff3df;
	text-decoration: none;
	transition: color 180ms ease;
}

.contacto-info a:hover {
	color: var(--gold-soft);
}

.contacto-info i {
	color: var(--gold-soft);
	margin-right: 9px;
	width: 18px;
}

.contacto-social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.contacto-social .social-link i {
	color: inherit;
	margin: 0;
	width: auto;
}

.contacto-form-wrap {
	background: #fff8ed;
	border: 1px solid var(--border);
	border-radius: 10px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
	color: #1f1411;
	padding: 32px;
}

.contacto-alert {
	align-items: center;
	border-radius: 7px;
	display: flex;
	font-weight: 700;
	gap: 10px;
	margin-bottom: 22px;
	padding: 14px 16px;
}

.contacto-alert.is-success {
	background: #e6f4ea;
	border: 1px solid #9bd2ab;
	color: #1c6b34;
}

.contacto-alert.is-error {
	background: #fbe8e8;
	border: 1px solid #e2a3a3;
	color: #8d1412;
}

.contacto-row {
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 18px;
}

.contacto-form label {
	display: block;
}

.contacto-form .contacto-full {
	margin-bottom: 18px;
}

.contacto-form label > span {
	color: #5a3b2c;
	display: block;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 6px;
	text-transform: uppercase;
	font-size: 0.82rem;
}

.contacto-form input,
.contacto-form textarea {
	background: #fff;
	border: 1px solid #d8c6a8;
	border-radius: 6px;
	color: #1f1411;
	font: inherit;
	padding: 12px 14px;
	transition: border-color 160ms ease, box-shadow 160ms ease;
	width: 100%;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(194, 138, 60, 0.18);
	outline: none;
}

.contacto-form textarea {
	resize: vertical;
}

.contacto-hp {
	left: -9999px;
	position: absolute;
}

.contacto-submit {
	margin-top: 4px;
	width: 100%;
}

@media (max-width: 860px) {
	.contacto-grid {
		grid-template-columns: 1fr;
	}

	.contacto-row {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 1ms !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}
}

@media (max-width: 1180px) {
	.header-inner {
		grid-template-columns: 190px 1fr auto;
	}

	.header-actions .social-link {
		display: none;
	}

	.home-panels {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 24px;
	}

	.news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.site-header {
		background: rgba(1, 7, 12, 0.96);
		position: absolute;
	}

	.header-inner {
		gap: 12px;
		grid-template-columns: 1fr;
		justify-items: center;
		min-height: 0;
		padding-bottom: 16px;
		padding-top: 16px;
		text-align: center;
	}

	.site-branding {
		width: 100%;
	}

	.brand-link {
		margin: 0 auto;
		width: auto;
	}

	.brand-link img {
		margin: 0 auto;
		max-height: 168px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.primary-navigation {
		grid-column: 1 / -1;
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition: max-height 360ms ease, opacity 240ms ease, transform 280ms ease;
	}

	.primary-navigation.is-open {
		max-height: 520px;
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.primary-navigation ul {
		align-items: stretch;
		border-top: 1px solid rgba(194, 138, 60, 0.22);
		display: grid;
		gap: 0;
		margin-top: 10px;
		padding: 6px 0 0;
		transform-origin: top center;
	}

	.primary-navigation a {
		display: block;
		font-size: 1rem;
		padding: 15px 0;
		text-align: center;
		width: 100%;
	}

	.primary-navigation li {
		border-bottom: 1px solid rgba(194, 138, 60, 0.12);
	}

	.primary-navigation li:last-child {
		border-bottom: 0;
	}

	.primary-navigation li:first-child a::after,
	.primary-navigation a:hover::after {
		display: none;
	}

	.header-actions {
		display: none;
	}

	.home-hero,
	.hero-slider,
	.hero-slide {
		min-height: 800px;
	}

	.hero-shade {
		background:
			linear-gradient(90deg, rgba(0, 4, 8, 0.98), rgba(0, 4, 8, 0.58)),
			linear-gradient(180deg, rgba(0, 0, 0, 0.18), #02080d 100%);
	}

	.hero-content {
		padding-bottom: 112px;
		padding-top: 210px;
	}

	.button {
		width: 100%;
	}

	.home-panels {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 22px;
	}

	.feature-card {
		min-height: 0;
		padding: 30px;
	}

	.news-grid,
	.single-news-nav {
		grid-template-columns: 1fr;
	}

	.editorial-hero,
	.news-archive-hero {
		padding: 58px 0 52px;
	}

	.footer-inner {
		gap: 40px;
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-brand {
		gap: 18px;
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.footer-brand img {
		max-width: 160px;
	}

	.footer-links,
	.footer-contact {
		justify-items: center;
	}

	.footer-links h2,
	.footer-contact h2 {
		text-align: center;
	}

	.footer-links h2::after,
	.footer-contact h2::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-menu {
		justify-items: center;
	}

	.footer-links a:hover,
	.footer-menu a:hover,
	.footer-contact a:hover {
		transform: none;
	}

	.footer-social {
		justify-content: center;
	}
}

@media (max-width: 520px) {
	.container {
		padding-left: 18px;
		padding-right: 18px;
	}

	.eyebrow {
		font-size: 0.78rem;
		letter-spacing: 0.18em;
	}

	.hero-content h1 {
		font-size: 2.12rem;
		line-height: 1.04;
	}

	.hero-content p {
		font-size: 1.05rem;
	}

	.feature-card {
		padding: 26px;
	}
}
