:root {
	--color-primary: #ae0011;
	--color-primary-2: #d71920;
	--header-accent: #1f4b3a;
	--header-accent-strong: #17382c;
	--header-border-muted: rgba(31, 75, 58, 0.14);
	--header-bg: #fbfae8;
	--header-h: 68px;
	--header-panel-bg: #253d1e;
	--header-panel-active: #c9a84c;
	--color-text: #191c1d;
	--color-text-soft: #5d3f3c;
	--color-bg: #fafbe4;
	--color-bg-soft: #f4f3d8;
	--color-bg-alt: #ecebcb;
	--color-white: #ffffff;
	--color-border: #e6bdb8;
	--shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
	--shadow-card: 0 16px 40px rgba(0, 0, 0, 0.12);
	--radius-sm: 12px;
	--radius-md: 18px;
	--radius-lg: 24px;
	--radius-xl: 32px;
	--container: 1200px;
	--font-body: "Work Sans", sans-serif;
	--font-heading: "Libre Caslon Text", serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 104px;
	background: var(--color-bg);
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.5;
	padding-bottom: 0;
}

.brx-body,
#brx-content {
	font-family: var(--font-body);
}

#brx-content {
	background: var(--color-bg);
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 3px;
	border-radius: 10px;
}

.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 {
	clip: auto;
	width: auto;
	height: auto;
	margin: 0;
	padding: 12px 16px;
	overflow: visible;
	background: #fff;
	color: var(--color-text);
	border-radius: 10px;
	box-shadow: var(--shadow-soft);
	z-index: 1000;
}

button,
input,
select,
textarea {
	font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brxe-heading {
	font-family: var(--font-heading);
}

.container {
	width: min(100% - 32px, var(--container));
	margin-inline: auto;
}

.section {
	padding: 64px 0;
}

.section-soft {
	background: var(--color-bg-soft);
}

.section-alt {
	background: var(--color-bg-alt);
}

.section-title {
	margin: 0 0 32px;
	font-family: var(--font-heading);
	font-size: 32px;
	line-height: 1.05;
	letter-spacing: 0;
	font-weight: 700;
}

.section-title--center {
	text-align: center;
}

.section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 32px;
}

.eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--color-primary);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	border-radius: 14px;
	font-weight: 700;
	transition: 0.2s ease;
}

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

.btn-primary {
	background: var(--color-primary-2);
	color: #fff;
}

.btn-secondary {
	background: #fff;
	color: var(--color-text);
	box-shadow: var(--shadow-soft);
}

.btn-light {
	background: #fff;
	color: var(--color-primary);
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(8px);
}

.btn-large {
	width: 100%;
	padding: 16px 24px;
	font-size: 18px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--color-primary);
	font-weight: 700;
}

.text-link--light {
	color: #fff;
}

.icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 0;
	font-size: 24px;
}

.icon svg {
	width: 1em;
	height: 1em;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.btn .icon,
.text-link .icon {
	font-size: 1.05em;
}

.site-header {
	position: relative;
	z-index: 120;
}

.site-header__desktop-shell {
	display: none;
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 120;
	background: var(--header-bg);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.site-header__mobile-shell {
	display: block;
	position: fixed;
	inset: 0 0 auto 0;
	width: 100vw;
	z-index: 120;
	background: var(--header-bg);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.site-header__mobile-bar {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 54px;
	align-items: center;
	gap: 8px;
	width: min(100vw, var(--container));
	margin-inline: auto;
	padding: 12px;
	box-sizing: border-box;
}

.site-header__brand {
	min-width: 0;
	flex: 1;
	display: flex;
	justify-content: center;
}

.site-header__mobile-cta {
	width: 54px;
	height: 40px;
	box-sizing: border-box;
	flex-direction: column;
	gap: 1px;
	font-size: 7px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0 3px;
	border-radius: 2px;
	white-space: normal;
	background: #303f1d;
	border-color: #303f1d;
	color: #fff;
	line-height: 1.3;
	text-align: center;
}

.site-header__mobile-cta span {
	display: block;
	line-height: 1.05;
}

.site-header__mobile-spacer {
	display: block;
	width: 44px;
	height: 44px;
}

.site-header--no-cta .site-header__mobile-bar {
	grid-template-columns: 44px minmax(0, 1fr) 44px;
}

.site-header__mobile-cta:hover {
	background: var(--header-accent);
	border-color: var(--header-accent);
	color: #fff;
}

.site-header__hamburger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: none;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	color: var(--header-accent);
	flex-shrink: 0;
}

.site-header__hamburger:hover {
	background: rgba(31, 75, 58, 0.08);
}

.site-header__hamburger .icon svg {
	width: 24px;
	height: 24px;
}

.site-header__mobile-panel {
	border-top: none;
	background: var(--header-panel-bg);
}

.site-header__mobile-panel-inner {
	width: min(100% - 32px, var(--container));
	margin-inline: auto;
	padding: 8px 0 16px;
}

.site-header__mobile-nav-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-header__mobile-nav-item + .site-header__mobile-nav-item {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__mobile-nav-link {
	display: block;
	padding: 16px 8px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	color: rgba(255, 255, 255, 0.9);
	transition: color 0.15s ease;
}

.site-header__mobile-nav-link:hover,
.site-header__mobile-nav-link.is-current {
	color: var(--header-panel-active);
}

.site-header__mobile-nav-cta {
	padding: 16px 8px 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__mobile-nav-cta .btn {
	width: 100%;
	justify-content: center;
}

.site-header__nav {
	width: min(100% - 32px, var(--container));
	margin-inline: auto;
	padding: 16px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.site-header__brand {
	align-items: center;
	gap: 12px;
}

.site-header__desktop-nav,
.site-header__call {
	display: none;
}

.lang-switcher {
	position: relative;
}

.lang-switcher__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 8px;
	background: none;
	border: 1px solid rgba(31, 75, 58, 0.22);
	border-radius: 6px;
	cursor: pointer;
	color: var(--header-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
	white-space: nowrap;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.lang-switcher__btn:hover {
	background: rgba(31, 75, 58, 0.06);
	border-color: rgba(31, 75, 58, 0.4);
}

.lang-switcher__flag {
	display: block;
	width: 20px;
	height: 14px;
	object-fit: cover;
	border-radius: 2px;
	flex-shrink: 0;
}

.lang-switcher__chevron {
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.lang-switcher__btn[aria-expanded="true"] .lang-switcher__chevron {
	transform: rotate(180deg);
}

.lang-switcher__dropdown {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	z-index: 200;
	min-width: 96px;
	margin: 0;
	padding: 4px;
	list-style: none;
	background: #fff;
	border: 1px solid rgba(31, 75, 58, 0.14);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lang-switcher__option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 5px;
	color: var(--color-text, #222);
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	transition: background 0.12s ease;
}

.lang-switcher__option:hover {
	background: rgba(31, 75, 58, 0.06);
}

.lang-switcher__option.is-active {
	color: var(--header-accent);
	background: rgba(31, 75, 58, 0.06);
}

.site-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.site-header__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 108px;
	height: 44px;
	color: var(--header-accent);
	text-decoration: none;
}

.site-header__logo-mark {
	display: block;
	width: 100%;
	aspect-ratio: 235.89 / 95.42;
	background: currentColor;
	-webkit-mask: url("../svg/funicular-logo.svg") center / contain no-repeat;
	-webkit-mask-mode: alpha;
	mask: url("../svg/funicular-logo.svg") center / contain no-repeat;
	mask-mode: alpha;
}

/* Desktop header CTA — dark green */
.site-header__desktop-shell .btn-primary {
	background: var(--header-accent-strong);
	border-color: var(--header-accent-strong);
	border-radius: 2px;
	padding: 10px 14px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.1;
	text-transform: uppercase;
}

/* Mobile panel CTA — amber para contraste sobre fondo oscuro */
.site-header__mobile-panel .btn-primary {
	background: var(--header-panel-active);
	border-color: var(--header-panel-active);
	color: #1a2e12;
}

.site-header__mobile-panel .btn-primary:hover {
	background: #b8934a;
	border-color: #b8934a;
}

/* ── Home Hero ─────────────────────────────────────────────────────── */

.funicular-home-hero {
	position: relative;
	padding-bottom: 32px;
	background: #fafbe4;
}

.funicular-home-hero__media {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-top: var(--header-h, 68px);
}

.funicular-home-hero__img {
	display: block;
	width: 100%;
	height: 100svh;
	min-height: 720px;
	max-height: none;
	object-fit: cover;
	object-position: center center;
}

/* Status badge — top of image, left side */
.hero-badge {
	position: absolute;
	top: calc(var(--header-h, 68px) + 16px);
	left: 16px;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hero-badge--open {
	background: #2e3d1b;
	color: #fff;
}

.hero-badge--closed {
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
}

.hero-badge__dot {
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4ade80;
	flex-shrink: 0;
}

.fs-hero-status {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	gap: 0;
	border-radius: 0 0 2px 2px;
}

.fs-hero-status .hero-badge__dot {
	display: none;
}

.fs-hero-tripadvisor-badge {
	position: absolute;
	left: 50%;
	top: 68px;
	z-index: 9;
	display: block;
	width: 56px;
	height: auto;
	transform: translateX(-50%);
	filter: drop-shadow(0 2px 8px rgba(0,0,0,0.28));
}

.fs-hero-anniversary {
	position: absolute;
	left: 50%;
	bottom: 212px;
	z-index: 9;
	display: grid;
	width: max-content;
	transform: translateX(-50%);
	color: #fff;
	font-family: var(--font-heading);
	font-size: 44px;
	font-weight: 400;
	line-height: 0.98;
	letter-spacing: 0;
	text-align: center;
	text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.fs-hero-anniversary span {
	display: block;
}

/* CTA overlay — centered at bottom of image */
.funicular-home-hero__cta-wrap {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	width: max-content;
}

.fs-hero-media .funicular-home-hero__cta-wrap {
	bottom: 132px;
}

.funicular-home-hero__cta {
	background: #2e3d1b;
	border: 1px solid #fff;
	color: #bf8844;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 800;
	padding: 10px 18px;
	border-radius: 4px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.funicular-home-hero__cta:hover {
	background: #1f4b3a;
	border-color: #fff;
	color: #bf8844;
}

/* Horarios y Ubicación section */
.funicular-home-hero__info {
	background: #ecebcb;
	padding: 24px 20px 28px;
	text-align: center;
}

.fs-hero-info {
	position: relative;
	z-index: 12;
	width: min(calc(100% - 48px), 300px);
	margin: -54px auto 0;
	padding: 18px 16px 20px;
}

.funicular-home-hero__info-heading {
	font-family: var(--font-heading);
	font-size: 19px;
	font-weight: 700;
	color: #1a2e12;
	margin: 0 0 18px;
	line-height: 1.05;
	letter-spacing: 0;
}

.funicular-home-hero__info-rows {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 22px;
	width: 100%;
}

.funicular-home-hero__info-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 8px;
	row-gap: 3px;
	width: max-content;
	max-width: 100%;
	margin-inline: auto;
}

.funicular-home-hero__info-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 0;
	color: #2e3d1b;
}

.funicular-home-hero__info-content {
	display: contents;
}

.funicular-home-hero__info-pill {
	display: inline-block;
	background: transparent;
	color: #bf8844;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0;
	border-radius: 0;
	line-height: 1.1;
}

.funicular-home-hero__info-val {
	flex-basis: 100%;
	font-size: 16px;
	font-weight: 700;
	color: #1a2e12;
	line-height: 1.2;
	text-align: center;
}

.funicular-home-hero__maps-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #2e3d1b;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 11px 24px;
	border-radius: 4px;
	text-decoration: none;
	width: 100%;
	box-sizing: border-box;
}

.funicular-home-hero__maps-btn:hover {
	background: #1f4b3a;
	color: #fff;
}

@media (min-width: 768px) {
	/* Hero section: relative so info overlay works; no bottom padding */
	.funicular-home-hero {
		position: relative;
		padding-bottom: 0;
	}

	/* Cinematic banner height for desktop */
	.funicular-home-hero__img {
		height: 640px;
		max-height: none;
		object-position: center 30%;
	}

	/* 1. Hoy Abierto: same as mobile — centered top strip, no dot */
	.fs-hero-status {
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		gap: 0;
		border-radius: 0 0 2px 2px;
	}

	.fs-hero-status .hero-badge__dot {
		display: none;
	}

	/* Keep tripadvisor badge hidden on desktop */
	.fs-hero-tripadvisor-badge {
		display: none;
	}

	/* 3. Show 101 años on desktop, above CTA */
	.fs-hero-anniversary {
		display: block;
		bottom: 370px;
		font-size: 52px;
	}

	.fs-hero-anniversary span:first-child {
		display: block;
	}

	.fs-hero-anniversary span:nth-child(2),
	.fs-hero-anniversary span:nth-child(3) {
		display: inline;
	}

	.fs-hero-anniversary span:nth-child(3)::before {
		content: " ";
	}

	/* CTA above info overlay */
	.fs-hero-media .funicular-home-hero__cta-wrap {
		bottom: 248px;
	}

	/* 4. Info overlay on banner — limited width card, like mobile */
	.funicular-home-hero__info.fs-hero-info {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: calc(100% - 64px);
		max-width: 480px;
		margin: 0;
		padding: 24px 28px 28px;
		border-radius: 12px 12px 0 0;
		text-align: left;
	}

	.funicular-home-hero__info-heading {
		font-family: var(--font-heading);
		font-size: 19px;
		line-height: 1.3;
	}

	/* Keep rows stacked like mobile */
	.funicular-home-hero__info-rows {
		flex-direction: column;
		gap: 12px;
	}

	/* Pill: same as mobile — no background */
	.funicular-home-hero__info-pill {
		background: transparent;
		color: inherit;
		padding: 0;
		border-radius: 0;
	}

	.funicular-home-hero__maps-btn {
		width: auto;
		padding: 11px 32px;
	}
}

/* ── /Home Hero ─────────────────────────────────────────────────────── */

/* Home content */

.fs-home-content,
.fs-home-gallery,
.fs-home-faq {
	--fs-home-bg: #fafbe4;
	--fs-home-band: #ecebcb;
	--fs-home-ink: #3c4a21;
	--fs-home-accent: #2e3d1b;
	--fs-home-gold: #bf8844;
	background: var(--fs-home-bg);
	color: var(--fs-home-ink);
}

.fs-home-shell {
	width: min(100% - 32px, 1120px);
	margin-inline: auto;
}

.fs-home-title,
.fs-home-faq .section-title {
	margin: 0 0 20px;
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: 0;
	text-align: center;
	color: var(--fs-home-ink);
}

.fs-home-section--hidden {
	display: none;
}

.fs-home-intro {
	background: var(--fs-home-bg);
	padding: 56px 0 44px;
	text-align: center;
}

.fs-home-intro__inner {
	max-width: 540px;
}

.fs-home-intro h2 {
	margin: 0 0 24px;
	font-family: var(--font-heading);
	font-size: 31px;
	line-height: 1.02;
	color: var(--fs-home-ink);
}

.fs-home-intro p {
	margin: 0 auto 12px;
	max-width: 36ch;
	font-size: 14px;
	line-height: 1.35;
	color: #37451e;
}

.fs-home-video {
	width: min(100%, 560px);
	margin: 28px auto 0;
	aspect-ratio: 16 / 9;
	background: #111;
	overflow: hidden;
}

.fs-home-video__frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.fs-home-band {
	background: var(--fs-home-band);
}

.fs-home-attractions {
	background: var(--fs-home-band);
}

.fs-home-tripadvisor {
	background: var(--fs-home-bg);
}

.fs-home-blog {
	background: var(--fs-home-band);
}

.fs-home-social,
.fs-home-gallery,
.fs-home-faq {
	background: var(--fs-home-bg);
}

.fs-home-attractions,
.fs-home-blog,
.fs-home-social,
.fs-home-gallery,
.fs-home-tripadvisor,
.fs-home-faq {
	padding: 42px 0;
}

.fs-home-card-rail {
	display: grid;
	grid-auto-columns: minmax(160px, 46vw);
	grid-auto-flow: column;
	gap: 16px;
	margin-inline: -16px;
	padding: 0 16px 14px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
}

.fs-home-card-rail::-webkit-scrollbar {
	display: none;
}


.fs-home-attraction-card {
	min-width: 0;
	background: #fffdf2;
	scroll-snap-align: start;
}

.fs-home-attraction-card__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.fs-home-attraction-card__body {
	padding: 12px 12px 14px;
}

.fs-home-attraction-card h3,
.fs-home-blog-card h3 {
	margin: 0 0 6px;
	font-family: var(--font-heading);
	font-size: 15px;
	line-height: 1.12;
	color: var(--fs-home-ink);
}

.fs-home-attraction-card p,
.fs-home-blog-card p,
.fs-home-review p {
	margin: 0;
	font-size: 11px;
	line-height: 1.35;
	color: #47522e;
}

.fs-home-mini-btn,
.fs-home-link-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 26px;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.fs-home-mini-btn {
	padding: 8px 16px;
	background: var(--fs-home-accent);
	color: #fff;
}

.fs-home-link-btn {
	padding: 4px 0;
	background: transparent;
	color: var(--fs-home-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1.5px;
}

.fs-home-mini-btn {
	width: 100%;
	margin-top: 12px;
}

.fs-home-attractions .fs-home-link-btn,
.fs-home-blog .fs-home-link-btn,
.fs-home-social .fs-home-link-btn {
	display: flex;
	width: max-content;
	margin: 18px auto 0;
}

.fs-home-tripadvisor {
	text-align: center;
}

.fs-home-tripadvisor .fs-home-title span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

.fs-home-stars {
	font-family: var(--font-body);
	font-size: 13px;
	letter-spacing: 0.12em;
	color: #c18637;
}

.fs-home-review {
	position: relative;
	max-width: 320px;
	min-height: 170px;
	margin: 0 auto;
	padding: 30px 26px 24px;
	background: #f3efd9;
	border-radius: 6px;
	text-align: left;
}

.fs-home-review__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	color: #c18637;
	font-size: 11px;
	letter-spacing: 0.12em;
}

.fs-home-review__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #009f8f;
}

.fs-home-review a {
	display: inline-block;
	margin-top: 18px;
	color: #8b865f;
	font-size: 11px;
	font-weight: 700;
}

.fs-home-reviewer {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 270px;
	margin: 18px auto 0;
	text-align: left;
}

.fs-home-reviewer__avatar {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: linear-gradient(135deg, #cfa481, #704b37);
	flex: 0 0 auto;
}

.fs-home-reviewer strong,
.fs-home-reviewer span {
	display: block;
	font-size: 11px;
	line-height: 1.25;
}

.fs-home-reviewer span {
	color: #7b8060;
}

.fs-home-blog-list {
	display: grid;
	gap: 22px;
	max-width: 340px;
	margin-inline: auto;
}

.fs-home-blog-card {
	background: #fffbea;
	padding: 14px;
}

.fs-home-blog-card__media {
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #fff6aa, #ffd0df 48%, #b9ecff);
}

.fs-home-blog-card__media span {
	width: 34px;
	height: 26px;
	border: 3px solid rgba(255,255,255,0.86);
	position: relative;
}

.fs-home-blog-card__media span::before {
	content: "";
	position: absolute;
	right: 4px;
	top: 4px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255,255,255,0.86);
}

.fs-home-blog-card__body {
	padding-top: 12px;
}

.fs-home-blog-card__body > span {
	display: block;
	margin-bottom: 2px;
	color: #c9a85b;
	font-size: 10px;
	font-weight: 700;
}

.fs-home-social {
	text-align: center;
}

.fs-home-handle {
	margin: -22px 0 18px;
	color: #c18637;
	font-size: 12px;
	font-weight: 700;
}

.fs-home-social-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	max-width: 340px;
	margin-inline: auto;
}

.fs-home-social-card {
	position: relative;
	overflow: hidden;
	background: #ecebcb;
	aspect-ratio: 3 / 4;
}

.fs-home-social-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fs-home-social-card__play-link {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.15);
	transition: background 0.2s;
}

.fs-home-social-card__play-link:hover {
	background: rgba(0, 0, 0, 0.28);
}

.fs-home-social-card__play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.62);
	border: 2px solid rgba(255, 255, 255, 0.85);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
	flex-shrink: 0;
	pointer-events: none;
}

.fs-home-social-card__play::after {
	content: '';
	margin-left: 4px;
	border-style: solid;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent #fff;
}

.fs-home-gallery {
	padding-bottom: 56px;
}

.fs-home-gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	max-width: 360px;
	margin-inline: auto;
}

.fs-home-gallery-grid a {
	display: block;
	min-height: 0;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.fs-home-gallery-grid a.fs-home-gallery__wide {
	grid-column: 1 / -1;
	aspect-ratio: 4 / 3;
}

.fs-home-gallery-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #ecebcb;
	display: block;
	transition: transform 0.3s ease;
}

.fs-home-gallery-grid a:hover img {
	transform: scale(1.04);
}

/* GLightbox dot navigator */
.glightbox-dots {
	position: fixed;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999999;
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 8px 14px;
	background: rgba(0, 0, 0, 0.35);
	border-radius: 100px;
	backdrop-filter: blur(6px);
}

.glightbox-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	flex-shrink: 0;
}

.glightbox-dot.active {
	background: #fff;
	transform: scale(1.4);
}

.glightbox-dot:hover:not(.active) {
	background: rgba(255, 255, 255, 0.75);
}

.fs-home-faq {
	padding-top: 42px;
	padding-bottom: 34px;
}

.fs-home-faq .container {
	width: min(100% - 32px, 540px);
}

.fs-home-faq .section-head {
	display: block;
	margin-bottom: 22px;
	text-align: center;
}

.fs-home-faq .section-title {
	margin-bottom: 0;
}

.fs-home-faq .funicular-home__faq-list {
	gap: 10px;
}

.fs-home-faq .funicular-home__faq-item {
	padding: 0;
	background: #efefc9;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.fs-home-faq .funicular-home__faq-item summary {
	margin: 0;
	padding: 13px 14px;
	font-family: var(--font-heading);
	font-size: 14px;
	letter-spacing: 0;
	color: var(--fs-home-ink);
}

.fs-home-faq .funicular-home__faq-item p {
	padding: 0 14px 14px;
	font-size: 12px;
	color: #47522e;
}

@media (min-width: 768px) {
	.fs-home-title,
	.fs-home-faq .section-title {
		font-size: 34px;
	}

	.fs-home-intro {
		padding: 72px 0 56px;
	}

	.fs-home-card-rail {
		grid-auto-flow: initial;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		margin-inline: 0;
		padding: 0;
		overflow: visible;
	}

	.fs-home-blog-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		max-width: none;
	}

	.fs-home-social-grid,
	.fs-home-gallery-grid {
		max-width: 620px;
	}
}

.funicular-flow-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 120;
	background: var(--header-bg);
	border-bottom: 1px solid var(--header-border-muted);
	backdrop-filter: blur(14px);
}

.funicular-flow-header__inner {
	width: min(100% - 20px, 720px);
	min-height: 64px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	align-items: center;
	gap: 12px;
}

.funicular-flow-header__back,
.funicular-flow-header__menu-toggle,
.funicular-flow-header__spacer {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	color: var(--header-accent);
	text-decoration: none;
}

.funicular-flow-header__menu-toggle {
	background: transparent;
	border: 0;
	cursor: pointer;
}

.funicular-flow-header__brand {
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.04em;
	text-align: center;
	text-transform: uppercase;
	color: var(--header-accent);
}

.funicular-flow-header__panel {
	border-top: 1px solid var(--header-border-muted);
	background: var(--header-bg);
}

.funicular-flow-header__panel-inner {
	width: min(100% - 20px, 720px);
	margin-inline: auto;
	padding: 8px 0 14px;
}

.funicular-flow-header__menu-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.funicular-flow-header__menu-item + .funicular-flow-header__menu-item {
	border-top: 1px solid rgba(31, 75, 58, 0.08);
}

.funicular-flow-header__menu-link,
.funicular-flow-header__menu-label {
	display: block;
	padding: 14px 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.funicular-flow-header__menu-link {
	color: var(--header-accent);
}

.funicular-flow-header__menu-label {
	color: var(--color-text-soft);
}

.site-footer {
	background: #203f17;
	color: #fbfadf;
	padding: 46px 0 0;
	text-align: center;
	overflow-x: hidden;
}

.wpml-ls-statics-footer {
	display: none !important;
}

.site-footer__inner {
	width: min(100% - 32px, 520px);
	margin-inline: auto;
	display: grid;
	gap: 26px;
}

.site-footer__brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.site-footer__brand-img {
	display: block;
	width: 156px;
	height: auto;
}

.site-footer__text,
.site-footer__copy p,
.site-footer__links a {
	color: rgba(251, 250, 223, 0.82);
	font-size: 11px;
	line-height: 1.35;
}

.site-footer__text {
	max-width: 300px;
	margin: 0 auto;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
	color: #fff8cf;
}

.site-footer__info {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr);
	align-items: center;
	gap: 20px;
	max-width: 300px;
	margin-inline: auto;
	text-align: left;
}

.site-footer__seal {
	display: block;
	width: 54px;
	height: auto;
}

.site-footer__links {
	display: grid;
	grid-template-columns: repeat(2, max-content);
	gap: 6px 24px;
}

.site-footer__links a {
	font-weight: 700;
}

.site-footer__social {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding-top: 22px;
	border-top: 1px solid rgba(251, 250, 223, 0.18);
}

.site-footer__social-label {
	color: #bf8844;
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
}

.site-footer__social-icons {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
}

.site-footer__social img {
	display: block;
	width: 36px;
	height: 36px;
}

.site-footer__copy {
	width: 100%;
	margin-top: 26px;
	padding: 14px 16px;
	background: #111;
}

.site-footer__copy p {
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 10px;
}

/* Breathing room for first/last card — applies at all breakpoints via higher specificity */
.fs-home-attractions .fs-home-card-rail,
.fs-home-blog .fs-home-card-rail {
	padding-left: 16px;
	padding-right: 16px;
}

@media (max-width: 767px) {
	.fs-home-card-rail {
		margin-inline: 0;
		padding-left: 16px;
		padding-right: 16px;
	}

	.site-header__desktop-shell,
	.site-header__mobile-shell,
	.site-header__mobile-panel,
	.funicular-flow-header,
	.btn-ghost {
		backdrop-filter: none;
	}

	.site-header__desktop-shell,
	.funicular-flow-header {
		background: var(--header-bg);
	}

	.site-header__mobile-shell {
		background: var(--header-bg) !important;
	}

	.site-header__mobile-panel {
		background: var(--header-panel-bg) !important;
	}
}

@media (min-width: 768px) {
	body {
		padding-bottom: 0;
	}

	.btn-large {
		width: auto;
	}

	.site-footer {
		padding-top: 58px;
	}

	.site-footer__inner {
		width: min(100% - 64px, 760px);
	}
}

@media (min-width: 1024px) {
	:root {
		--header-h: 84px;
	}

	.section {
		padding: 88px 0;
	}

	.site-header__desktop-shell {
		display: block;
	}

	.site-header__mobile-shell {
		display: none;
	}

	.site-header__nav,
	.container {
		width: min(100% - 64px, var(--container));
	}

	.site-header__nav {
		display: grid;
		grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
		padding: 18px 0;
		gap: 24px;
	}

	.site-header__desktop-nav {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 24px;
		grid-column: 2;
	}

	.site-header__nav > .site-header__brand {
		grid-column: 1;
		justify-content: flex-start;
	}

	.site-header__actions {
		grid-column: 3;
		justify-content: flex-end;
	}

	.site-header__desktop-nav a,
	.site-header__desktop-nav .site-header__desktop-nav-label {
		color: var(--color-text-soft);
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.14em;
		text-transform: uppercase;
	}

	.site-header__desktop-nav a {
		transition: color 0.2s ease;
	}

	.site-header__desktop-nav a:hover,
	.site-header__desktop-nav a.is-current,
	.site-header__desktop-nav a:focus-visible {
		color: var(--header-accent);
	}

	.site-header__actions {
		gap: 16px;
	}

	.site-header__call {
		display: inline-flex;
		align-items: center;
		color: var(--header-accent);
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		white-space: nowrap;
	}


	.site-header__logo {
		width: 118px;
		height: 48px;
	}

	.site-footer {
		padding-top: 66px;
	}

	.site-footer__inner {
		width: min(100% - 280px, 1120px);
		grid-template-columns: 300px 1fr 300px;
		align-items: start;
		gap: 80px;
		text-align: left;
	}

	.site-footer__brand {
		justify-content: flex-start;
	}

	.site-footer__brand-img {
		width: 120px;
	}

	.site-footer__text {
		margin: 0;
	}

	.site-footer__info {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.site-footer__links {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.site-footer__social {
		align-items: flex-start;
		padding-top: 0;
		border-top: 0;
	}
}

@media (min-width: 1280px) {
	:root {
		--container: 1280px;
	}

	.section-title {
		font-size: 36px;
	}

	.site-header__nav,
	.container {
		width: min(100% - 80px, var(--container));
	}
}

@media (min-width: 1440px) {
	:root {
		--container: 1360px;
	}

	.section {
		padding: 104px 0;
	}
}

@media (min-width: 1600px) {
	:root {
		--container: 1440px;
	}
}
