
/* ==================================================
   MODULE: block.css
   ================================================== */

/* block */
.block {
	--block-dt-base-color: rgb(var(--n) / 1);
	--block-dt-photo-color: rgb(var(--b) / 1);
	padding: 1rem 0;
	background-image:
		linear-gradient(130deg, rgb(var(--n)/.3) 0%, rgb(var(--n)/.5) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}

.block > article:nth-child(1) {
	display: flex;
	align-items: center;
	width: 36%;
	z-index: 2;
}

.block > article:nth-child(2) {
	width: 64%;
}

.block.reverse > article:nth-child(1) {
	width: 64%;
}

.block.reverse > article:nth-child(2) {
	display: flex;
	align-items: center;
	width: 36%;
	z-index: 2;
}

.block .artxt {
	width: 100%;
	padding-left: 36%;
}

.block.reverse .artxt {
	width: 100%;
	padding-right: 36%;
	padding-left: 0;
}

.block .artxt dt {
	position: relative;
	width: 200%;
	color: transparent;
}

.block.reverse .artxt dt {
	width: 200%;
	transform: translateX(-50%);
	text-align: right;
}

.block-dt-base,
.block-dt-photo {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.block-dt-base {
	color: var(--block-dt-base-color);
	z-index: 1;
}

.block-dt-photo {
	color: var(--block-dt-photo-color);
	z-index: 2;
	clip-path: inset(0 100% 0 0);
}

.block-dt-real {
	position: relative;
	display: block;
	visibility: hidden;
	pointer-events: none;
	z-index: 0;
}

.block .artxt dt h1,
.block .artxt dt h2,
.block .artxt dt h3,
.block .artxt dt h4,
.block .artxt dt p {
	color: inherit;
}

.block .artxt dd {
	padding: 0 2rem 0 0;
}

.block.reverse .artxt dd {
	padding: 0 0 0 2rem;
}

/* ==================================================
   MODULE: break.css
   ================================================== */

/* break */
.break {
	position: relative;
	width: 100%;
	min-height: 220dvh;
	margin: 0;
	padding: 0;
	overflow: visible;
	background: rgb(var(--n-d) / 1);
}

.break-scroll {
	position: relative;
	width: 100%;
	min-height: 220dvh;
	margin: 0;
	padding: 0;
	overflow: visible;
}

.break-stage {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100dvh;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.break figure {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.break figure img,
.break figure video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.break figcaption {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 5;
	color: rgb(var(--b) / .75);
	font-size: .75rem;
}

.break .layer_one {
	z-index: 1;
}

.break .layer_two {
	z-index: 2;
	opacity: var(--op-current, 0);
	transform:
		translate(var(--x-current, -50%), var(--y-current, -50%))
		scale(var(--scale-current, 1));
	filter: blur(var(--blur-current, 0px));
	will-change: transform, opacity, filter;
}

.break .layer_three {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	width: var(--w-current, 42%);
	margin: 0;
	padding: 3rem;
	color: rgb(var(--b) / 1);
	opacity: var(--op-current, 0);
	transform:
		translate(var(--x-current, -50%), var(--y-current, -50%))
		scale(var(--scale-current, 1));
	filter: blur(var(--blur-current, 0px));
	will-change: transform, opacity, filter, width;
}

/* layer two animation values */
.break .layer_two {
	--x0: 0;
	--y0: 0;
	--x1: 0;
	--y1: 0;

	--scale0: 1;
	--scale1: 1.1;

	--op0: 0;
	--op1: 1;

	--blur0: 12px;
	--blur1: 0px;
}

/* layer three animation values */
.break .layer_three {
	--x0: 0;
	--y0: -100%;
	--x1: 0;
	--y1: -50%;

	--scale0: 1;
	--scale1: 1;

	--op0: 0;
	--op1: 1;

	--blur0: 0px;
	--blur1: 0px;

	--w0: 42%;
	--w1: 42%;
}

/* ==================================================
   MODULE: comentarios.css
   ================================================== */

body#comentarios{
	
}
.comment-form{
	min-height:100dvh;
	display:grid;
	place-items:center;
	padding:8vw
}
.comment-form article{
	width:min(100%,680px);
	display:grid;
	gap:2rem
}
.comment-form header{
	display:grid;
	gap:.8rem
}
.comment-form .lead{
	margin:0;
	text-transform:uppercase
}
.comment-form h1{
	font-size:6rem;
	line-height:1.2;
	letter-spacing:0;
	font-weight:700;
	
	background-image:url("/assets/img/bg.webp");
	background-repeat:repeat;
	background-size:600px auto;
	background-position:center;
	
	color:transparent;
	-webkit-text-fill-color:transparent;
	-webkit-background-clip:text;
	background-clip:text;
	
	filter:
		drop-shadow(-1px -1px 0 rgb(255 255 255 / .5))
		drop-shadow(4px 4px 6px rgb(0 0 0 / .65));
}
.comment-form header p{
	margin:0
}
.comment-form form{
	display:grid;
	gap:1rem
}
.comment-form label{
	display:grid;
	gap:.45rem
}
.comment-form label span{
	display:block
}
.comment-form input,
.comment-form textarea,
.comment-form button{
	width:100%;
	font:inherit;
	background: rgb(var(--b) / .25);
}
.comment-form input,
.comment-form textarea{
	border:1px solid rgb(var(--b) / .24);
	background:rgb(var(--b) / .06);
	color:rgb(var(--b) / 1);
	padding:1rem;
	outline:none
}
.comment-form textarea{
	min-height:11rem;
	resize:vertical
}
.comment-form input:focus,
.comment-form textarea:focus{
	border-color:rgb(var(--b) / 1)
}
.comment-form small{
	color:rgb(var(--b) / .55)
}
.comment-form .comment-msg{
	padding:1rem;
	border:1px solid rgb(var(--b) / .2);
	background:rgb(var(--b) / .08)
}
.comment-form .comment-msg[data-status="ok"]{
	border-color:rgb(var(--b) / .5)
}
.comment-form .comment-msg[data-status="error"]{
	border-color:rgb(var(--b) / .5)
}
.comment-form .hp{
	position:absolute;
	left:-9999px;
	opacity:0;
	pointer-events:none
}

/*============ validar comentarios php ================ */

body#validar-comentarios{
	background:rgb(var(--b) / 0);
	color:rgb(var(--n) / 1);
}
.comentarios-admin{
	min-height:100dvh;
	padding:4rem;
	display:flex;
	flex-direction: column;
}
.comentarios-admin header{
	display:flex;
	justify-content:space-between;
	align-items:flex-end;
	gap:2rem;
	margin-bottom:3rem
}
.comentarios-admin header div{
	width:min(100%,46rem);
	
}
.comentarios-admin .lead{
	margin:0 0 .8rem;
	text-transform:uppercase
}
.comentarios-admin h1{
	margin:0;
	font-size: 2rem;
}
.comentarios-admin header p{
	margin:1rem 0 0;
	color:rgb(var(--b) / .68)
}
.comentarios-admin nav{
	display:flex;
	flex-wrap:wrap;
	gap:.6rem;
	justify-content:flex-end
}
.comentarios-admin nav a{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:.65rem 1rem;
	border:1px solid rgb(var(--b) / .18);
	border-radius:999px;
	color:rgb(var(--b) / 1);
	text-decoration:none
}
.comentarios-admin nav a.active{
	background:rgb(var(--b) / 1);
	color:rgb(var(--b) / 1)
}
.comentarios-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:1rem;
	display:flex;
	flex-direction: column;
}
.comentario-card{
	display:flex;
	flex-direction:column;
	gap:1.2rem;
	padding:1.4rem;
	border:1px solid rgb(var(--b) / .16);
	background:rgb(var(--b) / .045)
}
.comentario-top{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	gap:1rem
}
.comentario-card h2{
	margin:0;
	font-size: 1.5rem;
	color: #fff;
	-webkit-text-fill-color: currentColor;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	filter: none;
}
.comentario-meta{
	margin:.5rem 0 0;
	color:rgb(var(--b) / .48)
}
.comentario-texto{
	margin:0;
	color:rgb(var(--b) / .82)
}
.comentario-status{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:.4rem .7rem;
	border-radius:999px;
	background:rgb(var(--b) / .12)
}
.comentario-status.pendiente{
	background:#775900
}
.comentario-status.publicado{
	background:rgb(var(--c1) / 1)
}
.comentario-status.oculto{
	background:#562828
}
.comentario-actions{
	display:flex;
	flex-wrap:wrap;
	gap:.5rem;
	margin-top:auto
}
.comentario-actions button{
	border:0;
	padding:.7rem .9rem;
	font:inherit;
	font-weight:700;
	cursor:pointer
}
.comentario-actions .aprobar{
	background:#e9fff0;
	color:#0d321d
}
.comentario-actions .pendiente-btn{
	background:#fff6d7;
	color:#4b3900
}
.comentario-actions .ocultar{
	background:#ffe7e7;
	color:#411717
}
.comentario-actions .eliminar{
	background:#ffb8b8;
	color:#390909
}
.comentarios-empty{
	color:rgb(var(--b) / .55)
}

.comment-msg a.m {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: .5rem 1.25rem;
	border: 0;
	border-radius: .25rem;
	background: rgb(var(--c1) / 1);
	color: rgb(var(--b) / 1);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
}

.comment-msg a.m:hover {
	background: rgb(var(--n) / 1);
	color: rgb(var(--c1) / 1);
}

.comment-msg a.m:active {
	transform: translateY(1px);
}


/* ==================================================
   MODULE: contact-form.css
   ================================================== */

/* contact form */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
}

.contact-form label {
	display: flex;
	flex-direction: column;
	gap: .35rem;
	font-size: .85rem;
	font-weight: 700;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
	width: 100%;
	padding: .75rem;
	font: inherit;
	border: 1px solid rgb(var(--n) / .25);
	background: rgb(var(--b) / 1);
	color: rgb(var(--n) / 1);
}

.contact-form textarea {
	resize: vertical;
}

.contact-form .check {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: .5rem;
	font-weight: 400;
	line-height: 1.35;
	cursor: pointer;
}

.contact-form .check input[type="checkbox"] {
	appearance: auto;
	-webkit-appearance: checkbox;
	display: inline-block;
	width: 1rem;
	height: 1rem;
	min-width: 1rem;
	margin: .2rem .5rem 0 0;
	padding: 0;
	border: 1px solid rgb(var(--n) / .45);
	background: initial;
	accent-color: rgb(var(--c1) / 1);
	cursor: pointer;
}

.contact-form button:disabled {
	opacity: .35;
	pointer-events: none;
	cursor: not-allowed;
}

#respuestaBuzon {
	font-size: .85rem;
}

/* ==================================================
   MODULE: cookies.css
   ================================================== */

/* cookies */
.cookies-gate {
	position: fixed;
	inset: 0;
	z-index: 400;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	height: 100dvh;
	padding: 2rem;
	background: rgb(var(--n) / .55);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity .35s ease,
		visibility .35s ease;
}

.cookies-gate.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.cookies-box {
	width: min(42rem, 100%);
	margin: 0;
	padding: 1.5rem;
	color: rgb(var(--n) / 1);
	background: rgb(var(--b) / 1);
	border-radius: 1rem;
	box-shadow: 0 1.5rem 4rem rgb(var(--n) / .25);
}

.cookies-box h4 {
	margin: 0 0 .75rem;
	color: rgb(var(--n) / 1);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.cookies-box p {
	margin: 0;
	color: rgb(var(--n) / .75);
	font-size: 1rem;
	line-height: 1.45;
}

.cookies-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .75rem;
	margin-top: 1.25rem;
}

.cookies-actions button {
	margin: 0;
}

.cookies-accept {
	color: rgb(var(--b) / 1);
	background: rgb(var(--n) / 1);
}

.cookies-more {
	color: rgb(var(--n) / 1);
	background: rgb(var(--b-d) / 1);
}

body.cookies-locked {
	overflow: hidden;
}

/* ==================================================
   MODULE: events.css
   ================================================== */

.events {
	position: relative;
	display: flex;
	flex-direction: row;
	width: 82% !important;
	height: 81vh;
	background-image:
		linear-gradient(130deg, rgb(var(--n)/.1) 0%, rgb(var(--n-d)/.3) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-position: center;
	background-blend-mode: multiply;
}

.events .overlay {
	position: absolute;
	inset: 10%;
	
	z-index: 0;
	mix-blend-mode: multiply;
	pointer-events: none;
}
.events > article:nth-child(1) {
width: 64%
}
.events > article:nth-child(2) {
width: 36%
}


.events-pics {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.events-pics li {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 1;
	pointer-events: none;
	transition:
		opacity .45s ease,
		transform .45s ease,
		filter .45s ease;
	transform: scale(1.03);
	filter: blur(8px);
}

.events-pics li.is-active {
	opacity: 1;
	z-index: 2;
	transform: scale(1);
	filter: blur(0);
	pointer-events: auto;
}

.events-pics figure {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}

.events-pics figure::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.events-pics img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.events-pics figcaption {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 3;
	font-size: .7rem;
	color: rgb(var(--b) / .75);
}

.events-pics .poster-copy {
	position: absolute;
	bottom: 0;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0;
	color: rgb(var(--b) / 1);
	text-wrap: balance;
	padding:6rem;
}

.events-pics .poster-copy dt,
.events-pics .poster-copy dd {
	margin: 0;
}

.events-pics .poster-copy dt {
	display: flex;
	flex-direction: column;
	gap: .35rem;
}

.events-pics .poster-copy .lead {
	margin: 0;
	font-size: .75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	opacity: .75;
}

.events-pics .poster-copy h2 {
	margin: 0;
	font-size: clamp(2.4rem, 6vw, 5.6rem);
	line-height: .95;
	font-weight: 800;
	letter-spacing: -.06em;
	text-transform: uppercase;
}

.events-pics .poster-copy h3 {
	margin: 0;
	font-size: clamp(.9rem, 1.8vw, 1.25rem);
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
	opacity: .85;
}

.events-pics .poster-copy dd {
	width: min(100%, 24rem);
	margin-top: 1rem;
}

.events-pics .poster-copy dd p {
	margin: 0;
	font-size: clamp(.9rem, 1.2vw, 1.05rem);
	line-height: 1.35;
}

.events-details {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 8rem 6rem 8rem 2rem;
	list-style: none;
	overflow-y: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	background-image:
		linear-gradient(130deg, rgb(var(--n)/.5) 0%, rgb(var(--n-d)/.8) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-position: center;
	background-blend-mode: multiply;
}

.events-details > li {
	position: relative;
	opacity: .55;
	transition:
		opacity .35s ease,
		transform .35s ease;
		margin-top: 3rem;
}

.events-details > li.is-active {
	opacity: 1;
}

.events-details .artxt {
	display: grid;
	grid-template-columns: minmax(4rem, 4.5rem) 1px 1fr;
	gap: 1rem;
	align-items: stretch;
	margin: 0;
}
.events-details dl {
	color: rgb(var(--b) / 1)
}
.events-details dt {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: .1rem;
}

.events-details dt p.lead {
	margin: 0;
	font-size: .75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .06em;
	opacity: .65;
}

.events-details dt h2 {
	margin: 0;
	font-size: clamp(2rem, 10vw, 3.5rem);
	line-height: .95;
	font-weight: 800;
	letter-spacing: -.05em;
}

.events-details dt h3 {
	margin: 0;
	font-size: .85rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .04em;
	opacity: .75;
}

.events-details hr {
	width: 1px;
	height: auto;
	margin: 0;
	border: 0;
}

.events-details dd {
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: .75rem;
}

.events-details dd p {
	margin: 0;
	font-size: .9rem;
	line-height: 1.4;
}

.events-details .artxt > button:not(.artxt-toggle) {
	grid-column: 3;
	justify-self: start;
}

/* ==================================================
   MODULE: footer.css
   ================================================== */


/* footer */
footer.site-footer {
	position: fixed !important;
	width: 100%;
	height: 100dvh;
	top: 100dvh;
	left: 0;
	display: flex;
	color: rgb(var(--b) / 1);
	z-index: 200;
	opacity: .25;
	visibility: hidden;
	transition: 
	top .85s cubic-bezier(.22, 1, .36, 1),
	opacity .65s ease,
	visibility .65s ease;
	pointer-events: none;
}

footer.site-footer.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	top: 0;
}

footer.site-footer > * {
	position: relative;
	z-index: 1;
}



footer .stamp {
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 20%;
	min-height: 10dvh;
	gap: 0;
	text-align: center;
	z-index: 10;
	overflow: visible;
	opacity: .85;
}
footer .stamp .stamp-logo{
position: absolute;
width: 100%;
height: 100%;
display: block;
background:linear-gradient(
	60deg,
	#5a5245 0%,
	#7a705f 8%,
	#d7cbb0 16%,
	#fff4d4 21%,
	#b7ab91 27%,
	#837967 34%,
	#cfc3a8 43%,
	#fffbe4 49%,
	#988d78 56%,
	#746b5b 64%,
	#c2b69c 74%,
	#f1e4c7 82%,
	#a59a83 90%,
	#665d4f 100%
);

-webkit-mask-image: url("/assets/img/iso.webp");
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center;
-webkit-mask-size: contain;

mask-image: url("/assets/img/iso.webp");
mask-repeat: no-repeat;
mask-position: center;
mask-size: contain;
}
footer .stamp .tagline{
position: absolute;
top: 125%;
}

footer .stamp span.lead {
	font-size: 1.15rem;
	font-weight: 700;
}
footer .stamp span.caption {
	font-size: 1rem;
	font-weight: 500;
}

footer .footer-container {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	width: 80%;
	min-height: 15dvh;
	padding: 3rem 5% !important;
	color: rgb(var(--b) / 1);
	border-radius: 1rem 1rem 0 0;
	z-index: 50;
	pointer-events: auto;
	background-image:
		linear-gradient(110deg, rgb(var(--n)/.65) 0%, rgb(var(--n)/.9) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}

footer .footer-container ul.easy-menu {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

footer .footer-container ul.ul-main {
	flex: 2 1 0;
	background: rgb(var(--b) / 0)
}

footer .footer-container ul.easy-menu li {
	margin: .15rem;
	padding: 0;
	color: rgb(var(--n) / 1)
}
footer .footer-container ul.easy-menu li:first-of-type {
	background: rgb(var(--b) / 0);
	color: rgb(var(--c1) / 1);
	font-size: 1.5rem;
	font-weight: 600;
	border-bottom: 1px solid rgb(var(--b) / .5);
	margin-bottom: .15rem;
	padding-bottom: .15rem;
}

footer .footer-container ul.easy-menu li:hover {
	cursor: pointer;
}

footer .footer-container ul.easy-menu li a {
	color: rgb(var(--b) / 1)
}

footer .footer-container ul.easy-menu li a::before {
	font-family: 'icomoon';
	content: '\e906';
	color: rgb(var(--c1) / 1);
	margin-right: 1rem;
}


footer .footer-container ul.contact li a::before {
	content: '';
}

footer .footer-container ul.contact li a span {
	color: rgb(var(--c1) / .85);
	margin-right: 1rem;
}

footer .footer-container ul.contact li.social {
	border-top: 1px solid rgb(var(--b) / .5);
	padding-top: .5rem;
	margin-top: .5rem;
}
footer .footer-container ul.contact li.social a span {
	color: rgb(var(--c1) / 1);
	margin-right: 1rem;
	font-size: 1.5rem;
}




footer .corp{
	text-align: right;
}

footer .corp .footer-logo {
	display: flex;
	position: relative;
	width: 50%;
	height: 10dvh;
	margin-left: auto;
	background:linear-gradient(
		100deg,
		#34312a 0%,
		#4a463d 7%,
		#7e7768 14%,
		#d8cfb8 20%,
		#fff6da 24%,
		#b7ad99 30%,
		#766f61 36%,
		#5f5a50 43%,
		#827b6c 50%,
		#efe4c8 57%,
		#ffffff 61%,
		#c8bea8 66%,
		#7a7466 73%,
		#555147 81%,
		#a69d89 88%,
		#e8dcc2 94%,
		#5a554a 100%
	);
	-webkit-mask-image:url("/assets/img/logo-r.webp");
	-webkit-mask-repeat:no-repeat;
	-webkit-mask-position:center;
	-webkit-mask-size:contain;
	mask-image:url("/assets/img/logo-r.webp");
	mask-repeat:no-repeat;
	mask-position:center;
	mask-size:contain;
}

footer span.right{
	position: absolute;
	left: 0;
	bottom: 1rem;
	font-size: .65rem;
	color: rgb(var(--c1) / 1);
}













/* ==================================================
   MODULE: gallery.css
   ================================================== */

/* pic-gallery */

.pic-gallery{
	background-image:
		linear-gradient(90deg, rgb(var(--n)/.65) 0%, rgb(var(--n)/.85) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}
.pic-gallery > article:nth-child(1) {
	width: 73%;
	min-width: 0;
}

.pic-gallery > article:nth-child(2) {
	width: 27%;
	min-width: 0;
}

.pic-gallery .gallery-cols {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .5rem;
}

.pic-gallery .gallery-cols > li {
	width: 100%;
	min-width: 0;
	margin: 0;
}

.pic-gallery .gallery-cols figure {
	margin: 0;
	cursor: pointer;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.pic-gallery .gallery-cols img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pic-gallery .gallery-cols dl {
	display: none;
}

/* pic-gallery | pin-style */
.pic-gallery.pin-style {
	display: flex;
	align-items: flex-start;
}

.pic-gallery.pin-style > article:nth-child(1) {
	width: 64%;
	min-width: 0;
	padding: 3rem;
}

.pic-gallery.pin-style > article:nth-child(2) {
	position: sticky;
	top: 0;
	width: 36%;
	min-width: 0;
	padding: 8rem 8rem 8rem 0;
}

.pic-gallery.pin-style .gallery-cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 8px;
	gap: 1rem;
	margin: 0;
	padding: 1rem;
	list-style: none;
	align-items: start;
}

.pic-gallery.pin-style .gallery-cols > li {
	position: relative;
	display: block;
	width: 100%;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	break-inside: auto;
	-webkit-column-break-inside: auto;
	border-radius: .25rem;
	box-shadow: 3px 3px 5px rgb(var(--n) / .65), -1px -1px rgb(var(--b) / .15);
}

.pic-gallery.pin-style .gallery-cols figure {
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 1 / 1;
}

.pic-gallery.pin-style .gallery-cols img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pic-gallery.pin-style .gallery-cols img:hover {
	filter: saturate(.5)
}

.pic-gallery.pin-style .gallery-cols > li.ratio-square figure {
	aspect-ratio: 1 / 1;
}

.pic-gallery.pin-style .gallery-cols > li.ratio-portrait figure {
	aspect-ratio: 2 / 2.5;
}

.pic-gallery.pin-style .gallery-cols > li.ratio-landscape figure {
	aspect-ratio: 2.5 / 2;
}

.pic-gallery.pin-style .gallery-cols figcaption {
	position: absolute;
	left: .75rem;
	bottom: .75rem;
	z-index: 2;
	margin: 0;
	padding: .3rem .5rem;
	font-size: .75rem;
	line-height: 1;
	color: #fff;
}

.pic-gallery.pin-style .gallery-cols .artxt {
	position: relative;
	display: block !important;
	padding: 1rem;
	background: rgb(var(--b) / .7);
}

.pic-gallery.pin-style .gallery-cols .artxt dt {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	padding-right: 2rem;
	cursor: pointer;
}

.pic-gallery.pin-style .gallery-cols .artxt dt::after {
	content: "\e900";
	position: absolute;
	top: .25rem;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "icomoon";
	font-size: 1rem;
	line-height: 1;
	color: rgb(var(--c1) / 1);
	transform: rotate(0deg);
	transition: transform .25s ease;
}

.pic-gallery.pin-style .gallery-cols > li.is-open .artxt dt::after {
	transform: rotate(180deg);
}

.pic-gallery.pin-style .gallery-cols .artxt h3,
.pic-gallery.pin-style .gallery-cols .artxt h4,
.pic-gallery.pin-style .gallery-cols .artxt p {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

.pic-gallery.pin-style .gallery-cols .artxt h3,
.pic-gallery.pin-style .gallery-cols .artxt hr,
.pic-gallery.pin-style .gallery-cols .artxt dd,
.pic-gallery.pin-style .gallery-cols .artxt button {
	display: none;
}

.pic-gallery.pin-style .gallery-cols > li.is-open .artxt h3,
.pic-gallery.pin-style .gallery-cols > li.is-open .artxt hr,
.pic-gallery.pin-style .gallery-cols > li.is-open .artxt dd,
.pic-gallery.pin-style .gallery-cols > li.is-open .artxt button {
	display: block;
}

.pic-gallery.pin-style .gallery-cols .artxt hr {
	width: 100%;
	margin: .5rem 0;
}

.pic-gallery.pin-style .gallery-cols .artxt dd {
	width: 100%;
	margin: 0;
	padding: 0;
}

.pic-gallery.pin-style .gallery-cols .artxt button {
	margin-top: .75rem;
}
/* pic-gallery | pin-style accordion */
.pic-gallery.pin-style .gallery-cols .artxt {
	position: relative;
	display: block !important;
	padding: 1rem;
	background-image:
		linear-gradient(90deg, rgb(var(--n)/.5) 0%, rgb(var(--n)/.7) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: ;
	background-position: center;
	background-blend-mode: multiply;
}

.pic-gallery.pin-style .gallery-cols .artxt dt {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	padding-right: 2rem;
	cursor: pointer;
}

.pic-gallery.pin-style .gallery-cols .artxt dt::after {
	content: "\e900";
	position: absolute;
	top: 0;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "icomoon";
	font-size: 1rem;
	line-height: 1;
	color: rgb(var(--c1) / 1);
	transform: rotate(0deg);
	transition: transform .25s ease;
}

.pic-gallery.pin-style .gallery-cols .artxt dt  h4{
	font-size: 1.5rem;
}

.pic-gallery.pin-style .gallery-cols > li.is-open .artxt dt::after {
	transform: rotate(180deg);
}

.pic-gallery.pin-style .gallery-cols .artxt h3,
.pic-gallery.pin-style .gallery-cols .artxt h4,
.pic-gallery.pin-style .gallery-cols .artxt p {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

.pic-gallery.pin-style .gallery-cols .artxt h3,
.pic-gallery.pin-style .gallery-cols .artxt hr,
.pic-gallery.pin-style .gallery-cols .artxt dd,
.pic-gallery.pin-style .gallery-cols .artxt button {
	display: block;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	transform: translateY(-.35rem);
	transition:
		max-height .45s ease,
		opacity .3s ease,
		transform .35s ease,
		margin .35s ease;
}

.pic-gallery.pin-style .gallery-cols .artxt hr {
	width: 100%;
	margin: 0;
}

.pic-gallery.pin-style .gallery-cols .artxt dd {
	width: 100%;
	margin: 0;
	padding: 0;
}

.pic-gallery.pin-style .gallery-cols .artxt button {
	margin-top: 0;
}

.pic-gallery.pin-style .gallery-cols > li.is-open .artxt h3,
.pic-gallery.pin-style .gallery-cols > li.is-open .artxt hr,
.pic-gallery.pin-style .gallery-cols > li.is-open .artxt dd,
.pic-gallery.pin-style .gallery-cols > li.is-open .artxt button {
	max-height: 20rem;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.pic-gallery.pin-style .gallery-cols > li.is-open .artxt hr {
	margin: .5rem 0;
}

.pic-gallery.pin-style .gallery-cols > li.is-open .artxt button {
	margin-top: .75rem;
}

/* pic-gallery | modula-grid */
.pic-gallery.modula-grid {
	display: flex;
	align-items: flex-start;
}

.pic-gallery.modula-grid > article:nth-child(1) {
	width: 64%;
	min-width: 0;
}

.pic-gallery.modula-grid > article:nth-child(2) {
	position: sticky;
	top: 12dvh;
	width: 36%;
	min-width: 0;
	padding: 2rem;
}

.pic-gallery.modula-grid .gallery-cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: var(--cell);
	grid-auto-flow: dense;
	gap: 10px;
	margin: 0;
	padding: 1rem;
	list-style: none;
}

.pic-gallery.modula-grid .gallery-cols > li {
	position: relative;
	display: block;
	width: auto;
	min-width: 0;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	break-inside: auto;
	-webkit-column-break-inside: auto;
	grid-column: span 1;
	grid-row: span 1;
}

.pic-gallery.modula-grid .gallery-cols > li.size-1x1 {
	grid-column: span 1;
	grid-row: span 1;
}

.pic-gallery.modula-grid .gallery-cols > li.size-2x1 {
	grid-column: span 2;
	grid-row: span 1;
}

.pic-gallery.modula-grid .gallery-cols > li.size-1x2 {
	grid-column: span 1;
	grid-row: span 2;
}

.pic-gallery.modula-grid .gallery-cols > li.size-2x2 {
	grid-column: span 2;
	grid-row: span 2;
}

.pic-gallery.modula-grid .gallery-cols figure {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
}

.pic-gallery.modula-grid .gallery-cols img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pic-gallery.modula-grid .gallery-cols .artxt {
	display: none;
}

/* zoom */
.zoom {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(var(--n-d) / 1);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
	z-index: 350;
}

.zoom.open {
	opacity: 1;
	pointer-events: auto;
}

.zoom img {
	display: block;
	max-width: 90vw;
	max-height: 90vh;
	object-fit: contain;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.45);
}

.zoom-close,
.zoom-prev,
.zoom-next {
	position: absolute;
	padding: 0.5rem;
	font-size: 2.5rem;
	line-height: 1;
	color: #fff;
	cursor: pointer;
	border: none;
	background: none;
}

.zoom-close {
	top: 1rem;
	right: 1rem;
}

.zoom-prev {
	top: 50%;
	left: 1rem;
	transform: translateY(-50%);
}

.zoom-next {
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
}

.zoom-count {
	position: absolute;
	left: 50%;
	bottom: 1rem;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	color: #f00;
	transform: translateX(-50%);
}

/* ==================================================
   MODULE: header.css
   ================================================== */

/* header - footer */
.hero-header,
div.min,
.site-footer {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.is-visible {
	opacity: 1 !important;
	pointer-events: auto !important;
	transform: translate(0, 0) !important;
}

div.hero-header {
	position: fixed;
	inset: 0;
	z-index: 300;
	pointer-events: none;
background-image:
	linear-gradient(
		-130deg,
		rgb(var(--n-d) / .97) 0%,
		rgb(var(--n-d) / .88) 30%,
		rgb(var(--n-d) / .68) 38%,
		rgb(var(--n-d) / .50) 44%,
		rgb(var(--n-l) / .4) 50%,
		rgb(var(--n-d) / .50) 56%,
		rgb(var(--n-d) / .70) 63%,
		rgb(var(--n-d) / .88) 72%,
		rgb(var(--n-d) / .98) 100%
	),
	linear-gradient(
		-130deg,
		transparent 0%,
		transparent 38%,
		rgb(255 255 255 / .04) 42%,
		rgb(255 255 255 / .12) 46%,
		rgb(255 255 255 / .30) 50%,
		rgb(255 255 255 / .14) 54%,
		rgb(255 255 255 / .05) 58%,
		transparent 64%,
		transparent 100%
	),
	url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}

div.hero-header div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 27%;
	text-align: right;
	color: rgb(var(--b) / 1);
	text-align: center;
}
div.hero-header div span.lead {
	font-size: 1rem;
	font-weight: 700;
}
div.hero-header div span.caption {
	font-size: 1rem;
	font-weight: 500;
}
div.hero-header > div{
	position:relative;
}

div.hero-header .brand-logo{
	position:relative;
	z-index:2;
	display:block;
	width:100%;
	height:18dvh;
	margin:0 auto 1rem;
	background:linear-gradient(
		100deg,
		#34312a 0%,
		#4a463d 7%,
		#7e7768 14%,
		#d8cfb8 20%,
		#fff6da 24%,
		#b7ad99 30%,
		#766f61 36%,
		#5f5a50 43%,
		#827b6c 50%,
		#efe4c8 57%,
		#ffffff 61%,
		#c8bea8 66%,
		#7a7466 73%,
		#555147 81%,
		#a69d89 88%,
		#e8dcc2 94%,
		#5a554a 100%
	);
	-webkit-mask-image:url("/assets/img/logo.webp");
	-webkit-mask-repeat:no-repeat;
	-webkit-mask-position:center;
	-webkit-mask-size:contain;
	mask-image:url("/assets/img/logo.webp");
	mask-repeat:no-repeat;
	mask-position:center;
	mask-size:contain;
}

div.hero-header .brand-logo-shadow{
	position:absolute;
	top:0;
	left:0;
	z-index:1;
	display:block;
	width:100%;
	height:18dvh;
	object-fit:contain;
	object-position:center;
	margin:0;
	padding:0;
	opacity:1;
	filter:
		drop-shadow(-1px -1px 0 rgb(var(--b) / .8))
		drop-shadow(4px 4px 6px rgb(var(--n-d) / 1));
	pointer-events:none;
	user-select:none;
}

div.hero-div.is-visible {
	transform: scale(1);
}

div.min {
	position: fixed;
	top: 0;
	left: 9%;
	display: flex;
	align-items: center;
	width: 6%;
	height: 10dvh;
	padding: 0 0 1rem 0;
	border-radius: 0 0 1rem 1rem;
	z-index: 300;
	background: rgb(var(--n-dark) / .6);
}

div.min .header-iso {
	position: absolute;
	width: 100%;
	height: 80%;
	display: block;
	background:linear-gradient(
		60deg,
		#5a5245 0%,
		#7a705f 8%,
		#d7cbb0 16%,
		#fff4d4 21%,
		#b7ab91 27%,
		#837967 34%,
		#cfc3a8 43%,
		#fffbe4 49%,
		#988d78 56%,
		#746b5b 64%,
		#c2b69c 74%,
		#f1e4c7 82%,
		#a59a83 90%,
		#665d4f 100%
	);

	-webkit-mask-image: url("/assets/img/iso.webp");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;

	mask-image: url("/assets/img/iso.webp");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}















/* ==================================================
   MODULE: headline.css
   ================================================== */

.headline {
	padding: 6rem 8rem;
	align-items: stretch;
	background-image:
		linear-gradient(90deg, rgb(var(--b)/.25) 0%, rgb(var(--b)/0.1) 100%),
		url("../../assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: screen;
}

.headline > dl:nth-child(1) {
	width: 50%;
	text-align: right;
}

.headline > dl:nth-child(2) {
	width: 50%;
	padding-left: 3rem;
}

.headline .artxt {
	display: flex;
	color: rgb(var(--n) / 1);
}
.headline#panel  .artxt {
	display: flex;
	color: rgb(var(--b) / 1);
}

.headline .artxt dt {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: right
}

 .headline dd p {
	column-count: 2;
	column-gap: 1rem;
}

/* ==================================================
   MODULE: launchpad.css
   ================================================== */

/* launchpad */
.launchpad {
	position: relative;
	min-height: 100dvh; 
	display: flex;
	flex-direction: column;
	align-items: stretch;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	background-image:
		linear-gradient(90deg, rgb(var(--n)/.5) 0%, rgb(var(--n-d)/.5) 100%),
		url("../../assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}


.launchpad > article:nth-child(1) {
	width: 100%;
	min-width: 0;
	padding:6rem 8rem 3rem;
}

.launchpad > article:nth-child(2) {
	width: 100%;
	min-width: 0;
	padding: 0;
}


.launchpad ul {
	display: grid;
	/* grid-template-columns: repeat(6, minmax(0, 1fr)); */
grid-template-columns: repeat(var(--cols, 6), minmax(0, 1fr));
	gap: 1rem;
	width: 100%;
	margin: 0;
	padding: 0 8rem 4rem;
	list-style: none;
}

.launchpad li {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
	cursor: pointer;
	color: rgb(var(--b) / 1);
	border-radius: .15rem;
	border-top:1px solid transparent;
	border-bottom:10px solid transparent;
	border-image:
		linear-gradient(
			90deg,
			#24231f 0%,
			#302f2a 7%,
			#4b4941 14%,
			#77736a 22%,
			#36352f 31%,
			#2a2925 39%,
			#6b675f 49%,
			#d8d4c8 61%,
			#f3f1e7 68%,
			#c6c1b5 75%,
			#6d6a62 84%,
			#34332f 93%,
			#262521 100%
		) 1;
	background-image:
		linear-gradient(110deg, rgb(var(--n)/.75) 0%, rgb(var(--n-d)/.85) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}

.launchpad li figure {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0;
	overflow: hidden;
}

.launchpad li figure img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
	filter: none
}

.launchpad li figure figcaption {
	position: absolute;
	left: auto;
	right: .75rem;
	bottom: .75rem;
	z-index: 5;
	font-size: .65rem;
	color: rgb(var(--b) / .72);
}

.launchpad li dl {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	flex: 1;
	margin: 0;
	padding: 3rem 1rem;
}

.launchpad li dt {
	margin: 0;
	color: rgb(var(--c1) / 1);
}

.launchpad li dt h3{
	font-size: 2rem
}
.launchpad li dt h4{
	font-size: 1.25rem;
	color: rgb(var(--b) / 1);
}

.launchpad li hr {
	width: 100%;
	height: 1px;
	margin: 1rem 0;
	border:1px solid transparent;
	
	border-image:
	
		linear-gradient(
			90deg,
			#24231f 0%,
			#302f2a 7%,
			#4b4941 14%,
			#77736a 22%,
			#36352f 31%,
			#2a2925 39%,
			#6b675f 49%,
			#d8d4c8 61%,
			#f3f1e7 68%,
			#c6c1b5 75%,
			#6d6a62 84%,
			#34332f 93%,
			#262521 100%
		) 1;
	opacity: 1;
	transition: width .45s ease;
}

.launchpad li dd {
	margin: 0;
	color: rgb(var(--b) / 1)
}

.launchpad li p {
	margin: 0;
	font-size: .9rem;
	line-height: 1.35;
}

.launchpad li .artxt-toggle {
	margin-top: 1rem;
}

.launchpad li:hover {
color: rgb(var(--n) / 1);
		border-radius: .15rem;
		border-top:2px solid transparent;
		border-bottom:12px solid transparent;
		border-image:
			linear-gradient(
				90deg,
				#24231f 0%,
				#302f2a 7%,
				#4b4941 14%,
				#77736a 22%,
				#36352f 31%,
				#2a2925 39%,
				#6b675f 49%,
				#d8d4c8 61%,
				#f3f1e7 68%,
				#c6c1b5 75%,
				#6d6a62 84%,
				#34332f 93%,
				#262521 100%
			) 1;
		background-image:
			linear-gradient(90deg, rgb(var(--n)/.25) 0%, rgb(var(--n-d)/.5) 100%),
			url("/assets/img/bg.webp");
		background-repeat: repeat;
		background-size: auto;
		background-attachment: fixed;
		background-position: center;
		background-blend-mode: multiply;
	}
}

.launchpad li:hover::before {
	opacity: 1;
}

.launchpad li:hover::after {
	transform: scaleX(1);
}

.launchpad li:hover figure img {
	filter: saturate(0) contrast(1.1) brightness(.98);
	transform: scale(1.08);
}


.launchpad li:hover dl {
	color: rgb(var(--n) / 1);
	transform: translateY(-.5rem);
}

.launchpad li:hover hr {
	width: 8rem;
}

.launchpad li:hover h3 {
	color: rgb(var(--b) / 1);
}

.launchpad li:hover h4,
.launchpad li:hover p {
	opacity: 1;
	color: rgb(var(--n) / 1);
}


/* ==================================================
   MODULE: magazzine.css
   ================================================== */

/* magazzine */
section.magazzine {
color: rgb(var(--b) / 1);
  background-image:
  linear-gradient(90deg, rgb(var(--n)/.75) 0%, rgb(var(--n)/.95) 100%),
  url("/assets/img/bg.webp");
background-repeat: repeat;
background-size: auto;
background-attachment: fixed;
background-position: center;
background-blend-mode: multiply;
}

section.magazzine .header {
	padding: 6rem 8rem 0;
}

section.magazzine .pic {
	padding: 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

section.magazzine .pic img {
}

dl.artxt.body {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; 
  align-items: stretch;
  gap: 3rem; 
  margin: 0;
 padding: 3rem 8rem 6rem;
}

dl.artxt.body dd {
  flex: 1; 
  margin: 0; 
  min-width: 0; 
}



/* ==================================================
   MODULE: menu.css
   ================================================== */

/* menu */
.menu {
	position: fixed;
	left: 45%;
	z-index: 200;
	display: flex;
	margin: 0;
	padding: .75rem 1rem;
	color: rgb(var(--b) / 1);
	background: transparent;
	user-select: none;
	transition:
		background-color .35s ease,
		backdrop-filter .35s ease,
		color .35s ease;
		font-family: sans-serif;
}

.menu.menu-over-media {
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.menu.menu-over-content {
	background: rgb(var(--b) / .72);
	color: rgb(var(--n-d) / 1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.menu .menu-root {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu li {
	position: relative;
	display: flex;
	align-items: center;
	gap: .35rem;
	margin: 0;
	padding: .35rem .5rem;
	color: inherit;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	list-style: none;
	cursor: pointer;
}

.menu li i {
	display: block;
	margin: .25rem 0 0;
	color: rgb(var(--b) / .6);
	font-size: .8rem;
	font-style: normal;
	line-height: 1.2;
}

.menu i::before {
	content: "" !important;
}

/* arrow */
.menu li:has(> ul)::after {
	content: "\e900";
	display: inline-flex;
	font-family: "icomoon" !important;
	font-size: .85rem;
	color: rgb(var(--c1) / 1);
	transition: transform .2s ease;
}

.menu li.is-open:has(> ul)::after {
	transform: rotate(180deg);
}

/* dropdown */
.menu .menu-root li > ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 15rem;
	margin: 0;
	padding: .75rem;
	list-style: none;
	background: rgb(var(--n) / .92);
	color: rgb(var(--b) / 1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 100;
}

.menu .menu-root li.is-open > ul {
	display: flex !important;
	flex-direction: column;
}

.menu .menu-root ul li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	margin: 0;
	padding: .5rem 0;
	color: inherit;
	background: none;
	border: 0;
	border-radius: 0;
}

.menu .menu-root ul li:hover {
	color: rgb(var(--c1) / 1);
	background: none;
}

.menu .menu-root ul li::before {
	content: "";
}

/* nested dropdown */
.menu .menu-root ul ul {
	position: relative;
	top: auto;
	left: auto;
	width: 100%;
	min-width: 0;
	margin: .5rem 0 0;
	padding: .5rem 0 0;
	background: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border: 0;
	list-style: none !important;
}

.menu .menu-root ul ul li {
	padding: .4rem 0;
	background: none;
}

/* language */
.menu li.language {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: .35rem;
}

.menu .language .lang-option {
	display: inline-block;
	margin: 0;
	color: rgb(var(--c1) / 1);
	font-weight: 900;
	text-decoration: none;
	cursor: pointer;
}

.menu .language .lang-option + .lang-option::before {
	content: "/";
	display: inline-block;
	margin-right: .35rem;
	color: rgb(var(--b) / .45);
	font-weight: 400;
}

/* search */
.menu .site-search {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: auto;
	margin: 0;
	padding: .35rem .5rem;
	color: inherit;
	overflow: visible;
}

.menu .site-search:has(> ul)::after,
.menu .site-search::before {
	content: none;
}

.menu .site-search-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	margin: 0;
	padding: 0;
	cursor: pointer;
	text-decoration: none;
	background: none;
	border: 0;
}

.menu .site-search-toggle::before {
	content: "\e910";
	font-family: "icomoon" !important;
	font-size: 1rem;
	color: rgb(var(--c1) / 1);
	line-height: 1;
}

.menu .site-search input {
	position: absolute;
	top: 100%;
	right: 0;
	display: none;
	width: 24rem;
	height: 2.4rem;
	margin: 0;
	padding: .35rem 1rem;
	font-family: inherit;
	font-size: 1rem;
	color: rgb(var(--n) / 1);
	background: rgb(var(--b) / 1);
	border: 0;
	outline: none;
	z-index: 151;
}

.menu .site-search.search-open input {
	display: block;
}

.menu .site-search input::placeholder {
	color: rgb(var(--n) / .55);
	opacity: 1;
}

.menu #site-search-results {
	position: absolute;
	top: calc(100% + 2.4rem);
	right: 0;
	display: none;
	width: 24rem !important;
	max-height: 60vh;
	margin: 0;
	padding: .75rem;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	list-style: none;
	background: rgb(var(--b) / 1);
	color: rgb(var(--n) / 1);
	z-index: 150;
}

.menu #site-search-results.active {
	display: block;
}

.menu #site-search-results li {
	display: block;
	margin: 0;
	padding: .55rem;
	color: rgb(var(--n) / 1);
	cursor: pointer;
}

.menu #site-search-results li:hover {
	background: rgb(var(--n) / .08);
}

.menu #site-search-results strong,
.menu #site-search-results span,
.menu #site-search-results p {
	color: rgb(var(--n) / 1);
}

/* mobile toggle */
.header-toggle {
	display: none;
}

body.site-search-open {
	overflow: hidden;
}

/* ==================================================
   MODULE: poster.css
   ================================================== */

/* poster */
.poster {
	position: relative;
	width: 100%;
	min-height: 200dvh;
	opacity: 1;
	transition: opacity 0.5s ease-out;
	will-change: opacity;
}

.poster article {
	position: relative;
	width: 100%;
	min-height: 200dvh;
}

.poster figure {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100dvh;
	margin: 0;
	aspect-ratio: auto;
	z-index: 1;
	overflow: hidden;
}

.poster figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.poster .artxt {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 9%;
	z-index: 2;
	width: 27%;
	padding: 3rem;
	gap: 0;
	overflow: visible;
	
}

.popup-content .poster .artxt {
	position: absolute;
	top: 25%;
	transform: translateY(-50%);
	left: 9%;
	z-index: 2;
	width: 36%;
	padding: 0;
	border-radius: 1rem;
	color: rgb(var(--b) / 1);
	gap: 0;
}

.poster .artxt dt{
	width: 200%;
	padding: 0;
	overflow-x: visible;
}

.poster .artxt dd {
	width: 100%;
	padding: 3rem;
}

.poster ul {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 9%;
	z-index: 2;
	width: 27%;
	padding: 4rem;
	border-radius: 1rem;
	color: rgb(var(--b) / 1);
	gap: 0;
}

.popup-content .poster ul {
	position: absolute;
	top: 25%;
	transform: translateY(-50%);
	right: 9%;
	z-index: 2;
	width: 27%;
	padding: 4rem;
	border-radius: 1rem;
	color: rgb(var(--b) / 1);
	gap: 0;
}

.poster ul li span {
	font-weight: 600;
}


/* ==================================================
   MODULE: search.css
   ================================================== */

/* standalone search */
.standalone-search {
	position: fixed;
	bottom: 10%;
	left: 10%;
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 27vw;
	min-width: 280px;
	height: 2.35rem;
	overflow: visible;
}

.standalone-search input {
	width: 100%;
	height: 100%;
	padding: .25rem 2.75rem .25rem 1rem;
	font-family: inherit;
	font-size: 1rem;
	color: rgb(var(--n) / 1);
	border-radius: .25rem;
	background: rgb(var(--b) / .8);
	border: 1px solid rgb(var(--b) / 1);
	outline: none;
}

.standalone-search input::placeholder {
	color: rgb(var(--b) / .75);
	opacity: 1;
}

.standalone-search-toggle {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.standalone-search-toggle::before {
	content: "\e910";
	font-family: "icomoon"!important;
	font-size: 1rem;
	color: rgb(var(--b) / 1);
	line-height: 1;
}

#standalone-search-results {
	position: absolute;
	top: calc(100% + .5rem);
	right: 0;
	left: auto;
	display: none;
	width: 100%;
	max-height: 60vh;
	overflow-y: auto;
	margin: 0;
	padding: 1rem;
	list-style: none;
	border-radius: 1rem;
	z-index: 300;
	background: rgb(var(--b) / 1);
}

#standalone-search-results.active {
	display: block;
}

#standalone-search-results li {
	display: block;
	padding: .75rem;
	cursor: pointer;
	color: rgb(var(--n) / 1);
	border: 0;
	border-radius: .5rem;
	list-style: none;
}

#standalone-search-results li:hover {
	background: rgb(var(--b) / 1);
}

#standalone-search-results strong {
	display: block;
	font-size: .95rem;
	font-weight: 800;
	color: rgb(var(--n) / 1);
}

#standalone-search-results span {
	display: block;
	margin-top: .15rem;
	font-size: .75rem;
	color: rgb(var(--n) / .65);
}

#standalone-search-results .standalone-search-empty {
	cursor: default;
	opacity: .65;
}

#standalone-search-results .standalone-search-empty:hover {
	background: transparent;
}

.standalone-search.results-below #standalone-search-results {
	top: calc(100% + .5rem);
	bottom: auto;
}

.standalone-search.results-above #standalone-search-results {
	top: auto;
	bottom: calc(100% + .5rem);
}

/* ==================================================
   MODULE: setings.css
   ================================================== */

:root {
	--bg: 245 242 236;

	--c1-d: 153 0 37;
	--c1: 235 82 9;
	--c1-l: 195 51 86;

	--c2-d: 89 79 106;
	--c2: 119 109 141;
	--c2-li: 150 140 171;

	--c3-d: 99 124 133;
	--c3: 134 162 171;
	--c3-l: 173 194 201;

	--b-d: 219 227 216;
	--b: 244 247 243;
	--b-l: 251 252 250;

	--n-d: 19 19 19;
	--n: 29 29 29;
	--n-l: 39 39 39;
	

	--viewport-color: 255 255 255;
	font-size: 16px;
}

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	min-height: 100dvh;
	margin: 0;
	padding: 0;
	font-family: "Libre Bodoni", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1.3;
	color: rgb(var(--b) / 1);
	background-image: linear-gradient(130deg, rgb(var(--n-l)/.15) 0%, rgb(var(--n-d)/.5) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-overflow-scrolling: touch;
}

:root {
	font-size: clamp(14px, .85vw, 17px);
}
h1 {
	font-size: 8rem;
	line-height: 0.85;
	letter-spacing: -0.01em;
	font-weight: 900;
}

h2{
	font-size:6rem;
	line-height:1.2;
	letter-spacing:0;
	font-weight:700;

	background-image:url("/assets/img/bg.webp");
	background-repeat:repeat;
	background-size:600px auto;
	background-position:center;

	color:transparent;
	-webkit-text-fill-color:transparent;
	-webkit-background-clip:text;
	background-clip:text;

	filter:
		drop-shadow(-1px -1px 0 rgb(255 255 255 / .5))
		drop-shadow(4px 4px 6px rgb(0 0 0 / .65));
}

h3 {
	font-size: 2.75rem;
	line-height: 1.05;
	letter-spacing: -0.035em;
	font-weight: 600;
	font-family: sans-serif;
}

h4 {
	font-size: 1.75rem;
	line-height: 1.15;
	letter-spacing: -0.02em;
	font-weight: 700;
	font-family: sans-serif;
}

p {
	font-size: 1rem;
	line-height: 1.45;
	font-weight: 500;
	font-family: sans-serif;
}

.lead {
	font-size: 1.75rem;
	line-height: 1.5;
	font-weight: 500;
	font-family: sans-serif;
}

.caption {
	font-size: .75rem;
	line-height: 1.3;
	letter-spacing: 0.04em;
	font-family: sans-serif;
}

.big-txt {
	font-size: 6rem;
	line-height: .75;
	letter-spacing: 0.04em;
	color: rgb(var(--) / .2);
}

a {
	display: inline-block;
	margin-top: 1rem;
	font-size: 1rem;
	font-weight: 400;
	color: rgb(var(--c1) / 1);
	text-decoration: none;
	text-underline-offset: 3px;
	font-family: sans-serif;
}

a:hover {
	opacity: 0.9;
}

hr {
	margin: 1rem 0;
	border: none;
	border-top: 1px solid rgb(var(--n) / 1);
	border-bottom: 1px solid rgb(var(--b) / 1);
	opacity: 0.5;
}

button {
	display: inline-block;
	width: fit-content;
	margin-top: 1rem;
	padding: 0.25rem 1rem;
	font-size: 1rem;
	font-weight: 500;
	color: rgb(var(--b) / 1);
	cursor: pointer;
	border: none;
	border-radius: .25rem;
	background: rgb(var(--c1) / 1);
	z-index: 10;
	align-self: flex-start;
	font-family: sans-serif;
}

button.m {
	color: rgb(var(--b) / 1);
	border: 1px solid rgb(var(--b) / .8);
	background: none;
	background: rgb(var(--n) / .15)
}

button.w {
	color: rgb(var(--c1) / 1);
	background: rgb(var(--b) / .5);
	border: 1px solid rgb(var(--b) / 0);
}

/* artxt */
.artxt {
	width: 100%;
	margin: 0;
	padding: 0;
}

.artxt dd {
	margin: 0;
}

.artxt p {
	max-height: 9lh;
	margin: 0;
	overflow: hidden;
	transition: max-height 0.9s ease;
}

.artxt p.active {
	max-height: 18lh;
	overflow: auto;
}

.artxt-toggle {
	display: none;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	padding: 0;
	background: none;
	margin: 0;
}

.artxt-toggle.visible {
	display: block;
}

.artxt-toggle::before {
	content: "+";
	color: rgb(var(--c1) / 1);
	font-size: 2rem;
	font-weight: 700;
}

.artxt-toggle.is-open::before {
	content: "-";
	color: rgb(var(--c1) / 1);
	font-size: 2rem;
	font-weight: 700;
}

[data-anim="on"] dt h1,
[data-anim="on"] dt h2,
[data-anim="on"] dt h3,
[data-anim="on"] dt h4,
[data-anim="on"] dt p,
[data-anim="on"] .artxt-toggle {
	opacity: 0;
	transform: translateX(25px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.artxt.appeared dt h1,
.artxt.appeared dt h2,
.artxt.appeared dt h3,
.artxt.appeared dt h4,
.artxt.appeared dt p,
.artxt.appeared .artxt-toggle {
	opacity: 1;
	transform: translateY(0);
}

/* media */
figure {
	position: relative;
	display: flex;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	overflow: hidden;
	gap: 0;
}

figure img.responsive-img {
	display: block;
	flex: 1;
	width: 100%;
	height: 100%;
	min-width: 0;
	object-fit: cover;
	object-position: center;
	filter: saturate(0) contrast(1);
}

figure figcaption {
	position: absolute;
	bottom: 10px;
	left: 10px;
	padding: 2px 5px;
	font-size: 0.7rem;
	font-style: italic;
	color: rgb(var(--b) / 1);
	pointer-events: none;
	background: none;
	z-index: 10;
}

figure i {
	display: block;
	margin-top: 1rem;
	font-size: 0.6rem;
	font-style: normal;
	color: rgb(var(--n) / 1);
	opacity: 0.75;
}

figure i::before {
	content: "*";
	margin-right: 0.25rem;
}

video.responsive-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* layout */
main {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

section {
	position: relative;
	display: flex;
	flex-direction: row;
	width: 82%;
	height: ;
	margin: 0 auto;
	padding: 0;
	z-index: 20;
}

section > article {
	position: relative;
	display: block;
	min-width: 0;
	background: none;
}
/* helpers */
.spacer {
	height: 50dvh;
}

.spacer.x {
	height: 100dvh;
}

.spacer.xl {
	height: 150dvh;
}

/* glass */
.glass {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: linear-gradient(30deg, rgb(var(--n) / 0.1) 0%, rgb(var(--n-l) / 0.15) 100%);
	border-radius: 1rem;
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	box-shadow: 5px 5px 15px rgb(var(--n) / .4), 1px 1px 1px rgb(var(--n) /.2), -1px -1px 1px rgb(var(--b) / .3);
}

.glass::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: url("/assets/img/patternblack.png") repeat;
	background-size: 2px;
	filter: invert(1);
	opacity: 0.15;
	border-radius: 1rem;
}

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

/* hide txt */
.hide_txt {
	position: sticky;
	top: 75%;
	left: 95%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	color: rgb(var(--c1) / 1);
	background: rgb(var(--n) / .25);
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity .25s ease,
		visibility .25s ease,
		transform .25s ease;
}

section.hide-txt-current .hide_txt {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.hide_txt::before,
.hide_txt::after {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "icomoon";
	font-size: 1.5rem;
	line-height: 1;
	transition:
		opacity .25s ease,
		transform .25s ease;
}

.hide_txt::before {
	content: "\e913";
	opacity: 1;
	transform: scale(1);
}

.hide_txt::after {
	content: "\e91a";
	opacity: 0;
	transform: scale(.75);
}

section.hide-txt-clean .hide_txt::before {
	opacity: 0;
	transform: scale(.75);
}

section.hide-txt-clean .hide_txt::after {
	opacity: 1;
	transform: scale(1);
}

section .artxt {
	transition: opacity .35s ease;
}

section.hide-txt-clean .artxt {
	opacity: 0 !important;
	pointer-events: none !important;
}

/* popup-system */
#popup-root{
	position:fixed;
	top:0;
	left:100%;
	width:100%;
	height:100dvh;
	z-index:180;
	overflow:hidden;
	pointer-events:none;
	transition:left .65s cubic-bezier(.22,1,.36,1);
}

#popup-root.popup-open{
	left:0;
	pointer-events:auto;
}

.popup-container{
	position:absolute;
	inset:0;
	width:100%;
	height:100dvh;
	padding:0 6rem;
	overflow-y:auto;
	-webkit-overflow-scrolling:touch;
	background-image:
		linear-gradient(90deg, rgb(var(--n)/.6) 0%, rgb(var(--n)/.8) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: ;
	background-position: center;
	background-blend-mode: multiply;
}

.popup-container section{
	width:100%;
	background-image:
			linear-gradient(90deg, rgb(var(--n)/.8) 0%, rgb(var(--n)/.9) 100%),
			url("/assets/img/bg.webp");
		background-repeat: repeat;
		background-size: auto;
		background-attachment: ;
		background-position: center;
		background-blend-mode: multiply;
	}
	
#popup-root.popup-open .popup-container img {
		filter: grayscale(.9) !important;
		-webkit-filter: grayscale(.9) !important;
	}
	
	.popup-container .block{
		background-image:
			linear-gradient(110deg, rgb(var(--b)/.5) 0%, rgb(var(--n)/.65) 100%),
			url("/assets/img/bg.webp");
		background-repeat: repeat;
		background-size: auto;
		background-attachment: ;
		background-position: center;
		background-blend-mode: multiply;
	}

.popup-shell{
	position:relative;
	width:100%;
	min-height:100%;
}

body.popup-open{
	overflow:hidden;
}
.popup-container .close-popup{
	position: sticky;
	top: 3rem;
	left: calc(100% - 6rem);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin: 3rem 3rem 0 auto;
	padding: 0;
	border-radius: 50%;
	font-size: 3rem;
	line-height: 1;

}

/* cta */
.cta-popover {
	position: fixed;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: min(20rem, calc(100vw - 2rem));
	padding: 0.75rem;
	background: rgb(var(--n) / 1);
	border-radius: 0.5rem;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.2s ease;
	z-index: 120;
}

.cta-popover button {
	color: rgb(var(--n) / 1);
	background: rgb(var(--b) / .8);
}

.cta-popover span {
	color: rgb(var(--c1) / 1);
	margin-right: 1rem;
	margin-right: 1rem
}

.cta-popover.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.cta-popover-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: rgb(var(--c1) / 1)
}
.rotate-notice {
	display: none;
}

/* color scope */

.color-scope {

	--cd-rgb: var(--n);
	--cs-rgb: var(--c1);
	--ct-rgb: var(--c2);
	--cf-rgb: var(--c3);
	--co-rgb: var(--b);

}

/* texto */

.clr1 { color: rgb(var(--cd-rgb) / 1); }

.clr2 { color: rgb(var(--cs-rgb) / 1); }

.clr3 { color: rgb(var(--ct-rgb) / 1); }

.clr4 { color: rgb(var(--cf-rgb) / 1); }

.clr5 { color: rgb(var(--co-rgb) / 1); }

/* fondo */

.bg1 { background-color: rgb(var(--cd-rgb) / 1); }

.bg2 { background-color: rgb(var(--cs-rgb) / 1); }

.bg3 { background-color: rgb(var(--ct-rgb) / 1); }

.bg4 { background-color: rgb(var(--cf-rgb) / 1); }

.bg5 { background-color: rgb(var(--co-rgb) / 1); }

/* borde */

.brd1 { border-color: rgb(var(--cd-rgb) / 1); }

.brd2 { border-color: rgb(var(--cs-rgb) / 1); }

.brd3 { border-color: rgb(var(--ct-rgb) / 1); }

.brd4 { border-color: rgb(var(--cf-rgb) / 1); }

.brd5 { border-color: rgb(var(--co-rgb) / 1); }

/* outline */

.out1 { outline-color: rgb(var(--cd-rgb) / 1); }

.out2 { outline-color: rgb(var(--cs-rgb) / 1); }

.out3 { outline-color: rgb(var(--ct-rgb) / 1); }

.out4 { outline-color: rgb(var(--cf-rgb) / 1); }

.out5 { outline-color: rgb(var(--co-rgb) / 1); }

/* sombra */

.shd1 { box-shadow: 0 1rem 3rem rgb(var(--cd-rgb) / .25); }

.shd2 { box-shadow: 0 1rem 3rem rgb(var(--cs-rgb) / .25); }

.shd3 { box-shadow: 0 1rem 3rem rgb(var(--ct-rgb) / .25); }

.shd4 { box-shadow: 0 1rem 3rem rgb(var(--cf-rgb) / .25); }

.shd5 { box-shadow: 0 1rem 3rem rgb(var(--co-rgb) / .25); }

/* degradado */

.grd1 {

	background: linear-gradient(
		135deg,
		rgb(var(--cd-rgb) / 1),
		rgb(var(--cs-rgb) / 1)
	);

}

.grd2 {

	background: linear-gradient(
		135deg,
		rgb(var(--cs-rgb) / 1),
		rgb(var(--ct-rgb) / 1)
	);

}

.grd3 {

	background: linear-gradient(
		135deg,
		rgb(var(--ct-rgb) / 1),
		rgb(var(--cf-rgb) / 1)
	);

}

.grd4 {

	background: linear-gradient(
		135deg,
		rgb(var(--cf-rgb) / 1),
		rgb(var(--co-rgb) / 1)
	);

}

.grd5 {

	background: linear-gradient(
		135deg,
		rgb(var(--co-rgb) / 1),
		rgb(var(--cd-rgb) / 1)
	);

}

div.popup-content{
	padding: 
}


div.popup-content figure img.responsive-img {
	
	filter: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
	:root {
		font-size: clamp(10px, 1.25vw, 12px);
	}
}

@media (min-width: 1024px) and (max-width: 1279px) {
	:root {
		font-size: clamp(12px, 1.1vw, 14px);
	}
}

@media (min-width: 1280px) and (max-width: 1439px) {
	:root {
		font-size: clamp(13px, 1.05vw, 15px);
	}
}

@media (min-width: 1440px) and (max-width: 1919px) {
	:root {
		font-size: clamp(15px, .9vw, 16px);
	}
}

@media (min-width: 1920px) and (max-width: 2047px) {
	:root {
		font-size: clamp(14px, .85vw, 17px);
	}
}
@media (min-width: 2048px) {
	:root {
		font-size: clamp(17px, .8vw, 20px);
	}
}

/* ==================================================
   MODULE: slider.css
   ================================================== */

/* slider */
.slider {
	display: flex;
	flex-direction: column;
	width: 82%;
	min-height: 100dvh;
	overflow: hidden;

	--slider-duration: .85s;
	--slider-ease: cubic-bezier(.22, 1, .36, 1);

	--media-opacity-off: 0;
	--media-opacity-on: 1;
	--media-x-off: 50px;
	--media-x-on: 0;

	--text-opacity-off: 0;
	--text-opacity-on: 1;
	--text-x-off: -50px;
	--text-x-on: 0;

	--thumb-gap: .35rem;
	--thumb-preview: 4;
	background-image:
		linear-gradient(100deg, rgb(var(--n)/.65) 0%, rgb(var(--n)/.8) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}

.slider > article:nth-child(1) {
	width: 100%;
	z-index: 2;
	padding: 4rem 8rem 3rem;
}

.slider > article:nth-child(2) {
	width: 100%;
}


.slider-stage {
	position: relative;
	width: 82%;
	min-height: 100dvh;
	overflow: hidden;
}

.slider-side {
	width: 18%;
	overflow: hidden;
}

.slider .slides,
.slider .thumbs {
	margin: 0;
	padding: 0;
	list-style: none;
}

.slider .slides > li {
	position: absolute;
	inset: 0;
	pointer-events: none;
	will-change: opacity, transform;
}

.slider .media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.slider .media > li {
	opacity: var(--media-opacity-off);
	transform: translateX(var(--media-x-off));
	filter: none;
	transition:
		opacity var(--slider-duration) var(--slider-ease),
		transform var(--slider-duration) var(--slider-ease);
}

.slider .media > li.is-active {
	opacity: var(--media-opacity-on);
	transform: translateX(var(--media-x-on));
	pointer-events: auto;
}

.slider .media img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.slider .copy {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	z-index: 2;
	background: rgb(246, 102, 102);
}

.slider .copy > li {
	display: flex;
	align-items: flex-start;
	opacity: var(--text-opacity-off);
	transform: translateX(var(--text-x-off));
	filter: none;
	transition:
		opacity var(--slider-duration) var(--slider-ease),
		transform var(--slider-duration) var(--slider-ease);
	pointer-events: none;
}

.slider .copy > li.is-active {
	opacity: var(--text-opacity-on);
	transform: translateX(var(--text-x-on));
	pointer-events: auto;
}

.slider .copy .artxt {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	color: rgb(var(--b) / 1);
	padding: 8rem
}


.slider-ui {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
	display: grid;
	width: 100%;
	gap: .75rem;
	padding: 0;

}

.slider .timer {
	height: 2px;
	overflow: hidden;
	background: rgb(var(--n) / 1);
}

.slider .timer > div {
	width: 0;
	height: 100%;
	background: rgb(var(--c1) / 1);
}

.slider .counter {
	position: absolute;
	left: 8rem;
	bottom: 1rem;
	color: rgb(var(--b) / 1);
}

.slider .controls {
	position: absolute;
	left: 8rem;
	bottom: 3rem;
	display: flex;
	gap: .5rem;
	color: rgb(var(--b) / 1);
	background: none;
}

.slider .controls button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: inherit;
	cursor: pointer;
	border: 0;
	background: none;
}

.slider .pause {
	display: none;
}

.slider.is-play .play {
	display: none;
}

.slider.is-play .pause {
	display: inline-flex;
}

.slider.is-pause .play {
	display: inline-flex;
}

.slider.is-pause .pause {
	display: none;
}

.slider .thumbs {
	position: absolute;
	left: 50%;
	bottom: 10%;
	z-index: 2;
	display: flex;
	gap: var(--thumb-gap);
	width: 55%;
	overflow: hidden;
}

.slider .thumbs > li {
	flex: 0 0 calc((100% - (var(--thumb-gap) * (var(--thumb-preview) - 1))) / var(--thumb-preview));
	overflow: hidden;
	cursor: pointer;
	opacity: 1;
	aspect-ratio: 2 / 3;
	border: 5px solid rgb(var(--b) / 1);
	transition: opacity .25s ease, transform .25s ease;
}

.slider .thumbs img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0)
}

.slider .thumbs > li:hover {
	opacity: 1;
}

.slider .thumbs > li.is-active {
	opacity: 1;
	transform: scale(1.03);
}

/* ==================================================
   MODULE: sweep.css
   ================================================== */

/* sweep */
.sweep {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
}

.sweep > article {
	position: relative;
	width: 100%;
	height: 100%;
}

.sweep figure.layer_one {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.sweep figure.layer_one img {
	position: absolute;
	top: 50%;
	left: 0;
	width: auto;
	height: 100%;
	min-width: auto;
	max-width: none;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 3 / 1;
	transform: translate(0, -50%);
	animation: sweep-x 50s ease-in-out infinite alternate;
	will-change: transform;
}

.sweep .artxt {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 9%;
	width: 36%;
	padding: 3rem;
	color: rgb(var(--b) / 1);
	pointer-events: auto;
	z-index: 2;
	overflow: visible;
}

.sweep .artxt dt {
	width: 200%;
}

.sweep .artxt dt h3 {
	display: block;
	width: 50%;
	max-width: 100%;
	min-width: 0;

	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: break-word;
	hyphens: none !important;
}

.sweep .artxt dd {
	width: 100%;
}


@keyframes sweep-x {
	from {
		transform: translate(0, -50%);
	}

	to {
		transform: translate(-16.666%, -50%);
	}
}

.sweep.media-clean .artxt {
	opacity: 0 !important;
	pointer-events: none !important;
}

.sweep.media-clean .media-view-toggle {
	display: inline-flex !important;
	opacity: 1 !important;
	pointer-events: auto !important;
}

/* ==================================================
   MODULE: tarjetas.css
   ================================================== */

section.tarjetas  {
	padding: 3rem;
	color: rgb(var(--n-d) / 1);
	background: rgb(var(--b) / 1);
}

section.tarjetas.comentarios-tarjetas{
	background-image:
		linear-gradient(130deg, rgb(var(--n)/.3) 0%, rgb(var(--n-d)/.5) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-position: center;
	background-blend-mode: multiply;
}


section.tarjetas article {
	position: relative;
	width: 100%;
}

section.tarjetas .cards-track {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow: hidden;
	width: 100%;
}

section.tarjetas .cards-track dd {
	position: relative;
	flex: 0 0 28%;
	box-sizing: border-box;
	margin: 0;
	transition: flex 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content:  start;
}
section.tarjetas .cards-track dd .icon, section.tarjetas .cards-track dd .icon-text{
	font-size: 5rem;
	color: rgb(var(--n-d) / .25);
}
section.tarjetas .cards-track dd.is-active {
	flex: 0 0 44%;
	background-image:
		linear-gradient(110deg, rgb(var(--n)/.7) 0%, rgb(var(--n)/.95) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
	color: rgb(var(--b) / 1);
	border-radius: .25rem
}
section.tarjetas .cards-track dd.is-active .icon, section.tarjetas .cards-track dd.is-active .icon-text{
	color: rgb(var(--c1) / 1);
}

section.tarjetas .cards-btn {
	position: absolute;
	top: 50%;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin: 0;
	padding: 0;
	cursor: pointer;
	color: rgb(var(--b) / 1);
	background: rgb(var(--c1) / .5);
	border: 0;
	border-radius: 50%;
	transform: translateY(-50%);
}

section.tarjetas .cards-btn.prev {
	left: 0;
}

section.tarjetas .cards-btn.next {
	right: 0;
}

section.tarjetas .cards-btn.hidden {
	display: none;
}
section.tarjetas .cards-btn {
	font-size: 0;
}

section.tarjetas .cards-btn.prev::before {
	content: "‹";
	font-size: 2.2rem;
	line-height: 1;
}

section.tarjetas .cards-btn.next::before {
	content: "›";
	font-size: 2.2rem;
	line-height: 1;
}


/* ==================================================
   MODULE: txt-mask.css
   ================================================== */

.txt-mask{
	--section-width:50%;
	--section-height:80dvh;
	--photo-x:center;
	--photo-y:center;
	--panel-width:40%;
	--panel-color:rgb(var(--b) / 1);
	--svg-width:480;
	--svg-height:740;
	--text-x:280;
	--text-y:170;
	--text-gap:150;
	--text-fill:rgb(var(--b) / 1);
	--text-stroke:rgb(var(--b) / 1);
	--text-stroke-width:5;
	position:relative;
	width:min(100%,var(--section-width));
	height:var(--section-height);
	margin:0 auto;
	overflow:hidden;
	background:rgb(var(--b) / 1)
}
.txt-mask .base-photo{
	position:absolute;
	inset:0;
	z-index:1;
	margin:0
}
.txt-mask .base-photo img{
	width:100%;
	height:100%;
	display:block;
	object-fit:cover;
	object-position:var(--photo-x) var(--photo-y)
}
.txt-mask .white-panel{
	position:absolute;
	top:0;
	right:0;
	width:var(--panel-width);
	height:100%;
	z-index:2;
	background:var(--panel-color)
}
.txt-mask .mask-svg{
	position:absolute;
	inset:0;
	z-index:3;
	width:100%;
	height:100%;
	pointer-events:none
}
.txt-mask .stroke-svg{
	position:absolute;
	inset:0;
	z-index:4;
	width:100%;
	height:100%;
	pointer-events:none
}
.txt-mask .mask-text,
.txt-mask .stroke-text{
	font-family: sans-serif;
	font-size:12rem;
	font-weight:900;
	letter-spacing:-24px
}
.txt-mask .mask-text{
	fill:var(--text-fill)
}
.txt-mask .stroke-text{
	fill:transparent;
	stroke:var(--text-stroke);
	stroke-width:var(--text-stroke-width)
}
.txt-mask .artxt{
	position:relative;
	z-index:5
}
.txt-mask .artxt h2{
	visibility:hidden
}
.txt-mask .artxt dd{
	width:45%;
	color:rgb(var(--b) / 1)
}

/* ==================================================
   MODULE: viewpoint.css
   ================================================== */

/* viewpoint */
.viewpoint {
	position: fixed;
	top: 50%;
	right: 4rem;
	z-index: 150;
	display: flex;
	flex-direction: column;
	gap: 0;
	transform: translateY(-50%);
}

.viewpoint a {
	display: block;
	font-family: "icomoon";
	font-size: 1rem;
	color: rgb(var(--b) / 1);
	text-decoration: none;
	transition: transform 0.25s ease, color 0.25s ease;
	margin: 0;
	padding: 0
}

.viewpoint a::before {
	content: "\e906";
}

.viewpoint a:hover {
	color: rgb(var(--c1) / 1);
	transform: scale(1.15);
}

.viewpoint a.is-active {
	color: rgb(var(--c1) / 1);
	transform: scale(1.35);
}

/* ==================================================
   MODULE: xscroll.css
   ================================================== */

/* xscroll desk */
.xscroll {
	--xscroll-h: 70dvh;
	--xgap: .75rem;
	position: sticky;
	top: 0;
	display: grid;
	grid-template-columns: 27% minmax(0, 73%);
	width: 82%;
	min-height: var(--xscroll-h);
	margin: 0 auto;
	padding: 8rem 1rem 12rem;
	overflow: hidden;
	background-image:
		linear-gradient(110deg, rgb(var(--n)/.7) 0%, rgb(var(--n)/.95) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}

.xscroll-head {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	min-width: 0;
	padding: 0 3rem 0 0;
	text-align: right;
}

.xscroll-nav {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: .75rem;
	width: fit-content;
	max-width: 100%;
	margin-left: auto;
	padding: 0;
	text-align: right;
}

.xscroll-nav button {
	display: block;
	width: fit-content;
	margin: 0;
	padding: 0;
	color: rgb(var(--c1) / 1);
	background: none;
	border: 0;
	cursor: pointer;
	text-align: right;
}

.xscroll-nav button.is-active {
	text-decoration: underline;
	text-underline-offset: .25em;
}

.xscroll-body {
	position: relative;
	width: 100%;
	min-width: 0;
	height: var(--xscroll-h);
	overflow: hidden;
}

.xscroll-list {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: var(--xgap);
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: hidden;
	overflow-y: hidden;
	scroll-behavior: auto;
}

.xscroll-list > li {
	position: relative;
	flex: 0 0 auto;
	width: calc(var(--xscroll-h) * var(--ratio-desk-w) / var(--ratio-desk-h));
	height: var(--xscroll-h);
	margin: 0;
	padding: 0;
	overflow: hidden;
	
		--ratio-desk-w:3;
		--ratio-desk-h:4;
}

.xscroll figure {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.xscroll img,
.xscroll video,
.xscroll .responsive-img,
.xscroll .responsive-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0);
}

.xscroll li dl {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 3rem;
	color: inherit;
	pointer-events: none;
}
.xscroll li dl h2 {
	font-size: 4rem;
	line-height: .95;
	letter-spacing: 0;
	font-weight: 700;

	color: rgb(var(--b) / 1) !important;
	-webkit-text-fill-color: rgb(var(--b) / 1) !important;

	background: none !important;
	background-image: none !important;
	-webkit-background-clip: initial !important;
	background-clip: initial !important;

	filter: none !important;
}

.xscroll li dd {
	position: absolute;
	left: 1rem;
	right: 6rem;
	bottom: 1rem;
	margin: 0;
	pointer-events: auto;
	padding: 2rem
}



.xscroll-viewpoint {
	position: absolute;
	left: 50%;
	bottom: 1rem;
	z-index: 6;
	display: flex;
	gap: .4rem;
	transform: translateX(-50%);
}

.xscroll-viewpoint button {
	width: .55rem;
	height: .55rem;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: currentColor;
	opacity: .35;
	cursor: pointer;
}

.xscroll-viewpoint button.is-active {
	opacity: 1;
}

.xscroll-indicator {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	z-index: 6;
	font-size: .8rem;
}
.xscroll-list > li{
	transition:
		transform .35s ease,
		filter .35s ease,
		opacity .35s ease;
	filter:saturate(1);
	transform:scale(1);
	transform-origin:center;
}

.xscroll-list > li.item-target{
	z-index:4;
	filter:saturate(1);
	transform:scale(1.035);
}

.xscroll-list > li.item-target img,
.xscroll-list > li.item-target video,
.xscroll-list > li.item-target .responsive-img,
.xscroll-list > li.item-target .responsive-video{
	filter:saturate(1);
}

