:root {
	--color-text: #25211d;
	--color-muted: #6f675d;
	--color-background: #fffaf3;
	--color-surface: #f6ecdf;
	--color-surface-strong: #ead7c1;
	--color-accent: #126f63;
	--color-accent-dark: #0a4f47;
	--color-festive: #b55f37;
	--color-gold: #c9963c;
	--color-border: rgba(55, 45, 34, 0.14);
	--shadow-soft: 0 1.25rem 3rem rgba(55, 45, 34, 0.12);
	--shadow-card: 0 0.75rem 1.75rem rgba(55, 45, 34, 0.1);
	--container-width: 1120px;
	--anchor-offset: 5.75rem;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--anchor-offset);
}

body {
	margin: 0;
	background:
		linear-gradient(180deg, #fffdf8 0, var(--color-background) 22rem),
		var(--color-background);
	color: var(--color-text);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body.is-navigation-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible {
	outline: 3px solid rgba(18, 111, 99, 0.32);
	outline-offset: 4px;
}

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

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--color-background);
	color: var(--color-text);
	box-shadow: var(--shadow-card);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 250, 243, 0.62);
	border-bottom: 1px solid rgba(55, 45, 34, 0.08);
	backdrop-filter: blur(14px);
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header__inner {
	position: relative;
}

body.is-scrolled .site-header,
body.is-navigation-open .site-header {
	background: rgba(255, 250, 243, 0.96);
	border-bottom-color: var(--color-border);
	box-shadow: 0 0.4rem 1.2rem rgba(55, 45, 34, 0.08);
}

.site-header__inner,
.site-footer__inner,
.site-footer__bottom,
.section__inner {
	width: min(100% - 2rem, var(--container-width));
	margin-inline: auto;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	gap: 0.75rem;
	padding: 0.65rem 0;
}

.site-title {
	display: inline-flex;
	align-items: center;
	min-height: 2.35rem;
	color: var(--color-accent-dark);
	font-size: 1.12rem;
	font-weight: 800;
	text-decoration: none;
}

.custom-logo-link img {
	max-height: 3rem;
	width: auto;
}

.icon {
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	fill: currentColor;
	flex: 0 0 auto;
}

.site-navigation-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 1px solid rgba(18, 111, 99, 0.18);
	border-radius: 999px;
	background: rgba(255, 250, 243, 0.82);
	color: var(--color-accent-dark);
	box-shadow: 0 0.35rem 1rem rgba(55, 45, 34, 0.08);
	cursor: pointer;
}

.site-navigation {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 1rem;
	left: 1rem;
	display: none;
	padding: 0.75rem;
	border: 1px solid var(--color-border);
	border-radius: 1rem;
	background: rgba(255, 250, 243, 0.98);
	box-shadow: var(--shadow-card);
}

.is-navigation-open .site-navigation {
	display: block;
}

.site-navigation__menu,
.site-footer__menu,
.site-footer__legal-menu,
.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation__menu {
	flex-direction: column;
	gap: 0.2rem;
}

.site-navigation__menu a,
.site-footer__menu a,
.site-footer__legal-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 2.1rem;
	color: var(--color-muted);
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
}

.site-navigation__menu a:hover,
.site-footer__menu a:hover,
.site-footer__legal-menu a:hover {
	color: var(--color-accent-dark);
}

.section {
	position: relative;
	padding: 4rem 0;
	scroll-margin-top: var(--anchor-offset);
}

.section [id],
#contenido {
	scroll-margin-top: var(--anchor-offset);
}

.section:nth-child(even) {
	background:
		linear-gradient(180deg, rgba(234, 215, 193, 0.4), rgba(246, 236, 223, 0.72)),
		var(--color-surface);
}

.section--hero {
	padding-top: 2rem;
	padding-bottom: 4.5rem;
	background:
		linear-gradient(135deg, rgba(18, 111, 99, 0.1), rgba(181, 95, 55, 0.08)),
		linear-gradient(180deg, #fffdf8, var(--color-background));
}

.section--hero-has-image .section__media {
	order: -1;
}

.section--cta {
	display: grid;
	min-height: 18rem;
	align-items: center;
	text-align: center;
	background:
		linear-gradient(135deg, rgba(18, 111, 99, 0.94), rgba(10, 79, 71, 0.98)),
		var(--color-accent-dark);
	color: #fffaf3;
}

.section--cta .section__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100% - 2rem, 72rem);
}

.section--cta .section__title {
	width: auto;
	max-width: none;
	margin: 0;
	font-size: 2.35rem;
	font-weight: 500;
	line-height: 1.04;
}

.section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0 0 0.75rem;
	color: var(--color-festive);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section__eyebrow::before {
	width: 1.75rem;
	height: 2px;
	background: currentColor;
	content: "";
}

.section__title {
	max-width: 13ch;
	margin: 0 0 1rem;
	font-size: 2.2rem;
	line-height: 1.06;
}

.section--hero .section__title {
	max-width: 12ch;
	font-size: 2.35rem;
}

.section__text {
	max-width: 42rem;
	margin: 0;
	color: var(--color-muted);
	font-size: 1.04rem;
}

.section--hero .section__text {
	max-width: 38rem;
	font-size: 1.12rem;
}

.section__text > * {
	margin-top: 0;
}

.section__text > *:last-child {
	margin-bottom: 0;
}

.section__inner--split {
	display: grid;
	gap: 2.25rem;
	align-items: center;
}

.section__content {
	min-width: 0;
}

.section__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.6rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.82rem 1.15rem;
	border: 1px solid var(--color-accent);
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button--primary {
	background: var(--color-accent);
	color: #ffffff;
	box-shadow: 0 0.7rem 1.4rem rgba(18, 111, 99, 0.22);
}

.button--primary:hover {
	background: var(--color-accent-dark);
}

.button--secondary {
	background: rgba(255, 250, 243, 0.7);
	color: var(--color-accent-dark);
}

.section--cta .button--secondary {
	border-color: rgba(255, 250, 243, 0.45);
	background: transparent;
	color: #fffaf3;
}

.section__media {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.68);
	border-radius: 1rem;
	background: var(--color-surface-strong);
	box-shadow: var(--shadow-soft);
}

.section__media--owner {
	width: min(100%, 18rem);
	margin-inline: auto;
	border-radius: 999px;
}

.section__image,
.section__image-placeholder,
.gallery-grid__image,
.gallery-grid__placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.section__media--hero .section__image,
.section__media--hero .section__image-placeholder {
	aspect-ratio: 5 / 4;
}

.section__media--owner .section__image,
.section__media--owner .section__image-placeholder {
	aspect-ratio: 1 / 1;
	border-radius: inherit;
}

.section--quienes-somos .section__inner--split {
	gap: 1.5rem;
}

.section__image-placeholder,
.gallery-grid__placeholder {
	display: flex;
	align-items: flex-end;
	min-height: 14rem;
	padding: 1.25rem;
	background:
		linear-gradient(135deg, rgba(18, 111, 99, 0.9), rgba(181, 95, 55, 0.74)),
		linear-gradient(45deg, #ead7c1, #fffaf3);
	color: #ffffff;
	font-weight: 800;
}

.section__image-placeholder span,
.gallery-grid__placeholder span {
	max-width: 12rem;
	font-size: 1.35rem;
	line-height: 1.1;
}

.gallery-grid {
	display: grid;
	gap: 1rem;
	margin-top: 1.75rem;
}

.gallery-grid__item {
	overflow: hidden;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 1rem;
	background: var(--color-surface);
	box-shadow: var(--shadow-card);
}

.gallery-grid__image,
.gallery-grid__placeholder {
	transition: transform 220ms ease;
}

.gallery-grid__item:hover .gallery-grid__image,
.gallery-grid__item:hover .gallery-grid__placeholder {
	transform: scale(1.025);
}

.faq-list {
	display: grid;
	gap: 1rem;
	margin-top: 1.75rem;
}

.faq-list__item {
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: 1rem;
	background: rgba(255, 250, 243, 0.86);
	box-shadow: 0 0.35rem 1rem rgba(55, 45, 34, 0.06);
}

.faq-list__question {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 3.25rem;
	margin: 0;
	padding: 0.9rem 3rem 0.9rem 1rem;
	color: var(--color-accent-dark);
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.3;
	cursor: pointer;
	list-style: none;
}

.faq-list__question::-webkit-details-marker {
	display: none;
}

.faq-list__question::after {
	position: absolute;
	top: 50%;
	right: 1rem;
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 999px;
	background: rgba(18, 111, 99, 0.1);
	color: var(--color-accent-dark);
	content: "+";
	display: grid;
	place-items: center;
	font-size: 1.1rem;
	line-height: 1;
	transform: translateY(-50%);
}

.faq-list__item[open] .faq-list__question::after {
	content: "-";
}

.faq-list__answer,
.contact-list {
	color: var(--color-muted);
}

.faq-list__answer > * {
	margin-top: 0;
}

.faq-list__answer {
	padding: 0 1rem 1rem;
}

.faq-list__answer > *:last-child {
	margin-bottom: 0;
}

.contact-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin: 1.75rem 0 0;
	padding: 0;
	list-style: none;
}

.contact-list li {
	min-width: 0;
}

.contact-card {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	width: 3.35rem;
	min-height: 3.35rem;
	padding: 0.82rem;
	border: 1px solid var(--color-border);
	border-radius: 1rem;
	background: rgba(255, 250, 243, 0.82);
	color: var(--color-accent-dark);
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 0.35rem 1rem rgba(55, 45, 34, 0.06);
}

.contact-card:hover {
	border-color: rgba(18, 111, 99, 0.32);
	background: #fffaf3;
}

.contact-card .icon {
	width: 1.35rem;
	height: 1.35rem;
}

.availability-placeholder {
	display: grid;
	gap: 1.5rem;
	padding: 1.25rem;
	border: 1px solid rgba(18, 111, 99, 0.14);
	border-radius: 1.25rem;
	background:
		linear-gradient(135deg, rgba(255, 250, 243, 0.92), rgba(234, 215, 193, 0.7)),
		var(--color-surface);
	box-shadow: var(--shadow-card);
}

.availability-placeholder__panel {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.55rem;
	align-self: center;
	min-height: 10rem;
	padding: 1rem;
	border-radius: 1rem;
	background: #fffaf3;
	box-shadow: inset 0 0 0 1px var(--color-border);
}

.availability-placeholder__panel span {
	border-radius: 0.65rem;
	background: linear-gradient(135deg, rgba(18, 111, 99, 0.16), rgba(201, 150, 60, 0.18));
}

.availability-placeholder__panel span:nth-child(2),
.availability-placeholder__panel span:nth-child(5) {
	background: linear-gradient(135deg, rgba(181, 95, 55, 0.2), rgba(18, 111, 99, 0.12));
}

.social-links {
	gap: 0.5rem;
}

.social-links__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	width: 2.65rem;
	min-height: 2.65rem;
	padding: 0.48rem;
	border: 1px solid rgba(18, 111, 99, 0.18);
	border-radius: 999px;
	background: rgba(255, 250, 243, 0.72);
	color: var(--color-accent-dark);
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
}

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

.social-links__link:hover {
	border-color: rgba(18, 111, 99, 0.36);
	background: #fffaf3;
}

.site-footer {
	background:
		linear-gradient(180deg, rgba(234, 215, 193, 0.7), rgba(246, 236, 223, 0.96)),
		var(--color-surface);
	border-top: 1px solid var(--color-border);
}

.site-footer__inner {
	display: grid;
	gap: 2rem;
	padding: 3rem 0 2rem;
}

.site-footer__column p {
	max-width: 22rem;
	margin: 0;
	color: var(--color-muted);
}

.site-footer__title {
	margin: 0 0 0.75rem;
	color: var(--color-accent-dark);
	font-size: 1rem;
	text-transform: uppercase;
}

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1rem 0 2rem;
	border-top: 1px solid var(--color-border);
	color: var(--color-muted);
	font-size: 0.875rem;
}

.site-footer__bottom p {
	margin: 0;
}

.whatsapp-button {
	position: fixed;
	right: 1rem;
	bottom: 1.1rem;
	z-index: 20;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border-radius: 999px;
	background: var(--color-accent);
	color: #ffffff;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 0.65rem 1.6rem rgba(10, 79, 71, 0.22);
	transition: transform 160ms ease, opacity 160ms ease;
}

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

.whatsapp-button .icon {
	width: 1.35rem;
	height: 1.35rem;
}

.whatsapp-button:hover {
	transform: translateY(-1px);
}

.back-to-top {
	position: fixed;
	right: 1rem;
	bottom: 4.55rem;
	z-index: 20;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.55rem;
	height: 2.55rem;
	border: 1px solid rgba(18, 111, 99, 0.2);
	border-radius: 999px;
	background: rgba(255, 250, 243, 0.94);
	color: var(--color-accent-dark);
	text-decoration: none;
	box-shadow: 0 0.5rem 1.25rem rgba(55, 45, 34, 0.12);
	opacity: 0;
	pointer-events: none;
	transform: translateY(0.35rem);
	transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

@media (min-width: 640px) {
	.contact-list {
		display: flex;
	}
}

@media (min-width: 768px) {
	.site-header__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.section {
		padding: 5.25rem 0;
	}

	.section--hero {
		padding-top: 4rem;
		padding-bottom: 5.5rem;
	}

	.section__title {
		font-size: 2.85rem;
	}

	.section--hero .section__title {
		font-size: 4rem;
	}

	.section--cta {
		min-height: 22rem;
	}

	.section--cta .section__title {
		width: max-content;
		max-width: 100%;
		font-size: clamp(2.6rem, 5vw, 3.45rem);
		white-space: nowrap;
	}

	.section--hero-has-image .section__media {
		order: initial;
	}

	.section__inner--split {
		grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.82fr);
	}

	.section__media--owner {
		width: min(100%, 25rem);
	}

	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.gallery-grid__item:nth-child(2) {
		transform: translateY(1rem);
	}

	.availability-placeholder {
		grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.5fr);
		align-items: center;
		padding: 1.75rem;
	}

	.site-footer__inner {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr) minmax(0, 1fr);
	}

	.site-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.social-links__link {
		width: auto;
		min-height: 2.4rem;
		padding: 0.48rem 0.78rem;
	}

	.whatsapp-button span {
		position: static;
		width: auto;
		height: auto;
		padding: 0;
		margin: 0;
		overflow: visible;
		clip: auto;
		white-space: normal;
	}

	.whatsapp-button {
		width: auto;
		min-width: 3rem;
		padding: 0 0.95rem;
		gap: 0.45rem;
	}
}

@media (min-width: 1040px) {
	.site-header__inner,
	.site-footer__inner,
	.site-footer__bottom,
	.section__inner {
		width: min(100% - 3rem, var(--container-width));
	}

	.section--hero .section__inner--split {
		grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
	}
}

@media (min-width: 1180px) {
	.site-navigation-toggle {
		display: none;
	}

	.site-navigation {
		position: static;
		display: block;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.site-navigation__menu {
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 0.35rem 0.55rem;
		align-items: center;
		white-space: nowrap;
	}

	.site-navigation__menu a {
		min-height: 1.9rem;
		font-size: 0.82rem;
	}
}
