:root {
	--navy: #0a1628;
	--navy-mid: #112240;
	--teal: #1a6b72;
	--teal-light: #2a9ba5;
	--sand: #c8a96e;
	--sand-light: #e8d5a3;
	--white: #f5f2ed;
	--gray: #8a9bb0;
	--dark: #060e1c;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Barlow', sans-serif;
	background: var(--dark);
	color: var(--white);
	overflow-x: hidden;
}

/* ========== NAV Y MENU RESPONSIVE ========== */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 3rem;
	/* background: linear-gradient(
		to bottom,
		rgba(6, 14, 28, 0.95) 0%,
		transparent 100%
	); */
	/* backdrop-filter: blur(4px);
	border-bottom: 1px solid rgba(200, 169, 110, 0.12); */
	transition: background 0.4s;
}

.nav-logo {
	display: flex;
	flex-direction: column;
	line-height: 1;
	z-index: 1000;
}

.nav-logo .logo-top {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	font-weight: 300;
	letter-spacing: 0.25em;
	color: var(--sand);
	text-transform: uppercase;
}

.nav-logo .logo-main {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--white);
	text-transform: uppercase;
}

.nav-links-wrapper {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	list-style: none;
}

.nav-links a {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(245, 242, 237, 0.75);
	text-decoration: none;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--sand);
}

/* NAV MOBILE TOGGLE */
.menu-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 6px;
	z-index: 1010;
	padding: 0.5rem;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--white);
	transition: all 0.3s ease-in-out;
}

.menu-toggle.open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
	background-color: var(--sand);
}
.menu-toggle.open span:nth-child(2) {
	opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
	background-color: var(--sand);
}

/* ========== DROPDOWN DE IDIOMAS (LANGS) ========== */
.lang-dropdown-container {
	position: relative;
}

.lang-current-btn {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	padding: 0.4rem 0.8rem;
	background: rgba(6, 14, 28, 0.6);
	border: 1px solid rgba(200, 169, 110, 0.3);
	color: var(--white);
	cursor: pointer;
	transition: all 0.3s;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.lang-current-btn:hover {
	border-color: var(--sand);
	color: var(--sand);
}

.lang-current-btn::after {
	content: '▼';
	font-size: 0.5rem;
	color: var(--sand);
	transition: transform 0.3s;
}

.lang-dropdown-container.open .lang-current-btn::after {
	transform: rotate(180deg);
}

.lang-dropdown-menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	background: var(--navy-mid);
	border: 1px solid rgba(200, 169, 110, 0.2);
	list-style: none;
	min-width: 100px;
	display: none;
	flex-direction: column;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	z-index: 1050;
}

.lang-dropdown-container.open .lang-dropdown-menu {
	display: flex;
}

.lang-dropdown-menu button {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	padding: 0.6rem 1rem;
	background: transparent;
	border: none;
	color: rgba(245, 242, 237, 0.7);
	cursor: pointer;
	width: 100%;
	text-align: left;
	transition: all 0.2s;
	text-transform: uppercase;
}

.lang-dropdown-menu button:hover {
	background: rgba(200, 169, 110, 0.1);
	color: var(--sand);
}

.lang-dropdown-menu button.active {
	background: var(--sand);
	color: var(--navy);
	font-weight: 600;
}

/* ========== HERO BANNER ========== */
#hero {
	position: relative;
	height: 90vh; /* Controla el doblez en PC */
	min-height: 580px;
	display: flex;
	align-items: center; /* Volvemos a centrar para que respire */
	overflow: hidden;
	padding-top: 103px;
	padding-left: 8%;
	padding-right: 8%;
}

.hero-video-container {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero-video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
}

.hero-video-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			to top,
			rgba(6, 14, 28, 0.98) 0%,
			rgba(6, 14, 28, 0.2) 40%,
			transparent 70%
		),
		linear-gradient(
			135deg,
			#0a2a3a 0%,
			#0a1628 30%,
			#061020 60%,
			#0d1f35 100%
		);
}

.water-anim {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse 120% 60% at 50% 70%,
			rgba(26, 107, 114, 0.25) 0%,
			transparent 60%
		),
		radial-gradient(
			ellipse 80% 40% at 30% 50%,
			rgba(10, 38, 58, 0.4) 0%,
			transparent 70%
		);
	animation: waterPulse 6s ease-in-out infinite alternate;
}

@keyframes waterPulse {
	0% {
		opacity: 0.6;
		transform: scaleX(1);
	}
	100% {
		opacity: 1;
		transform: scaleX(1.03);
	}
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(6, 14, 28, 1) 0%,
		rgba(6, 14, 28, 0.7) 30%,
		rgba(6, 14, 28, 0.1) 65%,
		transparent 100%
	);
}

.hero-content {
	position: relative;
	z-index: 3;
	max-width: 800px;
	display: flex;
	flex-direction: column;
	align-items: flex-start; /* Fuerza a que los hijos midan solo lo que su contenido requiere */
	gap: 15px;
}

.hero-tag {
	display: inline-block;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--sand);
	border-top: 1px solid var(--sand);
	padding-top: 0.5rem;
	margin-bottom: 1.5rem;
	animation: fadeUp 1s ease 0.3s both;

	display: inline-block; /* O width: fit-content; */
	max-width: 100%;
	/* Si la línea dorada es un borde inferior o un after, 
       ahora se acortará automáticamente al tamaño del texto */
}

.hero-title {
	font-family: 'Cormorant Garamond', serif;
	/* font-size: clamp(2.5rem, 6vw, 6.5rem); */
	font-weight: 300;
	line-height: 1.1;
	letter-spacing: -0.01em;
	/* margin-bottom: 1.5rem; */
	animation: fadeUp 1s ease 0.5s both;

	font-size: 3.5rem; /* Bajamos de los ~5rem que debías tener a un tamaño más estilizado */
	/* line-height: 1.15; */
	margin: 0;
	font-weight: 700;
	color: #ffffff;

	font-size: 3.5rem;
	line-height: 1.15;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}

.hero-title em {
	/* font-style: italic; */
	color: var(--sand-light);
}

.hero-sub {
	font-size: 1.05rem;
	font-weight: 300;
	color: rgba(245, 242, 237, 0.72);
	max-width: 520px;
	/* line-height: 1.7; */
	margin-bottom: 2.5rem;
	animation: fadeUp 1s ease 0.7s both;

	line-height: 1.6;
	max-width: 600px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 15px 0;
}

.hero-ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	animation: fadeUp 1s ease 0.9s both;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.9rem 2rem;
	background: var(--sand);
	color: var(--navy);
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s;
}

.btn-primary:hover {
	background: var(--sand-light);
	transform: translateY(-2px);
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.9rem 2rem;
	background: transparent;
	color: var(--white);
	border: 1px solid rgba(245, 242, 237, 0.35);
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s;
}

.btn-ghost:hover {
	border-color: var(--sand);
	color: var(--sand);
}

.hero-coords {
	position: absolute;
	bottom: 3rem;
	right: 3rem;
	text-align: right;
	animation: fadeUp 1s ease 1.1s both;
}

.hero-coords .coord-label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--sand);
	opacity: 0.7;
	/* display: block; */
	margin-bottom: 0.3rem;

	position: absolute;
	bottom: 30px;
	right: 4%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	text-align: right;
}

.hero-coords .coord-val {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: rgba(245, 242, 237, 0.55);
	letter-spacing: 0.12em;
}

/* ========== SECTION BASE ========== */
section {
	padding: 6rem 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 3rem;
}

.section-label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--sand);
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

/* .section-label::after {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--sand);
	opacity: 0.5;
} */

.section-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.2rem, 4vw, 3.5rem);
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.section-title em {
	/* font-style: italic; */
	color: var(--sand-light);
}

/* ========== ABOUT ========== */
#about {
	background: var(--navy);
	position: relative;
	overflow: hidden;
}

#about::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(26, 107, 114, 0.12) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.about-text p {
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.85;
	color: rgba(245, 242, 237, 0.78);
	margin-bottom: 1.2rem;
}

.about-highlight {
	border-left: 2px solid var(--sand);
	padding-left: 1.5rem;
	margin: 2rem 0;
}

.about-highlight p {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.35rem;
	font-style: italic;
	font-weight: 300;
	color: var(--sand-light) !important;
	line-height: 1.5;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.stat-item {
	text-align: center;
	padding: 1.5rem 1rem;
	border: 1px solid rgba(200, 169, 110, 0.15);
	background: rgba(200, 169, 110, 0.04);
	transition: border-color 0.3s;
}

.stat-item:hover {
	border-color: rgba(200, 169, 110, 0.4);
}

.stat-num {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--sand);
	line-height: 1;
	display: block;
	letter-spacing: 0.03em;
}

.stat-label {
	font-size: 0.72rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(245, 242, 237, 0.5);
	margin-top: 0.4rem;
	display: block;
}

.about-image-stack {
	position: relative;
	height: 480px;
}

.img-card {
	position: absolute;
	border: 1px solid rgba(200, 169, 110, 0.2);
	overflow: hidden;
	background: var(--navy-mid);
}

.img-card.main {
	top: 0;
	right: 0;
	width: 85%;
	height: 360px;
}

.img-card.secondary {
	bottom: 0;
	left: 0;
	width: 65%;
	height: 240px;
	border-color: var(--teal);
}

.img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.5rem;
	color: rgba(245, 242, 237, 0.2);
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	background: linear-gradient(
		135deg,
		rgba(26, 107, 114, 0.15) 0%,
		rgba(10, 22, 40, 0.8) 100%
	);
	font-family: 'Barlow Condensed', sans-serif;
}

.img-placeholder img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
/* ========== SERVICES ========== */
#services {
	background: var(--dark);
	position: relative;
}

.services-intro {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	margin-bottom: 4rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5px;
	background: rgba(200, 169, 110, 0.1);
}

.service-card {
	background: var(--navy-mid);
	padding: 2.5rem 2rem;
	transition: all 0.35s;
	cursor: default;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--sand);
	transition: width 0.4s ease;
}

.service-card:hover {
	background: rgba(17, 34, 64, 0.95);
}
.service-card:hover::before {
	width: 100%;
}

.service-icon {
	font-size: 2rem;
	margin-bottom: 1.2rem;
	display: block;
}
.service-name {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--sand);
	margin-bottom: 0.8rem;
}
.service-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	font-weight: 400;
	margin-bottom: 0.8rem;
	line-height: 1.25;
}
.service-desc {
	font-size: 0.88rem;
	font-weight: 300;
	line-height: 1.7;
	color: rgba(245, 242, 237, 0.6);
}

.workshop-card {
	background: rgba(26, 107, 114, 0.08);
	border: 1px solid rgba(26, 107, 114, 0.25);
	padding: 2.5rem 2rem;
	grid-column: span 3;
	/* display: grid; */
	/* grid-template-columns: 1fr 1fr; */
	gap: 2rem;
	transition: border-color 0.3s;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.workshop-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 1.2rem;
}
.workshop-list {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
}
.workshop-list li {
	font-size: 0.88rem;
	font-weight: 300;
	color: rgba(245, 242, 237, 0.7);
	padding: 0.4rem 0;
	border-bottom: 1px solid rgba(245, 242, 237, 0.07);
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.workshop-list li::before {
	content: '—';
	color: var(--teal-light);
	font-size: 0.7rem;
	flex-shrink: 0;
}

/* ========== GALLERY ========== */
#gallery {
	background: var(--navy);
	padding-bottom: 3rem;
}

.gallery-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 3rem;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: 220px 220px;
	gap: 6px;
}

.g-item {
	overflow: hidden;
	position: relative;
	cursor: pointer;
}
.g-item .img-placeholder {
	transition: transform 0.4s ease;
}
.g-item:hover .img-placeholder {
	transform: scale(1.04);
}
.g-item:nth-child(1) {
	grid-column: span 5;
	grid-row: span 2;
}
.g-item:nth-child(2) {
	grid-column: span 4;
}
.g-item:nth-child(3) {
	grid-column: span 3;
}
.g-item:nth-child(4) {
	grid-column: span 3;
}
.g-item:nth-child(5) {
	grid-column: span 4;
}

.g-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(6, 14, 28, 0.6) 0%,
		transparent 60%
	);
	opacity: 0;
	transition: opacity 0.3s;
	display: flex;
	align-items: flex-end;
	padding: 1.2rem;
}

.g-item:hover .g-overlay {
	opacity: 1;
}
.g-overlay span {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--sand);
}

/* ========== LOCATION (MAPA RESTAURADO) ========== */
#location {
	background: var(--dark);
	padding: 6rem 0;
}

.location-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.map-container {
	height: 400px;
	width: 100%;
	background: var(--navy-mid);
	border: 1px solid rgba(200, 169, 110, 0.25);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	position: relative;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(0.4) contrast(1.05) brightness(0.85);
}

.location-item {
	display: flex;
	gap: 1.5rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(245, 242, 237, 0.07);
}

.loc-icon {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(200, 169, 110, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
	color: var(--sand);
}

.loc-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--sand);
	margin-bottom: 0.4rem;
}
.loc-text {
	font-size: 0.92rem;
	font-weight: 300;
	color: rgba(245, 242, 237, 0.7);
	line-height: 1.6;
}

/* ========== CONTACT ========== */
#contact {
	background: var(--navy);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

#contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--sand), transparent);
	opacity: 0.3;
}

.contact-grid {
	display: grid;
	/* grid-template-columns: 1fr 1fr; */
	/* gap: 5rem; */
	align-items: start;
}
.contact-text p {
	font-size: 0.95rem;
	font-weight: 300;
	line-height: 1.8;
	color: rgba(245, 242, 237, 0.7);
	margin-bottom: 2rem;
}
.contact-direct {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	text-decoration: none;
	color: var(--white);
	padding: 1rem 1.2rem;
	border: 1px solid rgba(245, 242, 237, 0.1);
	transition: all 0.3s;
}
.contact-item:hover {
	border-color: rgba(200, 169, 110, 0.4);
	background: rgba(200, 169, 110, 0.06);
}
.ci-info {
	flex: 1;
}
.ci-label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--sand);
	display: block;
	margin-bottom: 0.15rem;
}
.ci-val {
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(245, 242, 237, 0.8);
}

.wa-cta {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1.2rem 2rem;
	background: #1a7c3e;
	color: white;
	text-decoration: none;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	transition: all 0.3s;
	width: 100%;
	justify-content: center;
}
.wa-cta:hover {
	background: #218c49;
	transform: translateY(-1px);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.form-group label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--sand);
}

.form-group input,
.form-group select,
.form-group textarea {
	background: rgba(245, 242, 237, 0.04);
	border: 1px solid rgba(245, 242, 237, 0.12);
	color: var(--white);
	padding: 0.9rem 1rem;
	font-family: 'Barlow', sans-serif;
	font-size: 0.9rem;
	font-weight: 300;
	outline: none;
	transition: border-color 0.3s;
	appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--sand);
}
.form-group textarea {
	resize: vertical;
	min-height: 120px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-submit {
	padding: 1rem 2rem;
	background: var(--sand);
	color: var(--navy);
	border: none;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 0.5rem;
}
.form-submit:hover {
	background: var(--sand-light);
}

.contact-form-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

/* ========== FOOTER ========== */
footer {
	background: var(--dark);
	border-top: 1px solid rgba(200, 169, 110, 0.12);
	padding: 3rem 0 2rem;
}
.footer-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 4rem;
	margin-bottom: 3rem;
}
.footer-brand .logo-top {
	font-family: 'Cormorant Garamond', serif;
	font-size: 0.9rem;
	letter-spacing: 0.25em;
	color: var(--sand);
	text-transform: uppercase;
	display: block;
	margin-bottom: 0.2rem;
}
.footer-brand .logo-main {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--white);
	text-transform: uppercase;
	display: block;
	margin-bottom: 1rem;
}
.footer-brand p {
	font-size: 0.85rem;
	font-weight: 300;
	line-height: 1.7;
	color: rgba(245, 242, 237, 0.45);
	max-width: 280px;
}
.footer-col h4 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--sand);
	margin-bottom: 1.2rem;
}
.footer-col ul {
	list-style: none;
}
.footer-col ul li {
	margin-bottom: 0.6rem;
}
.footer-col ul li a {
	font-size: 0.85rem;
	font-weight: 300;
	color: rgba(245, 242, 237, 0.5);
	text-decoration: none;
	transition: color 0.3s;
}
.footer-col ul li a:hover {
	color: var(--sand);
}

.footer-bottom {
	border-top: 1px solid rgba(245, 242, 237, 0.07);
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-bottom p {
	font-size: 0.75rem;
	color: rgba(245, 242, 237, 0.25);
	font-weight: 300;
}
.social-links {
	display: flex;
	gap: 1rem;
}
.social-link {
	width: 34px;
	height: 34px;
	border: 1px solid rgba(245, 242, 237, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: rgba(245, 242, 237, 0.4);
	font-size: 0.9rem;
	transition: all 0.3s;
}
.social-link:hover {
	border-color: var(--sand);
	color: var(--sand);
}

/* ========== ANIMACIONES Y ADICIONALES ========== */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}
.reveal.visible {
	opacity: 1;
	transform: none;
}

.scroll-indicator {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	z-index: 10;
	animation: fadeUp 1s ease 1.3s both;
}
.scroll-indicator span {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.6rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(245, 242, 237, 0.4);
}
.scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--sand), transparent);
	animation: scrollAnim 1.5s ease-in-out infinite;
}
@keyframes scrollAnim {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}
	50% {
		transform: scaleY(1);
		transform-origin: top;
	}
	51% {
		transform: scaleY(1);
		transform-origin: bottom;
	}
	100% {
		transform: scaleY(0);
		transform-origin: bottom;
	}
}

.whatsapp-float {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 56px;
	height: 56px;
	background: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	text-decoration: none;
	z-index: 900;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
	transition: all 0.3s;
}
.whatsapp-float:hover {
	transform: scale(1.08);
}

/* ========== GESTIÓN DE IDIOMAS POR CSS ========== */
[data-lang] {
	display: none;
}
[data-lang='es'] {
	display: block;
}
.lang-inline[data-lang] {
	display: none;
}
.lang-inline[data-lang='es'] {
	display: inline;
}

/* ========== VIDEO REEL ========== */
#video-reel {
	width: 100%;
	background: var(--dark);
	padding: 0 !important;
}

.video-reel-wrapper {
	position: relative;
	width: 100%;
	height: 40vh;
	min-height: 420px;
	max-height: 680px;
	overflow: hidden;
}

.video-reel-wrapper video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-reel-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(6, 14, 28, 0.75) 0%,
		rgba(6, 14, 28, 0.15) 50%,
		rgba(6, 14, 28, 0.35) 100%
	);
	display: flex;
	align-items: flex-end;
	padding: 3.5rem 4rem;
}

.video-reel-content {
	max-width: 640px;
}

/* Mobile */
@media (max-width: 992px) {
	.video-reel-wrapper {
		height: 55vh;
		min-height: 320px;
	}

	.video-reel-overlay {
		padding: 2rem 1.5rem;
	}

	.video-reel-title {
		font-size: 1.8rem;
	}
}
/* ===================================================
			   MEDIA QUERIES (ADAPTACIÓN COMPLETA A MÓVIL)
			   =================================================== */
@media (max-width: 992px) {
	nav {
		padding: 1rem 1.5rem;
		/* background: var(--dark); */
	}

	.menu-toggle {
		display: flex;
	}

	.nav-links-wrapper {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: var(--navy-mid);
		border-left: 1px solid rgba(200, 169, 110, 0.2);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 6rem 2rem 2rem;
		gap: 3rem;
		transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		z-index: 1000;
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
	}

	.nav-links-wrapper.open {
		right: 0;
	}

	.nav-links {
		flex-direction: column;
		align-items: flex-start;
		gap: 2rem;
		width: 100%;
	}

	.nav-links a {
		font-size: 1rem;
		display: block;
		width: 100%;
		padding: 0.5rem 0;
	}

	.lang-dropdown-container {
		margin-top: auto;
		width: 100%;
	}

	.lang-current-btn {
		width: 100%;
		justify-content: space-between;
		padding: 0.8rem 1rem;
	}

	.lang-dropdown-menu {
		width: 100%;
		position: static;
		margin-top: 0.5rem;
		box-shadow: none;
	}

	.about-grid,
	.location-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 3.5rem;
	}

	.about-image-stack {
		height: 380px;
	}

	.img-card.main {
		height: 280px;
	}
	.img-card.secondary {
		height: 180px;
	}

	.services-intro {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.workshop-card {
		grid-column: span 1;
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.workshop-list {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 1rem;
	}

	.g-item:nth-child(n) {
		grid-column: span 1 !important;
		grid-row: span 1 !important;
		height: 240px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1.5rem;
		text-align: center;
	}

	.container {
		padding: 0 1.5rem;
	}

	/* ABOUT mobile */
	.about-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.about-text p,
	.about-highlight p {
		overflow-wrap: break-word;
		word-break: break-word;
		max-width: 100%;
	}

	.about-highlight {
		margin: 1.5rem 0;
	}

	.about-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.75rem;
	}

	.stat-item {
		padding: 1rem 0.5rem;
	}

	.stat-num {
		font-size: 1.8rem;
	}

	.stat-label {
		font-size: 0.6rem;
		letter-spacing: 0.08em;
	}

	.about-image-stack {
		height: 320px;
	}
}
/* Ocultar el dropdown móvil en desktop */
#langDropdownMobile {
	display: none;
}

/* Mostrarlo solo dentro del panel móvil abierto */
@media (max-width: 992px) {
	#langDropdownMobile {
		display: block;
		width: 100%;
	}
	/* Ocultar el desktop en móvil */
	#langDropdownDesktop {
		display: none;
	}

	.hero-title {
		font-size: 2.5rem;
	}
	.hero-sub {
		font-size: 0.8rem;
	}

	.hero-content {
		padding: 0;
	}
	.hero-tag {
		margin-bottom: 0;
	}
}
/* ===== LANG DROPDOWN CON BANDERAS ===== */
.lang-dropdown {
	position: relative;
}
.lang-select {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(6, 14, 28, 0.6);
	border: 1px solid rgba(200, 169, 110, 0.3);
	color: var(--white);
	padding: 0.4rem 0.75rem;
	cursor: pointer;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition:
		border-color 0.3s,
		color 0.3s;
}
.lang-select:hover {
	border-color: var(--sand);
	color: var(--sand);
}
.lang-flag {
	width: 20px;
	height: 15px;
	object-fit: cover;
	border-radius: 1px;
	flex-shrink: 0;
}
.lang-options {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	background: var(--navy-mid);
	border: 1px solid rgba(200, 169, 110, 0.2);
	min-width: 90px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	z-index: 1050;
	flex-direction: column;
}
.lang-dropdown.open .lang-options {
	display: flex;
}
.lang-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0.55rem 0.9rem;
	cursor: pointer;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(245, 242, 237, 0.7);
	transition:
		background 0.2s,
		color 0.2s;
	border: none;
	background: transparent;
	width: 100%;
	text-align: left;
}
.lang-option:hover {
	background: rgba(200, 169, 110, 0.1);
	color: var(--sand);
}
.lang-option.active {
	background: var(--sand);
	color: var(--navy);
}

/* ===== HAMBURGER ===== */
.hamburger {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 6px;
	z-index: 1010;
	padding: 0.5rem;
}
.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--white);
	transition: all 0.3s ease-in-out;
}
.hamburger.open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
	background-color: var(--sand);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
}
.hamburger.open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
	background-color: var(--sand);
}

/* ===== NAV RIGHT GROUP ===== */
.nav-right {
	display: flex;
	gap: 14px;
	align-items: center;
	z-index: 1010;
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
	.hamburger {
		display: flex;
	}
	.nav-links-wrapper {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: var(--navy-mid);
		border-left: 1px solid rgba(200, 169, 110, 0.2);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 6rem 2rem 2rem;
		gap: 2.5rem;
		transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		z-index: 1000;
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
	}
	.nav-links-wrapper.open {
		right: 0;
	}
	.nav-links {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
		width: 100%;
	}
	.nav-links a {
		font-size: 1rem;
		display: block;
		width: 100%;
		padding: 0.4rem 0;
	}
	/* dropdown inside mobile panel */
	.nav-links-wrapper .lang-dropdown {
		width: 100%;
		margin-top: auto;
	}
	.nav-links-wrapper .lang-select {
		width: 100%;
		justify-content: space-between;
		padding: 0.75rem 1rem;
	}
	.nav-links-wrapper .lang-options {
		position: static;
		width: 100%;
		margin-top: 0.25rem;
		box-shadow: none;
	}

	.hero-ctas {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
	}

	.hero-ctas a:first-child {
		grid-column: 1 / -1; /* Documentos ocupa todo el ancho */
	}

	.btn-primary {
		gap: 0.6rem;
		padding: 0.65rem 1rem;
		font-size: 0.8rem;
		font-weight: 600;
		justify-content: center;
	}
	.btn-ghost {
		gap: 0.6rem;
		padding: 0.65rem 1rem;
		font-size: 0.8rem;
		font-weight: 600;
		justify-content: center;
	}
}

/* img-card images */
.img-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* footer logo */
.footer-logo {
	height: 48px;
}

@media (max-width: 767px) {
	#hero {
		height: 100dvh; /* En móvil usamos el 100% para que quepa TODO */
		min-height: 640px; /* Asegura que no se aplaste en teléfonos enanos */
		display: flex;
		flex-direction: column;
		justify-content: center; /* Centra el bloque de texto en el espacio restante */
		align-items: flex-start;
		padding-top: 20px; /* Colchón del menú móvil */
		padding-bottom: 100px; /* Espacio reservado libre abajo para las coordenadas */
		padding-left: 20px;
		padding-right: 20px;
	}
	.hero-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(
			to top,
			rgba(6, 14, 28, 1) 0%,
			rgba(6, 14, 28, 0.7) 30%,
			rgba(6, 14, 28, 0.4) 100%,
			transparent 100%
		);
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-title {
		font-size: 2.2rem; /* Achicamos más el título en móvil para que no haga tanto bulto */
		line-height: 1.2;
	}

	.hero-sub {
		font-size: 1rem;
	}

	/* Forzamos a que las coordenadas se posicionen bien abajo en el celular */
	.hero-coords {
		position: absolute;
		bottom: 80px; /* Subimos un poco para que no choque con el botón flotante de WhatsApp */
		left: 20px;
	}

	/* Indicador de scroll en móvil si deseas mantenerlo (opcional, a veces estorba en celular) */
	.scroll-indicator {
		position: absolute;
		bottom: 25px;
		left: 50%;
		transform: translateX(-50%);
	}
}

/* ========== WORKSHOP BTNS ========== */
.workshop-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	align-content: flex-start;
	justify-content: center;
}

.ws-btn {
	background: transparent;
	border: 1px solid rgba(200, 169, 110, 0.3);
	color: rgba(245, 242, 237, 0.75);
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	cursor: pointer;
	transition: all 0.25s;
	border-radius: 20px;
	-webkit-box-shadow: -1px 2px 9px -4px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -1px 2px 9px -4px rgba(0, 0, 0, 0.75);
	box-shadow: -1px 2px 9px -4px rgba(0, 0, 0, 0.75);
}

.ws-btn:hover {
	border-color: var(--sand);
	color: var(--sand);
	background: rgba(200, 169, 110, 0.06);
}

/* ========== MODAL ========== */
.ws-modal-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(6, 14, 28, 0.85);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	backdrop-filter: blur(4px);
}

.ws-modal-backdrop.open {
	display: flex;
}

.ws-modal-box {
	background: var(--navy-mid);
	border: 1px solid rgba(200, 169, 110, 0.2);
	max-width: 480px;
	width: 100%;
	padding: 2.5rem 2rem;
	position: relative;
	animation: fadeUp 0.3s ease both;
	max-height: 85vh;
	overflow-y: auto;
}

.ws-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: transparent;
	border: none;
	color: rgba(245, 242, 237, 0.4);
	font-size: 1.1rem;
	cursor: pointer;
	transition: color 0.2s;
	line-height: 1;
}

.ws-modal-close:hover {
	color: var(--sand);
}

.ws-modal-label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--sand);
	margin: 0 0 0.4rem;
}

.ws-modal-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--white);
	margin: 0 0 1.8rem;
	line-height: 1.2;
}

.ws-modal-contacts {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ws-contact-item {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.65rem 0.8rem;
	border-bottom: 1px solid rgba(245, 242, 237, 0.07);
	background: transparent !important;
	border: none !important;
}

.ws-contact-item:last-child {
	border-bottom: none;
}

.ws-contact-info {
	flex: 1;
	min-width: 0;
	text-align: left;
}

.ws-contact-name {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--white);
}

.ws-contact-esp {
	font-size: 0.75rem;
	font-weight: 300;
	color: rgba(245, 242, 237, 0.4);
}

.ws-contact-actions {
	flex-shrink: 0;
	display: flex;
	gap: 0.4rem;
	align-items: center;
}

.ws-modal-contacts {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid rgba(245, 242, 237, 0.07);
}

.ws-modal-note {
	font-size: 0.72rem;
	color: rgba(245, 242, 237, 0.35);
	font-style: italic;
	margin-top: 2px;
}

.ws-contact-wa {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.9rem;
	background: #1a7c3e;
	color: white;
	text-decoration: none;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: background 0.25s;
}

.ws-contact-wa:hover {
	background: #218c49;
}

.ws-contact-call {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.9rem;
	background: transparent;
	border: 1px solid rgba(245, 242, 237, 0.2);
	color: rgba(245, 242, 237, 0.7);
	text-decoration: none;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: all 0.25s;
}

.ws-contact-call:hover {
	border-color: var(--sand);
	color: var(--sand);
}

.ws-modal-note {
	font-size: 0.8rem;
	font-weight: 300;
	color: rgba(245, 242, 237, 0.4);
	line-height: 1.6;
	margin-top: 0.5rem;
	font-style: italic;
}

@media (max-width: 992px) {
	.workshop-btns {
		gap: 0.5rem;
	}
	.ws-btn {
		font-size: 0.72rem;
		padding: 0.45rem 0.8rem;
	}
}

/* ========== DIRECTORIO ÚTIL ========== */
.directory-card {
	margin-top: 1.5px;
	background: rgba(6, 14, 28, 0.6);
	border-top: 1px solid rgba(200, 169, 110, 0.15);
	padding: 3rem;
	text-align: center;
}

.directory-header {
	margin-bottom: 2rem;
}

.directory-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.dir-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1.2rem 1.8rem;
	background: transparent;
	border: 1px solid rgba(200, 169, 110, 0.2);
	color: rgba(245, 242, 237, 0.7);
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.25s;
	min-width: 130px;
}

.dir-btn-icon {
	font-size: 1.4rem;
	display: block;
}

.dir-btn:hover {
	border-color: var(--sand);
	color: var(--sand);
	background: rgba(200, 169, 110, 0.05);
}

@media (max-width: 992px) {
	.directory-card {
		padding: 2rem 1.5rem;
	}
	.dir-btn {
		min-width: 100px;
		padding: 1rem 1.2rem;
	}

	.directory-card {
		padding: 2rem 1.5rem;
	}
	.directory-btns {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.dir-btn {
		min-width: unset;
		width: 100%;
		padding: 1rem;
	}
}
/* ========== DIRECTORIO INLINE ========== */
.dir-section {
	margin-top: 1.5px;
	background: rgba(6, 14, 28, 0.5);
	border-top: 1px solid rgba(200, 169, 110, 0.15);
	grid-column: 1 / -1;
}

.dir-group {
	border-bottom: 1px solid rgba(245, 242, 237, 0.06);
	padding: 2rem 2.5rem;
}

.dir-group:last-child {
	border-bottom: none;
}

.dir-group-header {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1.2rem;
	flex-direction: column;
}

.dir-group-icon {
	font-size: 1rem;
	color: var(--sand);
	opacity: 0.7;
	flex-shrink: 0;
}

.dir-group-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--sand);
	margin: 0;
}

.dir-group-desc {
	font-size: 0.85rem;
	font-weight: 300;
	color: rgba(245, 242, 237, 0.45);
	margin: 0 0 1.2rem;
	line-height: 1.6;
}

/* List rows */
.dir-list {
	display: flex;
	flex-direction: column;
	/* border: 1px solid rgba(245, 242, 237, 0.06); */
}

.dir-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.65rem 1rem;
	border: 1px solid rgba(245, 242, 237, 0.05);
	transition: background 0.2s;
}

.dir-row:last-child {
	border-bottom: none;
}
.dir-row:hover {
	background: rgba(245, 242, 237, 0.02);
}

.dir-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.dir-name {
	font-family: 'Barlow', sans-serif;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--white);
}

.dir-esp {
	font-size: 0.78rem;
	font-weight: 300;
	color: rgba(245, 242, 237, 0.45);
}

.dir-note {
	font-size: 0.72rem;
	font-weight: 300;
	color: rgba(245, 242, 237, 0.3);
	font-style: italic;
	margin-top: 0.1rem;
}

/* Action buttons */
.dir-actions {
	flex-shrink: 0;
	display: flex;
	gap: 0.4rem;
	align-items: center;
}

.dir-wa,
.dir-call,
.dir-maps {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.75rem;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.2s;
	white-space: nowrap;
}

.dir-wa {
	background: #1a7c3e;
	color: white;
	border: 1px solid #1a7c3e;
}
.dir-wa:hover {
	background: #218c49;
}

.dir-call {
	background: transparent;
	border: 1px solid rgba(245, 242, 237, 0.18);
	color: rgba(245, 242, 237, 0.7);
}
.dir-call:hover {
	border-color: var(--sand);
	color: var(--sand);
}

.dir-maps {
	background: transparent;
	border: 1px solid rgba(200, 169, 110, 0.25);
	color: var(--sand);
	padding: 0.35rem 0.6rem;
}
.dir-maps:hover {
	background: rgba(200, 169, 110, 0.1);
}

/* Workshop inline list */
.dir-list .ws-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.65rem 1rem;
	border-bottom: 1px solid rgba(245, 242, 237, 0.05);
}
.dir-list .ws-row:last-child {
	border-bottom: none;
}

/* Mobile */
@media (max-width: 992px) {
	.dir-group {
		padding: 1.5rem 1rem;
	}

	.dir-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.6rem;
	}

	.dir-actions {
		width: 100%;
	}

	.dir-wa,
	.dir-call,
	.dir-maps {
		flex: 1;
		justify-content: center;
	}
}

#workshop-list-inline .dir-row,
.dir-row {
	background: var(--navy-mid);
}
/* ========== DESKTOP: columnas ========== */
@media (min-width: 993px) {
	/* Trabajos especializados: 3 columnas */
	#workshop-list-inline {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1px;
		/* background: rgba(245, 242, 237, 0.05); */
	}

	/* Directorio: 3 columnas */
	.dir-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1px;
		/* background: rgba(245, 242, 237, 0.05); */
	}

	/* Cada celda fondo propio + flex con botones al extremo derecho */
	#workshop-list-inline .dir-row,
	.dir-row {
		background: var(--navy-mid);
		display: flex;
		align-items: flex-start;
		justify-content: start;
		gap: 0.5rem;
		padding: 0.8rem 1rem;
	}

	/* Info ocupa el espacio disponible */
	#workshop-list-inline .dir-row .dir-info,
	.dir-row .dir-info {
		flex: 1;
		min-width: 0;
	}

	/* Botones siempre pegados a la derecha */
	#workshop-list-inline .dir-row .dir-actions,
	.dir-row .dir-actions {
		flex-shrink: 0;
		align-self: flex-start;
		margin-left: auto;
	}

	/* Workshop: cada sub-fila de contacto también flex */
	#workshop-list-inline .dir-row > div[style] {
		flex-shrink: 0;
		align-self: flex-start;
	}
}

/* ========== ACORDEÓN DIRECTORIO ========== */
.dir-group-priority {
	background: rgba(200, 169, 110, 0.03);
}

.dir-accordion {
	display: flex;
	flex-direction: column;
}

.acc-item {
	border-bottom: 1px solid rgba(245, 242, 237, 0.06);
}

.acc-item:last-child {
	border-bottom: none;
}

.acc-trigger {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	padding: 0.6rem 2.5rem;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}

.acc-arrow {
	position: absolute;
	right: 2.5rem;
	top: 50%;
	transform: translateY(-50%);
}

.acc-item.open .acc-arrow {
	transform: translateY(-50%) rotate(180deg);
}

.acc-trigger:hover {
	background: rgba(245, 242, 237, 0.02);
}

.acc-trigger-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--sand);
}

.acc-arrow {
	font-size: 0.75rem;
	color: rgba(245, 242, 237, 0.4);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.acc-item.open .acc-arrow {
	transform: rotate(180deg);
}

.acc-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.acc-item.open .acc-panel {
	max-height: 3000px; /* suficiente para listas largas */
}

/* .acc-panel .dir-list {
	margin: 0 2.5rem 1.5rem;
	border: 1px solid rgba(245, 242, 237, 0.06);
} */

@media (max-width: 992px) {
	.acc-trigger {
		padding: 0.8rem 1.2rem 0rem 1.2rem;
	}

	.acc-arrow {
		right: 1.2rem;
	}
	.acc-panel .dir-list {
		margin: 0 1rem 1.2rem;
	}
}

.acc-trigger-left {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.acc-trigger-icon {
	font-size: 0.9rem;
	color: var(--sand);
	opacity: 0.7;
	flex-shrink: 0;
}
.ws-sub-item {
	border: 1px solid rgba(245, 242, 237, 0.06);
	margin-bottom: 2px;
}

.ws-sub-trigger {
	padding: 0.9rem 1.2rem;
}

.ws-sub-title {
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: normal;
	text-transform: none;
	color: var(--white);
}
/* Evitar que el panel empuje las celdas vecinas en desktop */
@media (min-width: 993px) {
	.ws-sub-item {
		position: relative;
	}

	.ws-sub-item .acc-panel {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 50;
		background: var(--navy-mid);
		/* border: 1px solid rgba(200, 169, 110, 0.25); */
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
	}

	.ws-sub-item.open .acc-panel {
		max-height: 400px;
		overflow-y: auto;
	}
}
.gallery-scroll-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.gallery-track {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 0.5rem;
	-webkit-overflow-scrolling: touch;
}

/* Ocultar scrollbar visualmente, mantener funcionalidad */
.gallery-track::-webkit-scrollbar {
	height: 6px;
}
.gallery-track::-webkit-scrollbar-thumb {
	background: rgba(200, 169, 110, 0.3);
	border-radius: 3px;
}
.gallery-track::-webkit-scrollbar-track {
	background: transparent;
}

.gallery-track .g-item {
	flex: 0 0 auto;
	width: 340px;
	height: 440px;
	scroll-snap-align: start;
	position: relative;
	overflow: hidden;
}

.gallery-track .g-item .img-placeholder,
.gallery-track .g-item video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.g-item-video {
	border: 1px solid rgba(200, 169, 110, 0.3);
}

/* Botones de navegación */
.g-scroll-btn {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(6, 14, 28, 0.8);
	border: 1px solid rgba(200, 169, 110, 0.3);
	color: var(--sand);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.25s;
	z-index: 5;
}

.g-scroll-btn:hover {
	background: var(--sand);
	color: var(--navy);
}

@media (max-width: 992px) {
	.gallery-track .g-item {
		width: 260px;
		height: 340px;
	}
	.g-scroll-btn {
		display: none;
	} /* en mobile se desliza con el dedo */
}
/* ========== CARRUSEL SECUNDARIO (thumbs pequeños) ========== */
.gallery-scroll-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.gallery-track {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 0.5rem;
	-webkit-overflow-scrolling: touch;
}

.gallery-track::-webkit-scrollbar {
	height: 5px;
}
.gallery-track::-webkit-scrollbar-thumb {
	background: rgba(200, 169, 110, 0.3);
	border-radius: 3px;
}
.gallery-track::-webkit-scrollbar-track {
	background: transparent;
}

.g-thumb {
	flex: 0 0 auto;
	width: 160px;
	height: 200px;
	scroll-snap-align: start;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid rgba(200, 169, 110, 0.12);
	transition: border-color 0.25s;
}

.g-thumb:hover {
	border-color: var(--sand);
}

.g-thumb img,
.g-thumb video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.g-thumb-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(6, 14, 28, 0.25);
	color: white;
	font-size: 1.3rem;
	pointer-events: none;
}

.g-scroll-btn {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(6, 14, 28, 0.8);
	border: 1px solid rgba(200, 169, 110, 0.3);
	color: var(--sand);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.25s;
}

.g-scroll-btn:hover {
	background: var(--sand);
	color: var(--navy);
}

/* Mobile: más thumbs visibles, más chicos */
@media (max-width: 992px) {
	.g-thumb {
		width: 110px;
		height: 140px;
	}
	.g-scroll-btn {
		display: none;
	}
}

/* ========== LIGHTBOX ========== */
.lightbox-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(6, 14, 28, 0.95);
	z-index: 3000;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	backdrop-filter: blur(6px);
}

.lightbox-backdrop.open {
	display: flex;
}

.lightbox-content {
	max-width: 90vw;
	max-height: 85vh;
}

.lightbox-content img,
.lightbox-content video {
	max-width: 90vw;
	max-height: 85vh;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}

.lightbox-close {
	position: fixed;
	top: 1.5rem;
	right: 1.5rem;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.25s;
}

.lightbox-close:hover {
	background: var(--sand);
	color: var(--navy);
}

@media (max-width: 600px) {
	.lightbox-backdrop {
		padding: 1rem;
	}
	.lightbox-content img,
	.lightbox-content video {
		max-width: 95vw;
		max-height: 80vh;
	}
}
