.hotel-detail {
	--hotel-container: 68rem;
	--hotel-navy: var(--color-heading, #18284d);
	--hotel-dark: var(--color-navy-950, #111b31);
	--hotel-accent: var(--color-accent, #ff4057);
	--hotel-accent-dark: var(--color-accent-strong, #e92f49);
	--hotel-light: #edf6fb;
	--hotel-border: var(--color-border, #dfe5ec);
	--hotel-muted: var(--color-muted, #526174);
	color: var(--color-text, #344054);
	background: #fff;
}

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

.hotel-detail__top,
.hotel-detail__layout {
	width: min(100% - 2rem, var(--hotel-container));
	margin-inline: auto;
}

.hotel-detail__top {
	padding-top: clamp(1.5rem, 3vw, 2.75rem);
}

/* Okruszki */

.hotel-detail__breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: clamp(2rem, 4vw, 3.25rem);
	color: var(--hotel-muted);
	font: 600 0.7rem/1.5 var(--font-body, "Inter", sans-serif);
}

.hotel-detail__breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.hotel-detail__breadcrumbs a:hover {
	color: var(--hotel-accent);
}

/* Nagłówek */

.hotel-detail__heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 1.75rem;
}

.hotel-detail__heading-content {
	min-width: 0;
}

.hotel-detail__location,
.hotel-detail__eyebrow,
.hotel-detail__booking-label,
.hotel-detail__cta-eyebrow {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	margin: 0 0 0.8rem;
	color: var(--hotel-accent);
	font: 800 0.7rem/1.4 var(--font-body, "Inter", sans-serif);
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.hotel-detail__location::before,
.hotel-detail__eyebrow::before,
.hotel-detail__cta-eyebrow::before {
	flex: 0 0 auto;
	width: 1.75rem;
	height: 2px;
	background: currentColor;
	content: "";
}

.hotel-detail__title,
.hotel-detail__section-title,
.hotel-detail__booking-title,
.hotel-detail__cta-title {
	margin: 0;
	color: var(--hotel-navy);
	font-family: var(--font-heading, "Barlow Condensed", sans-serif);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 0.9;
	text-transform: uppercase;
}

.hotel-detail__title {
	max-width: 13ch;
	font-size: clamp(3rem, 6vw, 5rem);
}

.hotel-detail__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.9rem;
	margin-top: 0.85rem;
	font: 400 0.8rem/1.5 var(--font-body, "Inter", sans-serif);
}

.hotel-detail__operator {
	color: var(--hotel-muted);
}

.hotel-detail__stars {
	color: var(--hotel-accent);
	letter-spacing: 0.16em;
}

.hotel-detail__map-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	flex: 0 0 auto;
	padding-bottom: 0.45rem;
	color: var(--hotel-navy);
	border-bottom: 2px solid var(--hotel-accent);
	font: 800 0.72rem/1.4 var(--font-body, "Inter", sans-serif);
	text-decoration: none;
}

/* Galeria */

.hotel-detail__gallery {
	position: relative;
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 0.4rem;
	aspect-ratio: 2.45 / 1;
	overflow: hidden;
	background: #e9eef4;
}

.hotel-detail__gallery-item {
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: transparent;
	cursor: zoom-in;
}

.hotel-detail__gallery-item--1 {
	grid-column: 1;
	grid-row: 1 / 3;
}

.hotel-detail__gallery-item--2 {
	grid-column: 2;
	grid-row: 1;
}

.hotel-detail__gallery-item--3 {
	grid-column: 2;
	grid-row: 2;
}

.hotel-detail__gallery--count-1 .hotel-detail__gallery-item--1 {
	grid-column: 1 / 3;
}

.hotel-detail__gallery--count-2 .hotel-detail__gallery-item--2 {
	grid-row: 1 / 3;
}

.hotel-detail__gallery-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.hotel-detail__gallery-item:hover .hotel-detail__gallery-image {
	transform: scale(1.025);
}

.hotel-detail__gallery-show {
	position: absolute;
	right: 0.8rem;
	bottom: 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.8rem 0.95rem;
	color: var(--hotel-navy);
	border: 0;
	background: #fff;
	box-shadow: 0 0.5rem 1.5rem rgb(17 28 53 / 12%);
	font: 800 0.68rem/1.4 var(--font-body, "Inter", sans-serif);
	cursor: pointer;
}

/* Zalety */

.hotel-detail__highlights {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0;
	padding: 0;
	border-bottom: 1px solid var(--hotel-border);
	list-style: none;
}

.hotel-detail__highlights li {
	display: grid;
	place-items: center;
	min-height: 3.75rem;
	padding: 0.7rem;
	color: var(--hotel-navy);
	border-right: 1px solid var(--hotel-border);
	font: 700 0.72rem/1.45 var(--font-body, "Inter", sans-serif);
	text-align: center;
}

.hotel-detail__highlights li:last-child {
	border-right: 0;
}

/* Nawigacja */

.hotel-detail__sections {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	border-bottom: 1px solid var(--hotel-border);
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.hotel-detail__sections::-webkit-scrollbar {
	display: none;
}

.hotel-detail__sections a {
	position: relative;
	flex: 0 0 auto;
	padding: 1rem 0;
	color: var(--hotel-navy);
	font: 700 0.7rem/1.4 var(--font-body, "Inter", sans-serif);
	text-decoration: none;
}

.hotel-detail__sections a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: transparent;
	content: "";
}

.hotel-detail__sections a:hover::after {
	background: var(--hotel-accent);
}

/* Główna zawartość */

.hotel-detail__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(17rem, 19rem);
	align-items: start;
	gap: clamp(2.5rem, 6vw, 5.25rem);
	padding-block: clamp(4rem, 7vw, 6.5rem);
}

.hotel-detail__body {
	min-width: 0;
}

.hotel-detail__section {
	padding-bottom: clamp(3.75rem, 6vw, 5.5rem);
	scroll-margin-top: 6rem;
}

.hotel-detail__section + .hotel-detail__section {
	padding-top: clamp(3.75rem, 6vw, 5.5rem);
	border-top: 1px solid var(--hotel-border);
}

.hotel-detail__section-title {
	max-width: 13ch;
	margin-bottom: 1.5rem;
	font-size: clamp(2.75rem, 5vw, 4.4rem);
}

.hotel-detail__entry,
.hotel-detail__location-description {
	color: var(--hotel-muted);
	font: 400 0.95rem/1.8 var(--font-body, "Inter", sans-serif);
}

.hotel-detail__entry > :first-child,
.hotel-detail__location-description > :first-child {
	margin-top: 0;
}

/* Apartamenty */

.hotel-detail__unit-list {
	display: grid;
	gap: 1rem;
}

.hotel-detail__unit {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 13rem;
	overflow: hidden;
	background: var(--hotel-light);
}

.hotel-detail__unit-media {
	min-height: 13rem;
	overflow: hidden;
}

.hotel-detail__unit-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hotel-detail__unit-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(1.25rem, 3vw, 2rem);
}

.hotel-detail__unit-content h3,
.hotel-detail__amenity h3,
.hotel-detail__address strong,
.hotel-detail__accordion summary,
.hotel-detail__fee dd {
	color: var(--hotel-navy);
	font-family: var(--font-body, "Inter", sans-serif);
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.4;
}

.hotel-detail__unit-content h3 {
	margin: 0 0 0.75rem;
	font-size: 1rem;
}

.hotel-detail__unit-content p {
	margin: 0 0 0.8rem;
	color: var(--hotel-muted);
	font: 400 0.8rem/1.65 var(--font-body, "Inter", sans-serif);
}

.hotel-detail__unit-content ul {
	display: grid;
	gap: 0.35rem;
	margin: 0 0 1rem;
	padding: 0;
	color: var(--hotel-muted);
	font: 400 0.78rem/1.55 var(--font-body, "Inter", sans-serif);
	list-style: none;
}

.hotel-detail__unit-content li {
	position: relative;
	padding-left: 0.9rem;
}

.hotel-detail__unit-content li::before {
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 0.3rem;
	height: 0.3rem;
	background: var(--hotel-accent);
	content: "";
	transform: rotate(45deg);
}

.hotel-detail__text-link,
.hotel-detail__region-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--hotel-accent);
	font: 800 0.72rem/1.45 var(--font-body, "Inter", sans-serif);
	text-decoration: none;
}

.hotel-detail__section-note {
	margin: 0.85rem 0 0;
	color: var(--hotel-muted);
	font: 400 0.72rem/1.65 var(--font-body, "Inter", sans-serif);
}

/* Udogodnienia */

.hotel-detail__amenities-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.hotel-detail__amenity {
	min-height: 5.75rem;
	padding: 1.15rem 1.3rem;
	background: var(--hotel-light);
}

.hotel-detail__amenity h3 {
	margin: 0 0 0.45rem;
	font-size: 0.88rem;
}

.hotel-detail__amenity p {
	margin: 0;
	color: var(--hotel-muted);
	font: 400 0.78rem/1.55 var(--font-body, "Inter", sans-serif);
}

/* Lokalizacja */

.hotel-detail__address {
	margin-top: 1.5rem;
	padding: 1.35rem 1.5rem;
	border-left: 3px solid #49a7dc;
	background: var(--hotel-light);
}

.hotel-detail__address strong {
	display: block;
	margin-bottom: 0.6rem;
	font-size: 0.82rem;
}

.hotel-detail__address p {
	margin: 0 0 0.8rem;
	color: var(--hotel-muted);
	font: 400 0.78rem/1.65 var(--font-body, "Inter", sans-serif);
}

.hotel-detail__region-link {
	margin-top: 1rem;
}

/* Akordeony */

.hotel-detail__accordions {
	border-top: 1px solid var(--hotel-border);
}

.hotel-detail__accordion {
	border-bottom: 1px solid var(--hotel-border);
}

.hotel-detail__accordion summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	font-size: 0.82rem;
	cursor: pointer;
	list-style: none;
}

.hotel-detail__accordion summary::-webkit-details-marker {
	display: none;
}

.hotel-detail__accordion summary span:last-child {
	color: var(--hotel-accent);
	font-size: 1rem;
	transition: transform 180ms ease;
}

.hotel-detail__accordion[open] summary span:last-child {
	transform: rotate(45deg);
}

.hotel-detail__accordion-content {
	padding-bottom: 1.25rem;
	color: var(--hotel-muted);
	font: 400 0.78rem/1.7 var(--font-body, "Inter", sans-serif);
}

.hotel-detail__fees {
	margin: 0;
}

.hotel-detail__fee {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1.5rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--hotel-border);
}

.hotel-detail__fee:last-child {
	border-bottom: 0;
}

.hotel-detail__fee dt {
	color: var(--hotel-muted);
	font: 400 0.78rem/1.5 var(--font-body, "Inter", sans-serif);
}

.hotel-detail__fee dd {
	margin: 0;
	font-size: 0.78rem;
	text-align: right;
}

/* Rezerwacja */

.hotel-detail__booking {
	position: sticky;
	top: 6.5rem;
	padding: 1.6rem 1.5rem;
	border-top: 3px solid var(--hotel-accent);
	background: var(--hotel-light);
}

.hotel-detail__booking-title {
	max-width: 10ch;
	margin-bottom: 1.25rem;
	font-size: clamp(2.1rem, 4vw, 3.1rem);
}

.hotel-detail__booking-fields {
	display: grid;
	gap: 0.8rem;
}

.hotel-detail__booking-fields label {
	display: grid;
	gap: 0.4rem;
	color: var(--hotel-muted);
	font: 700 0.67rem/1.4 var(--font-body, "Inter", sans-serif);
}

.hotel-detail__booking-fields input {
	width: 100%;
	min-height: 2.75rem;
	padding: 0.65rem 0.75rem;
	color: var(--hotel-navy);
	border: 1px solid var(--hotel-border);
	border-radius: 0;
	background: #fff;
	font: 400 0.75rem/1.4 var(--font-body, "Inter", sans-serif);
}

.hotel-detail__stay-summary,
.hotel-detail__booking-text {
	color: var(--hotel-muted);
	font: 400 0.72rem/1.6 var(--font-body, "Inter", sans-serif);
}

.hotel-detail__stay-summary {
	margin: 0.75rem 0 1.25rem;
}

.hotel-detail__price {
	display: grid;
	gap: 0.25rem;
	margin-bottom: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--hotel-border);
}

.hotel-detail__price span {
	color: var(--hotel-muted);
	font: 700 0.65rem/1.4 var(--font-body, "Inter", sans-serif);
	text-transform: uppercase;
}

.hotel-detail__price strong {
	color: var(--hotel-navy);
	font: 700 2rem/1 var(--font-heading, "Barlow Condensed", sans-serif);
}

.hotel-detail__booking-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 3.6rem;
	padding: 0.9rem 1rem;
	color: var(--hotel-navy);
	background: var(--hotel-accent);
	font: 800 0.72rem/1.4 var(--font-body, "Inter", sans-serif);
	text-decoration: none;
	text-transform: uppercase;
}

.hotel-detail__booking-button:hover {
	color: #fff;
	background: var(--hotel-accent-dark);
}

.hotel-detail__benefits {
	display: grid;
	gap: 0.65rem;
	margin: 1.4rem 0 0;
	padding: 0;
	list-style: none;
}

.hotel-detail__benefits li {
	position: relative;
	padding-left: 1.1rem;
	color: var(--hotel-muted);
	font: 400 0.72rem/1.45 var(--font-body, "Inter", sans-serif);
}

.hotel-detail__benefits li::before {
	position: absolute;
	top: 0.45em;
	left: 0;
	width: 0.4rem;
	height: 0.4rem;
	background: var(--hotel-accent);
	content: "";
	transform: rotate(45deg);
}

.hotel-detail__phone {
	margin: 1.4rem 0 0;
	padding-top: 1rem;
	border-top: 1px solid var(--hotel-border);
}

.hotel-detail__phone span {
	display: block;
	color: var(--hotel-muted);
	font: 400 0.67rem/1.4 var(--font-body, "Inter", sans-serif);
}

.hotel-detail__phone a {
	color: var(--hotel-navy);
	font: 800 1rem/1.5 var(--font-body, "Inter", sans-serif);
	text-decoration: none;
}

/* CTA */

.hotel-detail__cta {
	position: relative;
	overflow: hidden;
	padding-block: clamp(6rem, 10vw, 10rem);
	color: #fff;
	background: #111b31;
}

.hotel-detail__cta-container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 32rem;
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
	width: min(100% - 3rem, 90rem);
	margin-inline: auto;
}

.hotel-detail__cta-content {
	position: relative;
	z-index: 2;
	max-width: 52rem;
}

.hotel-detail__cta-title {
	max-width: none;
	color: #fff;
	font-size: clamp(4rem, 7vw, 7.25rem);
	line-height: 0.82;
}

.hotel-detail__cta-title span,
.hotel-detail__cta-title em {
	display: block;
}

.hotel-detail__cta-title em {
	margin-top: 0.28em;
	color: var(--hotel-accent);
	font-family: var(--font-body, "Inter", sans-serif);
	font-size: 0.67em;
	font-style: italic;
	font-weight: 800;
	letter-spacing: -0.06em;
	text-transform: none;
}

.hotel-detail__cta-description {
	max-width: 39rem;
	margin: clamp(2rem, 4vw, 3rem) 0 0;
	color: rgb(255 255 255 / 72%);
	font: 400 clamp(1rem, 1.4vw, 1.2rem)/1.7
		var(--font-body, "Inter", sans-serif);
}

.hotel-detail__cta-action {
	position: relative;
	display: grid;
	place-items: center;
	width: 32rem;
	aspect-ratio: 1;
	justify-self: end;
	transform: translateX(18%);
}

.hotel-detail__cta-action::before,
.hotel-detail__cta-action::after {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 1px solid rgb(255 255 255 / 10%);
	border-radius: 50%;
	content: "";
	pointer-events: none;
	transform: translate(-50%, -50%);
}

.hotel-detail__cta-action::before {
	width: 100%;
	height: 100%;
}

.hotel-detail__cta-action::after {
	width: 72%;
	height: 72%;
}

.hotel-detail__cta-action-link {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.4rem;
	width: 52%;
	aspect-ratio: 1;
	color: #fff;
	border: 1px solid rgb(255 255 255 / 52%);
	border-radius: 50%;
	font-family: var(--font-body, "Inter", sans-serif);
	text-decoration: none;
}

.hotel-detail__cta-action-label {
	max-width: 4.5rem;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.hotel-detail__cta-action-icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 4rem;
	height: 4rem;
	color: #fff;
	background: var(--hotel-accent);
	font-size: 1.75rem;
}

/* Lightbox */

.hotel-detail__lightbox {
	width: min(94vw, 86rem);
	max-width: none;
	height: min(90vh, 58rem);
	max-height: none;
	margin: auto;
	padding: 0;
	color: #fff;
	border: 0;
	background: #0b1429;
}

.hotel-detail__lightbox::backdrop {
	background: rgb(5 9 18 / 90%);
}

.hotel-detail__lightbox-track,
.hotel-detail__lightbox-slide {
	width: 100%;
	height: 100%;
}

.hotel-detail__lightbox-slide {
	position: relative;
	margin: 0;
}

.hotel-detail__lightbox-slide[hidden] {
	display: none;
}

.hotel-detail__lightbox-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hotel-detail__lightbox-slide figcaption {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	padding: 0.4rem 0.6rem;
	background: rgb(11 20 41 / 75%);
}

.hotel-detail__lightbox button {
	position: absolute;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	color: #fff;
	border: 0;
	background: rgb(11 20 41 / 78%);
	font-size: 2rem;
	cursor: pointer;
}

.hotel-detail__lightbox-close {
	top: 1rem;
	right: 1rem;
}

.hotel-detail__lightbox-nav {
	top: 50%;
	transform: translateY(-50%);
}

.hotel-detail__lightbox-nav--prev {
	left: 1rem;
}

.hotel-detail__lightbox-nav--next {
	right: 1rem;
}

/*
 * Hover przycisku dolnego CTA.
 */

.hotel-detail__cta-action-link {
	transition:
		transform 220ms ease,
		border-color 220ms ease,
		background-color 220ms ease,
		box-shadow 220ms ease;
}

.hotel-detail__cta-action-label {
	transition:
		color 220ms ease,
		transform 220ms ease;
}

.hotel-detail__cta-action-icon {
	transition:
		color 220ms ease,
		background-color 220ms ease,
		transform 220ms ease;
}

.hotel-detail__cta-action-link:hover,
.hotel-detail__cta-action-link:focus-visible {
	border-color: var(--hotel-accent);
	background-color: rgb(255 255 255 / 3%);
	box-shadow: 0 0 0 1px rgb(255 64 87 / 15%);
	transform: scale(1.04);
}

.hotel-detail__cta-action-link:hover
	.hotel-detail__cta-action-label,
.hotel-detail__cta-action-link:focus-visible
	.hotel-detail__cta-action-label {
	color: var(--hotel-accent);
	transform: translateX(-0.15rem);
}

.hotel-detail__cta-action-link:hover
	.hotel-detail__cta-action-icon,
.hotel-detail__cta-action-link:focus-visible
	.hotel-detail__cta-action-icon {
	color: var(--hotel-navy);
	background-color: #fff;
	transform: translateX(0.35rem);
}

.hotel-detail__cta-action-link:focus-visible {
	outline: 3px solid var(--hotel-accent);
	outline-offset: 5px;
}

/* Tablet */

@media (max-width: 63.99rem) {
	.hotel-detail__layout {
		grid-template-columns: minmax(0, 1fr) 16rem;
		gap: 2.5rem;
	}

	.hotel-detail__cta-container {
		grid-template-columns: minmax(0, 1fr) 22rem;
		gap: 2rem;
	}

	.hotel-detail__cta-action {
		width: 25rem;
		transform: translateX(22%);
	}
}

/* Telefon */

@media (max-width: 47.99rem) {
	.hotel-detail__top,
	.hotel-detail__layout {
		width: min(100% - 1.5rem, var(--hotel-container));
	}

	.hotel-detail__heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 1rem;
	}

	.hotel-detail__title {
		font-size: clamp(3rem, 15vw, 4.8rem);
	}

	.hotel-detail__gallery {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 2fr 1fr;
		aspect-ratio: 1 / 1.15;
	}

	.hotel-detail__gallery-item--1 {
		grid-column: 1 / 3;
		grid-row: 1;
	}

	.hotel-detail__gallery-item--2 {
		grid-column: 1;
		grid-row: 2;
	}

	.hotel-detail__gallery-item--3 {
		grid-column: 2;
		grid-row: 2;
	}

	.hotel-detail__highlights {
		grid-template-columns: repeat(2, 1fr);
	}

	.hotel-detail__highlights li:nth-child(2n) {
		border-right: 0;
	}

	.hotel-detail__layout {
		grid-template-columns: 1fr;
		padding-block: 3.5rem;
	}

	.hotel-detail__booking {
		position: static;
		grid-row: 1;
	}

	.hotel-detail__body {
		grid-row: 2;
	}

	.hotel-detail__unit {
		grid-template-columns: 1fr;
	}

	.hotel-detail__unit-media {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.hotel-detail__amenities-grid {
		grid-template-columns: 1fr;
	}

	.hotel-detail__fee {
		grid-template-columns: 1fr;
		gap: 0.3rem;
	}

	.hotel-detail__fee dd {
		text-align: left;
	}

	.hotel-detail__cta {
		padding-block: 4.5rem;
	}

	.hotel-detail__cta-container {
		grid-template-columns: 1fr;
		gap: 3.5rem;
		width: min(100% - 2rem, 38rem);
	}

	.hotel-detail__cta-title {
		font-size: clamp(3.7rem, 17vw, 5.5rem);
	}

	.hotel-detail__cta-title em {
		font-size: 0.6em;
	}

	.hotel-detail__cta-action {
		width: min(90vw, 22rem);
		justify-self: center;
		transform: none;
	}

	.hotel-detail__cta-action-link {
		width: 56%;
	}

	.hotel-detail__cta-action-icon {
		width: 3.25rem;
		height: 3.25rem;
	}

	.hotel-detail__lightbox {
		width: 100vw;
		height: 100vh;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hotel-detail__gallery-image {
		transition: none;
	}
}