:root {
	--bg: #ece8e1;
	--surface: #f8f6f1;
	--surface-2: #f2eee7;
	--line: #ddd6ca;
	--text: #2f352f;
	--text-soft: #5f665d;
	--dark: #252b23;
	--dark-2: #31392f;
	--accent: #8fa178;
	--accent-2: #a9ba8c;
	--white: #ffffff;
	--shadow: 0 16px 34px rgba(32, 36, 29, 0.18);
	--shadow-soft: 0 8px 18px rgba(37, 41, 34, 0.06);
	--radius-xl: 34px;
	--radius-lg: 24px;
	--radius-md: 22px;
	--radius-sm: 16px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family:
		Inter,
		ui-sans-serif,
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.55;
}

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

a {
	color: inherit;
}

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

.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	border: 0 !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	width: auto;
	height: auto;
	padding: 0.8rem 1rem;
	border-radius: 12px;
	background: #fff;
	z-index: 9999;
}

.shell {
	width: min(1280px, calc(100% - 48px));
	margin-inline: auto;
}

.section-gap {
	padding: 28px 0 0;
}

.section-gap-top {
	margin-top: 16px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(236, 232, 225, 0.84);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(221, 214, 202, 0.7);
}

.header-inner-v2 {
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.brand-v2 {
	text-decoration: none;
	min-width: 200px;
	display: flex;
	flex-direction: column;
}

.brand-v2-mark {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.03em;
	color: #253022;
}

.brand-v2-sub {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #6d736a;
}

.main-nav-v2 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	flex: 1;
	min-width: 0;
}

.main-nav-v2 a {
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	color: #384032;
}

.main-nav-v2 a:hover {
	color: #5f7251;
}

.header-actions-v2 {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-toggle-v2 {
	display: none;
	border: 1px solid var(--line);
	background: #fff;
	color: #273022;
	min-height: 46px;
	padding: 0 14px;
	border-radius: 999px;
	cursor: pointer;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	text-decoration: none;
	border: 1px solid transparent;
	font-size: 14px;
	font-weight: 700;
	transition:
		transform 0.18s ease,
		background-color 0.18s ease,
		color 0.18s ease,
		border-color 0.18s ease;
	cursor: pointer;
}

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

.btn-solid {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 8px 22px rgba(75, 86, 61, 0.22);
}

.btn-accent {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 8px 22px rgba(75, 86, 61, 0.22);
}

.btn-outline {
	border-color: rgba(255, 255, 255, 0.55);
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
}

.btn-outline-dark {
	border-color: #cfc8bc;
	color: #384032;
	background: #fff;
}

.link-reset {
	border: none;
	background: none;
	padding: 0;
	text-align: left;
	cursor: pointer;
	font: inherit;
}

.hero-v2 {
	position: relative;
	overflow: hidden;
	min-height: 760px;
	border-radius: 0 0 var(--radius-xl) var(--radius-xl);
	background: #2f342f;
}

.hero-v2-media,
.hero-v2-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-v2-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(25, 26, 23, 0.76) 0%,
			rgba(25, 26, 23, 0.55) 26%,
			rgba(25, 26, 23, 0.12) 56%,
			rgba(25, 26, 23, 0.1) 100%
		),
		linear-gradient(
			180deg,
			rgba(8, 8, 8, 0.25),
			rgba(8, 8, 8, 0.08) 22%,
			rgba(8, 8, 8, 0.24) 100%
		);
}

.hero-v2-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 560px) minmax(300px, 350px);
	justify-content: space-between;
	align-items: flex-start;
	gap: 28px;
	padding: 78px 0 176px;
}

.hero-v2-copy {
	max-width: 510px;
	color: #fff;
	padding-top: 32px;
}

.hero-kicker {
	margin: 0 0 18px;
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--accent-2);
}

.hero-v2-copy h1 {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 76px;
	line-height: 0.97;
	letter-spacing: -0.04em;
	color: #fff;
}

.hero-v2-text {
	max-width: 430px;
	margin: 22px 0 0;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
}

.hero-v2-address {
	max-width: 430px;
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.82);
}

.hero-v2-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.summary-card-v2 {
	justify-self: end;
	align-self: start;
	max-width: 320px;
	margin-top: 28px;
	background: rgba(255, 255, 255, 0.96);
	padding: 20px 22px;
	border-radius: 22px;
	box-shadow: 0 12px 34px rgba(16, 18, 13, 0.2);
	color: #31362f;
}

.summary-card-v2 ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 16px;
}

.summary-card-v2 strong {
	display: block;
	font-size: 18px;
	line-height: 1.2;
	color: #2e342d;
}

.summary-card-v2 span {
	display: block;
	margin-top: 4px;
	font-size: 14px;
	color: #6e7469;
	line-height: 1.4;
}

.viewer-strip {
	position: relative;
	z-index: 5;
	width: min(1440px, calc(100% - 96px));
	margin: -118px auto 0;
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 12px;
	padding: 16px;
	background: linear-gradient(
		180deg,
		rgba(69, 78, 61, 0.96),
		rgba(76, 84, 67, 0.94)
	);
	border-radius: 22px;
	box-shadow: 0 16px 34px rgba(32, 36, 29, 0.18);
	align-items: center;
}

.viewer-intro {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	color: #fff;
	padding: 2px 4px;
	min-width: 0;
}

.viewer-intro h2 {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 28px;
	line-height: 0.96;
	color: #edf0e8;
}

.viewer-intro p {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 13.5px;
	line-height: 1.38;
}

.viewer-intro .btn {
	margin-top: 10px;
	align-self: flex-start;
	min-height: 38px;
	padding: 0 16px;
	font-size: 13px;
}

.viewer-scroller {
	display: grid;
	grid-template-columns: repeat(6, minmax(130px, 1fr));
	gap: 12px;
	min-width: 0;
	overflow: hidden;
	padding: 12px 0;
	align-items: center;
	align-content: center;
}

.viewer-thumb {
	position: relative;
	display: block;
	width: 100%;
	height: 150px;
	min-height: 150px;
	text-decoration: none;
	color: #fff;
	border-radius: 16px;
	overflow: hidden;
	align-self: center;
	background: #222a22;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.viewer-thumb-btn {
	border: none;
	padding: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	text-align: left;
}

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

.viewer-thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.08) 18%,
		rgba(0, 0, 0, 0.62) 100%
	);
}

.viewer-thumb span {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	z-index: 1;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

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

.viewer-thumb:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.65);
	outline-offset: 2px;
}

body.psv-open {
	overflow: hidden;
}

.psv-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

.psv-modal.is-open {
	display: block;
}

.psv-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 12, 10, 0.82);
	backdrop-filter: blur(8px);
}

.psv-modal__dialog {
	position: relative;
	z-index: 2;
	width: min(1400px, calc(100% - 32px));
	height: min(92vh, 960px);
	margin: 4vh auto;
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 14px;
	background: #1e241e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 16px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.psv-modal__topbar {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.psv-modal__kicker {
	margin: 0 0 6px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.62);
	font-weight: 700;
}

.psv-modal__heading h2 {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 34px;
	line-height: 1.05;
	color: #fff;
}

.psv-modal__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.psv-modal__nav,
.psv-modal__close {
	min-width: 46px;
	height: 46px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
}

.psv-modal__viewer-wrap {
	min-height: 0;
	border-radius: 20px;
	overflow: hidden;
	background: #0e1410;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.psv-modal__viewer {
	width: 100%;
	height: 100%;
	min-height: 520px;
}

.psv-modal__thumbs {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.psv-modal__thumb {
	border: none;
	padding: 0;
	background: #262d26;
	border-radius: 14px;
	overflow: hidden;
	cursor: pointer;
	text-align: left;
	color: #fff;
	border: 1px solid transparent;
}

.psv-modal__thumb img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}

.psv-modal__thumb span {
	display: block;
	padding: 10px 10px 12px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

.psv-modal__thumb.is-active {
	border-color: #a9ba8c;
	box-shadow: 0 0 0 2px rgba(169, 186, 140, 0.28);
}

.cards-row-v2 {
	width: max-content;
	max-width: calc(100vw - 96px);
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 350px 340px 260px 260px;
	gap: 16px;
	align-items: stretch;
	justify-content: start;
}

.card-v2 {
	background: linear-gradient(180deg, #fbfaf6 0%, #f7f4ed 100%);
	border: 1px solid rgba(221, 214, 202, 0.95);
	border-radius: 22px;
	padding: 18px;
	box-shadow: 0 10px 24px rgba(37, 41, 34, 0.07);
	min-height: 250px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.card-v2 h2 {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 22px;
	line-height: 1.05;
	color: #243023;
}

.card-v2 p {
	margin: 8px 0 0;
	color: #667064;
	font-size: 14px;
	line-height: 1.45;
}

.card-title-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.card-title-icon {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #eef0e8;
	color: #5f7251;
}

.card-title-icon svg,
.item-icon svg {
	width: 16px;
	height: 16px;
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.gallery-card-v2 .mini-grid-v2,
.card-gallery .mini-grid-v2 {
	display: grid;
	gap: 8px;
	margin: 12px 0 12px;
}

.chip-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 15px;
	border-radius: 999px;
	border: 1px solid #b9bfad;
	text-decoration: none;
	color: #34402f;
	background: #fbfaf6;
	font-weight: 800;
	font-size: 13px;
	margin-top: auto;
	align-self: flex-start;
}

.compact-list {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	display: grid;
	gap: 9px;
}

.compact-list li {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 8px;
	align-items: center;
	font-size: 13.5px;
	color: #374237;
	line-height: 1.35;
}

.item-icon {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #eef0e8;
	color: #5f7251;
	flex: 0 0 28px;
}

.people-pill {
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	background: #eef0e8;
	color: #4d5645;
	font-weight: 800;
	font-size: 13px;
	align-self: flex-start;
}

.region-row-v2 {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 16px;
}

.region-intro-v2 {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 8px 18px rgba(37, 41, 34, 0.06);
}

.region-intro-v2 h2 {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 42px;
	line-height: 0.96;
	color: #263022;
}

.region-intro-v2 p {
	margin: 14px 0 18px;
	color: #636b61;
}

.region-scroller-v2 {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(220px, 1fr);
	gap: 14px;
	overflow: auto;
}

.region-card-v2 {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 238px;
	background: #000;
	box-shadow: 0 10px 20px rgba(33, 37, 31, 0.08);
}

.region-card-v2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.region-card-v2::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.06) 25%,
		rgba(0, 0, 0, 0.62) 100%
	);
}

.region-copy-v2 {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 1;
	color: #fff;
}

.region-copy-v2 strong {
	display: block;
	font-size: 22px;
	line-height: 1.1;
}

.region-copy-v2 span {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.86);
}

.split-panel-v2 {
	display: grid;
	grid-template-columns: 1.45fr 0.85fr;
	gap: 18px;
}

.white-card-v2 {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 8px 18px rgba(37, 41, 34, 0.06);
}

.section-tag {
	margin: 0 0 10px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #7b846e;
	font-weight: 700;
}

.section-tag.light {
	color: rgba(255, 255, 255, 0.72);
}

.white-card-v2 h2 {
	margin: 0 0 12px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 44px;
	line-height: 1;
	color: #273022;
}

.white-card-v2 p {
	margin: 0;
	color: #5f665d;
	font-size: 16px;
	line-height: 1.6;
}

.info-badges-v2 {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.info-badges-v2 span {
	background: #eceadf;
	color: #4b5445;
	border-radius: 999px;
	padding: 10px 14px;
	font-size: 14px;
	font-weight: 700;
}

.infos-pratiques-grid-v2 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 20px;
}

.infos-pratiques-grid-v2 div {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 16px;
}

.infos-pratiques-grid-v2 strong {
	display: block;
	margin-bottom: 6px;
	color: #2a3227;
}

.stay-ideas-v2 {
	display: grid;
	gap: 16px;
}

.stay-ideas-v2__intro {
	width: min(100%, 900px);
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.stay-ideas-v2__intro h2 {
	margin: 0 0 12px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(32px, 4.2vw, 48px);
	line-height: 1;
	color: #273022;
}

.stay-ideas-v2__intro p:last-child {
	margin: 0;
	color: #5f665d;
	font-size: 16px;
	line-height: 1.65;
}

.stay-ideas-v2__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.stay-idea-card-v2 {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.stay-idea-card-v2 h3 {
	margin: 0 0 12px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 26px;
	line-height: 1.06;
	color: #273022;
}

.stay-idea-card-v2 p {
	margin: 0;
}

.stay-idea-card-v2 .info-badges-v2 {
	margin-top: auto;
	padding-top: 14px;
}

.faq-list-v2 {
	display: grid;
	gap: 12px;
	margin-top: 16px;
}

.faq-list-v2 details {
	border: 1px solid var(--line);
	border-radius: 16px;
	background: #fff;
	padding: 0 16px;
}

.faq-list-v2 summary {
	cursor: pointer;
	list-style: none;
	padding: 16px 0;
	font-weight: 700;
	color: #30372f;
}

.faq-list-v2 summary::-webkit-details-marker {
	display: none;
}

.faq-list-v2 p {
	padding: 0 0 16px;
	font-size: 15px;
	color: #62685f;
}

.reservation-v2 {
	padding-bottom: 48px;
}

.cta-panel-v2 {
	background: linear-gradient(135deg, #162635, #214158);
	color: #fff;
	padding: 32px;
	border-radius: 28px;
	box-shadow: 0 16px 34px rgba(32, 36, 29, 0.18);
}

.cta-panel-v2 h2 {
	margin: 0 0 12px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 44px;
	line-height: 1;
	color: #fff;
}

.cta-panel-v2 p {
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 16px;
	line-height: 1.6;
}

.cta-stack-v2 {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.booking-widget-v2 {
	width: 100%;
	margin-top: 22px;
}

.booking-widget-v2 > div {
	width: 100%;
	max-width: 100%;
}

.booking-widget-v2 iframe {
	max-width: 100%;
}

.micro-note {
	margin-top: 14px;
	font-size: 13px;
	color: #7a8078;
}

.micro-note.light {
	color: rgba(255, 255, 255, 0.7);
}

.footer-v2 {
	padding: 34px 0 46px;
	background: #262d24;
	color: #f0f1eb;
}

.footer-grid-v2 {
	display: grid;
	grid-template-columns: 1.1fr 1fr 1fr 1fr;
	gap: 18px;
}

.footer-grid-v2 strong {
	display: block;
	margin-bottom: 10px;
	font-size: 15px;
}

.footer-grid-v2 p {
	margin: 0;
	color: rgba(240, 241, 235, 0.76);
}

.footer-grid-v2 a,
.footer-grid-v2 button {
	display: block;
	margin-top: 8px;
	color: rgba(240, 241, 235, 0.9);
	text-decoration: none;
	font-size: 14px;
}

.footer-credit {
	margin: 20px auto 0;
	padding-top: 16px;
	border-top: 1px solid rgba(240, 241, 235, 0.14);
	font-size: 12px;
	text-align: center;
	color: rgba(240, 241, 235, 0.62);
}

.footer-credit a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	color: inherit;
	text-decoration: none;
	font-weight: 700;
}

.footer-credit a:hover {
	color: #f0f1eb;
	text-decoration: underline;
}

.footer-credit span {
	color: #d7c4a1;
}

.cookie-banner {
	position: fixed;
	inset: auto 1rem 1rem 1rem;
	z-index: 200;
	display: flex;
	justify-content: center;
}

.cookie-banner[hidden],
html.has-cookie-choice .cookie-banner {
	display: none;
}

.cookie-card {
	width: min(720px, 100%);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 22px;
	box-shadow: 0 16px 34px rgba(32, 36, 29, 0.18);
	padding: 1rem 1rem 1.1rem;
}

.cookie-title {
	margin: 0 0 0.5rem;
	font-weight: 800;
	color: #2a3227;
}

.cookie-actions {
	display: flex;
	gap: 0.75rem;
	justify-content: flex-end;
	margin-top: 1rem;
}

@media (max-width: 1180px) {
	.hero-v2-inner {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 52px 0 180px;
	}

	.summary-card-v2 {
		justify-self: start;
		max-width: 360px;
		margin-top: 0;
	}

	.cards-row-v2 {
		width: min(100%, 900px);
		max-width: calc(100vw - 24px);
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.region-row-v2,
	.split-panel-v2,
	.infos-pratiques-grid-v2,
	.footer-grid-v2 {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.shell {
		width: min(100% - 24px, 1280px);
	}

	.main-nav-v2 {
		display: none;
		position: absolute;
		top: 78px;
		left: 0;
		right: 0;
		background: rgba(236, 232, 225, 0.98);
		border-bottom: 1px solid rgba(221, 214, 202, 0.8);
		padding: 16px 12px;
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.main-nav-v2.open {
		display: flex;
	}

	.nav-toggle-v2 {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.header-actions-v2 {
		margin-left: auto;
	}

	.hero-v2 {
		min-height: auto;
	}

	.hero-v2-copy h1 {
		font-size: 54px;
	}

	.viewer-strip {
		grid-template-columns: 1fr;
		margin: -92px auto 0;
		padding: 14px;
		width: min(100% - 24px, 1280px);
	}

	.viewer-intro h2 {
		font-size: 30px;
	}

	.viewer-scroller {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		overflow: hidden;
	}

	.viewer-thumb {
		height: 150px;
		min-height: 150px;
	}

	.psv-modal__dialog {
		width: min(100% - 16px, 1400px);
		height: min(94vh, 960px);
		margin: 3vh auto;
		padding: 12px;
	}

	.psv-modal__topbar {
		flex-wrap: wrap;
	}

	.psv-modal__heading h2 {
		font-size: 28px;
	}

	.psv-modal__thumbs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.cards-row-v2 {
		width: 100%;
		max-width: 100%;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.header-inner-v2 {
		min-height: 72px;
	}

	.brand-v2-mark {
		font-size: 20px;
	}

	.header-actions-v2 {
		display: none;
	}

	.hero-v2-inner {
		padding: 36px 0 150px;
	}

	.hero-kicker {
		font-size: 14px;
	}

	.hero-v2-copy h1 {
		font-size: 42px;
	}

	.hero-v2-text {
		font-size: 16px;
		max-width: 100%;
	}

	.summary-card-v2 {
		max-width: 100%;
	}

	.viewer-strip {
		margin: -74px auto 0;
		width: min(100% - 16px, 1280px);
		padding: 14px;
	}

	.viewer-intro {
		padding: 8px;
	}

	.viewer-intro h2 {
		font-size: 28px;
	}

	.viewer-intro p {
		font-size: 14px;
	}

	.viewer-scroller {
		grid-template-columns: none;
		grid-auto-flow: column;
		grid-auto-columns: 82%;
		overflow: auto;
		padding-bottom: 2px;
	}

	.viewer-thumb {
		height: 165px;
		min-height: 165px;
	}

	.psv-modal__dialog {
		grid-template-rows: auto 1fr auto;
		height: 100dvh;
		width: 100%;
		margin: 0;
		border-radius: 0;
		padding: 10px;
	}

	.psv-modal__viewer {
		min-height: 340px;
	}

	.psv-modal__thumbs {
		grid-template-columns: none;
		grid-auto-flow: column;
		grid-auto-columns: 62%;
		overflow: auto;
		padding-bottom: 2px;
	}

	.psv-modal__nav,
	.psv-modal__close {
		min-width: 42px;
		height: 42px;
	}

	.gallery-card-v2 .mini-grid-v2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.white-card-v2 h2,
	.cta-panel-v2 h2 {
		font-size: 34px;
	}

	.cookie-actions,
	.cta-stack-v2,
	.hero-v2-actions {
		flex-direction: column;
	}
}

/* ===== GALERIE 7 IMAGES ===== */

.gallery-immersive-v2 {
	overflow: visible;
}

.gallery-head-v2 {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.gallery-head-v2__copy {
	max-width: 760px;
}

.gallery-head-v2__copy p {
	margin: 10px 0 0;
	color: #5f665d;
}

.gallery-head-v2__meta {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.gallery-counter-v2 {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	padding: 0 14px;
	min-height: 44px;
	border-radius: 999px;
	background: #f7f4ed;
	border: 1px solid rgba(60, 72, 50, 0.1);
	box-shadow: 0 8px 20px rgba(37, 41, 34, 0.05);
	color: #6a7364;
	font-weight: 700;
}

.gallery-counter-v2 strong {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 24px;
	line-height: 1;
	color: #273022;
}

.gallery-carousel-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.gallery-carousel-nav {
	min-width: 46px;
	height: 46px;
	border-radius: 999px;
	border: 1px solid rgba(60, 72, 50, 0.12);
	background: #f7f4ed;
	color: #273022;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	box-shadow: 0 8px 20px rgba(37, 41, 34, 0.06);
}

.gallery-carousel-nav:disabled {
	opacity: 0.42;
	cursor: default;
	box-shadow: none;
}

.gallery-carousel-wrap {
	margin-top: 22px;
	position: relative;
}

.gallery-carousel-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 120px;
	height: 100%;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(245, 243, 237, 0) 0%,
		rgba(245, 243, 237, 0.9) 84%
	);
	border-radius: 0 20px 20px 0;
}

.gallery-grid-7 {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 0 84px 10px 0;
	margin: 0;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.gallery-grid-7::-webkit-scrollbar {
	display: none;
}

.gallery-thumb {
	position: relative;
	border: none;
	padding: 0;
	background: #101611;
	border-radius: 22px;
	overflow: hidden;
	cursor: pointer;
	display: block;
	flex: 0 0 clamp(560px, 78vw, 980px);
	aspect-ratio: 16 / 9;
	scroll-snap-align: start;
	box-shadow: 0 18px 36px rgba(37, 41, 34, 0.12);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		opacity 0.25s ease;
}

.gallery-thumb.is-active {
	box-shadow: 0 22px 42px rgba(37, 41, 34, 0.16);
}

.gallery-thumb:hover {
	transform: translateY(-2px);
}

.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transform: scale(1.01);
	transition: transform 0.35s ease;
}

.gallery-thumb:hover img,
.gallery-thumb.is-active img {
	transform: scale(1.035);
}

.gallery-thumb__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(10, 14, 12, 0.05) 14%,
		rgba(10, 14, 12, 0.18) 54%,
		rgba(10, 14, 12, 0.74) 100%
	);
}

.gallery-thumb__content {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 18px;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	color: #fff;
	text-align: left;
}

.gallery-thumb__eyebrow {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
}

.gallery-thumb__content strong {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(28px, 3.1vw, 40px);
	line-height: 0.98;
}

.gallery-thumb__content small {
	font-size: 14px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.9);
}

.gallery-open-btn {
	cursor: pointer;
}

/* ===== MODALE GALERIE ===== */

body.gallery-open {
	overflow: hidden;
}

.gallery-modal[hidden] {
	display: none;
}

.gallery-modal {
	position: fixed;
	inset: 0;
	z-index: 10020;
}

.gallery-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 14, 12, 0.82);
	backdrop-filter: blur(8px);
}

.gallery-modal__dialog {
	position: relative;
	z-index: 2;
	width: min(1320px, calc(100% - 32px));
	height: min(92vh, 940px);
	margin: 4vh auto;
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 14px;
	background: #1d241d;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 16px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.gallery-modal__topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.gallery-modal__topbar h2 {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 32px;
	line-height: 1.05;
	color: #fff;
}

.gallery-modal__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gallery-modal__nav,
.gallery-modal__close {
	min-width: 46px;
	height: 46px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
}

.gallery-modal__media {
	min-height: 0;
	border-radius: 20px;
	overflow: hidden;
	background: #0f1510;
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-modal__media img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.gallery-modal__thumbs {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 10px;
}

.gallery-modal__thumb {
	border: none;
	padding: 0;
	background: #262d26;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid transparent;
}

.gallery-modal__thumb img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
}

.gallery-modal__thumb.is-active {
	border-color: #a9ba8c;
	box-shadow: 0 0 0 2px rgba(169, 186, 140, 0.28);
}

@media (max-width: 900px) {
	.gallery-head-v2 {
		align-items: stretch;
	}

	.gallery-head-v2__copy {
		max-width: none;
	}

	.gallery-thumb {
		flex-basis: min(82vw, 720px);
	}

	.gallery-carousel-wrap::after {
		width: 84px;
	}

	.gallery-modal__dialog {
		width: min(100% - 16px, 1320px);
		height: min(94vh, 940px);
		margin: 3vh auto;
		padding: 12px;
	}

	.gallery-modal__thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.gallery-head-v2__meta {
		width: 100%;
		justify-content: space-between;
	}

	.gallery-carousel-actions {
		width: 100%;
		justify-content: space-between;
	}

	.gallery-open-btn {
		width: 100%;
		justify-content: center;
	}

	.gallery-carousel-wrap::after {
		width: 54px;
	}

	.gallery-grid-7 {
		padding-right: 42px;
	}

	.gallery-thumb {
		flex-basis: 88vw;
	}

	.gallery-thumb__content {
		left: 16px;
		right: 16px;
		bottom: 15px;
	}

	.gallery-thumb__content strong {
		font-size: 28px;
	}

	.gallery-thumb__content small {
		font-size: 13px;
	}

	.gallery-modal__dialog {
		width: 100%;
		height: 100dvh;
		margin: 0;
		border-radius: 0;
		padding: 10px;
	}

	.gallery-modal__topbar h2 {
		font-size: 24px;
	}

	.gallery-modal__thumbs {
		grid-template-columns: none;
		grid-auto-flow: column;
		grid-auto-columns: 42%;
		overflow: auto;
	}
}

body.region-open {
	overflow: hidden;
}

.region-modal[hidden] {
	display: none;
}

.region-modal {
	position: fixed;
	inset: 0;
	z-index: 10030;
}

.region-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 14, 12, 0.82);
	backdrop-filter: blur(8px);
}

.region-modal__dialog {
	position: relative;
	z-index: 2;
	width: min(1380px, calc(100% - 32px));
	height: min(92vh, 940px);
	margin: 4vh auto;
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 14px;
	background: #1d241d;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 16px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.region-modal__topbar {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.region-modal__kicker {
	margin: 0 0 6px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.62);
	font-weight: 700;
}

.region-modal__heading h2 {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 34px;
	line-height: 1.05;
	color: #fff;
}

.region-modal__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.region-modal__nav,
.region-modal__close {
	min-width: 46px;
	height: 46px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
}

.region-modal__media {
	min-height: 0;
	border-radius: 20px;
	overflow: hidden;
	background: #0f1510;
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}

.region-modal__media img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.region-modal__caption {
	color: #fff;
}

.region-modal__caption p {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 900px) {
	.region-row-v2 {
		width: min(100% - 24px, 1280px);
		grid-template-columns: 1fr;
	}

	.region-scroller-v2 {
		grid-auto-columns: 78%;
	}

	.region-card-v2 {
		min-height: 220px;
	}

	.region-modal__dialog {
		width: min(100% - 16px, 1380px);
		height: min(94vh, 940px);
		margin: 3vh auto;
		padding: 12px;
	}
}

@media (max-width: 640px) {
	.region-scroller-v2 {
		grid-auto-columns: 86%;
	}

	.region-intro-v2 h2 {
		font-size: 34px;
	}

	.region-copy-v2 strong {
		font-size: 22px;
	}

	.region-modal__dialog {
		width: 100%;
		height: 100dvh;
		margin: 0;
		border-radius: 0;
		padding: 10px;
	}

	.region-modal__heading h2 {
		font-size: 26px;
	}
}

/* Region override v7.1 */
.region-row-v2 {
	width: min(1420px, calc(100% - 24px));
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	align-items: stretch;
}

.region-intro-v2 {
	background: linear-gradient(180deg, #fbfaf6 0%, #f7f4ed 100%);
	border: 1px solid rgba(221, 214, 202, 0.95);
	border-radius: 24px;
	padding: 34px 24px 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	box-shadow: 0 10px 24px rgba(37, 41, 34, 0.07);
}

.region-intro-v2 > div {
	width: 100%;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.region-kicker-v2 {
	display: block;
	width: auto;
	margin: 0 auto 10px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #7c846f;
	text-align: center;
}

.region-intro-v2 h2 {
	margin: 0 auto;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(42px, 5vw, 64px);
	line-height: 0.95;
	color: #263022;
	max-width: 820px;
	text-align: center;
}

.region-intro-v2 p {
	width: min(100%, 760px);
	margin: 14px auto 0;
	color: #636b61;
	font-size: 16px;
	line-height: 1.7;
	text-align: justify;
	text-align-last: left;
}

.region-highlights-v2 {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
}

.region-highlights-v2 span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: #eef0e8;
	color: #4d5645;
	font-size: 12px;
	font-weight: 800;
}

.region-btn-v2 {
	margin-top: 2px;
	align-self: center;
	white-space: nowrap;
}

.region-scroller-v2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	overflow: visible;
	padding-bottom: 0;
}

.region-card-v2 {
	position: relative;
	display: block;
	flex: 1 1 calc(33.333% - 11px);
	max-width: calc(33.333% - 11px);
	min-width: 280px;
	border: none;
	padding: 0;
	text-align: left;
	border-radius: 22px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	min-height: 240px;
	background: #000;
	cursor: pointer;
	box-shadow: 0 12px 24px rgba(33, 37, 31, 0.12);
}

.region-card-v2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.region-card-v2::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.08) 18%,
		rgba(0, 0, 0, 0.18) 48%,
		rgba(0, 0, 0, 0.66) 100%
	);
}

.region-card-v2:hover {
	transform: translateY(-2px);
}

.region-card-v2:focus-visible {
	outline: 3px solid rgba(143, 161, 120, 0.55);
	outline-offset: 3px;
}

.region-badge-v2 {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(8px);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.region-copy-v2 {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 1;
	color: #fff;
}

.region-copy-v2 strong {
	display: block;
	font-size: 24px;
	line-height: 1.05;
	font-family: Georgia, 'Times New Roman', serif;
}

.region-copy-v2 span {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
	.region-row-v2 {
		width: min(calc(100% - 16px), 1280px);
	}

	.region-intro-v2 {
		padding: 26px 18px;
	}

	.region-intro-v2 > div {
		max-width: 100%;
	}

	.region-intro-v2 p {
		width: 100%;
	}

	.region-btn-v2 {
		margin-top: 2px;
	}

	.region-card-v2 {
		flex-basis: calc(50% - 8px);
		max-width: calc(50% - 8px);
		min-width: 0;
		min-height: 220px;
	}

	.region-modal__dialog {
		width: min(calc(100% - 16px), 1380px);
		height: min(94vh, 940px);
		margin: 3vh auto;
		padding: 12px;
	}
}

@media (max-width: 640px) {
	.region-intro-v2 h2 {
		font-size: 34px;
	}

	.region-intro-v2 p {
		text-align: left;
	}

	.region-scroller-v2 {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		grid-auto-flow: row;
		grid-auto-columns: auto;
		gap: 12px;
		overflow: visible;
		padding-bottom: 0;
	}

	.region-card-v2 {
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		min-height: 220px;
	}

	.region-copy-v2 {
		left: 14px;
		right: 14px;
		bottom: 14px;
	}

	.region-copy-v2 strong {
		font-size: 22px;
	}

	.region-modal__dialog {
		width: 100%;
		height: 100dvh;
		margin: 0;
		border-radius: 0;
		padding: 10px;
	}

	.region-modal__heading h2 {
		font-size: 26px;
	}
}

.region-modal[hidden] {
	display: none;
}

.region-modal {
	position: fixed;
	inset: 0;
	z-index: 10030;
}

.region-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 14, 12, 0.84);
	backdrop-filter: blur(8px);
}

.region-modal__dialog {
	position: relative;
	z-index: 2;
	width: min(1540px, calc(100% - 24px));
	height: min(94vh, 960px);
	margin: 3vh auto;
	background: #182018;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 26px;
	overflow: hidden;
	padding: 0;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.region-modal__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) 420px;
	height: 100%;
	min-height: 0;
}

.region-modal__media {
	min-width: 0;
	min-height: 0;
	background: #0f1510;
}

.region-modal__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.region-modal__panel {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 0;
	padding: 22px;
	background: linear-gradient(180deg, #1b231b 0%, #141a14 100%);
	border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.region-modal__topbar {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.region-modal__heading {
	min-width: 0;
}

.region-modal__kicker {
	margin: 0 0 6px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.62);
	font-weight: 700;
}

.region-modal__heading h2 {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 36px;
	line-height: 1.05;
	color: #fff;
}

.region-modal__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.region-modal__pill {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.region-modal__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.region-modal__nav,
.region-modal__close {
	min-width: 46px;
	height: 46px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
}

.region-modal__panel-body {
	margin-top: 18px;
	overflow: auto;
	padding-right: 4px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.region-modal__caption p,
.region-modal__section p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.9);
}

.region-modal__section {
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.region-modal__label {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.58);
}

.region-modal__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
	padding-top: 4px;
}

.region-modal__map-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid rgba(197, 205, 186, 0.5);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		background 0.2s ease;
}

.region-modal__map-btn:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
	.region-modal__dialog {
		width: min(calc(100% - 16px), 1380px);
		height: min(94vh, 980px);
		margin: 3vh auto;
	}

	.region-modal__layout {
		grid-template-columns: 1fr;
		grid-template-rows: minmax(260px, 42vh) 1fr;
	}

	.region-modal__panel {
		padding: 16px;
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.region-modal__heading h2 {
		font-size: 30px;
	}
}

@media (max-width: 640px) {
	.region-modal__dialog {
		width: 100%;
		height: 100dvh;
		margin: 0;
		border-radius: 0;
	}

	.region-modal__layout {
		grid-template-rows: 38vh 1fr;
	}

	.region-modal__panel {
		padding: 14px 14px 18px;
	}

	.region-modal__actions {
		gap: 8px;
	}

	.region-modal__nav,
	.region-modal__close {
		min-width: 42px;
		height: 42px;
	}

	.region-modal__heading h2 {
		font-size: 26px;
	}
}

/* Region intro compact override + modal V2 */
.region-row-v2 {
	width: min(1280px, calc(100% - 48px));
}

.region-intro-v2 {
	width: min(1080px, 100%);
	margin-left: auto;
	margin-right: auto;
	padding: 34px 28px 28px;
}

.region-intro-v2 > div {
	width: min(100%, 900px);
	max-width: 900px;
}

.region-intro-v2 p {
	width: min(100%, 860px);
	text-align: center;
	text-align-last: auto;
}

.region-btn-v2 {
	margin: 6px auto 0;
}

body.region-open {
	overflow: hidden;
}

.region-modal {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.18s ease,
		visibility 0.18s ease;
}

.region-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.region-modal__backdrop {
	opacity: 0;
	transition: opacity 0.18s ease;
}

.region-modal.is-open .region-modal__backdrop {
	opacity: 1;
}

.region-modal__dialog {
	transform: translateY(10px) scale(0.985);
	transition: transform 0.22s ease;
}

.region-modal.is-open .region-modal__dialog {
	transform: translateY(0) scale(1);
}

.region-modal__quickinfos {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.region-modal__info-card {
	padding: 14px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.region-modal__info-card p:last-child {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

.region-modal__nav:hover,
.region-modal__close:hover,
.region-modal__map-btn:hover {
	transform: translateY(-1px);
}

@media (max-width: 900px) {
	.region-row-v2 {
		width: min(calc(100% - 16px), 1280px);
	}

	.region-intro-v2 {
		width: 100%;
		padding: 26px 18px;
	}

	.region-intro-v2 > div,
	.region-intro-v2 p {
		max-width: 100%;
		width: 100%;
	}
}

@media (max-width: 640px) {
	.region-intro-v2 p {
		text-align: left;
	}

	.region-modal__quickinfos {
		grid-template-columns: 1fr;
	}
}

.prep-arrival-v2 {
	align-items: stretch;
}

.arrival-map-v2,
.arrival-weather-v2 {
	display: flex;
	flex-direction: column;
}

.arrival-weather-v2 {
	justify-content: center;
}

.arrival-map-frame {
	margin-top: 18px;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: #eef0ea;
	aspect-ratio: 16 / 11;
}

.arrival-map-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.arrival-actions-v2 {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.arrival-weather-v2 .micro-note {
	margin-top: 14px;
	color: #6b7368;
	font-size: 13px;
	line-height: 1.5;
}

.weather-law-note {
	margin-top: auto;
	padding: 12px 14px;
	border-radius: 16px;
	background: #f3efe4;
	border: 1px solid var(--line);
	color: #5f665d;
	font-size: 13px;
	line-height: 1.55;
}

.arrival-weather-v2 .micro-note {
	margin-top: 12px;
	margin-bottom: 10px;
}

.weather-law-note strong {
	color: #273022;
}

.weather-card-v2 {
	margin-top: 18px;
	padding: 20px;
	border-radius: 22px;
	background: linear-gradient(180deg, #f7f4ed 0%, #f1eee5 100%);
	border: 1px solid var(--line);
}

.weather-current-v2 {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.weather-eyebrow {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7b846e;
}

.weather-current-v2 strong {
	display: block;
	font-size: clamp(40px, 5vw, 58px);
	line-height: 0.95;
	color: #273022;
	font-family: Georgia, 'Times New Roman', serif;
}

.weather-current-v2 p {
	margin-top: 8px;
	color: #5f665d;
}

.weather-icon-v2 {
	font-size: 42px;
	line-height: 1;
}

.weather-forecast-v2 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 18px;
}

.weather-day-v2 {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 12px 10px;
	text-align: center;
}

.weather-day-v2 strong {
	display: block;
	font-size: 13px;
	color: #2d3529;
	text-transform: capitalize;
}

.weather-day-icon {
	display: block;
	margin: 8px 0 6px;
	font-size: 24px;
	line-height: 1;
}

.weather-day-v2 p {
	font-size: 13px;
	color: #5f665d;
}

@media (max-width: 900px) {
	.weather-forecast-v2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.arrival-actions-v2 {
		display: grid;
		grid-template-columns: 1fr;
	}

	.arrival-actions-v2 .btn {
		width: 100%;
	}

	.weather-forecast-v2 {
		grid-template-columns: 1fr 1fr;
	}
}

/* Language switcher */
.lang-switcher {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.lang-switcher--light {
	background: rgba(39, 48, 34, 0.06);
	border-color: rgba(39, 48, 34, 0.12);
}

.lang-switcher a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 58px;
	height: 34px;
	padding: 0 10px;
	border-radius: 999px;
	color: inherit;
	text-decoration: none;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.lang-switcher .lang-flag {
	width: 16px;
	height: 16px;
	display: block;
	border-radius: 999px;
	flex-shrink: 0;
	object-fit: cover;
}

.lang-switcher .lang-code {
	line-height: 1;
}

.lang-switcher a.is-active {
	background: #ffffff;
	color: #273022;
}

.header-actions-v2 {
	gap: 12px;
}

@media (max-width: 900px) {
	.header-actions-v2 {
		width: 100%;
		justify-content: space-between;
	}

	.lang-switcher {
		order: 1;
	}
}

/* ===== Responsive cleanup v8.2.1 ===== */
@media (max-width: 900px) {
	.shell {
		width: min(calc(100% - 24px), 1280px);
	}

	body.home-v2 .header-inner-v2 {
		position: relative;
		min-height: 72px;
		padding: 10px 0;
		flex-wrap: wrap;
		row-gap: 10px;
	}

	body.home-v2 .brand-v2 {
		min-width: 0;
		flex: 1 1 auto;
		max-width: calc(100% - 64px);
	}

	body.home-v2 .nav-toggle-v2 {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		order: 2;
		margin-left: auto;
		min-width: 44px;
		min-height: 44px;
		padding: 0 14px;
	}

	body.home-v2 .main-nav-v2 {
		order: 3;
		width: 100%;
		display: none;
		position: static;
		background: #fbfaf6;
		border: 1px solid rgba(221, 214, 202, 0.92);
		border-radius: 18px;
		padding: 10px 14px;
		box-shadow: 0 16px 34px rgba(37, 41, 34, 0.1);
		gap: 0;
	}

	body.home-v2 .main-nav-v2.open {
		display: flex;
	}

	body.home-v2 .main-nav-v2 a {
		width: 100%;
		padding: 11px 0;
		font-size: 15px;
		line-height: 1.35;
		border-bottom: 1px solid rgba(221, 214, 202, 0.75);
	}

	body.home-v2 .main-nav-v2 a:last-child {
		border-bottom: none;
	}

	body.home-v2 .header-actions-v2 {
		order: 4;
		width: 100%;
		display: none;
		flex-direction: column;
		gap: 10px;
		margin-left: 0;
	}

	body.home-v2 .header-actions-v2.open {
		display: flex;
	}

	body.home-v2 .header-actions-v2 .btn {
		width: 100%;
	}

	body.home-v2 .lang-switcher {
		width: 100%;
		justify-content: center;
		padding: 4px;
		background: #fbfaf6;
		border: 1px solid rgba(221, 214, 202, 0.92);
	}

	body.home-v2 .lang-switcher a {
		flex: 1 1 0;
		min-width: 0;
	}

	body.home-v2 .site-header.is-menu-open {
		background: rgba(236, 232, 225, 0.98);
	}

	.hero-v2 {
		min-height: auto;
		border-radius: 0 0 28px 28px;
	}

	.hero-v2-inner {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 34px 0 132px;
	}

	.hero-v2-copy {
		max-width: none;
		padding-top: 0;
	}

	.hero-v2-copy h1 {
		font-size: clamp(40px, 10vw, 60px);
	}

	.hero-v2-text {
		max-width: 100%;
		font-size: 16px;
		line-height: 1.55;
	}

	.hero-v2-actions {
		gap: 10px;
	}

	.hero-v2-actions .btn,
	.cta-stack-v2 .btn {
		width: 100%;
	}

	.summary-card-v2 {
		justify-self: stretch;
		align-self: stretch;
		max-width: none;
		margin-top: 0;
		padding: 18px;
	}

	.summary-card-v2 ul {
		gap: 12px;
	}

	.viewer-strip {
		grid-template-columns: 1fr;
		margin: -58px auto 0;
		width: min(calc(100% - 20px), 1280px);
		padding: 12px;
		gap: 12px;
		border-radius: 18px;
	}

	.viewer-intro {
		padding: 0;
	}

	.viewer-intro h2 {
		font-size: 24px;
	}

	.viewer-intro p {
		font-size: 13px;
		line-height: 1.45;
	}

	.viewer-intro .btn {
		width: 100%;
	}

	.viewer-scroller {
		display: grid;
		grid-template-columns: none;
		grid-auto-flow: column;
		grid-auto-columns: 80%;
		overflow: auto;
		gap: 10px;
		padding: 0 0 2px;
	}

	.viewer-thumb {
		height: 150px;
		min-height: 150px;
	}

	.cards-row-v2 {
		width: 100%;
		max-width: none;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.card-v2,
	.white-card-v2,
	.cta-panel-v2 {
		padding: 20px;
		border-radius: 22px;
		min-height: auto;
	}

	.stay-ideas-v2__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.arrival-actions-v2 {
		display: grid;
		grid-template-columns: 1fr;
	}

	.arrival-actions-v2 .btn {
		width: 100%;
	}

	.arrival-map-frame {
		aspect-ratio: 4 / 3;
	}

	.weather-forecast-v2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.gallery-head-v2 {
		gap: 14px;
	}

	.gallery-head-v2__copy {
		max-width: none;
	}

	.gallery-head-v2__meta {
		width: 100%;
		justify-content: space-between;
	}

	.gallery-carousel-actions {
		width: 100%;
		justify-content: space-between;
	}

	.gallery-open-btn {
		width: 100%;
		justify-content: center;
	}

	.gallery-carousel-wrap {
		margin-top: 16px;
	}

	.gallery-carousel-wrap::after {
		width: 54px;
	}

	.gallery-grid-7 {
		gap: 12px;
		padding-right: 46px;
	}

	.gallery-thumb {
		flex-basis: 86vw;
		border-radius: 18px;
	}

	.gallery-thumb__content {
		left: 16px;
		right: 16px;
		bottom: 14px;
	}

	.gallery-thumb__content strong {
		font-size: 24px;
	}

	.gallery-thumb__content small {
		font-size: 13px;
	}

	.faq-list-v2 details {
		padding: 0 14px;
	}
}

@media (max-width: 640px) {
	.shell {
		width: min(calc(100% - 16px), 1280px);
	}

	.section-gap {
		padding-top: 20px;
	}

	.section-gap-top {
		margin-top: 12px;
	}

	.header-inner-v2 {
		min-height: auto;
		padding: 10px 0;
		flex-wrap: wrap;
		row-gap: 10px;
	}

	.brand-v2 {
		min-width: 0;
	}

	.brand-v2-mark {
		font-size: 19px;
	}

	.brand-v2-sub {
		font-size: 10px;
		letter-spacing: 0.1em;
	}

	body.home-v2 .header-inner-v2 {
		padding: 8px 0 10px;
	}

	body.home-v2 .nav-toggle-v2 {
		min-height: 42px;
		padding: 0 12px;
	}

	body.home-v2 .lang-switcher a {
		height: 32px;
		padding: 0 8px;
		font-size: 11px;
		gap: 5px;
	}

	body.home-v2 .lang-switcher .lang-flag,
	.lang-switcher .lang-flag {
		width: 14px;
		height: 14px;
	}

	body:not(.home-v2) .header-actions-v2 {
		display: flex;
		width: 100%;
		margin-left: 0;
		flex-direction: column;
		gap: 8px;
	}

	body:not(.home-v2) .lang-switcher {
		width: 100%;
		justify-content: center;
	}

	body:not(.home-v2) .lang-switcher a {
		flex: 1 1 0;
		min-width: 0;
		height: 32px;
		padding: 0 8px;
		font-size: 11px;
		gap: 5px;
	}

	body:not(.home-v2) .header-actions-v2 .btn {
		width: 100%;
	}

	.hero-v2 {
		border-radius: 0 0 24px 24px;
	}

	.hero-v2-inner {
		padding: 28px 0 118px;
		gap: 16px;
	}

	.hero-kicker {
		margin-bottom: 12px;
		font-size: 12px;
		letter-spacing: 0.03em;
	}

	.hero-v2-copy h1 {
		font-size: clamp(36px, 11vw, 46px);
		line-height: 0.96;
		letter-spacing: -0.03em;
	}

	.hero-v2-text {
		margin-top: 16px;
		font-size: 15px;
		line-height: 1.55;
	}

	.hero-v2-actions {
		margin-top: 20px;
		flex-direction: column;
	}

	.summary-card-v2 strong {
		font-size: 16px;
	}

	.summary-card-v2 span {
		font-size: 13px;
	}

	.viewer-strip {
		margin: -56px auto 0;
		width: min(calc(100% - 16px), 1280px);
		padding: 12px;
		border-radius: 18px;
	}

	.viewer-scroller {
		grid-auto-columns: 84%;
	}

	.viewer-thumb {
		height: 148px;
		min-height: 148px;
		border-radius: 14px;
	}

	.card-v2,
	.white-card-v2,
	.cta-panel-v2 {
		padding: 18px;
		border-radius: 20px;
	}

	.card-v2 h2,
	.white-card-v2 h2,
	.cta-panel-v2 h2 {
		font-size: 30px;
		line-height: 1.02;
	}

	.card-v2 p,
	.white-card-v2 p,
	.cta-panel-v2 p,
	.faq-list-v2 p,
	.icon-list li {
		font-size: 15px;
		line-height: 1.58;
	}

	.section-tag {
		margin-bottom: 8px;
		font-size: 12px;
	}

	.info-badges-v2 span {
		font-size: 12px;
		padding: 8px 11px;
	}

	.region-row-v2 {
		width: min(calc(100% - 16px), 1280px);
	}

	.region-intro-v2 {
		padding: 22px 18px 20px;
		gap: 14px;
	}

	.region-intro-v2 > div {
		max-width: 100%;
	}

	.region-intro-v2 h2 {
		font-size: 34px;
		line-height: 0.98;
	}

	.region-intro-v2 p {
		width: 100%;
		text-align: left;
		text-align-last: auto;
		font-size: 15px;
		line-height: 1.58;
	}

	.region-scroller-v2 {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		grid-auto-flow: row;
		grid-auto-columns: auto;
		gap: 12px;
		overflow: visible;
		padding-bottom: 0;
	}

	.region-card-v2 {
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		min-height: 210px;
	}

	.region-copy-v2 strong {
		font-size: 24px;
	}

	.region-copy-v2 span {
		font-size: 13px;
	}

	.stay-ideas-v2 {
		gap: 14px;
	}

	.stay-ideas-v2__intro {
		width: 100%;
	}

	.stay-ideas-v2__intro h2 {
		font-size: 34px;
		line-height: 0.98;
	}

	.stay-ideas-v2__intro p:last-child {
		font-size: 15px;
		line-height: 1.58;
	}

	.stay-idea-card-v2 h3 {
		font-size: 24px;
		line-height: 1.08;
	}

	.prep-arrival-v2 {
		gap: 14px;
	}

	.arrival-map-frame {
		aspect-ratio: 1 / 1;
		margin-top: 14px;
	}

	.arrival-actions-v2 {
		margin-top: 14px;
		gap: 10px;
	}

	.weather-card-v2 {
		margin-top: 14px;
		padding: 16px;
		border-radius: 18px;
	}

	.weather-current-v2 strong {
		font-size: 44px;
	}

	.weather-day-v2 {
		padding: 10px 8px;
		border-radius: 16px;
	}

	.weather-current-v2 p,
	.arrival-weather-v2 .micro-note,
	.weather-law-note,
	.weather-day-v2 p {
		font-size: 13px;
	}

	.gallery-head-v2 {
		gap: 14px;
	}

	.gallery-head-v2__copy p {
		font-size: 15px;
		line-height: 1.55;
	}

	.gallery-head-v2__meta {
		gap: 10px;
	}

	.gallery-counter-v2 {
		min-height: 40px;
		padding: 0 12px;
	}

	.gallery-counter-v2 strong {
		font-size: 21px;
	}

	.gallery-carousel-nav {
		min-width: 42px;
		height: 42px;
	}

	.gallery-thumb {
		flex-basis: 88vw;
	}

	.gallery-thumb__content strong {
		font-size: 24px;
		line-height: 1.02;
	}

	.gallery-thumb__content small {
		font-size: 13px;
	}

	.faq-list-v2 {
		margin-top: 14px;
	}

	.faq-list-v2 details {
		padding: 0 12px;
		border-radius: 14px;
	}

	.faq-list-v2 summary {
		padding: 14px 0;
		font-size: 15px;
		line-height: 1.35;
	}

	.cta-panel-v2 {
		padding: 22px 18px;
		border-radius: 22px;
	}

	.cta-stack-v2 {
		margin-top: 16px;
		gap: 10px;
		flex-direction: column;
	}

	.cta-stack-v2 .btn {
		width: 100%;
	}

	.footer-v2 {
		padding: 26px 0 34px;
	}

	.footer-grid-v2 {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.cookie-banner {
		inset: auto 10px 10px 10px;
	}

	.cookie-card {
		padding: 14px;
		border-radius: 18px;
	}

	.cookie-actions {
		gap: 8px;
		flex-direction: column;
	}

	.cookie-actions .btn {
		width: 100%;
	}
}

@media (max-width: 430px) {
	.hero-v2-inner {
		padding-bottom: 108px;
	}

	.hero-v2-copy h1,
	.white-card-v2 h2,
	.cta-panel-v2 h2,
	.stay-ideas-v2__intro h2,
	.region-intro-v2 h2 {
		font-size: 31px;
	}

	.viewer-strip {
		margin-top: -48px;
	}

	.viewer-scroller {
		grid-auto-columns: 88%;
	}

	.viewer-thumb {
		height: 140px;
		min-height: 140px;
	}

	.card-v2,
	.white-card-v2,
	.cta-panel-v2 {
		padding: 16px;
	}

	.gallery-thumb {
		flex-basis: 92vw;
	}

	.gallery-thumb__content strong {
		font-size: 22px;
	}

	.weather-current-v2 {
		gap: 12px;
	}

	.weather-current-v2 strong {
		font-size: 40px;
	}
}

@media (max-width: 640px) {
	.region-row-v2 .region-scroller-v2 {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		grid-auto-flow: row;
		grid-auto-columns: auto;
		gap: 12px;
		overflow: visible;
		padding-bottom: 0;
	}

	.region-row-v2 .region-card-v2 {
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		min-height: 220px;
	}
}

/* ===== Mobile header dropdown v8.2.3 ===== */
.header-menu-v2 {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1;
	min-width: 0;
}

.header-menu-v2 .main-nav-v2 {
	flex: 1 1 auto;
}

.header-menu-v2 .header-actions-v2 {
	flex-shrink: 0;
}

@media (max-width: 900px) {
	body.home-v2 .header-inner-v2 {
		position: relative;
		min-height: 72px;
		padding: 10px 0;
		flex-wrap: nowrap;
		align-items: center;
	}

	body.home-v2 .brand-v2 {
		min-width: 0;
		flex: 1 1 auto;
		max-width: calc(100% - 60px);
	}

	body.home-v2 .nav-toggle-v2 {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-left: auto;
		min-width: 44px;
		min-height: 44px;
		padding: 0 14px;
		z-index: 3;
	}

	body.home-v2 .header-menu-v2 {
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 14px;
		background: #fbfaf6;
		border: 1px solid rgba(221, 214, 202, 0.92);
		border-radius: 20px;
		box-shadow: 0 18px 36px rgba(37, 41, 34, 0.12);
		z-index: 20;
	}

	body.home-v2 .site-header.is-menu-open .header-menu-v2 {
		display: flex;
	}

	body.home-v2 .header-menu-v2 .main-nav-v2 {
		display: flex;
		position: static;
		width: 100%;
		flex: none;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		background: none;
		border: none;
		padding: 0;
		box-shadow: none;
	}

	body.home-v2 .header-menu-v2 .main-nav-v2 a {
		width: 100%;
		padding: 12px 0;
		font-size: 15px;
		line-height: 1.35;
		border-bottom: 1px solid rgba(221, 214, 202, 0.75);
	}

	body.home-v2 .header-menu-v2 .main-nav-v2 a:last-child {
		border-bottom: none;
	}

	body.home-v2 .header-menu-v2 .header-actions-v2 {
		display: flex;
		width: 100%;
		margin-left: 0;
		flex-direction: column;
		gap: 10px;
		padding-top: 12px;
		border-top: 1px solid rgba(221, 214, 202, 0.75);
	}

	body.home-v2 .header-menu-v2 .header-actions-v2 .btn {
		width: 100%;
	}

	body.home-v2 .header-menu-v2 .lang-switcher {
		width: 100%;
		justify-content: center;
		padding: 4px;
		background: #f6f3ec;
		border: 1px solid rgba(221, 214, 202, 0.92);
	}

	body.home-v2 .header-menu-v2 .lang-switcher a {
		flex: 1 1 0;
		min-width: 0;
	}

	body.home-v2 .site-header.is-menu-open {
		background: rgba(236, 232, 225, 0.98);
	}
}

@media (max-width: 430px) {
	body.home-v2 .header-menu-v2 {
		top: calc(100% + 8px);
		padding: 12px;
		border-radius: 18px;
	}

	body.home-v2 .header-menu-v2 .main-nav-v2 a {
		padding: 11px 0;
		font-size: 14px;
	}
}
