/* ==========================================================================
   CAZARE / ECVSTRIA CHALET — Journey cinematic language
   ========================================================================== */

.er-cazare-body {
	background: var(--er-ink);
	color: #fff;
}

.er-cazare {
	position: relative;
	overflow-x: clip;
	max-width: 100%;
}

.er-cazare .er-journey-panel-eyebrow {
	padding-inline: 0.28em;
	box-sizing: border-box;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.er-cazare .er-journey-panel-title,
.er-cazare .er-journey-panel-title__line {
	max-width: 100%;
	overflow-wrap: break-word;
}

/* --- Hero --- */
.er-cazare-hero {
	position: relative;
	height: 100svh;
	min-height: 34rem;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.er-cazare-hero__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.er-cazare-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	filter: saturate(0.94) contrast(1.05);
	will-change: transform;
}

.er-cazare-hero__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: var(--er-photo-veil);
	pointer-events: none;
}

.er-cazare-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(100%, 44rem);
	max-width: 100%;
	box-sizing: border-box;
	padding: 0 max(var(--er-container-gutter), 1.35rem);
	text-align: center;
}

.er-cazare-hero__eyebrow {
	margin: 0 0 1rem;
	max-width: 100%;
	padding-inline: 0.28em;
	box-sizing: border-box;
	overflow-wrap: anywhere;
}

.er-cazare-hero__title {
	margin: 0;
	max-width: 100%;
	text-shadow: var(--er-text-wash-shadow);
}

.er-cazare-hero__title .er-journey-panel-title__line {
	max-width: 100%;
	overflow-wrap: break-word;
}

.er-cazare-hero__tagline {
	margin: 1.25rem 0 0;
	max-width: 100%;
	font-family: var(--er-font-display);
	font-size: clamp(1.25rem, 2.8vw, 1.85rem);
	font-style: italic;
	line-height: 1.35;
	color: #fff;
	text-shadow: var(--er-text-wash-shadow);
	overflow-wrap: break-word;
}

.er-cazare-hero__lead {
	margin: 1rem auto 0;
	width: 100%;
	max-width: min(34rem, 100%);
	padding-inline: 0;
	font-family: var(--er-font-sans);
	font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
	line-height: 1.65;
	color: #fff;
	text-align: center;
	text-shadow: var(--er-text-wash-shadow);
	overflow-wrap: break-word;
}

.er-cazare-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem 1.5rem;
	margin-top: 2rem;
}

.er-cazare-hero__cta {
	max-width: 100%;
}

/* Cazare page — Google reviews block (shared with homepage) */
.er-cazare-body .er-journey-reviews {
	position: relative;
	z-index: 2;
}

/* --- Rooms — Echitație-style stages + carousel --- */
.er-cazare-rooms {
	padding: clamp(3.5rem, 8vh, 5rem) 0 0;
	background: var(--er-ink);
}

.er-cazare-rooms__head {
	width: min(100%, 40rem);
	max-width: 100%;
	margin: 0 auto clamp(2.25rem, 5vh, 3.25rem);
	padding: 0 max(var(--er-container-gutter), 1.35rem);
	box-sizing: border-box;
	text-align: center;
}

.er-cazare-rooms__intro {
	margin: 1.15rem 0 0;
	font-family: var(--er-font-sans);
	font-size: 1rem;
	line-height: 1.65;
	color: #fff;
	overflow-wrap: break-word;
}

.er-cazare-rooms__chapters {
	display: flex;
	flex-direction: column;
}

.er-cazare-room {
	position: relative;
	background: var(--er-ink);
}

.er-cazare-room__stage {
	position: relative;
	height: 100svh;
	min-height: 36rem;
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 24rem);
	overflow: hidden;
	isolation: isolate;
	background: var(--er-ink);
}

.er-cazare-room--flip .er-cazare-room__stage {
	grid-template-columns: minmax(17.5rem, 24rem) minmax(0, 1fr);
}

.er-cazare-room__media {
	position: absolute;
	inset: 0;
	grid-column: 1 / -1;
	grid-row: 1;
	z-index: 0;
	overflow: hidden;
}

.er-cazare-room__slides {
	position: absolute;
	inset: 0;
}

.er-cazare-room__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 0;
	overflow: hidden;
	transition: opacity 0.55s ease, visibility 0.55s ease;
}

.er-cazare-room__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.er-cazare-room__img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
	filter: saturate(0.94) contrast(1.05);
}

.er-cazare-room__nav {
	--er-cazare-frame-w: 24rem;
	position: absolute;
	z-index: 5;
	top: 0;
	bottom: 0;
	left: 0;
	width: calc(100% - var(--er-cazare-frame-w));
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 clamp(0.85rem, 2vw, 1.5rem);
	box-sizing: border-box;
	pointer-events: none;
}

.er-cazare-room--flip .er-cazare-room__nav {
	left: var(--er-cazare-frame-w);
	width: calc(100% - var(--er-cazare-frame-w));
}

.er-cazare-room__arrow {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(245, 241, 234, 0.4);
	border-radius: 50%;
	background: rgba(10, 12, 11, 0.55);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
	transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.er-cazare-room__arrow span {
	display: block;
	width: 0.55rem;
	height: 0.55rem;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
}

.er-cazare-room__arrow--prev span {
	transform: rotate(-135deg) translate(-1px, 1px);
}

.er-cazare-room__arrow--next span {
	transform: rotate(45deg) translate(-1px, 1px);
}

.er-cazare-room__arrow:hover {
	background: rgba(10, 12, 11, 0.78);
	border-color: #fff;
	transform: scale(1.05);
}

.er-cazare-room__arrow:focus-visible {
	outline: 2px solid var(--er-gold-light);
	outline-offset: 3px;
}

.er-cazare-room__progress {
	position: absolute;
	left: clamp(1.15rem, 2.8vw, 2rem);
	bottom: clamp(1.15rem, 2.8vw, 2rem);
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--er-font-booking);
	font-size: 0.625rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #fff;
	pointer-events: none;
}

.er-cazare-room--flip .er-cazare-room__progress {
	left: auto;
	right: clamp(1.15rem, 2.8vw, 2rem);
}

.er-cazare-room__progress-index {
	color: #fff;
	min-width: 1.4em;
}

.er-cazare-room__progress-sep { opacity: 1; color: #fff; }
.er-cazare-room__progress-total { opacity: 1; color: #fff; }

.er-cazare-room__progress-track {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-left: 0.35rem;
}

.er-cazare-room__progress-dot {
	display: block;
	width: 1.35rem;
	height: 2px;
	border-radius: 2px;
	background: rgba(245, 241, 234, 0.28);
	transition: background 0.35s ease, width 0.45s ease;
}

.er-cazare-room__progress-dot.is-active {
	width: 2.15rem;
	background: var(--er-ivory);
}

.er-cazare-room__frame {
	position: relative;
	z-index: 3;
	grid-column: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.15rem;
	align-self: stretch;
	height: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	padding: clamp(2rem, 4.5vh, 3rem) clamp(1.35rem, 3vw, 2.25rem);
	background: linear-gradient(180deg, rgba(10, 12, 11, 0.42) 0%, rgba(10, 12, 11, 0.68) 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-left: 1px solid rgba(245, 241, 234, 0.08);
	text-align: left;
	overflow-x: hidden;
	overflow-y: auto;
}

.er-cazare-room--flip .er-cazare-room__frame {
	grid-column: 1;
	border-left: 0;
	border-right: 1px solid rgba(245, 241, 234, 0.08);
}

.er-cazare-room__head { margin: 0; min-width: 0; }
.er-cazare-room__head .er-journey-panel-eyebrow {
	text-align: left;
	padding-inline: 0.28em;
	max-width: 100%;
	overflow-wrap: anywhere;
}
.er-cazare-room__name { margin: 0.55rem 0 0; min-width: 0; max-width: 100%; }

.er-cazare-room__name.er-journey-panel-title,
.er-cazare-room__name .er-journey-panel-title__line {
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	text-align: left;
	text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
	max-width: 100%;
	overflow-wrap: break-word;
}

.er-cazare-room__lead {
	margin: 0.75rem 0 0;
	max-width: 100%;
	font-family: var(--er-font-display);
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	font-style: italic;
	line-height: 1.45;
	color: #fff;
	overflow-wrap: break-word;
}

.er-cazare-room__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.er-cazare-room__item {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding-top: 0.65rem;
	border-top: 1px solid rgba(245, 241, 234, 0.12);
}

.er-cazare-room__item-label {
	font-family: var(--er-font-booking);
	font-size: 0.5625rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
}

.er-cazare-room__item-value {
	font-family: var(--er-font-sans);
	font-size: 0.875rem;
	line-height: 1.45;
	color: #fff;
	overflow-wrap: break-word;
	min-width: 0;
}

.er-cazare-room__amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.er-cazare-room__amenities li {
	padding: 0.45rem 0.75rem;
	font-family: var(--er-font-booking);
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	border: 1px solid rgba(245, 241, 234, 0.28);
	border-radius: 6px;
	background: rgba(245, 241, 234, 0.08);
}

.er-cazare-room__foot {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.85rem;
	margin-top: 0.25rem;
}

.er-cazare-room__price {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.er-cazare-room__price-value {
	font-family: var(--er-font-display);
	font-size: 1.25rem;
	color: #fff;
}

.er-cazare-room__price-note {
	font-family: var(--er-font-booking);
	font-size: 0.5625rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
}

.er-cazare-room__actions .er-btn-primary {
	color: var(--er-ink);
	background: var(--er-ivory);
	border-color: #fff;
}

.er-cazare-room__actions .er-btn-primary:hover {
	color: var(--er-ink);
	background: #fff;
}

@media (max-width: 900px) {
	.er-cazare-room__stage {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 0;
	}

	.er-cazare-room--flip .er-cazare-room__stage {
		grid-template-columns: 1fr;
	}

	.er-cazare-room__media {
		position: relative;
		grid-column: 1;
		grid-row: auto;
		height: min(68svh, 28rem);
		min-height: 18rem;
	}

	.er-cazare-room__nav,
	.er-cazare-room--flip .er-cazare-room__nav {
		left: 0;
		width: 100%;
		top: 0;
		bottom: 0;
	}

	.er-cazare-room__progress,
	.er-cazare-room--flip .er-cazare-room__progress {
		bottom: 1rem;
		left: 1rem;
		right: auto;
	}

	.er-cazare-room__frame {
		grid-column: 1;
		height: auto;
		border-left: 0;
		border-right: 0;
		border-top: 1px solid rgba(245, 241, 234, 0.08);
		background: rgba(10, 12, 11, 0.92);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		overflow: visible;
	}

	.er-cazare-room--flip .er-cazare-room__frame {
		grid-column: 1;
		border-right: 0;
	}
}

@media (max-width: 560px) {
	.er-cazare-room__arrow {
		width: 2.5rem;
		height: 2.5rem;
	}

	.er-cazare-room__amenities {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.er-cazare-room__slide {
		transition: none;
	}
}

/* --- Strengths --- */
.er-cazare-strengths {
	position: relative;
	z-index: 2;
	min-height: min(100svh, 48rem);
	display: flex;
	align-items: center;
	padding: clamp(4.5rem, 11vh, 7rem) var(--er-container-gutter);
	overflow: hidden;
	background: var(--er-ink);
}

.er-cazare-strengths__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.er-cazare-strengths__img {
	width: 100%;
	height: 130%;
	margin-top: -15%;
	object-fit: cover;
	object-position: center 45%;
	filter: saturate(0.9) contrast(1.05);
	will-change: transform;
}

.er-cazare-strengths__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(10, 12, 11, 0.74) 0%, rgba(10, 12, 11, 0.8) 45%, rgba(10, 12, 11, 0.94) 100%),
		radial-gradient(ellipse 70% 55% at 50% 30%, transparent 15%, rgba(0, 0, 0, 0.4) 100%);
}

.er-cazare-strengths__inner {
	position: relative;
	z-index: 2;
	width: min(100%, 64rem);
	margin-inline: auto;
}

.er-cazare-strengths__head {
	text-align: center;
	margin-bottom: clamp(2.25rem, 5vh, 3.25rem);
}

.er-cazare-strengths__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.75rem 1.5rem;
	justify-items: center;
	width: min(100%, 56rem);
	margin-inline: auto;
}

.er-cazare-strength {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.65rem;
	width: 100%;
	max-width: 12.5rem;
	padding: 0 0.35rem;
}

.er-cazare-strength .er-activity-icon {
	color: var(--er-gold-light);
	opacity: 0.9;
}

.er-cazare-strength__title {
	margin: 0;
	font-family: var(--er-font-booking);
	font-size: 0.6875rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
}

.er-cazare-strength__text {
	margin: 0;
	font-family: var(--er-font-sans);
	font-size: 0.875rem;
	line-height: 1.55;
	color: #fff;
}

/* --- Guest perks (free games for lodged guests) --- */
.er-cazare-perks {
	position: relative;
	z-index: 2;
	padding: clamp(4rem, 10vh, 6.5rem) var(--er-container-gutter);
	background:
		radial-gradient(ellipse 55% 40% at 50% 0%, rgba(168, 134, 74, 0.1), transparent 68%),
		var(--er-ink);
	text-align: center;
}

.er-cazare-perks__inner {
	width: min(100%, 64rem);
	margin-inline: auto;
}

.er-cazare-perks__head {
	margin-bottom: clamp(1.25rem, 3vh, 1.85rem);
}

.er-cazare-perks__lead {
	margin: 1rem auto 0;
	width: 100%;
	max-width: min(36rem, 100%);
	padding-inline: 0.15rem;
	font-family: var(--er-font-display);
	font-size: var(--er-copy-size, clamp(1.05rem, 2.1vw, 1.3rem));
	line-height: var(--er-copy-leading, 1.45);
	color: #fff;
	overflow-wrap: break-word;
}

.er-cazare-perks__banner {
	display: inline-flex;
	margin: 0 0 clamp(1.75rem, 4vh, 2.5rem);
	padding: 0.85rem 1.35rem;
	font-family: var(--er-font-booking);
	font-size: clamp(0.6875rem, 1.2vw, 0.75rem);
	font-weight: var(--er-weight-semibold);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.4;
	color: var(--er-ink);
	background: #fff;
	border-radius: 6px;
}

.er-cazare-perks__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 1.5rem);
	margin-bottom: clamp(1.75rem, 4vh, 2.5rem);
	text-align: center;
	justify-items: center;
}

.er-cazare-perk {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
	width: 100%;
	padding: 1.25rem;
	border: 1px solid rgba(245, 241, 234, 0.12);
	border-radius: 10px;
	background: linear-gradient(165deg, rgba(28, 30, 28, 0.95), rgba(12, 14, 13, 0.88));
	text-align: center;
}

.er-cazare-perk .er-activity-icon {
	width: 2.35rem;
	height: 2.35rem;
	color: #fff;
}

.er-cazare-perk__title {
	margin: 0;
	font-family: var(--er-font-booking);
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
}

.er-cazare-perk__text {
	margin: 0;
	font-family: var(--er-font-sans);
	font-size: 0.875rem;
	line-height: 1.5;
	color: #fff;
}

.er-cazare-perks__actions {
	display: flex;
	justify-content: center;
}

@media (max-width: 64rem) {
	.er-cazare-perks__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 40rem) {
	.er-cazare-perks__grid {
		grid-template-columns: 1fr;
	}
}

/* --- Policies --- */
.er-cazare-policies {
	padding: clamp(4rem, 10vh, 6rem) var(--er-container-gutter);
	border-top: 1px solid rgba(245, 241, 234, 0.08);
	background: var(--er-ink);
}

.er-cazare-policies__inner {
	width: min(100%, 52rem);
	margin-inline: auto;
}

.er-cazare-policies__head {
	text-align: center;
	margin-bottom: 2.25rem;
}

.er-cazare-policies__grid {
	display: grid;
	gap: 2rem;
}

.er-cazare-policies__times {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.er-cazare-policies__time {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	padding: 1.25rem 1rem;
	text-align: center;
	border: 1px solid rgba(245, 241, 234, 0.12);
	border-radius: 6px;
}

.er-cazare-policies__time-label {
	font-family: var(--er-font-booking);
	font-size: 0.625rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #fff;
}

.er-cazare-policies__time-value {
	font-family: var(--er-font-display);
	font-size: 1.5rem;
	color: #fff;
}

.er-cazare-policies__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.75rem;
}

.er-cazare-policies__list li {
	padding-left: 1.1rem;
	position: relative;
	font-family: var(--er-font-sans);
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #fff;
}

.er-cazare-policies__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background: var(--er-gold);
	opacity: 0.7;
}

/* --- Quote CTA --- */
.er-cazare-quote {
	position: relative;
	padding: clamp(5rem, 12vh, 8rem) var(--er-container-gutter);
	text-align: center;
	background:
		radial-gradient(ellipse 55% 45% at 50% 100%, rgba(168, 134, 74, 0.14), transparent 70%),
		var(--er-ink);
}

.er-cazare-quote__inner {
	width: min(100%, 38rem);
	margin-inline: auto;
}

.er-cazare-quote__title {
	margin: 0.85rem 0 0;
	font-family: var(--er-font-display);
	font-size: clamp(1.85rem, 5vw, 3rem);
	font-weight: var(--er-weight-regular);
	font-style: italic;
	line-height: 1.2;
	color: #fff;
}

.er-cazare-quote__text {
	margin: 1.15rem auto 0;
	max-width: 28rem;
	font-family: var(--er-font-sans);
	font-size: 1rem;
	line-height: 1.65;
	color: #fff;
}

.er-cazare-quote__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
}

.er-cazare-quote__actions .er-btn-primary {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--er-ink);
	background: var(--er-ivory);
	border-color: #fff;
}

.er-cazare-quote__actions .er-btn-primary:hover {
	color: var(--er-ink);
	background: #fff;
}

.er-cazare-quote__secondary {
	padding: 0 0 0.15rem;
	border-bottom: 1px solid rgba(245, 241, 234, 0.28);
	font-family: var(--er-font-booking);
	font-size: 0.6875rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
}

.er-cazare-quote__secondary:hover {
	color: var(--er-gold-light);
}

/* --- Modal --- */
.er-inquiry-open .er-journey-header {
	visibility: hidden;
	pointer-events: none;
}

.er-cazare-modal {
	position: fixed;
	inset: 0;
	z-index: 12000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
	isolation: isolate;
}

.er-cazare-modal[hidden] {
	display: none !important;
}

.er-cazare-modal__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	border: 0;
	margin: 0;
	padding: 0;
	background: rgba(5, 6, 6, 0.82);
	cursor: pointer;
}

.er-cazare-modal__panel {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: min(100%, 26.5rem);
	max-height: min(90svh, 42rem);
	overflow: hidden;
	background: #161816;
	border: 1px solid rgba(245, 241, 234, 0.16);
	border-radius: 8px;
	box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5);
}

.er-cazare-modal__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	flex-shrink: 0;
	padding: 1.25rem 1.25rem 1rem;
	border-bottom: 1px solid rgba(245, 241, 234, 0.1);
}

.er-cazare-modal__eyebrow {
	margin: 0 0 0.35rem;
	font-family: var(--er-font-booking);
	font-size: 0.625rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--er-gold);
}

.er-cazare-modal__title {
	margin: 0;
	font-family: var(--er-font-display);
	font-size: 1.4rem;
	font-weight: var(--er-weight-regular);
	color: #fff;
}

.er-cazare-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.35rem;
	height: 2.35rem;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(245, 241, 234, 0.2);
	border-radius: 50%;
	background: rgba(245, 241, 234, 0.06);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.er-cazare-form {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: 1.15rem 1.25rem 1.35rem;
}

.er-cazare-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.er-cazare-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.er-cazare-form__label {
	font-family: var(--er-font-booking);
	font-size: 0.625rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
}

.er-cazare-form__input {
	box-sizing: border-box;
	width: 100%;
	min-height: 2.75rem;
	margin: 0;
	padding: 0.7rem 0.85rem;
	font-family: var(--er-font-sans);
	font-size: 0.9375rem;
	color: #fff;
	background: rgba(245, 241, 234, 0.06);
	border: 1px solid rgba(245, 241, 234, 0.16);
	border-radius: 6px;
	color-scheme: dark;
	appearance: none;
	-webkit-appearance: none;
}

select.er-cazare-form__input {
	padding-right: 2.25rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A96A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.85rem center;
}

.er-cazare-form__input--date::-webkit-calendar-picker-indicator {
	opacity: 0.7;
	cursor: pointer;
	filter: invert(1);
}

.er-cazare-form__input:focus {
	outline: none;
	border-color: rgba(201, 169, 106, 0.65);
}

.er-cazare-form__textarea {
	resize: vertical;
	min-height: 5rem;
	max-height: 9rem;
}

.er-cazare-form__honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

.er-cazare-form__status {
	margin: 0;
	padding: 0.75rem 0.85rem;
	font-size: 0.875rem;
	border-radius: 6px;
}

.er-cazare-form__status.is-ok {
	color: #d8f0d4;
	background: rgba(70, 140, 80, 0.18);
}

.er-cazare-form__status.is-error {
	color: #f5d0d0;
	background: rgba(160, 60, 60, 0.2);
}

.er-cazare-form__submit.er-btn-primary {
	color: var(--er-ink);
	background: var(--er-ivory);
	border-color: #fff;
}

.er-cazare-body .er-journey-footer--page {
	margin-top: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
	.er-cazare-strengths__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.75rem 1rem;
		width: 100%;
	}

	.er-cazare-strength {
		max-width: none;
	}
}

@media (max-width: 560px) {
	.er-cazare-form__row {
		grid-template-columns: 1fr;
	}

	.er-cazare-strengths__grid {
		grid-template-columns: 1fr;
	}
}
