/* ==========================================================================
   Front page — City Wharf landing
   Mobile-first. БЕМ. Токени — у global.css.
   ========================================================================== */

.front-page {
	overflow-x: hidden;
	overflow-x: clip;
}

.section-divider {
	border: none;
	border-top: 1px solid rgba(28, 28, 28, 0.5);
	width: calc(100% - 32px);
	max-width: calc(1520px - 32px);
	margin: 0 auto;
}

@media (min-width: 768px) {
	.section-divider {
		width: calc(100% - 40px);
		max-width: calc(1520px - 40px);
	}
}

@media (max-width: 767px) {
	.section-divider--hide-sm {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
	padding: 16px 0;
}

.hero__wrp {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	padding: 150px 16px 16px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero__wrp::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.5) 100%),
		linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
	pointer-events: none;
	border-radius: inherit;
}

.hero__overlay {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hero__badge {
	width: min(820px, 54vw);
	height: auto;
}

/* --------------------------------------------------------------------------
   Hero — panel (intro + booking + tours)
   -------------------------------------------------------------------------- */

.hero__panel {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 32px 0 0;
}

.hero__intro {
	margin: 0;
	max-width: 544px;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.55;
	color: var(--color-cream);
}

.hero__booking {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.hero__card {
	position: relative;
	margin-top: 19px;
	padding: 19px 16px 24px;
	background-color: var(--color-surface);
	border-radius: 0 4px 4px 4px;
}

.hero__address {
	position: absolute;
	top: -24px;
	left: 0;
	padding: 3px 10px;
	background-color: var(--color-coral);
	color: var(--color-white);
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 12px;
	letter-spacing: 0.32px;
	text-transform: uppercase;
	border-radius: 4px 4px 0 0;
}

.hero__address--image {
	display: none;
}

.hero__from {
	display: block;
	color: var(--color-coral);
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	text-transform: uppercase;
}

.hero__price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 2px 0 6px;
	font-family: var(--font-sans);
}

.hero__price strong {
	font-weight: var(--fw-bold);
	font-size: 40px;
	line-height: 1;
	color: var(--color-coral);
	text-transform: uppercase;
}

.hero__price span {
	font-weight: var(--fw-bold);
	font-size: 20px;
	color: var(--color-text);
}

.hero__term {
	display: block;
	color: var(--color-text);
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 14px;
	text-transform: uppercase;
}

.hero__flag {
	margin: 0;
	padding: 7px 10px;
	background-color: var(--color-coral);
	color: var(--color-cream);
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	text-align: left;
	text-transform: uppercase;
	border-radius: 4px;
}

.hero__flag a {
color: var(--color-cream);
text-decoration: none;
transition: color 0.2s ease;
}
.hero__flag a:hover {
color: var(--color-text);
}


.hero__actions {
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 10px 7px 13px;
	background-color: var(--color-surface);
	border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Button (framed double-border)
   -------------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border: 2px solid var(--color-text);
	border-radius: 5px;
	color: var(--color-text);
	cursor: pointer;
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	text-align: center;
	transition: transform 0.15s ease, filter 0.15s ease;
}

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

.btn--teal {
	background-color: var(--color-teal);
}

.btn--cream {
	background-color: var(--color-surface);
}

/* --------------------------------------------------------------------------
   Hero — tour thumbnails
   -------------------------------------------------------------------------- */

.hero__tours {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
}

.tour {
	display: flex;
	gap: 14px;
	align-items: center;
	max-width: 405px;
}

.tour__media {
	position: relative;
	flex: none;
	width: 104px;
	height: 72px;
}

.tour__thumb {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.tour__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 36px;
	height: 36px;
	pointer-events: none;
}

.tour__label {
	display: block;
	color: var(--color-cream);
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 15px;
	text-transform: uppercase;
}

.tour__text {
	margin: 3px 0 0;
	color: var(--color-cream);
	font-family: var(--font-mono);
	font-size: 13px;
	line-height: 1.3;
}

/* ==========================================================================
   Desktop
   ========================================================================== */

.hero .container {
	position: relative;
}

.hero__left {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 32px;
	padding-bottom: 8px;
	padding-right: 316px;
}

.hero__intro {
	max-width: 314px;
}

.hero__booking {
	position: absolute;
	right: 36px;
	bottom: 65px;
	width: 300px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.hero__tours {
	flex-direction: row;
	gap: 24px;
}

.tour {
	flex: 1;
	align-items: flex-start;
	gap: 16px;
	border-top: 1px solid rgba(255, 244, 217, 0.4);
	padding-top: 14px;
}

.tour__media {
	width: 188px;
	height: 118px;
}

.tour__thumb {
	border-radius: 6px;
}

.tour__icon {
	width: 50px;
	height: 50px;
}

.tour__label {
	font-size: 19px;
	letter-spacing: 0.19px;
	line-height: 30px;
}

.tour__text {
	font-size: 14px;
	line-height: 18px;
	text-transform: uppercase;
	margin-top: 0;
}

/* ==========================================================================
   Hero — mobile (≤ 1024px)
   ========================================================================== */

@media (max-width: 1024px) {

	.hero {
		padding: 8px 0 0;
	}

	.hero__wrp {
		border-radius: 6px;
		margin: 0 8px;
		padding: 120px 16px 20px;
		justify-content: flex-end;
	}

	.hero__left {
		padding-right: 0;
		gap: 16px;
	}

	.hero__intro {
		max-width: 100%;
		text-align: center;
		font-size: 16px;
	}

	.hero__tours {
		justify-content: space-around;
		gap: 12px;
	}

	.tour {
		flex: unset;
		align-items: center;
		border-top: none;
		padding-top: 0;
	}

	.tour__media {
		width: 104px;
		height: 72px;
	}

	.tour__thumb {
		border-radius: 10px;
	}

	.tour__icon {
		width: 36px;
		height: 36px;
	}

	.tour__label {
		font-size: 15px;
		letter-spacing: normal;
		line-height: normal;
	}

	.tour__text {
		font-size: 13px;
		line-height: 1.3;
		text-transform: none;
		margin-top: 3px;
	}

	.hero__booking {
		position: static;
		width: auto;
		bottom: auto;
		top: auto;
		justify-content: flex-start;
		margin: 0 8px;
		padding: 24px 0 32px;
		gap: 10px;
	}

	.hero__card {
		border-radius: 4px;
	}

	.hero__from {
		color: var(--color-text);
	}

	.hero__flag {
		text-align: center;
		border-radius: 4px;
	}

	.hero__actions {
		background: transparent;
		padding: 0;
	}

	.btn {
		width: 100%;
	}

}


@media (max-width: 767px) {
	.hero {
		padding: 26px 0 0;
	}

	.hero .container {
		padding: 0;
	}

	.hero__wrp {
		margin: 0 12px;
	}

	.hero__address {
		display: none;
	}

	.hero__booking {
		padding-top: 0;
	}

	.hero__intro {
		display: none;
	}

	.hero__card {
		margin-top: 0;
		text-align: center;
	}

	.hero__from {
		font-size: 14px;
		font-weight: var(--fw-bold);
	}

	.hero__price {
		justify-content: center;
	}

	.hero__price strong {
		font-size: clamp(32px, 9.5vw, 40px);
	}

	.hero__address--image {
		display: block;
		position: static;
		top: auto;
		left: auto;
		width: fit-content;
		margin: 0 auto;
		padding: 4px 8px;
		background: #cf5952;
		border-radius: 0 0 4px 4px;
	}

	.hero__tours {
		flex-direction: column;
	}

	.tour {
		max-width: 100%;
	}
}

/* ==========================================================================
   Tagline
   ========================================================================== */

.tagline {
	background-color: var(--color-coral);
	border-top: 1px solid #1c1c1c;
	border-bottom: 1px solid #1c1c1c;
}

.tagline__inner {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	gap: 32px;
	height: 43px;
	overflow: hidden;
}

.tagline__word {
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	color: var(--color-cream);
	white-space: nowrap;
}

@media (max-width: 1024px) {
	.tagline__inner {
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px 32px;
		height: auto;
		padding: 14px 24px;
		overflow: visible;
	}
}

@media (max-width: 600px) {
	.tagline__inner {
		flex-direction: column;
		align-items: center;
		gap: 18px;
		padding: 16px 24px;
	}

	.tagline__word {
		white-space: normal;
		text-align: center;
	}
}

/* ==========================================================================
   Welcome
   ========================================================================== */

.welcome {
	padding: 48px 0;
}

/* Mobile: single column stack */
.welcome__grid {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

/* ── Tag pill ── */
.welcome__tag-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 12px 5px 8px;
	background-color: var(--color-teal);
	border-radius: 4px;
	margin-bottom: 14px;
}

.welcome__tag-ico {
	flex: none;
	width: 24px;
	height: 24px;
}

.welcome__tag-text {
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	text-transform: uppercase;
	color: var(--color-text);
	white-space: nowrap;
}

/* ── Heading ── */
.welcome__heading {
	margin: 0 0 8px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 48px;
	line-height: 1.04;
	letter-spacing: -1px;
	color: var(--color-coral);
	max-width: 385px;
}

/* ── Address ── */
.welcome__address {
	display: block;
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 14px;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	color: var(--color-coral);
	margin: 0 0 32px;
}

/* ── Location ── */
.welcome__location {
	margin-bottom: 24px;
}

.welcome__distance {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 16px;
	color: var(--color-text);
	margin-bottom: 10px;
}

.welcome__pin-ico {
	flex: none;
	width: 20px;
	height: 20px;
	color: var(--color-coral);
}

.welcome__transport {
	display: flex;
	gap: 20px;
}

.welcome__transport-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.welcome__transport-ico {
	flex: none;
	width: 19px;
	height: 19px;
	color: var(--color-text);
}

.welcome__transport-time {
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	letter-spacing: 1.33px;
	color: var(--color-text);
}

/* ── Universities ── */
.welcome__unis {
	margin-bottom: 24px;
}

.welcome__unis-label {
	margin: 0 0 8px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 18px;
	line-height: 32px;
	text-transform: uppercase;
	color: var(--color-text);
}

.welcome__unis-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.welcome__uni {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 16px;
	line-height: 32px;
	color: var(--color-text);
}

.welcome__uni-ico {
	flex: none;
	width: 22px;
	height: 22px;
	color: var(--color-text);
	opacity: 0.6;
}

.welcome__uni-sep {
	opacity: 0.5;
}

.welcome__uni-time {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	letter-spacing: 1.33px;
}

.welcome__uni-time svg {
	flex: none;
	width: 20px;
	height: auto;
}

.welcome__walk-ico {
	flex: none;
	width: 10px;
	height: 14px;
	opacity: 0.7;
}

/* ── Illustration (decorative) ── */
.welcome__illustration {
	display: block;
	width: 120px;
	height: auto;
	object-fit: contain;
	mix-blend-mode: darken;
	margin: 8px 0 16px 0;
}

/* ── Divider ── */
.welcome__rule {
	border: none;
	border-top: 1px solid rgba(45, 45, 45, 0.25);
	margin: 24px 0;
}

/* ── Intro & CTA ── */
.welcome__intro {
	margin: 0 0 24px;
	max-width: 515px;
	font-family: var(--font-sans);
	font-weight: var(--fw-medium);
	font-size: 16px;
	line-height: 22px;
	color: var(--color-text);
}

.welcome__cta {
	width: 100%;
}

/* ── Right panels (mobile: stacked) ── */
.welcome__panel {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid rgba(45, 45, 45, 0.25);
}

.welcome__panel-heading {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 32px;
	line-height: 1.18;
	letter-spacing: -0.64px;
	color: var(--color-coral);
	text-transform: lowercase;
}

.welcome__panel-side {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.welcome__panel-img {
	display: block;
	width: 100%;
	max-width: 356px;
	height: auto;
	border-radius: 4px;
}

.welcome__panel-desc {
	margin: 0;
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 14px;
	line-height: 21px;
	text-transform: uppercase;
	color: var(--color-text);
}

/* ── Logos ── */
.welcome__logos {
	display: flex;
	gap: 16px;
	align-items: center;
	max-width: 356px;
}

.welcome__logo-main {
	flex: 0 0 164px;
	height: 164px;
	background-color: #1c1c1c;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border: 1px solid var(--color-cream);
}

.welcome__logos-stack {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: center;
}

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

.welcome__logo-main .welcome__logo-img {
	max-height: 68px;
	width: auto;
}

/* ==========================================================================
   Desktop ≥ 1024px — Welcome overrides
   ========================================================================== */

.welcome {
	padding: 80px 0;
}

/* Two-column layout */
.welcome__grid {
	position: relative;
	flex-direction: row;
	gap: 0;
}

.welcome__grid::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(45, 45, 45, 0.25);
}

.welcome__left {
	box-sizing: border-box;
	flex: 0 0 50%;
	min-width: 0;
	padding-right: 28px;
}

.welcome__panels {
	box-sizing: border-box;
	flex: 0 0 50%;
	min-width: 0;
	padding-left: 16px;
}

.welcome__heading {
	font-size: 69px;
	line-height: 70.7px;
	letter-spacing: -1.38px;
	margin-bottom: 4px;
}

.welcome__address {
	font-size: 16px;
	margin-bottom: 250px;
}

.welcome__pin-ico {
	width: 24px;
	height: 24px;
}

.welcome__unis-label {
	font-size: 20px;
}

.welcome__unis-row {
	position: relative;
	margin-bottom: 8px;
}

.welcome__unis-row .welcome__unis {
	margin-bottom: 0;
}

.welcome__illustration {
	position: absolute;
	right: 23px;
	top: 0;
	width: 145px;
	height: 142px;
	margin: 0;
}


.welcome__cta {
	width: auto;
	min-width: 286px;
}

/* Right panels — desktop two-column within each panel */
.welcome__panel {
	flex-direction: row;
	gap: 24px;
	align-items: flex-start;
	min-width: 0;
	padding-top: 40px;
	padding-bottom: 40px;
	border-top: 1px solid rgba(45, 45, 45, 0.25);
	border-bottom: none;
}

.welcome__panel:first-child {
	padding-top: 0;
	border-top: none;
}

.welcome__panel:last-child {
	padding-bottom: 0;
}

.welcome__panel-heading {
	flex: 1 1 0;
	min-width: 0;
	font-size: 35px;
	line-height: 40px;
	letter-spacing: -0.7px;
}

.welcome__panel-side {
	flex: 0 1 46.35%;
	width: 46.35%;
	max-width: 46.35%;
	min-width: 0;
	gap: 40px;
}

.welcome__location {
	margin-bottom: 40px;
}

.welcome__panel-img {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

.welcome__panel-desc {
	font-size: 14px;
}

.welcome__logo-main {
	flex: 0 0 188px;
	height: 188px;
	padding: 24px;
}

.welcome__logos {
	max-width: 356px;
	gap: 24px;
}

/* ==========================================================================
   Welcome — Mobile ≤ 1024px
   ========================================================================== */

@media (max-width: 1024px) {

	.welcome {
		padding: 40px 0;
	}

	.welcome__grid {
		flex-direction: column;
		gap: 0;
	}

	.welcome__grid::before {
		display: none;
	}

	.welcome__left {
		flex: none;
		width: 100%;
		padding-right: 0;
	}

	.welcome__panels {
		flex: none;
		width: 100%;
		padding-left: 0;
	}

	.welcome__heading {
		font-size: 43px;
		line-height: 1.04;
		letter-spacing: -0.86px;
		max-width: none;
		margin-bottom: 8px;
	}

	.welcome__address {
		font-size: 14px;
		margin-bottom: 28px;
	}

	.welcome__location {
		margin-bottom: 24px;
	}

	.welcome__distance {
		font-size: 16px;
	}

	.welcome__pin-ico {
		width: 20px;
		height: 20px;
	}

	.welcome__transport-time {
		font-size: 16px;
	}

	.welcome__unis-label {
		font-size: 16px;
	}

	.welcome__uni {
		font-size: 16px;
	}

	.welcome__uni-time {
		font-size: 16px;
		letter-spacing: 0.96px;
	}

	.welcome__unis-row {
		position: static;
		margin-bottom: 0;
	}

	.welcome__illustration {
		position: static;
		width: 100px;
		height: auto;
		margin: 8px 0 12px auto;
	}

	.welcome__intro {
		font-size: 16px;
		line-height: 28px;
		max-width: none;
	}

	.welcome__cta {
		width: 100%;
		min-width: 0;
	}

	.welcome__panel {
		flex-direction: column;
		gap: 16px;
		padding-top: 24px;
		padding-bottom: 24px;
		border-top: 1px solid rgba(45, 45, 45, 0.25);
		border-bottom: none;
	}

	.welcome__panel:first-child {
		padding-top: 24px;
		border-top: 1px solid rgba(45, 45, 45, 0.25);
	}

	.welcome__panel:last-child {
		padding-bottom: 0;
	}

	.welcome__panel-heading {
		flex: none;
		font-size: 28px;
		line-height: 34px;
		letter-spacing: -0.56px;
	}

	.welcome__panel-side {
		flex: none;
		width: 100%;
		max-width: 100%;
		gap: 14px;
	}

	.welcome__panel-img {
		max-width: 100%;
	}

	.welcome__panel-desc {
		font-size: 14px;
	}

	.welcome__logo-main {
		flex: 0 0 140px;
		height: 140px;
		padding: 16px;
	}

	.welcome__logos {
		max-width: 100%;
		gap: 16px;
	}

}

/* ==========================================================================
   Welcome — Tablet 768px–1024px
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1024px) {

	.welcome__panels {
		margin-top: 40px;
	}

	.welcome__panel {
		flex-direction: row;
		gap: 24px;
		align-items: flex-start;
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.welcome__panel:first-child {
		padding-top: 0;
		border-top: none;
	}

	.welcome__panel-heading {
		flex: 1 1 0;
		min-width: 0;
		font-size: 30px;
		line-height: 36px;
	}

	.welcome__panel-side {
		flex: 0 1 50%;
		width: 50%;
		max-width: 50%;
		min-width: 0;
		gap: 16px;
	}

	.welcome__left {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 40px;
		align-items: start;
	}

	.welcome__tag-pill  { grid-column: 1; }
	.welcome__heading   { grid-column: 1; }
	.welcome__address   { grid-column: 1; }
	.welcome__location  { grid-column: 1; }
	.welcome__unis-row  { grid-column: 2; grid-row: 1 / span 4; }
	.welcome__rule      { grid-column: 1 / -1; }
	.welcome__intro     { grid-column: 1 / -1; }
	.welcome__cta       { grid-column: 1 / -1; }

}

/* ==========================================================================
   Room Types
   ========================================================================== */

.room-types {
	padding: 60px 0;
}

.room-types__heading {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 43px;
	line-height: 78px;
	letter-spacing: -0.86px;
	color: var(--color-coral);
	text-transform: lowercase;
}

.room-types__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.room-types__grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.room-types__card {
	position: relative;
	overflow: hidden;
	min-width: 0;
}

/* ── Gallery ── */

.room-types__gallery {
	position: relative;
	overflow: hidden;
	height: auto;
	aspect-ratio: 4 / 3;
}

.room-types__gallery .slick-list,
.room-types__gallery .slick-track {
	height: 100% !important;
}

.room-types__slide {
	height: 100%;
}

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

.room-types__slide--placeholder {
	background: #d4d0c8;
}

/* Badge ribbon — positioned on .room-types__card, overlays gallery corner */
.room-types__badge {
	position: absolute;
	top: 32px;
	right: -36px;
	z-index: 2;
	background: var(--color-teal);
	color: var(--color-text);
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 6px 52px;
	transform: rotate(38deg);
	white-space: nowrap;
	pointer-events: none;
}

/* Slick arrows */
.room-types__gallery .slick-prev,
.room-types__gallery .slick-next {
	z-index: 3;
	width: 38px;
	height: 38px;
	border: 1px solid var(--color-cream);
	border-radius: 50%;
	background: transparent;
	display: flex !important;
	align-items: center;
	justify-content: center;
	top: 50%;
	transform: translateY(-50%);
}

.room-types__gallery .slick-prev {
	left: 10px;
}

.room-types__gallery .slick-next {
	right: 10px;
}

.room-types__gallery .slick-prev::before,
.room-types__gallery .slick-next::before {
	display: none;
}

/* Slick dots */
.room-types__gallery .slick-dots {
	bottom: 16px;
}

.room-types__gallery .slick-dots li button::before {
	color: var(--color-cream);
	opacity: 0.7;
	font-size: 8px;
}

.room-types__gallery .slick-dots li.slick-active button::before {
	opacity: 1;
	color: var(--color-cream);
}

/* ── Info block ── */

.room-types__info {
	padding-top: 16px;
}

.room-types__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0 12px;
	margin-bottom: 4px;
}

.room-types__name {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 26px;
	line-height: 32px;
	color: var(--color-coral);
}

.room-types__price {
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 17px;
	line-height: 32px;
	color: var(--color-text);
	text-align: right;
}

.room-types__available {
	margin: 0 0 16px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 17px;
	line-height: 32px;
	color: var(--color-text);
}

/* Referral banner */
.room-types__referrals {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 16px;
}

.room-types__referrals--empty {
	margin-bottom: 0;
}

.room-types__referral {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--color-teal);
	border-radius: 4px;
	min-height: 31px;
	padding: 5px 8px;
	width: fit-content;
	max-width: 100%;
}

.room-types__referral-ico {
	font-size: 16px;
	color: var(--color-text);
	flex-shrink: 0;
}

.room-types__referral-ico--svg {
	display: block;
}

.room-types__referral-text {
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 14px;
	line-height: 21px;
	text-transform: uppercase;
	color: var(--color-text);
	white-space: normal;
}

/* Features row */
.room-types__features {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 24px;
}

.room-types__feature {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono);
	font-weight: var(--fw-regular);
	font-size: 14px;
	line-height: 32px;
	color: var(--color-text);
}

.room-types__feature svg {
	flex-shrink: 0;
}

/* Description */
.room-types__desc {
	margin: 0 0 24px;
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 14px;
	line-height: 21px;
	text-transform: uppercase;
	color: var(--color-text);
	max-width: 411px;
	min-height: 168px;
}

/* CTA buttons */
.room-types__actions {
	display: flex;
	gap: 4px;
}

.room-types__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	flex: 1;
	border: 2px solid var(--color-text);
	border-radius: 5px;
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--color-text);
	background: transparent;
	cursor: pointer;
}

.room-types__actions > .room-types__cta:first-child {
	background: var(--color-teal);
}

.room-types__cta {
	transition: transform 0.15s ease, filter 0.15s ease;
}

.room-types__cta:hover {
	filter: brightness(0.97);
	transform: translateY(-1px);
}

/* ==========================================================================
   Room Types — Mobile ≤ 767px
   ========================================================================== */

@media (max-width: 767px) {

	.room-types {
		padding: 30px 0;
	}

	.room-types__heading {
		line-height: 1.18;
		margin-bottom: 16px;
	}

	.room-types__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.room-types__referral {
		width: 100%;
		height: auto;
		min-height: 31px;
		padding: 6px 10px;
		align-items: flex-start;
	}

	.room-types__referrals--empty {
		display: none;
	}

	.room-types__referral-text {
		white-space: normal;
		line-height: 1.4;
	}

	.room-types__features {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 4px 16px;
	}

	.room-types__desc {
		min-height: 0;
	}

	.room-types__actions {
		flex-direction: column;
		gap: 8px;
	}

	.room-types__cta {
		flex: none;
		width: 100%;
	}

}

@media (min-width: 768px) {
	.room-types__actions > .room-types__cta:only-child {
		flex: 0 0 calc(50% - 2px);
		max-width: calc(50% - 2px);
	}
}

/* ==========================================================================
   Room Types — Tablet 768px–1024px
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1024px) {

	.room-types {
		padding: 48px 0;
	}

	.room-types__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 16px;
	}

}

/* ==========================================================================
   What's Included
   ========================================================================== */

.included {
	padding: 60px 0;
}

/* ── Header ── */

.included__header {
	margin-bottom: 40px;
}

.included__tag {
	display: inline-block;
	background: var(--color-teal);
	border-radius: 4px;
	height: 31px;
	line-height: 31px;
	padding: 0 12px;
	margin-bottom: 0;
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	text-transform: uppercase;
	color: var(--color-text);
	white-space: nowrap;
}

.included__heading {
	margin: 0 0 8px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 43px;
	line-height: 78px;
	letter-spacing: -0.86px;
	color: var(--color-coral);
}

.included__intro {
	margin: 0;
	max-width: 508px;
	font-family: var(--font-sans);
	font-weight: var(--fw-medium);
	font-size: 20px;
	line-height: 32px;
	color: var(--color-text);
}

/* ── Photo strip ── */

.included__photos {
	display: flex;
	gap: 8px;
	margin-bottom: 56px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
}

.wi-photo {
	flex: 1;
	min-width: 220px;
	scroll-snap-align: start;
}

.wi-photo__img {
	height: 196px;
	overflow: hidden;
	background: #d4d0c8;
}

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

.wi-photo__caption {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: 8px;
}

.wi-photo__icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
	flex-shrink: 0;
}

.wi-photo__label {
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	color: var(--color-text);
	white-space: nowrap;
}

/* ── Three columns ── */

.included__cols {
	display: flex;
}

.included__col {
	flex: 1;
	min-width: 0;
	padding-right: 48px;
	padding-left: 48px;
}

.included__col:first-child {
	padding-left: 0;
}

.included__col:last-child {
	padding-right: 0;
}

.included__col-toggle {
	display: block;
	width: 100%;
	background: none;
	border: none;
	padding: 0;
	text-align: left;
	cursor: default;
	pointer-events: none;
}

.included__col-arrow {
	display: none;
}

.included__col-heading {
	margin: 0 0 8px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 30px;
	line-height: 32px;
	color: var(--color-text);
}

.included__col-desc {
	margin: 0 0 16px;
	font-family: var(--font-sans);
	font-weight: var(--fw-medium);
	font-size: 16px;
	line-height: 25px;
	color: var(--color-text);
}

/* ── List ── */

.wi-list {
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

@media (max-width: 767px) {
	.wi-list {
		margin-top: 0;
	}
}

.wi-list__item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wi-list__icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
	flex-shrink: 0;
}

.wi-list__label {
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	color: var(--color-text);
}

/* ==========================================================================
   Included — Mobile ≤ 767px
   ========================================================================== */

@media (max-width: 767px) {

	.included {
		padding: 30px 0;
	}

	.included__heading {
		font-size: 43px;
		line-height: 1.18;
	}

	.included__intro {
		font-size: 16px;
		line-height: 26px;
		max-width: none;
	}

	.included__photos {
		flex-wrap: nowrap;
	}

	.wi-photo {
		flex: 0 0 240px;
		scroll-snap-align: start;
	}

	.wi-photo__img {
		height: 196px;
	}

	.included__cols {
		flex-direction: column;
		gap: 0;
	}

	.included__col {
		flex: none;
		width: 100%;
		padding: 0;
		border-bottom: 1px solid rgba(45, 45, 45, 0.25);
	}

	.included__col:first-child {
		border-top: 1px solid rgba(45, 45, 45, 0.25);
	}

	.included__col-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 16px 0;
		cursor: pointer;
		pointer-events: auto;
	}

	.included__col-heading {
		margin: 0;
	}

	.included__col-arrow {
		display: block;
		flex-shrink: 0;
		color: var(--color-text);
		transition: transform 0.2s ease;
	}

	.included__col.is-open .included__col-arrow {
		transform: rotate(180deg);
	}

	.included__col-body {
		display: none;
		padding-bottom: 20px;
	}

	.included__col.is-open .included__col-body {
		display: block;
	}

}

/* ==========================================================================
   Experience
   ========================================================================== */

.experience {
	padding: 60px 0;
}

.experience__heading {
	margin: 0 0 8px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 43px;
	line-height: 78px;
	letter-spacing: -0.86px;
	color: var(--color-coral);
}

/* ── Hero ── */

.experience__hero {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}

.experience__hero-img {
	flex: 0 0 65%;
	overflow: hidden;
}

.experience__hero-img img {
	display: block;
	width: 100%;
	height: 631px;
	object-fit: cover;
}

.experience__hero-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding-top: 4px;
}

.experience__hero-title {
	margin: 0 0 16px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 20px;
	line-height: 24px;
	color: var(--color-coral);
}

.experience__hero-desc {
	margin: 0 0 120px;
	font-family: var(--font-sans);
	font-weight: var(--fw-medium);
	font-size: 16px;
	line-height: 26px;
	color: var(--color-text);
}

.experience__cta {
	display: inline-block;
	border: 2px solid var(--color-text);
	border-radius: 5px;
	width: 285px;
	height: 52px;
	line-height: 48px;
	padding: 0 24px;
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	text-align: center;
	color: var(--color-text);
	text-decoration: none;
	white-space: nowrap;
	align-self: flex-start;
	transition: transform 0.15s ease, filter 0.15s ease;
	cursor: pointer;
}

.experience__cta:hover {
	filter: brightness(0.95);
	transform: translateY(-1px);
}

.experience__hero-deco {
	width: 164px;
	height: 162px;
	object-fit: contain;
	mix-blend-mode: darken;
	align-self: flex-end;
	margin-top: auto;
}

/* ── Cards ── */

.experience__cards {
	display: flex;
	gap: 8px;
	margin-left: 25%;
}

.experience__card {
	flex: 1;
	min-width: 0;
}

.experience__card-img {
	position: relative;
	overflow: hidden;
	margin-bottom: 8px;
}

.experience__card-img img {
	display: block;
	width: 100%;
	height: 494px;
	object-fit: cover;
}

.experience__card-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(242, 160, 54, 0.2);
	mix-blend-mode: multiply;
	pointer-events: none;
}

.experience__card-title {
	margin: 0 0 8px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 20px;
	line-height: 24px;
	color: var(--color-coral);
}

.experience__card-desc {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: var(--fw-medium);
	font-size: 16px;
	line-height: 26px;
	color: var(--color-text);
}

/* ── Experience: scroll when cards don't fit ── */

.experience__cards {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
}

.experience__card {
	min-width: 220px;
	scroll-snap-align: start;
}

@media (max-width: 1024px) {
	.experience { padding: 30px 0; }

	.experience__hero {
		flex-direction: column;
		gap: 0;
	}

	.experience__hero-img {
		flex: none;
		width: 100%;
	}

	.experience__hero-img img {
		height: clamp(220px, 40vw, 480px);
	}

	.experience__hero-info {
		flex: none;
		width: 100%;
		padding-top: 24px;
	}

	.experience__hero-desc {
		margin-bottom: 24px;
	}

	.experience__cta {
		width: 100%;
		align-self: stretch;
		text-align: center;
	}

	.experience__hero-deco {
		display: none;
	}

	.experience__cards {
		margin-left: 0;
		flex-wrap: nowrap;
	}

	.experience__card {
		flex: 0 0 32%;
	}

	.experience__card-img img {
		height: 352px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.experience__hero {
		flex-direction: row;
		gap: 24px;
	}

	.experience__hero-img {
		flex: 0 0 60%;
	}

	.experience__hero-img img {
		height: clamp(300px, 40vw, 480px);
	}

	.experience__hero-info {
		flex: 1;
		padding-top: 4px;
	}

	.experience__cta {
		align-self: flex-start;
	}

	.experience__hero-deco {
		display: block;
		width: 120px;
		height: auto;
	}

	.experience__cards {
		margin-left: 0;
	}
}

/* ==========================================================================
   Location
   ========================================================================== */

.location {
	padding: 60px 0 0;
}

.location__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.location__left {
	min-width: 0;
	border-right: 1px solid rgba(28, 28, 28, 0.50);
	padding-right: 40px;
	position: -webkit-sticky;
	position: sticky;
	top: 20px;
	align-self: flex-start;
}

@media not all and (min-resolution: 0.001dpcm) {
	@supports (-webkit-appearance: none) {
		.location__left {
			position: static;
		}
	}
}

.location__right {
	min-width: 0;
	padding-left: 50px;
}

/* Headings */
.location__heading {
	margin: 0 0 24px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 43px;
	line-height: 78px;
	letter-spacing: -0.86px;
	color: var(--color-coral);
}

.location__heart-heading {
	margin: 0 0 16px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 43px;
	line-height: 78px;
	letter-spacing: -0.86px;
	color: var(--color-coral);
}

/* Tags row */
.location__tags {
	display: flex;
	justify-content: space-between;
	margin-bottom: 48px;
}

.location__tag {
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	color: var(--color-coral);
}

/* Address */
.location__address {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 20px;
	line-height: 32px;
	color: var(--color-text);
}

.location__address-icon {
	width: 33px;
	height: 33px;
	object-fit: contain;
	flex-shrink: 0;
}

/* Transport */
.location__transport {
	display: flex;
	gap: 72px;
	margin-bottom: 48px;
}

.location__transport-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.location__transport-icon {
	width: 17px;
	height: 17px;
	object-fit: contain;
}

.location__transport-time {
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 22px;
	letter-spacing: 1.33px;
	color: var(--color-text);
	white-space: nowrap;
}

/* Nearby places */
.location__places {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}

.location__place {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 5px 0;
}

.location__place-icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
	flex-shrink: 0;
}

.location__place-name {
	flex: 1;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 20px;
	line-height: 32px;
	color: var(--color-text);
}

.location__place-distance {
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 22px;
	letter-spacing: 1.33px;
	color: var(--color-text);
	white-space: nowrap;
}

/* Map */
.location__map {
	margin-top: 32px;
}

.location__map img {
	display: block;
	width: 100%;
	height: auto;
}

/* Photos */
.location__photos {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.location__photo {
	flex: 0 0 auto;
	width: 100%;
	max-width: 425px;
	margin-left: auto;
}

.location__photo img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 1024px) {
	.location { padding: 30px 0 0; }

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

	.location__left {
		position: static;
		top: auto;
		align-self: auto;
		width: 100%;
		border-right: none;
		padding-right: 0;
		border-bottom: 1px solid rgba(28, 28, 28, 0.25);
		padding-bottom: 40px;
		margin-bottom: 40px;
	}

	.location__right {
		width: 100%;
		padding-left: 0;
	}

	.location__heading {
		font-size: 43px;
		line-height: 1.18;
		letter-spacing: -0.86px;
		margin-bottom: 16px;
	}

	.location__heart-heading {
		font-size: 43px;
		line-height: 1.18;
		letter-spacing: -0.86px;
		margin-bottom: 16px;
	}

	.location__tags {
		margin-bottom: 24px;
	}

	.location__transport {
		justify-content: space-between;
		gap: 12px;
		margin-bottom: 32px;
	}

	.location__transport-item {
		gap: 6px;
	}

	.location__transport-time {
		font-size: 16px;
		line-height: 1;
		letter-spacing: 0.72px;
	}

	.location__places {
		margin-bottom: 24px;
	}

	.location__place-name {
		font-size: 16px;
		line-height: 28px;
	}

	.location__place-distance {
		font-size: 16px;
	}

	.location__photos {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		gap: 8px;
	}

	.location__photo {
		flex: 0 0 240px;
		width: 240px;
		max-width: none;
		margin-left: 0;
		scroll-snap-align: start;
	}

	.location__photo img {
		width: 240px;
		height: 300px;
		object-fit: cover;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.location__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		align-items: stretch;
		gap: 0;
	}

	.location__left {
		border-right: 1px solid rgba(28, 28, 28, 0.50);
		padding-right: 32px;
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.location__right {
		padding-left: 32px;
	}

	.location__photos {
		flex-direction: column;
		overflow-x: visible;
		scroll-snap-type: none;
	}

	.location__photo {
		flex: 0 0 auto;
		width: 100%;
		max-width: 425px;
		margin-left: auto;
		scroll-snap-align: none;
	}

	.location__photo img {
		width: 100%;
		height: auto;
	}
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
	padding: 40px 0 80px;
}

.faq__inner {
	display: flex;
	align-items: flex-start;
	border-top: 1px solid rgba(28, 28, 28, 0.50);
	border-bottom: 1px solid rgba(28, 28, 28, 0.50);
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

.faq__left {
	flex: 0 0 45%;
	padding: 40px 48px 40px 0;
}

.faq__heading {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 43px;
	line-height: 48px;
	letter-spacing: -0.86px;
	color: var(--color-coral);
}

.faq__list {
	flex: 1;
	border-left: 1px solid rgba(28, 28, 28, 0.50);
}

.faq__item {
	border-top: 1px solid rgba(28, 28, 28, 0.50);
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

.faq__item:first-child {
	border-top: none;
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 24px 24px 24px 32px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 20px;
	line-height: 24px;
	color: var(--color-text);
}

.faq__question:hover {
	color: var(--color-coral);
}

.faq__arrow {
	width: 10px;
	height: 5px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.faq__item.is-open .faq__arrow {
	transform: rotate(180deg);
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.faq__answer-text {
	margin: 0;
	padding: 0 24px 24px 32px;
	font-family: var(--font-sans);
	font-weight: var(--fw-medium);
	font-size: 16px;
	line-height: 26px;
	color: var(--color-text);
}

@media (max-width: 1024px) {
	.faq { padding: 40px 0; }

	.faq__inner {
		flex-direction: column;
		border-top: none;
		border-bottom: none;
	}

	.faq__left {
		flex: none;
		width: 100%;
		padding: 0 0 24px;
		border-bottom: 1px solid rgba(28, 28, 28, 0.50);
		margin-bottom: 0;
	}

	.faq__heading {
		font-size: 43px;
		line-height: 44px;
	}

	.faq__list {
		border-left: none;
		border-top: 1px solid rgba(28, 28, 28, 0.50);
		border-bottom: 1px solid rgba(28, 28, 28, 0.50);
		width: 100%;
	}

	.faq__item {
		border-top: 1px solid rgba(28, 28, 28, 0.50);
	}

	.faq__item:first-child {
		border-top: none;
	}

	.faq__question {
		padding: 16px 0;
	}

	.faq__answer-text {
		padding: 0 0 16px;
	}
}

/* ==========================================================================
   Popups
   ========================================================================== */

.popup {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 200;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba(0, 0, 0, 0.6);
}

.popup:not([hidden]) {
	display: flex;
}

/* Keep the booking iframe laid out while the dialog is closed so the
   third-party widget can finish rendering before the first open. */
.popup--viewing[hidden] {
	display: flex;
	opacity: 0;
	pointer-events: none;
}

body.popup-open {
	overflow: hidden;
}

.popup__inner {
	position: relative;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}

.popup--viewing .popup__inner {
	max-width: 880px;
	background: #2a2a2a;
}

.popup--room .popup__inner {
	max-width: 660px;
	background: #ffffff;
}

.popup__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(0, 0, 0, 0.6);
	border: none;
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
	color: #ffffff;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease;
}

.popup--room .popup__close {
	background: rgba(0, 0, 0, 0.08);
	box-shadow: none;
	color: var(--color-text);
}

.popup__close:hover {
	background: rgba(0, 0, 0, 0.8);
}

.popup--room .popup__close:hover {
	background: rgba(0, 0, 0, 0.15);
}

.popup__body {
	min-height: 400px;
}

.popup__body iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 600px;
	border: none;
}

/* ── Room redirect popup ── */
.room-redirect {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 48px 40px 40px;
	text-align: center;
}

.room-redirect__logo {
	width: 148px;
	height: 148px;
	margin-bottom: 24px;
}

.room-redirect__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.room-redirect__title {
	margin: 0 0 16px;
	font-family: var(--font-sans);
	font-weight: var(--fw-bold);
	font-size: 20px;
	line-height: 32px;
	color: var(--color-text);
}

.room-redirect__desc {
	margin: 0 0 24px;
	max-width: 470px;
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	line-height: 21px;
	text-transform: uppercase;
	color: var(--color-text);
}

.room-redirect__btn {
	display: inline-block;
	padding: 12px 32px;
	margin-bottom: 24px;
	background: var(--color-text);
	border: 2px solid #ffffff;
	border-radius: 5px;
	font-family: var(--font-mono);
	font-weight: var(--fw-bold);
	font-size: 16px;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
}

.room-redirect__btn:hover,
.room-redirect__btn:active,
.room-redirect__btn:visited {
	color: #ffffff;
	text-decoration: none;
}

.room-redirect__bar {
	width: 100%;
	max-width: 364px;
	height: 16px;
	background: #d9d9d9;
	border-radius: 8px;
	overflow: hidden;
}

.room-redirect__fill {
	width: 0;
	height: 100%;
	background: var(--color-text);
	border-radius: 8px;
	transition: none;
}

.room-redirect__fill.is-running {
	width: 100%;
	transition: width 2.5s linear;
}
